@thryveai/theme-interfaces 2.8.16 → 2.8.18
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 +33 -87
- package/dist/JSONSchemas/index.js +92 -181
- package/dist/index.d.ts +2 -2
- package/dist/interfaces/icons.interfaces.d.ts +1 -1
- package/dist/interfaces/retailer-settings.interfaces.d.ts +1 -9
- package/dist/interfaces/shared-settings.interfaces.d.ts +1 -5
- package/dist/mobile/interfaces/mobile-retailer-settings.interfaces.d.ts +1 -5
- package/dist/mobile/reactnative/MobileDefaultSettings.js +2 -3
- package/dist/storefront/commonSettingsStorefront.js +0 -4
- package/dist/storefront/commonSharedSettings.js +2 -5
- package/dist/storefront/contentEngineComponents.d.ts +0 -1
- package/dist/storefront/contentEngineComponents.js +0 -1
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSettingsStorefront.js +0 -4
- package/dist/storefront/defaultSharedSettings.js +2 -5
- package/dist/storefront/productBadgeAttributes.d.ts +1 -1
- package/dist/storefront/productBadgeAttributes.js +0 -3
- package/package.json +1 -1
|
@@ -394,7 +394,6 @@ var DefaultConfigSFUI = {
|
|
|
394
394
|
SmallPromotion: false,
|
|
395
395
|
ThreeBannerContainer: false,
|
|
396
396
|
TwoBannerContainer: false,
|
|
397
|
-
PromotionsGallery: false,
|
|
398
397
|
Video: false,
|
|
399
398
|
VideoWithContent: false,
|
|
400
399
|
},
|
|
@@ -417,9 +416,6 @@ var DefaultConfigSFUI = {
|
|
|
417
416
|
skipConfirmation: false,
|
|
418
417
|
confirmationDelay: 5000,
|
|
419
418
|
},
|
|
420
|
-
carousel: {
|
|
421
|
-
showArrowsOnHoverOnly: true
|
|
422
|
-
}
|
|
423
419
|
},
|
|
424
420
|
welcomeModal: [],
|
|
425
421
|
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";
|
|
3
3
|
export declare type IProductAttributeToIcons = {
|
|
4
4
|
[key in ProductAttributes]: ProductAttributeIcons;
|
|
5
5
|
};
|