@thryveai/theme-interfaces 2.8.18 → 2.8.20
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 +90 -33
- package/dist/JSONSchemas/index.js +184 -92
- 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 -1
- package/dist/interfaces/shared-settings.interfaces.d.ts +5 -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 -0
- package/dist/storefront/commonSharedSettings.js +5 -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 -0
- package/dist/storefront/defaultSharedSettings.js +5 -2
- package/dist/storefront/productBadgeAttributes.d.ts +1 -1
- package/dist/storefront/productBadgeAttributes.js +3 -0
- package/package.json +1 -1
|
@@ -394,6 +394,7 @@ var DefaultConfigSFUI = {
|
|
|
394
394
|
SmallPromotion: false,
|
|
395
395
|
ThreeBannerContainer: false,
|
|
396
396
|
TwoBannerContainer: false,
|
|
397
|
+
PromotionsGallery: false,
|
|
397
398
|
Video: false,
|
|
398
399
|
VideoWithContent: false,
|
|
399
400
|
},
|
|
@@ -404,6 +405,7 @@ var DefaultConfigSFUI = {
|
|
|
404
405
|
scrollToTopButton: {
|
|
405
406
|
enabled: false,
|
|
406
407
|
percentOffset: { bottom: 15, right: 2 },
|
|
408
|
+
visibilityThreshold: 2000
|
|
407
409
|
},
|
|
408
410
|
clientRenderCoupons: true,
|
|
409
411
|
showClippedStateInCouponModal: false,
|
|
@@ -416,6 +418,9 @@ var DefaultConfigSFUI = {
|
|
|
416
418
|
skipConfirmation: false,
|
|
417
419
|
confirmationDelay: 5000,
|
|
418
420
|
},
|
|
421
|
+
carousel: {
|
|
422
|
+
showArrowsOnHoverOnly: true
|
|
423
|
+
}
|
|
419
424
|
},
|
|
420
425
|
welcomeModal: [],
|
|
421
426
|
performance: {
|
|
@@ -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
|
};
|