create-brainerce-store 1.33.1 → 1.34.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/messages/en.json +2 -1
- package/messages/he.json +2 -1
- package/package.json +1 -1
- package/templates/nextjs/base/src/app/contact/page.tsx +528 -461
- package/templates/nextjs/base/src/components/cart/cart-bundle-offer.tsx +60 -195
- package/templates/nextjs/base/src/lib/safe-redirect.ts +38 -60
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ var require_package = __commonJS({
|
|
|
31
31
|
"package.json"(exports2, module2) {
|
|
32
32
|
module2.exports = {
|
|
33
33
|
name: "create-brainerce-store",
|
|
34
|
-
version: "1.
|
|
34
|
+
version: "1.34.1",
|
|
35
35
|
description: "Scaffold a production-ready e-commerce storefront connected to Brainerce",
|
|
36
36
|
bin: {
|
|
37
37
|
"create-brainerce-store": "dist/index.js"
|
|
@@ -153,7 +153,7 @@ var ALLOWED_PACKAGE_MANAGERS = [
|
|
|
153
153
|
"bun"
|
|
154
154
|
];
|
|
155
155
|
var BRAINERCE_RUNTIME_DEPS = Object.freeze({
|
|
156
|
-
brainerce: "^1.
|
|
156
|
+
brainerce: "^1.23.0",
|
|
157
157
|
"isomorphic-dompurify": "^3.8.0"
|
|
158
158
|
});
|
|
159
159
|
|
package/messages/en.json
CHANGED
|
@@ -429,6 +429,7 @@
|
|
|
429
429
|
"sendAnother": "Send another message",
|
|
430
430
|
"thanksTitle": "Thank you!",
|
|
431
431
|
"thanksBody": "Your message has been received. We'll reply by email as soon as possible.",
|
|
432
|
-
"genericError": "Something went wrong. Please try again."
|
|
432
|
+
"genericError": "Something went wrong. Please try again.",
|
|
433
|
+
"fieldRequired": "{label} is required"
|
|
433
434
|
}
|
|
434
435
|
}
|
package/messages/he.json
CHANGED
|
@@ -429,6 +429,7 @@
|
|
|
429
429
|
"sendAnother": "שליחת הודעה נוספת",
|
|
430
430
|
"thanksTitle": "תודה!",
|
|
431
431
|
"thanksBody": "ההודעה התקבלה. נחזור אליך באימייל בהקדם האפשרי.",
|
|
432
|
-
"genericError": "משהו השתבש. אנא נסה שוב."
|
|
432
|
+
"genericError": "משהו השתבש. אנא נסה שוב.",
|
|
433
|
+
"fieldRequired": "השדה {label} הוא חובה"
|
|
433
434
|
}
|
|
434
435
|
}
|