@thryveai/theme-interfaces 2.8.18 → 2.8.19
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/JSONSchemas/index.d.ts +93 -36
- package/dist/JSONSchemas/index.js +187 -95
- package/dist/index.d.ts +2 -2
- package/dist/interfaces/icons.interfaces.d.ts +1 -1
- package/dist/interfaces/retailer-settings.interfaces.d.ts +10 -2
- package/dist/interfaces/shared-settings.interfaces.d.ts +6 -1
- package/dist/mobile/interfaces/mobile-retailer-settings.interfaces.d.ts +5 -1
- package/dist/mobile/reactnative/MobileDefaultSettings.js +3 -2
- package/dist/storefront/SFUISettingsTemplate.AdminUi.js +6 -1
- package/dist/storefront/commonSettingsStorefront.js +5 -1
- package/dist/storefront/commonSharedSettings.js +6 -2
- package/dist/storefront/contentEngineComponents.d.ts +1 -0
- package/dist/storefront/contentEngineComponents.js +1 -0
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSettingsStorefront.js +5 -1
- package/dist/storefront/defaultSharedSettings.js +6 -2
- package/dist/storefront/productBadgeAttributes.d.ts +1 -1
- package/dist/storefront/productBadgeAttributes.js +3 -0
- package/package.json +1 -1
|
@@ -87,7 +87,6 @@ var DefaultConfigSFUI = {
|
|
|
87
87
|
showTaxTotal: true,
|
|
88
88
|
},
|
|
89
89
|
checkout: {
|
|
90
|
-
smsOptIn: false,
|
|
91
90
|
checkoutValidation: {
|
|
92
91
|
instructions: ["alphaNumeric", "notWhiteSpacesOnly"],
|
|
93
92
|
phoneNumber: ["usPhone", "required"],
|
|
@@ -394,6 +393,7 @@ var DefaultConfigSFUI = {
|
|
|
394
393
|
SmallPromotion: false,
|
|
395
394
|
ThreeBannerContainer: false,
|
|
396
395
|
TwoBannerContainer: false,
|
|
396
|
+
PromotionsGallery: false,
|
|
397
397
|
Video: false,
|
|
398
398
|
VideoWithContent: false,
|
|
399
399
|
},
|
|
@@ -404,6 +404,7 @@ var DefaultConfigSFUI = {
|
|
|
404
404
|
scrollToTopButton: {
|
|
405
405
|
enabled: false,
|
|
406
406
|
percentOffset: { bottom: 15, right: 2 },
|
|
407
|
+
visibilityThreshold: 2000
|
|
407
408
|
},
|
|
408
409
|
clientRenderCoupons: true,
|
|
409
410
|
showClippedStateInCouponModal: false,
|
|
@@ -416,6 +417,9 @@ var DefaultConfigSFUI = {
|
|
|
416
417
|
skipConfirmation: false,
|
|
417
418
|
confirmationDelay: 5000,
|
|
418
419
|
},
|
|
420
|
+
carousel: {
|
|
421
|
+
showArrowsOnHoverOnly: true
|
|
422
|
+
}
|
|
419
423
|
},
|
|
420
424
|
welcomeModal: [],
|
|
421
425
|
performance: {
|
|
@@ -32,8 +32,11 @@ var DefaultSharedSettingsConfig = {
|
|
|
32
32
|
ageVerificationStatementName: "",
|
|
33
33
|
},
|
|
34
34
|
loyalty: {
|
|
35
|
-
barcodeFormat: "UPC"
|
|
36
|
-
}
|
|
35
|
+
barcodeFormat: "UPC",
|
|
36
|
+
},
|
|
37
|
+
idp: {
|
|
38
|
+
organization: "",
|
|
39
|
+
},
|
|
37
40
|
},
|
|
38
41
|
checkout: {
|
|
39
42
|
preserveOrderNote: {
|
|
@@ -47,6 +50,7 @@ var DefaultSharedSettingsConfig = {
|
|
|
47
50
|
dateOfBirthInputFormat: "DD/MM/YYYY",
|
|
48
51
|
wasComparisonPrice: false,
|
|
49
52
|
enableTargetedRewardsIcon: false,
|
|
53
|
+
smsOptIn: false,
|
|
50
54
|
},
|
|
51
55
|
};
|
|
52
56
|
exports.default = DefaultSharedSettingsConfig;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ProductAttributeIcons } from "../interfaces/icons.interfaces";
|
|
2
|
-
export declare type ProductAttributes = "gluten free" | "organic" | "local" | "dairy free" | "diabetes friendly" | "egg free" | "fair trade" | "no artificial ingredients" | "halal" | "heart health" | "no high fructose corn syrup" | "keto friendly" | "kosher" | "lactose free" | "low fodmap" | "low sodium" | "no added sugar" | "non gmo" | "paleo" | "peanut free" | "plant goodness" | "soy free" | "vegan" | "whole grain" | "bottledeposit" | "limited ingredients" | "minimally processed" | "fsa" | "plant based" | "frozen" | "canadian local" | "made in canada" | "product of canada" | "shop canadian";
|
|
2
|
+
export declare type ProductAttributes = "gluten free" | "organic" | "local" | "dairy free" | "diabetes friendly" | "egg free" | "fair trade" | "no artificial ingredients" | "halal" | "heart health" | "no high fructose corn syrup" | "keto friendly" | "kosher" | "lactose free" | "low fodmap" | "low sodium" | "no added sugar" | "non gmo" | "paleo" | "peanut free" | "plant goodness" | "soy free" | "vegan" | "whole grain" | "bottledeposit" | "limited ingredients" | "minimally processed" | "fsa" | "plant based" | "frozen" | "canadian local" | "made in canada" | "product of canada" | "shop canadian" | "high fiber" | "high protein" | "new product";
|
|
3
3
|
export declare type IProductAttributeToIcons = {
|
|
4
4
|
[key in ProductAttributes]: ProductAttributeIcons;
|
|
5
5
|
};
|