@gem-sdk/components 2.1.13-staging.33 → 2.1.13-staging.34
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/cjs/product/components/ProductDescription.liquid.js +2 -4
- package/dist/cjs/stock-counter/components/StockCounter.liquid.js +38 -6
- package/dist/cjs/stock-counter/setting/StockCounter.js +5 -0
- package/dist/esm/product/components/ProductDescription.liquid.js +2 -4
- package/dist/esm/stock-counter/components/StockCounter.liquid.js +39 -7
- package/dist/esm/stock-counter/setting/StockCounter.js +5 -0
- package/dist/types/index.d.ts +37 -33
- package/package.json +1 -1
|
@@ -49,7 +49,6 @@ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
|
|
|
49
49
|
val: viewMoreText,
|
|
50
50
|
uid: builderProps?.uid,
|
|
51
51
|
settingId: 'viewMoreText',
|
|
52
|
-
isLiquid: true,
|
|
53
52
|
pageContext,
|
|
54
53
|
translate
|
|
55
54
|
});
|
|
@@ -57,7 +56,6 @@ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
|
|
|
57
56
|
val: viewLessText,
|
|
58
57
|
uid: builderProps?.uid,
|
|
59
58
|
settingId: 'viewLessText',
|
|
60
|
-
isLiquid: true,
|
|
61
59
|
pageContext,
|
|
62
60
|
translate
|
|
63
61
|
});
|
|
@@ -73,8 +71,8 @@ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
|
|
|
73
71
|
defaultStyle,
|
|
74
72
|
collapseStyle
|
|
75
73
|
}).replaceAll("'", ''')}'
|
|
76
|
-
data-viewMoreText="${
|
|
77
|
-
data-viewLessText="${
|
|
74
|
+
data-viewMoreText="${viewMoreTextDisplay}"
|
|
75
|
+
data-viewLessText="${viewLessTextDisplay}"
|
|
78
76
|
>
|
|
79
77
|
{%- unless product -%}
|
|
80
78
|
<p>Product not found</p>
|
|
@@ -7,9 +7,9 @@ var _const = require('../const.js');
|
|
|
7
7
|
var helpers = require('../helpers.js');
|
|
8
8
|
var helpers$1 = require('../../helpers.js');
|
|
9
9
|
|
|
10
|
-
const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
10
|
+
const StockCounter = ({ setting, styles, style, advanced, builderProps, pageContext })=>{
|
|
11
11
|
const { fullWidth, width, alignment, typography, typo, color, iconColor, textColor, displayProgressBar, progressBarHeight, roundedBorder, effect } = styles ?? {};
|
|
12
|
-
const { displayByDefault, scarcityThreshold = 0, remainingPercentage, showIcon, icon, template: templateString, outOfStockMessage, continueSelling, unlimitedQuantityMessage, hiddenCounterWhenOutOfStock } = setting ?? {};
|
|
12
|
+
const { displayByDefault, scarcityThreshold = 0, remainingPercentage, showIcon, icon, template: templateString, outOfStockMessage, continueSelling, unlimitedQuantityMessage, hiddenCounterWhenOutOfStock, translate } = setting ?? {};
|
|
13
13
|
const mainColor = textColor || 'brand';
|
|
14
14
|
const checkDisplay = ()=>{
|
|
15
15
|
if (displayByDefault) return true;
|
|
@@ -36,6 +36,34 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
|
36
36
|
]);
|
|
37
37
|
const appendTypoClass = core.composeTypographyClassName(styles?.typo, styles?.typography);
|
|
38
38
|
const appendTypoStyle = core.composeTypographyStyle(styles?.typo, styles?.typography);
|
|
39
|
+
const templateStringDisplay = helpers$1.getDynamicSourceLocales({
|
|
40
|
+
val: templateString,
|
|
41
|
+
uid: builderProps?.uid,
|
|
42
|
+
settingId: 'template',
|
|
43
|
+
pageContext,
|
|
44
|
+
translate
|
|
45
|
+
});
|
|
46
|
+
const outOfStockMessageDisplay = helpers$1.getDynamicSourceLocales({
|
|
47
|
+
val: outOfStockMessage,
|
|
48
|
+
uid: builderProps?.uid,
|
|
49
|
+
settingId: 'outOfStockMessage',
|
|
50
|
+
pageContext,
|
|
51
|
+
translate
|
|
52
|
+
});
|
|
53
|
+
const continueSellingDisplay = helpers$1.getDynamicSourceLocales({
|
|
54
|
+
val: continueSelling,
|
|
55
|
+
uid: builderProps?.uid,
|
|
56
|
+
settingId: 'continueSelling',
|
|
57
|
+
pageContext,
|
|
58
|
+
translate
|
|
59
|
+
});
|
|
60
|
+
const unlimitedQuantityMessageDisplay = helpers$1.getDynamicSourceLocales({
|
|
61
|
+
val: unlimitedQuantityMessage,
|
|
62
|
+
uid: builderProps?.uid,
|
|
63
|
+
settingId: 'unlimitedQuantityMessage',
|
|
64
|
+
pageContext,
|
|
65
|
+
translate
|
|
66
|
+
});
|
|
39
67
|
return core.template /* liquid */ `
|
|
40
68
|
{%- liquid
|
|
41
69
|
assign current_variant = variant
|
|
@@ -76,6 +104,10 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
|
76
104
|
data-id="${builderProps?.uid}"
|
|
77
105
|
data-visible="{{ should_display }}"
|
|
78
106
|
data-policy='{{ variant_policy_list }}'
|
|
107
|
+
data-template="${templateStringDisplay}"
|
|
108
|
+
data-outOfStockMessage="${outOfStockMessageDisplay}"
|
|
109
|
+
data-continueSelling="${continueSellingDisplay}"
|
|
110
|
+
data-unlimitedQuantityMessage="${unlimitedQuantityMessageDisplay}"
|
|
79
111
|
gp-setting='${JSON.stringify({
|
|
80
112
|
displayByDefault,
|
|
81
113
|
displayProgressBar,
|
|
@@ -121,13 +153,13 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
|
121
153
|
style="${appendTypoStyle}"
|
|
122
154
|
>
|
|
123
155
|
{% if inventory_management == null and inventory_quantity <= 0 %}
|
|
124
|
-
${helpers.transformHighlighTag(
|
|
156
|
+
${helpers.transformHighlighTag(unlimitedQuantityMessageDisplay ?? helpers$1.getStaticLocale('StockCounter', 'let_buy_now'), mainColor)}
|
|
125
157
|
{% elsif available == false %}
|
|
126
|
-
${helpers.transformHighlighTag(
|
|
158
|
+
${helpers.transformHighlighTag(outOfStockMessageDisplay || '', mainColor)}
|
|
127
159
|
{% elsif available and inventory_policy == '${_const.CONTINUE_SELLING_WHEN_OUT_OF_STOCK.toLowerCase()}' and inventory_quantity <= 0 %}
|
|
128
|
-
${helpers.transformHighlighTag(
|
|
160
|
+
${helpers.transformHighlighTag(continueSellingDisplay || '', mainColor)}
|
|
129
161
|
{% else %}
|
|
130
|
-
${helpers.transformHighlighTag(helpers.transformNumberTag(
|
|
162
|
+
${helpers.transformHighlighTag(helpers.transformNumberTag(templateStringDisplay || '', mainColor, `{{ inventory_quantity }}`), mainColor)}
|
|
131
163
|
{% endif %}
|
|
132
164
|
</p>
|
|
133
165
|
</div>
|
|
@@ -101,6 +101,11 @@ const config = {
|
|
|
101
101
|
type: 'textarea',
|
|
102
102
|
autoHeight: true,
|
|
103
103
|
default: '<mark>HURRY!</mark> LET BUY NOW'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
id: 'translate',
|
|
107
|
+
type: 'input',
|
|
108
|
+
default: 'template,outOfStockMessage,continueSelling,unlimitedQuantityMessage'
|
|
104
109
|
}
|
|
105
110
|
]
|
|
106
111
|
},
|
|
@@ -45,7 +45,6 @@ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
|
|
|
45
45
|
val: viewMoreText,
|
|
46
46
|
uid: builderProps?.uid,
|
|
47
47
|
settingId: 'viewMoreText',
|
|
48
|
-
isLiquid: true,
|
|
49
48
|
pageContext,
|
|
50
49
|
translate
|
|
51
50
|
});
|
|
@@ -53,7 +52,6 @@ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
|
|
|
53
52
|
val: viewLessText,
|
|
54
53
|
uid: builderProps?.uid,
|
|
55
54
|
settingId: 'viewLessText',
|
|
56
|
-
isLiquid: true,
|
|
57
55
|
pageContext,
|
|
58
56
|
translate
|
|
59
57
|
});
|
|
@@ -69,8 +67,8 @@ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
|
|
|
69
67
|
defaultStyle,
|
|
70
68
|
collapseStyle
|
|
71
69
|
}).replaceAll("'", ''')}'
|
|
72
|
-
data-viewMoreText="${
|
|
73
|
-
data-viewLessText="${
|
|
70
|
+
data-viewMoreText="${viewMoreTextDisplay}"
|
|
71
|
+
data-viewLessText="${viewLessTextDisplay}"
|
|
74
72
|
>
|
|
75
73
|
{%- unless product -%}
|
|
76
74
|
<p>Product not found</p>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { composeMemo, composeTypographyV2, composeTypography, genVariable, getShortName, composeTypographyClassName, composeTypographyStyle, template, makeStyleResponsive, makeWidth, makeStyle, getSingleColorVariable, RenderIf, cls, isLocalEnv, baseAssetURL } from '@gem-sdk/core';
|
|
2
2
|
import { CONTINUE_SELLING_WHEN_OUT_OF_STOCK } from '../const.js';
|
|
3
3
|
import { convertSizeToWidth, transformHighlighTag, transformNumberTag } from '../helpers.js';
|
|
4
|
-
import { getSettingPreloadData, getStaticLocale } from '../../helpers.js';
|
|
4
|
+
import { getDynamicSourceLocales, getSettingPreloadData, getStaticLocale } from '../../helpers.js';
|
|
5
5
|
|
|
6
|
-
const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
6
|
+
const StockCounter = ({ setting, styles, style, advanced, builderProps, pageContext })=>{
|
|
7
7
|
const { fullWidth, width, alignment, typography, typo, color, iconColor, textColor, displayProgressBar, progressBarHeight, roundedBorder, effect } = styles ?? {};
|
|
8
|
-
const { displayByDefault, scarcityThreshold = 0, remainingPercentage, showIcon, icon, template: templateString, outOfStockMessage, continueSelling, unlimitedQuantityMessage, hiddenCounterWhenOutOfStock } = setting ?? {};
|
|
8
|
+
const { displayByDefault, scarcityThreshold = 0, remainingPercentage, showIcon, icon, template: templateString, outOfStockMessage, continueSelling, unlimitedQuantityMessage, hiddenCounterWhenOutOfStock, translate } = setting ?? {};
|
|
9
9
|
const mainColor = textColor || 'brand';
|
|
10
10
|
const checkDisplay = ()=>{
|
|
11
11
|
if (displayByDefault) return true;
|
|
@@ -32,6 +32,34 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
|
32
32
|
]);
|
|
33
33
|
const appendTypoClass = composeTypographyClassName(styles?.typo, styles?.typography);
|
|
34
34
|
const appendTypoStyle = composeTypographyStyle(styles?.typo, styles?.typography);
|
|
35
|
+
const templateStringDisplay = getDynamicSourceLocales({
|
|
36
|
+
val: templateString,
|
|
37
|
+
uid: builderProps?.uid,
|
|
38
|
+
settingId: 'template',
|
|
39
|
+
pageContext,
|
|
40
|
+
translate
|
|
41
|
+
});
|
|
42
|
+
const outOfStockMessageDisplay = getDynamicSourceLocales({
|
|
43
|
+
val: outOfStockMessage,
|
|
44
|
+
uid: builderProps?.uid,
|
|
45
|
+
settingId: 'outOfStockMessage',
|
|
46
|
+
pageContext,
|
|
47
|
+
translate
|
|
48
|
+
});
|
|
49
|
+
const continueSellingDisplay = getDynamicSourceLocales({
|
|
50
|
+
val: continueSelling,
|
|
51
|
+
uid: builderProps?.uid,
|
|
52
|
+
settingId: 'continueSelling',
|
|
53
|
+
pageContext,
|
|
54
|
+
translate
|
|
55
|
+
});
|
|
56
|
+
const unlimitedQuantityMessageDisplay = getDynamicSourceLocales({
|
|
57
|
+
val: unlimitedQuantityMessage,
|
|
58
|
+
uid: builderProps?.uid,
|
|
59
|
+
settingId: 'unlimitedQuantityMessage',
|
|
60
|
+
pageContext,
|
|
61
|
+
translate
|
|
62
|
+
});
|
|
35
63
|
return template /* liquid */ `
|
|
36
64
|
{%- liquid
|
|
37
65
|
assign current_variant = variant
|
|
@@ -72,6 +100,10 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
|
72
100
|
data-id="${builderProps?.uid}"
|
|
73
101
|
data-visible="{{ should_display }}"
|
|
74
102
|
data-policy='{{ variant_policy_list }}'
|
|
103
|
+
data-template="${templateStringDisplay}"
|
|
104
|
+
data-outOfStockMessage="${outOfStockMessageDisplay}"
|
|
105
|
+
data-continueSelling="${continueSellingDisplay}"
|
|
106
|
+
data-unlimitedQuantityMessage="${unlimitedQuantityMessageDisplay}"
|
|
75
107
|
gp-setting='${JSON.stringify({
|
|
76
108
|
displayByDefault,
|
|
77
109
|
displayProgressBar,
|
|
@@ -117,13 +149,13 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
|
|
|
117
149
|
style="${appendTypoStyle}"
|
|
118
150
|
>
|
|
119
151
|
{% if inventory_management == null and inventory_quantity <= 0 %}
|
|
120
|
-
${transformHighlighTag(
|
|
152
|
+
${transformHighlighTag(unlimitedQuantityMessageDisplay ?? getStaticLocale('StockCounter', 'let_buy_now'), mainColor)}
|
|
121
153
|
{% elsif available == false %}
|
|
122
|
-
${transformHighlighTag(
|
|
154
|
+
${transformHighlighTag(outOfStockMessageDisplay || '', mainColor)}
|
|
123
155
|
{% elsif available and inventory_policy == '${CONTINUE_SELLING_WHEN_OUT_OF_STOCK.toLowerCase()}' and inventory_quantity <= 0 %}
|
|
124
|
-
${transformHighlighTag(
|
|
156
|
+
${transformHighlighTag(continueSellingDisplay || '', mainColor)}
|
|
125
157
|
{% else %}
|
|
126
|
-
${transformHighlighTag(transformNumberTag(
|
|
158
|
+
${transformHighlighTag(transformNumberTag(templateStringDisplay || '', mainColor, `{{ inventory_quantity }}`), mainColor)}
|
|
127
159
|
{% endif %}
|
|
128
160
|
</p>
|
|
129
161
|
</div>
|
|
@@ -97,6 +97,11 @@ const config = {
|
|
|
97
97
|
type: 'textarea',
|
|
98
98
|
autoHeight: true,
|
|
99
99
|
default: '<mark>HURRY!</mark> LET BUY NOW'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
id: 'translate',
|
|
103
|
+
type: 'input',
|
|
104
|
+
default: 'template,outOfStockMessage,continueSelling,unlimitedQuantityMessage'
|
|
100
105
|
}
|
|
101
106
|
]
|
|
102
107
|
},
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3666,7 +3666,7 @@ type IconListHozProps = BasePropsWrap<{
|
|
|
3666
3666
|
};
|
|
3667
3667
|
declare const IconListHoz$1: React$1.FC<IconListHozProps>;
|
|
3668
3668
|
|
|
3669
|
-
type StockCounterProps
|
|
3669
|
+
type StockCounterProps = BaseProps<{
|
|
3670
3670
|
displayByDefault?: boolean;
|
|
3671
3671
|
scarcityThreshold?: number;
|
|
3672
3672
|
remainingPercentage?: number;
|
|
@@ -3695,10 +3695,10 @@ type StockCounterProps$1 = BaseProps<{
|
|
|
3695
3695
|
roundedBorder?: boolean;
|
|
3696
3696
|
effect?: boolean;
|
|
3697
3697
|
}>;
|
|
3698
|
-
declare const StockCounter$1: React.FC<StockCounterProps
|
|
3698
|
+
declare const StockCounter$1: React.FC<StockCounterProps>;
|
|
3699
3699
|
|
|
3700
3700
|
declare const _default$l: {
|
|
3701
|
-
StockCounter: _gem_sdk_core.ComponentSetting<StockCounterProps
|
|
3701
|
+
StockCounter: _gem_sdk_core.ComponentSetting<StockCounterProps>;
|
|
3702
3702
|
};
|
|
3703
3703
|
|
|
3704
3704
|
type Setting$5 = {
|
|
@@ -5123,7 +5123,7 @@ declare const _default$1: {
|
|
|
5123
5123
|
FormDropdown: React.ComponentType<FormDropdownProps>;
|
|
5124
5124
|
FormCheckbox: React.ComponentType<FormCheckboxProps>;
|
|
5125
5125
|
Dialog: React.ComponentType<DialogProps$1>;
|
|
5126
|
-
StockCounter: React.ComponentType<StockCounterProps
|
|
5126
|
+
StockCounter: React.ComponentType<StockCounterProps>;
|
|
5127
5127
|
IconListHoz: React.ComponentType<IconListHozProps>;
|
|
5128
5128
|
IconListItemHoz: React.ComponentType<IconListItemProps$2>;
|
|
5129
5129
|
CSSCode: React.ComponentType<CSSCodeProps>;
|
|
@@ -6431,35 +6431,39 @@ declare const HeroBanner: ({ builderAttrs, builderProps, setting, styles, style,
|
|
|
6431
6431
|
|
|
6432
6432
|
declare const CSSCode: ({ setting, style, advanced, builderAttrs, builderProps }: CSSCodeProps) => string;
|
|
6433
6433
|
|
|
6434
|
-
|
|
6435
|
-
displayByDefault?: boolean;
|
|
6436
|
-
hiddenCounterWhenOutOfStock?: boolean;
|
|
6437
|
-
scarcityThreshold?: number;
|
|
6438
|
-
remainingPercentage?: number;
|
|
6439
|
-
remainingQuantity?: number;
|
|
6440
|
-
showIcon?: boolean;
|
|
6441
|
-
icon?: string;
|
|
6442
|
-
template?: string;
|
|
6443
|
-
outOfStockMessage?: string;
|
|
6444
|
-
continueSelling?: string;
|
|
6445
|
-
unlimitedQuantityMessage?: string;
|
|
6446
|
-
translate?: string;
|
|
6434
|
+
declare const StockCounter: ({ setting, styles, style, advanced, builderProps, pageContext, }: _gem_sdk_core.BaseProps<{
|
|
6435
|
+
displayByDefault?: boolean | undefined;
|
|
6436
|
+
hiddenCounterWhenOutOfStock?: boolean | undefined;
|
|
6437
|
+
scarcityThreshold?: number | undefined;
|
|
6438
|
+
remainingPercentage?: number | undefined;
|
|
6439
|
+
remainingQuantity?: number | undefined;
|
|
6440
|
+
showIcon?: boolean | undefined;
|
|
6441
|
+
icon?: string | undefined;
|
|
6442
|
+
template?: string | undefined;
|
|
6443
|
+
outOfStockMessage?: string | undefined;
|
|
6444
|
+
continueSelling?: string | undefined;
|
|
6445
|
+
unlimitedQuantityMessage?: string | undefined;
|
|
6446
|
+
translate?: string | undefined;
|
|
6447
6447
|
}, {
|
|
6448
|
-
fullWidth?:
|
|
6449
|
-
width?:
|
|
6450
|
-
alignment?:
|
|
6448
|
+
fullWidth?: Partial<Record<_gem_sdk_core.NameDevices, boolean>> | undefined;
|
|
6449
|
+
width?: Partial<Record<_gem_sdk_core.NameDevices, string>> | undefined;
|
|
6450
|
+
alignment?: Partial<Record<_gem_sdk_core.NameDevices, AlignProp>> | undefined;
|
|
6451
6451
|
/** deprecated */
|
|
6452
|
-
typography?: TypographySetting;
|
|
6453
|
-
typo?: TypographySettingV2;
|
|
6454
|
-
color?: ColorValueType;
|
|
6455
|
-
iconColor?: ColorValueType;
|
|
6456
|
-
textColor?: ColorValueType;
|
|
6457
|
-
displayProgressBar?: boolean;
|
|
6458
|
-
progressBarHeight?:
|
|
6459
|
-
roundedBorder?: boolean;
|
|
6460
|
-
effect?: boolean;
|
|
6461
|
-
}
|
|
6462
|
-
|
|
6452
|
+
typography?: TypographySetting | undefined;
|
|
6453
|
+
typo?: TypographySettingV2 | undefined;
|
|
6454
|
+
color?: ColorValueType | undefined;
|
|
6455
|
+
iconColor?: ColorValueType | undefined;
|
|
6456
|
+
textColor?: ColorValueType | undefined;
|
|
6457
|
+
displayProgressBar?: boolean | undefined;
|
|
6458
|
+
progressBarHeight?: Partial<Record<_gem_sdk_core.NameDevices, string>> | undefined;
|
|
6459
|
+
roundedBorder?: boolean | undefined;
|
|
6460
|
+
effect?: boolean | undefined;
|
|
6461
|
+
}, Record<string, any>> & {
|
|
6462
|
+
builderAttrs?: Record<string, any> | undefined;
|
|
6463
|
+
style?: React.CSSProperties | undefined;
|
|
6464
|
+
} & {
|
|
6465
|
+
pageContext: PageContext;
|
|
6466
|
+
}) => string;
|
|
6463
6467
|
|
|
6464
6468
|
/**
|
|
6465
6469
|
* The `ShopPayButton` component renders a button that redirects to the Shop Pay checkout.
|
|
@@ -7690,7 +7694,7 @@ declare const _default: {
|
|
|
7690
7694
|
CSSCode: ({ setting, style, advanced, builderAttrs, builderProps, children, }: CSSCodeProps) => React.JSX.Element;
|
|
7691
7695
|
IconListHoz: React.FC<IconListHozProps>;
|
|
7692
7696
|
IconListItemHoz: React.FC<IconListItemProps$2>;
|
|
7693
|
-
StockCounter: React.FC<StockCounterProps
|
|
7697
|
+
StockCounter: React.FC<StockCounterProps>;
|
|
7694
7698
|
Dialog: ({ setting, children, builderProps, builderAttrs, style }: DialogProps$1) => React.JSX.Element;
|
|
7695
7699
|
Newsletter: ({ children }: NewsletterProps) => React.JSX.Element;
|
|
7696
7700
|
ContactForm: ({ children }: NewsletterProps) => React.JSX.Element;
|
|
@@ -7811,4 +7815,4 @@ declare const getInsertLinkData: (defaultWrap: string, setting?: {
|
|
|
7811
7815
|
};
|
|
7812
7816
|
declare const replaceLinkData: (text?: string, isTranslate?: boolean) => string | undefined;
|
|
7813
7817
|
|
|
7814
|
-
export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, AccordionItemProps, AccordionProps, AftershipEmailMarketingsms$1 as AftershipEmailMarketingsms, AftershipEmailMarketingsmsProps, AirProductReviewsAppUgc$1 as AirProductReviewsAppUgc, AirProductReviewsAppUgcProps, AliReviews$1 as AliReviews, AliReviewsProps, AlsoBoughtCbb$1 as AlsoBoughtCbb, AlsoBoughtCbbProps, AppointmentBookingCowlendar$1 as AppointmentBookingCowlendar, AppointmentBookingCowlendarProps, AppstleSubscriptions$1 as AppstleSubscriptions, AppstleSubscriptionsProps, ArticleAuthor$1 as ArticleAuthor, ArticleCategory$1 as ArticleCategory, ArticleContent$1 as ArticleContent, ArticleDate$1 as ArticleDate, ArticleExcerpt$1 as ArticleExcerpt, ArticleImage$1 as ArticleImage, ArticleList$1 as ArticleList, ArticlePagination$1 as ArticlePagination, ArticleReadMore$1 as ArticleReadMore, ArticleTag$1 as ArticleTag, ArticleTitle$1 as ArticleTitle, BgImage as BackgroundImage, BackgroundImageProps, BasicHeader, BestBuyFulfillment$1 as BestBuyFulfillment, BestBuyFulfillmentProps, BfSizeChartSizeGuide$1 as BfSizeChartSizeGuide, BfSizeChartSizeGuideProps, BirdChime$1 as BirdChime, BirdChimeProps, Bogos$1 as Bogos, BogosProps, BoldProductOptions$1 as BoldProductOptions, BoldProductOptionsProps, BoldSubscriptions$1 as BoldSubscriptions, BoldSubscriptionsProps, BonLoyaltyRewardsReferrals$1 as BonLoyaltyRewardsReferrals, BonLoyaltyRewardsReferralsProps, BoostAISearchDiscovery$1 as BoostAISearchDiscovery, BoostAISearchDiscoveryProps, Breadcrumb$1 as Breadcrumb, Breadcrumb$1 as BreadcrumbProps, Bundler$1 as Bundler, BundlerProps, Button$2 as Button, ButtonProps, CSSCode$1 as CSSCode, CSSCodeProps, Carousel$1 as Carousel, CarouselItem$1 as CarouselItem, CarouselItemProps, CarouselProps, CarouselSettings, CarouselStyles, Cart, CartCheckout, CartDiscount, CartLineAttribute, CartLineImage, CartLinePrice, CartLineVariant, CartList, CartOrderNote, CartProps, CartTotalItem, CartTotalPrice, CheckoutNow, CleanSizeChartProps, CleanSizeCharts$1 as CleanSizeCharts, Column$1 as Col, ColProps$1 as ColProps, CollectionBanner$1 as CollectionBanner, CollectionBannerProps, CollectionDescription$1 as CollectionDescription, CollectionDescriptionProps, CollectionPaginator$1 as CollectionPaginator, CollectionPaginatorProps, CollectionTitle$1 as CollectionTitle, CollectionTitleProps, CollectionToolbar$1 as CollectionToolbar, CollectionToolbarProps, ContactForm$1 as ContactForm, Countdown$1 as Countdown, CountdownProps, Coupon$1 as Coupon, CouponList, CouponProps, CrossSellCartUpsell$1 as CrossSellCartUpsell, CrossSellCartUpsellProps, CustomProductOptionsVariant$1 as CustomProductOptionsVariant, CustomProductOptionsVariantProps, DataVideoType, DesktopMenu, Dialog$1 as Dialog, DiscountInput, DiscountyBulkDiscountSales$1 as DiscountyBulkDiscountSales, DiscountyBulkDiscountSalesProps, DynamicCheckout$1 as DynamicCheckout, DynamicCheckoutProps, ELEMENT_Z_INDEX, EasifyProductOptions$1 as EasifyProductOptions, EasifyProductOptionsProps, EasyBundleBuilderSkailama$1 as EasyBundleBuilderSkailama, EasyBundleBuilderSkailamaProps, EasySell as EasySellCOD, EasySellProps, EssentialAnnouncementBar$1 as EssentialAnnouncementBar, EssentialAnnouncementBarProps, EssentialCountdownTimerBar$1 as EssentialCountdownTimerBar, EssentialCountdownTimerBarProps, EstimateDate$1 as EstimateDate, EstimateDateProps, EstimatedDeliveryDatePlus$1 as EstimatedDeliveryDatePlus, EstimatedDeliveryDatePlusProps, FastBundleBundlesDiscounts$1 as FastBundleBundlesDiscounts, FastBundleBundlesDiscountsProps, FeraReviews$1 as FeraReviews, FeraReviewsProps, FileUpload$1 as FileUpload, FileUploadProps, FirePush$1 as FirePush, FirePushProps, FlyBundlesUpsellsFbt$1 as FlyBundlesUpsellsFbt, FlyBundlesUpsellsFbtProps, FordeerProductLabels$1 as FordeerProductLabels, FordeerProductLabelsProps, FormCheckbox, FormCheckboxProps, FormDropdown$1 as FormDropdown, FormDropdownProps, FormEmail$1 as FormEmail, FormEmailProps, FormTextArea as FormTextarea, FrequentlyBoughtTogether$1 as FrequentlyBoughtTogether, FrequentlyBoughtTogetherProps, GloColorSwatchvariantImage$1 as GloColorSwatchvariantImage, GloColorSwatchvariantImageProps, GloboProductOptionsVariant$1 as GloboProductOptionsVariant, GloboProductOptionsVariantProps, GoogleReviewsByReputon$1 as GoogleReviewsByReputon, GoogleReviewsByReputonProps, Growave$1 as Growave, GrowaveProps, Header, HeaderProps, Heading$1 as Heading, HeadingProps, HeroBanner$1 as HeroBanner, HeroBannerProps, HextomCountdownTimerBar$1 as HextomCountdownTimerBar, HextomCountdownTimerBarProps, HextomFreeShippingBar$1 as HextomFreeShippingBar, HextomFreeShippingBarProps, HulkFormBuilder$1 as HulkFormBuilder, HulkFormBuilderProps, HulkProductOptions$1 as HulkProductOptions, HulkProductOptionsProps, Icon$1 as Icon, IconList$1 as IconList, IconListHoz$1 as IconListHoz, IconListHozItem, IconListHozProps, IconListItem$1 as IconListItem, IconListItemProps$3 as IconListItemProps, IconListProps$2 as IconListProps, IconListV2$1 as IconListV2, IconProps$1 as IconProps, Image$1 as Image, ImageComparison$1 as ImageComparison, ImageDetection, ImageDetectionProps, ImageProps, InfiniteOptions$1 as InfiniteOptions, InfiniteOptionsProps, Input, InputProps, Instafeed$1 as Instafeed, InstafeedProps, InstantJudgemeReviews, InstantJudgemeReviewsProps, InstantKlaviyo, InstantKlaviyoProps, InstantLooxReviews, InstantLooxReviewsProps, InstantYotpoLoyalty, InstantYotpoLoyaltyProps, InstasellShoppableInstagram$1 as InstasellShoppableInstagram, InstasellShoppableInstagramProps, JudgemeReviews$1 as JudgemeReviews, JudgemeReviewsProps, JunipProductReviewsUgc$1 as JunipProductReviewsUgc, JunipProductReviewsUgcProps, KachingBundles$1 as KachingBundles, KachingBundlesProps, KingProductOptions$1 as KingProductOptions, KingProductOptionsProps, KiteFreeGiftDiscount$1 as KiteFreeGiftDiscount, KiteFreeGiftDiscountProps, KlarnaMessaging$1 as KlarnaMessaging, KlarnaMessagingProps, Klaviyo$1 as Klaviyo, KlaviyoProps, KoalaBundleQuantityDiscount$1 as KoalaBundleQuantityDiscount, KoalaBundleQuantityDiscountProps, LaiProductReviews$1 as LaiProductReviews, LaiProductReviewsProps, Line$2 as Line, LineProps$1 as LineProps, Link, LinkProps$1 as LinkProps, LoloyalLoyaltyReferrals$1 as LoloyalLoyaltyReferrals, LoloyalLoyaltyReferralsProps, LoopSubscriptions$1 as LoopSubscriptions, LoopSubscriptionsProps, LooxReviews$1 as LooxReviews, LooxReviewsProps, Marquee$1 as Marquee, _default$2 as MarqueeItem, MarqueeItemProps, MarqueeProps, MaxbundleProductBundles$1 as MaxbundleProductBundles, MaxbundleProductBundlesProps, MbcBundleVolumeDiscount$1 as MbcBundleVolumeDiscount, MbcBundleVolumeDiscountProps, Menu, MenuProps, MobileMenu, Modal, ModernHeader, MyappgurusProductReviews$1 as MyappgurusProductReviews, MyappgurusProductReviewsProps, Newsletter$1 as Newsletter, NewsletterProps, Notify as Notice, NotificationAPI, NotificationConfig, NotifyBackInStockPreOrder$1 as NotifyBackInStockPreOrder, NotifyBackInStockPreOrderProps, OkendoReviewsLoyalty$1 as OkendoReviewsLoyalty, OkendoReviewsLoyaltyProps, Omnisend$1 as Omnisend, OmnisendProps, Opinew$1 as Opinew, OpinewProps, Pagination, PaginationProps, ParcelPanel$1 as ParcelPanel, ParcelPanelProps, PickyStory$1 as PickyStory, PickyStoryProps, PostPurchaseAcceptButton, PostPurchaseAcceptButtonProps, PostPurchaseAdvancedList, PostPurchaseAdvancedListItem, PostPurchaseAdvancedListProps, Button$1 as PostPurchaseButton, PostPurchaseButtonProps, CalloutBox as PostPurchaseCalloutBox, CalloutText as PostPurchaseCalloutText, PostPurchaseCountdownTimer, PostPurchaseHeading, PostPurchaseImage, PostPurchaseImageProps, Line$1 as PostPurchaseLine, PostPurchaseLineProps, PostPurchaseProductDescription, PostPurchaseProductDescriptionProps, PostPurchaseProductDiscountTag, PostPurchaseProductDiscountTagProps, PostPurchaseProductImages, PostPurchaseProductImagesProps, PostPurchaseProductOffer, PostPurchaseProductOfferProps, PostPurchaseProductPrice, PostPurchaseProductPriceBreakdown, PostPurchaseProductPriceBreakdownProps, PostPurchaseProductPriceProps, PostPurchaseProductQuantity, PostPurchaseProductQuantityProps, PostPurchaseProductTitle, PostPurchaseProductTitleProps, PostPurchaseProductVariants, PostPurchaseProductVariantsProps, Text$1 as PostPurchaseText, PostPurchaseTextProps, PowerfulContactFormBuilder$1 as PowerfulContactFormBuilder, PowerfulContactFormBuilderProps, PowrContactFormBuilder$1 as PowrContactFormBuilder, PowrContactFormBuilderProps, PreorderNowPreOrderPq$1 as PreorderNowPreOrderPq, PreorderNowPreOrderPqProps, PreorderNowWodPresale$1 as PreorderNowWodPresale, PreorderNowWodPresaleProps, Product$1 as Product, ProductBadge$1 as ProductBadge, ProductBadgeProps, ProductBundleDiscount$1 as ProductBundleDiscount, ProductBundleDiscountItem$1 as ProductBundleDiscountItem, ProductButton$1 as ProductButton, ProductButtonProps, ProductDescription$1 as ProductDescription, ProductDescriptionProps, ProductImages$2 as ProductImages, ProductImagesProps, ProductImagesV2, ProductList$1 as ProductList, ProductList$1 as ProductListProps, ProductOptionsCustomizer$1 as ProductOptionsCustomizer, ProductOptionsCustomizerProps, ProductOptionsVariantOption$1 as ProductOptionsVariantOption, ProductOptionsVariantOptionProps, ProductPrice$1 as ProductPrice, ProductPriceProps, ProductPropertiesProps, ProductProperties$1 as ProductPropertyInput, ProductProps, ProductQuantity$1 as ProductQuantity, ProductQuantityBreakItemProps, ProductQuantityBreakProps, ProductQuantityProps, QuickView as ProductQuickView, ProductReviews$1 as ProductReviews, ProductReviewsProps, ProductSku$1 as ProductSku, ProductTag$1 as ProductTag, ProductTagProps, ProductTitle$1 as ProductTitle, ProductTitleProps, ProductVariants$1 as ProductVariants, ProductVariantsProps, ProductVendor$1 as ProductVendor, ProductViewMore$1 as ProductViewMore, ProductViewMoreProps, PumperBundlesVolumeDiscount$1 as PumperBundlesVolumeDiscount, PumperBundlesVolumeDiscountProps, PushOwl$1 as PushOwl, PushOwlProps, QikifyUpsell$1 as QikifyUpsell, QikifyUpsellProps, Radio, RadioProps, RapiBundleQuantityBreaks$1 as RapiBundleQuantityBreaks, RapiBundleQuantityBreaksProps, RechargeSubscriptions$1 as RechargeSubscriptions, RechargeSubscriptionsProps, RecurpaySubscriptionApp$1 as RecurpaySubscriptionApp, RecurpaySubscriptionAppProps, Releasit$1 as Releasit, ReleasitProps, RequestQuoteHidePrice$1 as RequestQuoteHidePrice, RequestQuoteHidePriceProps, ReviewxpoProductReviewsApp$1 as ReviewxpoProductReviewsApp, ReviewxpoProductReviewsAppProps, Rivyo$1 as Rivyo, RivyoProps, Root$1 as Root, RootProps$1 as RootProps, Row$1 as Row, RowProps$1 as RowProps, Ryviu$1 as Ryviu, RyviuProps, SealSubscriptions$1 as SealSubscriptions, SealSubscriptionsProps, Section$1 as Section, SegunoEmailMarketing$1 as SegunoEmailMarketing, SegunoEmailMarketingProps, Select, SelectProps, Selleasy$1 as Selleasy, SelleasyProps, SeoantTrustBadgesIcon$1 as SeoantTrustBadgesIcon, SeoantTrustBadgesIconProps, ShopPayButton$1 as ShopPayButton, ShopPayButtonProps, ShopifyForms$1 as ShopifyForms, ShopifyFormsProps, ShopifySubscriptions$1 as ShopifySubscriptions, ShopifySubscriptionsProps, SimpleBundlesKits$1 as SimpleBundlesKits, SimpleBundlesKitsProps, SkioSubscriptionsYcS20$1 as SkioSubscriptionsYcS20, SkioSubscriptionsYcS20Props, SkuProps, SmartSearchBarAndFilters$1 as SmartSearchBarAndFilters, SmartSearchBarAndFiltersProps, SproutPlantTreesGrowSales$1 as SproutPlantTreesGrowSales, SproutPlantTreesGrowSalesProps, Stamped$1 as Stamped, StampedProps, StellarDeliveryDatePickup$1 as StellarDeliveryDatePickup, StellarDeliveryDatePickupProps, Sticky$1 as Sticky, StickyProps, StockCounter$1 as StockCounter, StockCounterProps$1 as StockCounterProps, SubifySubscriptionsApp$1 as SubifySubscriptionsApp, SubifySubscriptionsAppProps, SubmitButton$1 as SubmitButton, SubmitButtonProps, TabItem$1 as TabItem, TabItemProps, Tabs$1 as Tabs, TabsProps, TagembedSocialPostReview$1 as TagembedSocialPostReview, TagembedSocialPostReviewProps, TagshopShoppableVideosUgc$1 as TagshopShoppableVideosUgc, TagshopShoppableVideosUgcProps, TeeinblueProductPersonalizer$1 as TeeinblueProductPersonalizer, TeeinblueProductPersonalizerProps, Text$2 as Text, TextAreaProps, TextField$1 as TextField, TextFieldProps, TextProps$1 as TextProps, TextArea as Textarea, TextareaProps, ThirdPartySlot$1 as ThirdPartySlot, TrustBadgesBear$1 as TrustBadgesBear, TrustBadgesBearProps, TrustMe$1 as TrustMe, TrustMeProps, TrustedsiteTrustBadges$1 as TrustedsiteTrustBadges, TrustedsiteTrustBadgesProps, Trustoo$1 as Trustoo, TrustooProps, TrustreviewsProductReviews$1 as TrustreviewsProductReviews, TrustreviewsProductReviewsProps, TrustshopProductReviews$1 as TrustshopProductReviews, TrustshopProductReviewsProps, UltimateSalesBoost$1 as UltimateSalesBoost, UltimateSalesBoostProps, UnlimitedBundlesDiscounts$1 as UnlimitedBundlesDiscounts, UnlimitedBundlesDiscountsProps, VendorProps, Video$1 as Video, Vitals$1 as Vitals, VitalsProps, WhatmoreShoppableVideosreel$1 as WhatmoreShoppableVideosreel, WhatmoreShoppableVideosreelProps, WideBundle$1 as WideBundle, WideBundleProps, Wiser$1 as Wiser, WiserProps, WishlistKing$1 as WishlistKing, WishlistKingProps, WishlistPlus$1 as WishlistPlus, WishlistPlusProps, YotpoLoyalty, YotpoLoyaltyProps, YotpoReviews$1 as YotpoReviews, YotpoReviewsProps, _default$R as accordionSetting, _default$4 as articleListSetting, _default$p as bannerSetting, _default$Q as breadcrumbSetting, _default as builderComponent, _default$P as buttonSetting, _default$N as carouselSetting, _default$K as cartSetting, _default$n as codeSetting, _default$J as collectionSetting, _default$j as contactFormSetting, _default$I as countdownSetting, _default$O as couponSetting, _default$k as dialogSetting, _default$5 as estimateDeliverySetting, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, _default$L as gridSetting, _default$G as headerSetting, _default$H as headingSetting, _default$m as iconListHozSetting, _default$o as iconListSetting, _default$e as iconListSettingV2, _default$F as iconSetting, _default$h as imageComparisonSetting, _default$i as imageDetectionSetting, _default$M as imageSetting, _default$E as inputSetting, isHexTransparent, isTransparentColor, isTransparentRGBA, _default$D as lineSetting, _default$C as linkSetting, index_liquid as liquidComponents, _default$3 as marqueeSetting, _default$s as menuSetting, _default$B as modalSetting, _default$1 as nextComponent, openConfirm, _default$A as paginationSetting, _default$7 as postPurchaseAdvancedListSetting, _default$b as postPurchaseButtonSetting, _default$9 as postPurchaseCalloutBoxSetting, _default$6 as postPurchaseCountdownTimerSetting, _default$c as postPurchaseImageSetting, _default$8 as postPurchaseLineSetting, postPurchaseProduct1Col, postPurchaseProduct2Col, postPurchaseProductDefault, _default$a as postPurchaseProductSetting, _default$d as postPurchaseTextSetting, _default$z as productSetting, _default$x as radioSetting, replaceLinkData, _default$w as selectSetting, _default$f as stickySetting, _default$l as stockCounterSetting, _default$v as tabSetting, _default$y as textSetting, _default$u as textareaSetting, _default$q as thirdPartyInstantSetting, _default$r as thirdPartySetting, _default$g as thirdPartySlotSetting, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
|
|
7818
|
+
export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, AccordionItemProps, AccordionProps, AftershipEmailMarketingsms$1 as AftershipEmailMarketingsms, AftershipEmailMarketingsmsProps, AirProductReviewsAppUgc$1 as AirProductReviewsAppUgc, AirProductReviewsAppUgcProps, AliReviews$1 as AliReviews, AliReviewsProps, AlsoBoughtCbb$1 as AlsoBoughtCbb, AlsoBoughtCbbProps, AppointmentBookingCowlendar$1 as AppointmentBookingCowlendar, AppointmentBookingCowlendarProps, AppstleSubscriptions$1 as AppstleSubscriptions, AppstleSubscriptionsProps, ArticleAuthor$1 as ArticleAuthor, ArticleCategory$1 as ArticleCategory, ArticleContent$1 as ArticleContent, ArticleDate$1 as ArticleDate, ArticleExcerpt$1 as ArticleExcerpt, ArticleImage$1 as ArticleImage, ArticleList$1 as ArticleList, ArticlePagination$1 as ArticlePagination, ArticleReadMore$1 as ArticleReadMore, ArticleTag$1 as ArticleTag, ArticleTitle$1 as ArticleTitle, BgImage as BackgroundImage, BackgroundImageProps, BasicHeader, BestBuyFulfillment$1 as BestBuyFulfillment, BestBuyFulfillmentProps, BfSizeChartSizeGuide$1 as BfSizeChartSizeGuide, BfSizeChartSizeGuideProps, BirdChime$1 as BirdChime, BirdChimeProps, Bogos$1 as Bogos, BogosProps, BoldProductOptions$1 as BoldProductOptions, BoldProductOptionsProps, BoldSubscriptions$1 as BoldSubscriptions, BoldSubscriptionsProps, BonLoyaltyRewardsReferrals$1 as BonLoyaltyRewardsReferrals, BonLoyaltyRewardsReferralsProps, BoostAISearchDiscovery$1 as BoostAISearchDiscovery, BoostAISearchDiscoveryProps, Breadcrumb$1 as Breadcrumb, Breadcrumb$1 as BreadcrumbProps, Bundler$1 as Bundler, BundlerProps, Button$2 as Button, ButtonProps, CSSCode$1 as CSSCode, CSSCodeProps, Carousel$1 as Carousel, CarouselItem$1 as CarouselItem, CarouselItemProps, CarouselProps, CarouselSettings, CarouselStyles, Cart, CartCheckout, CartDiscount, CartLineAttribute, CartLineImage, CartLinePrice, CartLineVariant, CartList, CartOrderNote, CartProps, CartTotalItem, CartTotalPrice, CheckoutNow, CleanSizeChartProps, CleanSizeCharts$1 as CleanSizeCharts, Column$1 as Col, ColProps$1 as ColProps, CollectionBanner$1 as CollectionBanner, CollectionBannerProps, CollectionDescription$1 as CollectionDescription, CollectionDescriptionProps, CollectionPaginator$1 as CollectionPaginator, CollectionPaginatorProps, CollectionTitle$1 as CollectionTitle, CollectionTitleProps, CollectionToolbar$1 as CollectionToolbar, CollectionToolbarProps, ContactForm$1 as ContactForm, Countdown$1 as Countdown, CountdownProps, Coupon$1 as Coupon, CouponList, CouponProps, CrossSellCartUpsell$1 as CrossSellCartUpsell, CrossSellCartUpsellProps, CustomProductOptionsVariant$1 as CustomProductOptionsVariant, CustomProductOptionsVariantProps, DataVideoType, DesktopMenu, Dialog$1 as Dialog, DiscountInput, DiscountyBulkDiscountSales$1 as DiscountyBulkDiscountSales, DiscountyBulkDiscountSalesProps, DynamicCheckout$1 as DynamicCheckout, DynamicCheckoutProps, ELEMENT_Z_INDEX, EasifyProductOptions$1 as EasifyProductOptions, EasifyProductOptionsProps, EasyBundleBuilderSkailama$1 as EasyBundleBuilderSkailama, EasyBundleBuilderSkailamaProps, EasySell as EasySellCOD, EasySellProps, EssentialAnnouncementBar$1 as EssentialAnnouncementBar, EssentialAnnouncementBarProps, EssentialCountdownTimerBar$1 as EssentialCountdownTimerBar, EssentialCountdownTimerBarProps, EstimateDate$1 as EstimateDate, EstimateDateProps, EstimatedDeliveryDatePlus$1 as EstimatedDeliveryDatePlus, EstimatedDeliveryDatePlusProps, FastBundleBundlesDiscounts$1 as FastBundleBundlesDiscounts, FastBundleBundlesDiscountsProps, FeraReviews$1 as FeraReviews, FeraReviewsProps, FileUpload$1 as FileUpload, FileUploadProps, FirePush$1 as FirePush, FirePushProps, FlyBundlesUpsellsFbt$1 as FlyBundlesUpsellsFbt, FlyBundlesUpsellsFbtProps, FordeerProductLabels$1 as FordeerProductLabels, FordeerProductLabelsProps, FormCheckbox, FormCheckboxProps, FormDropdown$1 as FormDropdown, FormDropdownProps, FormEmail$1 as FormEmail, FormEmailProps, FormTextArea as FormTextarea, FrequentlyBoughtTogether$1 as FrequentlyBoughtTogether, FrequentlyBoughtTogetherProps, GloColorSwatchvariantImage$1 as GloColorSwatchvariantImage, GloColorSwatchvariantImageProps, GloboProductOptionsVariant$1 as GloboProductOptionsVariant, GloboProductOptionsVariantProps, GoogleReviewsByReputon$1 as GoogleReviewsByReputon, GoogleReviewsByReputonProps, Growave$1 as Growave, GrowaveProps, Header, HeaderProps, Heading$1 as Heading, HeadingProps, HeroBanner$1 as HeroBanner, HeroBannerProps, HextomCountdownTimerBar$1 as HextomCountdownTimerBar, HextomCountdownTimerBarProps, HextomFreeShippingBar$1 as HextomFreeShippingBar, HextomFreeShippingBarProps, HulkFormBuilder$1 as HulkFormBuilder, HulkFormBuilderProps, HulkProductOptions$1 as HulkProductOptions, HulkProductOptionsProps, Icon$1 as Icon, IconList$1 as IconList, IconListHoz$1 as IconListHoz, IconListHozItem, IconListHozProps, IconListItem$1 as IconListItem, IconListItemProps$3 as IconListItemProps, IconListProps$2 as IconListProps, IconListV2$1 as IconListV2, IconProps$1 as IconProps, Image$1 as Image, ImageComparison$1 as ImageComparison, ImageDetection, ImageDetectionProps, ImageProps, InfiniteOptions$1 as InfiniteOptions, InfiniteOptionsProps, Input, InputProps, Instafeed$1 as Instafeed, InstafeedProps, InstantJudgemeReviews, InstantJudgemeReviewsProps, InstantKlaviyo, InstantKlaviyoProps, InstantLooxReviews, InstantLooxReviewsProps, InstantYotpoLoyalty, InstantYotpoLoyaltyProps, InstasellShoppableInstagram$1 as InstasellShoppableInstagram, InstasellShoppableInstagramProps, JudgemeReviews$1 as JudgemeReviews, JudgemeReviewsProps, JunipProductReviewsUgc$1 as JunipProductReviewsUgc, JunipProductReviewsUgcProps, KachingBundles$1 as KachingBundles, KachingBundlesProps, KingProductOptions$1 as KingProductOptions, KingProductOptionsProps, KiteFreeGiftDiscount$1 as KiteFreeGiftDiscount, KiteFreeGiftDiscountProps, KlarnaMessaging$1 as KlarnaMessaging, KlarnaMessagingProps, Klaviyo$1 as Klaviyo, KlaviyoProps, KoalaBundleQuantityDiscount$1 as KoalaBundleQuantityDiscount, KoalaBundleQuantityDiscountProps, LaiProductReviews$1 as LaiProductReviews, LaiProductReviewsProps, Line$2 as Line, LineProps$1 as LineProps, Link, LinkProps$1 as LinkProps, LoloyalLoyaltyReferrals$1 as LoloyalLoyaltyReferrals, LoloyalLoyaltyReferralsProps, LoopSubscriptions$1 as LoopSubscriptions, LoopSubscriptionsProps, LooxReviews$1 as LooxReviews, LooxReviewsProps, Marquee$1 as Marquee, _default$2 as MarqueeItem, MarqueeItemProps, MarqueeProps, MaxbundleProductBundles$1 as MaxbundleProductBundles, MaxbundleProductBundlesProps, MbcBundleVolumeDiscount$1 as MbcBundleVolumeDiscount, MbcBundleVolumeDiscountProps, Menu, MenuProps, MobileMenu, Modal, ModernHeader, MyappgurusProductReviews$1 as MyappgurusProductReviews, MyappgurusProductReviewsProps, Newsletter$1 as Newsletter, NewsletterProps, Notify as Notice, NotificationAPI, NotificationConfig, NotifyBackInStockPreOrder$1 as NotifyBackInStockPreOrder, NotifyBackInStockPreOrderProps, OkendoReviewsLoyalty$1 as OkendoReviewsLoyalty, OkendoReviewsLoyaltyProps, Omnisend$1 as Omnisend, OmnisendProps, Opinew$1 as Opinew, OpinewProps, Pagination, PaginationProps, ParcelPanel$1 as ParcelPanel, ParcelPanelProps, PickyStory$1 as PickyStory, PickyStoryProps, PostPurchaseAcceptButton, PostPurchaseAcceptButtonProps, PostPurchaseAdvancedList, PostPurchaseAdvancedListItem, PostPurchaseAdvancedListProps, Button$1 as PostPurchaseButton, PostPurchaseButtonProps, CalloutBox as PostPurchaseCalloutBox, CalloutText as PostPurchaseCalloutText, PostPurchaseCountdownTimer, PostPurchaseHeading, PostPurchaseImage, PostPurchaseImageProps, Line$1 as PostPurchaseLine, PostPurchaseLineProps, PostPurchaseProductDescription, PostPurchaseProductDescriptionProps, PostPurchaseProductDiscountTag, PostPurchaseProductDiscountTagProps, PostPurchaseProductImages, PostPurchaseProductImagesProps, PostPurchaseProductOffer, PostPurchaseProductOfferProps, PostPurchaseProductPrice, PostPurchaseProductPriceBreakdown, PostPurchaseProductPriceBreakdownProps, PostPurchaseProductPriceProps, PostPurchaseProductQuantity, PostPurchaseProductQuantityProps, PostPurchaseProductTitle, PostPurchaseProductTitleProps, PostPurchaseProductVariants, PostPurchaseProductVariantsProps, Text$1 as PostPurchaseText, PostPurchaseTextProps, PowerfulContactFormBuilder$1 as PowerfulContactFormBuilder, PowerfulContactFormBuilderProps, PowrContactFormBuilder$1 as PowrContactFormBuilder, PowrContactFormBuilderProps, PreorderNowPreOrderPq$1 as PreorderNowPreOrderPq, PreorderNowPreOrderPqProps, PreorderNowWodPresale$1 as PreorderNowWodPresale, PreorderNowWodPresaleProps, Product$1 as Product, ProductBadge$1 as ProductBadge, ProductBadgeProps, ProductBundleDiscount$1 as ProductBundleDiscount, ProductBundleDiscountItem$1 as ProductBundleDiscountItem, ProductButton$1 as ProductButton, ProductButtonProps, ProductDescription$1 as ProductDescription, ProductDescriptionProps, ProductImages$2 as ProductImages, ProductImagesProps, ProductImagesV2, ProductList$1 as ProductList, ProductList$1 as ProductListProps, ProductOptionsCustomizer$1 as ProductOptionsCustomizer, ProductOptionsCustomizerProps, ProductOptionsVariantOption$1 as ProductOptionsVariantOption, ProductOptionsVariantOptionProps, ProductPrice$1 as ProductPrice, ProductPriceProps, ProductPropertiesProps, ProductProperties$1 as ProductPropertyInput, ProductProps, ProductQuantity$1 as ProductQuantity, ProductQuantityBreakItemProps, ProductQuantityBreakProps, ProductQuantityProps, QuickView as ProductQuickView, ProductReviews$1 as ProductReviews, ProductReviewsProps, ProductSku$1 as ProductSku, ProductTag$1 as ProductTag, ProductTagProps, ProductTitle$1 as ProductTitle, ProductTitleProps, ProductVariants$1 as ProductVariants, ProductVariantsProps, ProductVendor$1 as ProductVendor, ProductViewMore$1 as ProductViewMore, ProductViewMoreProps, PumperBundlesVolumeDiscount$1 as PumperBundlesVolumeDiscount, PumperBundlesVolumeDiscountProps, PushOwl$1 as PushOwl, PushOwlProps, QikifyUpsell$1 as QikifyUpsell, QikifyUpsellProps, Radio, RadioProps, RapiBundleQuantityBreaks$1 as RapiBundleQuantityBreaks, RapiBundleQuantityBreaksProps, RechargeSubscriptions$1 as RechargeSubscriptions, RechargeSubscriptionsProps, RecurpaySubscriptionApp$1 as RecurpaySubscriptionApp, RecurpaySubscriptionAppProps, Releasit$1 as Releasit, ReleasitProps, RequestQuoteHidePrice$1 as RequestQuoteHidePrice, RequestQuoteHidePriceProps, ReviewxpoProductReviewsApp$1 as ReviewxpoProductReviewsApp, ReviewxpoProductReviewsAppProps, Rivyo$1 as Rivyo, RivyoProps, Root$1 as Root, RootProps$1 as RootProps, Row$1 as Row, RowProps$1 as RowProps, Ryviu$1 as Ryviu, RyviuProps, SealSubscriptions$1 as SealSubscriptions, SealSubscriptionsProps, Section$1 as Section, SegunoEmailMarketing$1 as SegunoEmailMarketing, SegunoEmailMarketingProps, Select, SelectProps, Selleasy$1 as Selleasy, SelleasyProps, SeoantTrustBadgesIcon$1 as SeoantTrustBadgesIcon, SeoantTrustBadgesIconProps, ShopPayButton$1 as ShopPayButton, ShopPayButtonProps, ShopifyForms$1 as ShopifyForms, ShopifyFormsProps, ShopifySubscriptions$1 as ShopifySubscriptions, ShopifySubscriptionsProps, SimpleBundlesKits$1 as SimpleBundlesKits, SimpleBundlesKitsProps, SkioSubscriptionsYcS20$1 as SkioSubscriptionsYcS20, SkioSubscriptionsYcS20Props, SkuProps, SmartSearchBarAndFilters$1 as SmartSearchBarAndFilters, SmartSearchBarAndFiltersProps, SproutPlantTreesGrowSales$1 as SproutPlantTreesGrowSales, SproutPlantTreesGrowSalesProps, Stamped$1 as Stamped, StampedProps, StellarDeliveryDatePickup$1 as StellarDeliveryDatePickup, StellarDeliveryDatePickupProps, Sticky$1 as Sticky, StickyProps, StockCounter$1 as StockCounter, StockCounterProps, SubifySubscriptionsApp$1 as SubifySubscriptionsApp, SubifySubscriptionsAppProps, SubmitButton$1 as SubmitButton, SubmitButtonProps, TabItem$1 as TabItem, TabItemProps, Tabs$1 as Tabs, TabsProps, TagembedSocialPostReview$1 as TagembedSocialPostReview, TagembedSocialPostReviewProps, TagshopShoppableVideosUgc$1 as TagshopShoppableVideosUgc, TagshopShoppableVideosUgcProps, TeeinblueProductPersonalizer$1 as TeeinblueProductPersonalizer, TeeinblueProductPersonalizerProps, Text$2 as Text, TextAreaProps, TextField$1 as TextField, TextFieldProps, TextProps$1 as TextProps, TextArea as Textarea, TextareaProps, ThirdPartySlot$1 as ThirdPartySlot, TrustBadgesBear$1 as TrustBadgesBear, TrustBadgesBearProps, TrustMe$1 as TrustMe, TrustMeProps, TrustedsiteTrustBadges$1 as TrustedsiteTrustBadges, TrustedsiteTrustBadgesProps, Trustoo$1 as Trustoo, TrustooProps, TrustreviewsProductReviews$1 as TrustreviewsProductReviews, TrustreviewsProductReviewsProps, TrustshopProductReviews$1 as TrustshopProductReviews, TrustshopProductReviewsProps, UltimateSalesBoost$1 as UltimateSalesBoost, UltimateSalesBoostProps, UnlimitedBundlesDiscounts$1 as UnlimitedBundlesDiscounts, UnlimitedBundlesDiscountsProps, VendorProps, Video$1 as Video, Vitals$1 as Vitals, VitalsProps, WhatmoreShoppableVideosreel$1 as WhatmoreShoppableVideosreel, WhatmoreShoppableVideosreelProps, WideBundle$1 as WideBundle, WideBundleProps, Wiser$1 as Wiser, WiserProps, WishlistKing$1 as WishlistKing, WishlistKingProps, WishlistPlus$1 as WishlistPlus, WishlistPlusProps, YotpoLoyalty, YotpoLoyaltyProps, YotpoReviews$1 as YotpoReviews, YotpoReviewsProps, _default$R as accordionSetting, _default$4 as articleListSetting, _default$p as bannerSetting, _default$Q as breadcrumbSetting, _default as builderComponent, _default$P as buttonSetting, _default$N as carouselSetting, _default$K as cartSetting, _default$n as codeSetting, _default$J as collectionSetting, _default$j as contactFormSetting, _default$I as countdownSetting, _default$O as couponSetting, _default$k as dialogSetting, _default$5 as estimateDeliverySetting, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, _default$L as gridSetting, _default$G as headerSetting, _default$H as headingSetting, _default$m as iconListHozSetting, _default$o as iconListSetting, _default$e as iconListSettingV2, _default$F as iconSetting, _default$h as imageComparisonSetting, _default$i as imageDetectionSetting, _default$M as imageSetting, _default$E as inputSetting, isHexTransparent, isTransparentColor, isTransparentRGBA, _default$D as lineSetting, _default$C as linkSetting, index_liquid as liquidComponents, _default$3 as marqueeSetting, _default$s as menuSetting, _default$B as modalSetting, _default$1 as nextComponent, openConfirm, _default$A as paginationSetting, _default$7 as postPurchaseAdvancedListSetting, _default$b as postPurchaseButtonSetting, _default$9 as postPurchaseCalloutBoxSetting, _default$6 as postPurchaseCountdownTimerSetting, _default$c as postPurchaseImageSetting, _default$8 as postPurchaseLineSetting, postPurchaseProduct1Col, postPurchaseProduct2Col, postPurchaseProductDefault, _default$a as postPurchaseProductSetting, _default$d as postPurchaseTextSetting, _default$z as productSetting, _default$x as radioSetting, replaceLinkData, _default$w as selectSetting, _default$f as stickySetting, _default$l as stockCounterSetting, _default$v as tabSetting, _default$y as textSetting, _default$u as textareaSetting, _default$q as thirdPartyInstantSetting, _default$r as thirdPartySetting, _default$g as thirdPartySlotSetting, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
|