@thryveai/theme-interfaces 2.7.179 → 2.7.181
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 +298 -159
- package/dist/JSONSchemas/index.js +531 -388
- package/dist/index.d.ts +2 -2
- package/dist/interfaces/default-theme.interface.d.ts +34 -0
- package/dist/interfaces/retailer-settings.interfaces.d.ts +4 -0
- package/dist/interfaces/shared-settings.interfaces.d.ts +1 -0
- package/dist/storefront/SFUISettingsTemplate.AdminUi.js +6 -0
- package/dist/storefront/defaultIconsStorefront.js +13 -13
- package/dist/storefront/defaultSettingsStorefront.js +2 -0
- package/dist/storefront/defaultSharedSettings.js +3 -2
- package/dist/storefront/defaultThemeStorefront.js +34 -0
- package/package.json +1 -1
|
@@ -160,6 +160,7 @@ var DefaultConfigSFUI = {
|
|
|
160
160
|
modal: false,
|
|
161
161
|
pdp: false,
|
|
162
162
|
productCard: false,
|
|
163
|
+
cart: false,
|
|
163
164
|
},
|
|
164
165
|
instacart: {
|
|
165
166
|
enabled: false,
|
|
@@ -168,6 +169,7 @@ var DefaultConfigSFUI = {
|
|
|
168
169
|
recipeLegacyShareLink: true,
|
|
169
170
|
registrationFields: [],
|
|
170
171
|
secondTierAuthorization: undefined,
|
|
172
|
+
shoppingModesDisplayOrder: [],
|
|
171
173
|
showCheckoutPromoCode: true,
|
|
172
174
|
showImgOnOrder: false,
|
|
173
175
|
showRewardPromoChangeTimeslotMsg: false,
|
|
@@ -23,12 +23,13 @@ var DefaultSharedSettingsConfig = {
|
|
|
23
23
|
showUnclaimedCouponsPrompt: false,
|
|
24
24
|
missedCouponsButtonInCartURL: "",
|
|
25
25
|
hideSavingsSection: false,
|
|
26
|
+
showRedemptionProductCard: false
|
|
26
27
|
},
|
|
27
28
|
flyerConfiguration: null,
|
|
28
29
|
ageVerification: {
|
|
29
30
|
ageVerificationPrefix: "",
|
|
30
|
-
ageVerificationStatementName: ""
|
|
31
|
-
}
|
|
31
|
+
ageVerificationStatementName: ""
|
|
32
|
+
}
|
|
32
33
|
},
|
|
33
34
|
checkout: {
|
|
34
35
|
preserveOrderNote: {
|
|
@@ -1036,6 +1036,40 @@ var DefaultThemeSFUI = function (colors) {
|
|
|
1036
1036
|
buttonDimension: 56,
|
|
1037
1037
|
},
|
|
1038
1038
|
},
|
|
1039
|
+
carouselComponent: {
|
|
1040
|
+
carouselPagination: {
|
|
1041
|
+
dotBackground: colors.greyscale3,
|
|
1042
|
+
activeDotBackground: colors.primary1,
|
|
1043
|
+
playBtnColor: colors.primary1,
|
|
1044
|
+
dotsWrapperBackground: colors.greyscale1,
|
|
1045
|
+
dotsWrapperBackgroundShadow: "".concat(colors.greyscale6, "05"),
|
|
1046
|
+
dotsWrapperAccentShadow: "".concat(colors.primary3, "1a"),
|
|
1047
|
+
},
|
|
1048
|
+
scrollbarBackground: colors.greyscale3,
|
|
1049
|
+
carouselArrows: {
|
|
1050
|
+
backgroundColor: colors.greyscale1,
|
|
1051
|
+
backgroundShadow: "".concat(colors.greyscale6, "0d"),
|
|
1052
|
+
accentShadow: "".concat(colors.primary3, "26"),
|
|
1053
|
+
iconColor: colors.primary1,
|
|
1054
|
+
hover: {
|
|
1055
|
+
backgroundColor: colors.greyscale1,
|
|
1056
|
+
borderColor: colors.primary1,
|
|
1057
|
+
iconColor: colors.primary1,
|
|
1058
|
+
},
|
|
1059
|
+
},
|
|
1060
|
+
viewAllProductsCard: {
|
|
1061
|
+
textColor: colors.primary1,
|
|
1062
|
+
iconColor: colors.greyscale1,
|
|
1063
|
+
iconBackgroundColor: colors.primary1,
|
|
1064
|
+
hover: {
|
|
1065
|
+
backgroundColor: colors.primary5,
|
|
1066
|
+
borderColor: colors.primary1,
|
|
1067
|
+
textColor: colors.primary2,
|
|
1068
|
+
iconColor: colors.greyscale1,
|
|
1069
|
+
iconBackgroundColor: colors.primary2,
|
|
1070
|
+
},
|
|
1071
|
+
},
|
|
1072
|
+
},
|
|
1039
1073
|
modal: {
|
|
1040
1074
|
header: {
|
|
1041
1075
|
mobileBackgroundColor: colors.greyscale2,
|