@gem-sdk/components 2.1.27-staging.0 → 2.1.27-staging.10
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/article/components/ArticleList.js +1 -1
- package/dist/cjs/builder.js +3 -1
- package/dist/cjs/helpers.js +27 -5
- package/dist/cjs/index.js +4 -0
- package/dist/cjs/index.liquid.js +2 -0
- package/dist/cjs/product/components/ProductList.liquid.js +4 -8
- package/dist/cjs/stock-counter/components/StockCounter.liquid.js +4 -4
- package/dist/cjs/stock-counter/helpers.js +3 -3
- package/dist/cjs/text/components/Text.js +2 -1
- package/dist/cjs/text/components/Text.liquid.js +2 -2
- package/dist/cjs/text/components/common.js +14 -0
- package/dist/cjs/third-party/components/EcoboostifyShoppableReelUgc.js +32 -0
- package/dist/cjs/third-party/components/EcoboostifyShoppableReelUgc.liquid.js +12 -0
- package/dist/cjs/third-party/components/RechargeSubscriptions.liquid.js +1 -1
- package/dist/cjs/third-party/configs/EcoboostifyShoppableReelUgc.js +12 -0
- package/dist/cjs/third-party/next.js +5 -0
- package/dist/cjs/third-party/setting/EcoboostifyShoppableReelUgc.js +142 -0
- package/dist/cjs/third-party/setting/RechargeSubscriptions.js +5 -2
- package/dist/cjs/third-party/setting/index.js +3 -1
- package/dist/esm/article/components/ArticleList.js +1 -1
- package/dist/esm/builder.js +3 -1
- package/dist/esm/helpers.js +26 -6
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.liquid.js +1 -0
- package/dist/esm/product/components/ProductList.liquid.js +4 -8
- package/dist/esm/stock-counter/components/StockCounter.liquid.js +4 -4
- package/dist/esm/stock-counter/helpers.js +3 -3
- package/dist/esm/text/components/Text.js +2 -1
- package/dist/esm/text/components/Text.liquid.js +2 -2
- package/dist/esm/text/components/common.js +12 -0
- package/dist/esm/third-party/components/EcoboostifyShoppableReelUgc.js +28 -0
- package/dist/esm/third-party/components/EcoboostifyShoppableReelUgc.liquid.js +8 -0
- package/dist/esm/third-party/components/RechargeSubscriptions.liquid.js +1 -1
- package/dist/esm/third-party/configs/EcoboostifyShoppableReelUgc.js +8 -0
- package/dist/esm/third-party/next.js +5 -0
- package/dist/esm/third-party/setting/EcoboostifyShoppableReelUgc.js +138 -0
- package/dist/esm/third-party/setting/RechargeSubscriptions.js +5 -2
- package/dist/esm/third-party/setting/index.js +3 -1
- package/dist/types/index.d.ts +21 -2
- package/package.json +2 -2
|
@@ -14,7 +14,7 @@ const ArticleList = ({ styles, setting, className, children, builderProps })=>{
|
|
|
14
14
|
const { articleSetting, numberOfArticle } = setting ?? {};
|
|
15
15
|
const { articleIds, articlePickType } = articleSetting ?? {};
|
|
16
16
|
const articlesQuery = {
|
|
17
|
-
first: articleIds?.length
|
|
17
|
+
first: articleIds?.length || 50,
|
|
18
18
|
where: {
|
|
19
19
|
baseIDIn: [
|
|
20
20
|
...articleSetting?.articleIds ?? []
|
package/dist/cjs/builder.js
CHANGED
|
@@ -123,6 +123,7 @@ var GloColorSwatchvariantImage = require('./third-party/components/GloColorSwatc
|
|
|
123
123
|
var BfSizeChartSizeGuide = require('./third-party/components/BfSizeChartSizeGuide.js');
|
|
124
124
|
var AlsoBoughtCbb = require('./third-party/components/AlsoBoughtCbb.js');
|
|
125
125
|
var HextomFreeShippingBar = require('./third-party/components/HextomFreeShippingBar.js');
|
|
126
|
+
var EcoboostifyShoppableReelUgc = require('./third-party/components/EcoboostifyShoppableReelUgc.js');
|
|
126
127
|
var CartLineVariant = require('./cart/components/CartLineVariant.js');
|
|
127
128
|
var Cart = require('./cart/components/Cart.js');
|
|
128
129
|
var CartList = require('./cart/components/CartList.js');
|
|
@@ -503,7 +504,8 @@ var builder = {
|
|
|
503
504
|
GloColorSwatchvariantImage: GloColorSwatchvariantImage.default,
|
|
504
505
|
BfSizeChartSizeGuide: BfSizeChartSizeGuide.default,
|
|
505
506
|
AlsoBoughtCbb: AlsoBoughtCbb.default,
|
|
506
|
-
HextomFreeShippingBar: HextomFreeShippingBar.default
|
|
507
|
+
HextomFreeShippingBar: HextomFreeShippingBar.default,
|
|
508
|
+
EcoboostifyShoppableReelUgc: EcoboostifyShoppableReelUgc.default
|
|
507
509
|
};
|
|
508
510
|
|
|
509
511
|
exports.default = builder;
|
package/dist/cjs/helpers.js
CHANGED
|
@@ -34,7 +34,7 @@ const isHexTransparent = (hex)=>{
|
|
|
34
34
|
return Boolean(a);
|
|
35
35
|
};
|
|
36
36
|
const youtubeShortsRegex = /^(?:https?:\/\/)?(?:www\.)?youtube\.com\/shorts\/([^"&?/\s]{11})$/i;
|
|
37
|
-
const getDynamicSourceLocales = ({ val, uid, settingId, isLiquid, pageContext,
|
|
37
|
+
const getDynamicSourceLocales = ({ val, uid, settingId, isLiquid, pageContext, defaultVal = '', translate, isReplaceLocationOrigin, isReplaceInventoryQuantity })=>{
|
|
38
38
|
const hasLiquidInValue = new RegExp(/\{\{.*?\}\}|\{%.*?%\}/).test(val?.toString() ?? '');
|
|
39
39
|
const translateLimit = pageContext?.isTranslateWithLocale ? 1000 : 5000;
|
|
40
40
|
if (!translate || !val?.toString().trim() || val.toString().length > translateLimit || hasLiquidInValue || pageContext?.isPreviewing) return val ?? defaultVal;
|
|
@@ -47,10 +47,7 @@ const getDynamicSourceLocales = ({ val, uid, settingId, isLiquid, pageContext, i
|
|
|
47
47
|
locale += ` | replace: '$locationOrigin', locationOrigin`;
|
|
48
48
|
}
|
|
49
49
|
if (isReplaceInventoryQuantity) {
|
|
50
|
-
locale += ` | replace: '
|
|
51
|
-
}
|
|
52
|
-
if (isCapitalize) {
|
|
53
|
-
locale = `${locale} | downcase`;
|
|
50
|
+
locale += ` | replace: '<$quantity$>', inventory_quantity | replace: '<$quantity$>', inventory_quantity`;
|
|
54
51
|
}
|
|
55
52
|
if (isLiquid) return locale;
|
|
56
53
|
return `{{ ${locale} }}`;
|
|
@@ -126,7 +123,31 @@ const replaceLinkData = (text, isTranslate)=>{
|
|
|
126
123
|
}
|
|
127
124
|
return text;
|
|
128
125
|
};
|
|
126
|
+
const getAllHrefFromString = (htmlString)=>{
|
|
127
|
+
if (!htmlString) return [];
|
|
128
|
+
const regex = /href="([^"]*)"/g;
|
|
129
|
+
const hrefs = [];
|
|
130
|
+
let match;
|
|
131
|
+
while((match = regex.exec(htmlString)) !== null){
|
|
132
|
+
match[1] && hrefs.push(match[1]);
|
|
133
|
+
}
|
|
134
|
+
return hrefs;
|
|
135
|
+
};
|
|
136
|
+
const replaceAllHrefFromString = (htmlString, hrefs)=>{
|
|
137
|
+
if (!htmlString) return '';
|
|
138
|
+
const regex = /href="([^"]*)"/g;
|
|
139
|
+
let match;
|
|
140
|
+
let i = 0;
|
|
141
|
+
while((match = regex.exec(htmlString)) !== null){
|
|
142
|
+
if (match[1]) {
|
|
143
|
+
htmlString = htmlString.replace(match[1], hrefs[i] ?? '');
|
|
144
|
+
i++;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
return htmlString;
|
|
148
|
+
};
|
|
129
149
|
|
|
150
|
+
exports.getAllHrefFromString = getAllHrefFromString;
|
|
130
151
|
exports.getDynamicSourceLocales = getDynamicSourceLocales;
|
|
131
152
|
exports.getInsertLinkData = getInsertLinkData;
|
|
132
153
|
exports.getSettingPreloadData = getSettingPreloadData;
|
|
@@ -134,5 +155,6 @@ exports.getStaticLocale = getStaticLocale;
|
|
|
134
155
|
exports.isHexTransparent = isHexTransparent;
|
|
135
156
|
exports.isTransparentColor = isTransparentColor;
|
|
136
157
|
exports.isTransparentRGBA = isTransparentRGBA;
|
|
158
|
+
exports.replaceAllHrefFromString = replaceAllHrefFromString;
|
|
137
159
|
exports.replaceLinkData = replaceLinkData;
|
|
138
160
|
exports.youtubeShortsRegex = youtubeShortsRegex;
|
package/dist/cjs/index.js
CHANGED
|
@@ -219,6 +219,7 @@ var GloColorSwatchvariantImage = require('./third-party/components/GloColorSwatc
|
|
|
219
219
|
var BfSizeChartSizeGuide = require('./third-party/components/BfSizeChartSizeGuide.js');
|
|
220
220
|
var AlsoBoughtCbb = require('./third-party/components/AlsoBoughtCbb.js');
|
|
221
221
|
var HextomFreeShippingBar = require('./third-party/components/HextomFreeShippingBar.js');
|
|
222
|
+
var EcoboostifyShoppableReelUgc = require('./third-party/components/EcoboostifyShoppableReelUgc.js');
|
|
222
223
|
var index$x = require('./third-party-instant/setting/index.js');
|
|
223
224
|
var InstantJudgemeReviews = require('./third-party-instant/components/InstantJudgemeReviews.js');
|
|
224
225
|
var InstantLooxReviews = require('./third-party-instant/components/InstantLooxReviews.js');
|
|
@@ -534,6 +535,7 @@ exports.GloColorSwatchvariantImage = GloColorSwatchvariantImage.default;
|
|
|
534
535
|
exports.BfSizeChartSizeGuide = BfSizeChartSizeGuide.default;
|
|
535
536
|
exports.AlsoBoughtCbb = AlsoBoughtCbb.default;
|
|
536
537
|
exports.HextomFreeShippingBar = HextomFreeShippingBar.default;
|
|
538
|
+
exports.EcoboostifyShoppableReelUgc = EcoboostifyShoppableReelUgc.default;
|
|
537
539
|
exports.thirdPartyInstantSetting = index$x.default;
|
|
538
540
|
exports.InstantJudgemeReviews = InstantJudgemeReviews.default;
|
|
539
541
|
exports.InstantLooxReviews = InstantLooxReviews.default;
|
|
@@ -622,6 +624,7 @@ exports.nextComponent = next.default;
|
|
|
622
624
|
exports.liquidComponents = index_liquid;
|
|
623
625
|
exports.builderComponent = builder.default;
|
|
624
626
|
exports.ELEMENT_Z_INDEX = _const.ELEMENT_Z_INDEX;
|
|
627
|
+
exports.getAllHrefFromString = helpers.getAllHrefFromString;
|
|
625
628
|
exports.getDynamicSourceLocales = helpers.getDynamicSourceLocales;
|
|
626
629
|
exports.getInsertLinkData = helpers.getInsertLinkData;
|
|
627
630
|
exports.getSettingPreloadData = helpers.getSettingPreloadData;
|
|
@@ -629,6 +632,7 @@ exports.getStaticLocale = helpers.getStaticLocale;
|
|
|
629
632
|
exports.isHexTransparent = helpers.isHexTransparent;
|
|
630
633
|
exports.isTransparentColor = helpers.isTransparentColor;
|
|
631
634
|
exports.isTransparentRGBA = helpers.isTransparentRGBA;
|
|
635
|
+
exports.replaceAllHrefFromString = helpers.replaceAllHrefFromString;
|
|
632
636
|
exports.replaceLinkData = helpers.replaceLinkData;
|
|
633
637
|
exports.youtubeShortsRegex = helpers.youtubeShortsRegex;
|
|
634
638
|
exports.postPurchaseTextSetting = index$M.default;
|
package/dist/cjs/index.liquid.js
CHANGED
|
@@ -174,6 +174,7 @@ var GloColorSwatchvariantImage_liquid = require('./third-party/components/GloCol
|
|
|
174
174
|
var BfSizeChartSizeGuide_liquid = require('./third-party/components/BfSizeChartSizeGuide.liquid.js');
|
|
175
175
|
var AlsoBoughtCbb_liquid = require('./third-party/components/AlsoBoughtCbb.liquid.js');
|
|
176
176
|
var HextomFreeShippingBar_liquid = require('./third-party/components/HextomFreeShippingBar.liquid.js');
|
|
177
|
+
var EcoboostifyShoppableReelUgc_liquid = require('./third-party/components/EcoboostifyShoppableReelUgc.liquid.js');
|
|
177
178
|
var ImageComparison_liquid = require('./image-comparison/components/ImageComparison.liquid.js');
|
|
178
179
|
var ThirdPartySlot_liquid = require('./third-party-slot/components/ThirdPartySlot.liquid.js');
|
|
179
180
|
var Sticky_liquid = require('./sticky/components/Sticky.liquid.js');
|
|
@@ -370,6 +371,7 @@ exports.GloColorSwatchvariantImage = GloColorSwatchvariantImage_liquid.default;
|
|
|
370
371
|
exports.BfSizeChartSizeGuide = BfSizeChartSizeGuide_liquid.default;
|
|
371
372
|
exports.AlsoBoughtCbb = AlsoBoughtCbb_liquid.default;
|
|
372
373
|
exports.HextomFreeShippingBar = HextomFreeShippingBar_liquid.default;
|
|
374
|
+
exports.EcoboostifyShoppableReelUgc = EcoboostifyShoppableReelUgc_liquid.default;
|
|
373
375
|
exports.ImageComparison = ImageComparison_liquid.default;
|
|
374
376
|
exports.ThirdPartySlot = ThirdPartySlot_liquid.default;
|
|
375
377
|
exports.Sticky = Sticky_liquid.default;
|
|
@@ -237,6 +237,7 @@ const ProductList = ({ setting, builderProps, styles, className, children, advan
|
|
|
237
237
|
endif
|
|
238
238
|
assign arrayRelatedExclude = relatedExclude | split: ","
|
|
239
239
|
assign idSelectedList = ''
|
|
240
|
+
assign relatedListProduct = null
|
|
240
241
|
for collection in collections
|
|
241
242
|
assign collectionId = collection.id
|
|
242
243
|
assign isInCollection = false
|
|
@@ -251,20 +252,15 @@ const ProductList = ({ setting, builderProps, styles, className, children, advan
|
|
|
251
252
|
break
|
|
252
253
|
else
|
|
253
254
|
assign idSelectedList = idSelectedList | append: "," | append: product.id
|
|
255
|
+
assign productSelected = product | sort
|
|
256
|
+
assign relatedListProduct = relatedListProduct | concat: productSelected
|
|
254
257
|
endif
|
|
255
258
|
endfor
|
|
256
259
|
endif
|
|
257
260
|
endunless
|
|
258
261
|
endfor
|
|
259
262
|
endfor
|
|
260
|
-
|
|
261
|
-
assign handle = item.handle
|
|
262
|
-
assign productF = item | sort
|
|
263
|
-
if idSelectedList contains item.id
|
|
264
|
-
assign products = products | concat: productF
|
|
265
|
-
endif
|
|
266
|
-
endfor
|
|
267
|
-
assign products = products | uniq
|
|
263
|
+
assign products = productSelected | uniq
|
|
268
264
|
when 'vendor'
|
|
269
265
|
assign vendorAssignProduct = assignProduct.vendor
|
|
270
266
|
assign productFilter = allProductsPaginated | where: 'vendor', vendorAssignProduct
|
|
@@ -145,10 +145,10 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps, pageCont
|
|
|
145
145
|
${icon}</div>
|
|
146
146
|
`)}
|
|
147
147
|
<div class="gp-hidden gp-text-white gp-py-1 gp-px-2 gp-mr-1 gp-inline-block gp-my-[1px] gp-text-g-${mainColor} gp-bg-g-${mainColor}" >
|
|
148
|
-
<div id="template"
|
|
149
|
-
<div id="out-of-stock-message"
|
|
150
|
-
<div id="continue-selling"
|
|
151
|
-
<div id="unlimited-quantity-message"
|
|
148
|
+
<div id="template">${templateStringDisplay}</div>
|
|
149
|
+
<div id="out-of-stock-message">${outOfStockMessageDisplay}</div>
|
|
150
|
+
<div id="continue-selling">${continueSellingDisplay}</div>
|
|
151
|
+
<div id="unlimited-quantity-message">${unlimitedQuantityMessageDisplay}</div>
|
|
152
152
|
</div>
|
|
153
153
|
<p
|
|
154
154
|
data-slot-type="message"
|
|
@@ -28,13 +28,13 @@ const transformNumberTag = (template, stringColor, quantityLeft)=>{
|
|
|
28
28
|
let quantityTag = '';
|
|
29
29
|
// Is hex color
|
|
30
30
|
if (stringColor.includes('#')) {
|
|
31
|
-
quantityTag = `<span style='--c: ${stringColor}'
|
|
31
|
+
quantityTag = `<span style='--c: ${stringColor}'><$quantity$></span>`;
|
|
32
32
|
} else {
|
|
33
33
|
// Is global style color
|
|
34
|
-
quantityTag = `<span class='gp-text-g-${stringColor}'
|
|
34
|
+
quantityTag = `<span class='gp-text-g-${stringColor}'><$quantity$></span>`;
|
|
35
35
|
}
|
|
36
36
|
if (quantityLeft) {
|
|
37
|
-
quantityTag = quantityTag.replace('
|
|
37
|
+
quantityTag = quantityTag.replace('<$quantity$>', quantityLeft.toString());
|
|
38
38
|
}
|
|
39
39
|
return template.replaceAll(_const.DEFAULT_QUANTITY_TEMPLATE, quantityTag);
|
|
40
40
|
};
|
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var jsxRuntime = require('react/jsx-runtime');
|
|
6
6
|
var core = require('@gem-sdk/core');
|
|
7
7
|
var React = require('react');
|
|
8
|
+
var common = require('./common.js');
|
|
8
9
|
|
|
9
10
|
const Text = /*#__PURE__*/ React.forwardRef(({ styles, builderAttrs, style, setting, advanced, builderProps, className, children, ...props }, ref)=>{
|
|
10
11
|
const { text, htmlTag: Element = 'div', options, tagWidth, excludeFlex } = setting ?? {};
|
|
@@ -89,7 +90,7 @@ const Text = /*#__PURE__*/ React.forwardRef(({ styles, builderAttrs, style, sett
|
|
|
89
90
|
overflow: 'hidden'
|
|
90
91
|
},
|
|
91
92
|
dangerouslySetInnerHTML: {
|
|
92
|
-
__html:
|
|
93
|
+
__html: common.getDisplayText(text?.toString() ?? '<p><br></p>')
|
|
93
94
|
}
|
|
94
95
|
})
|
|
95
96
|
}),
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var core = require('@gem-sdk/core');
|
|
6
6
|
var helpers = require('../../helpers.js');
|
|
7
|
+
var common = require('./common.js');
|
|
7
8
|
|
|
8
9
|
const Text = ({ styles, builderAttrs, style, setting, advanced, builderProps, className, isText, pageContext, elementAttrs, ...props })=>{
|
|
9
10
|
const { text, htmlTag: Element = 'div', tagWidth, excludeFlex, isForceValue } = setting ?? {};
|
|
@@ -31,7 +32,6 @@ const Text = ({ styles, builderAttrs, style, setting, advanced, builderProps, cl
|
|
|
31
32
|
uid: builderProps?.uid,
|
|
32
33
|
settingId: setting?.translate,
|
|
33
34
|
pageContext,
|
|
34
|
-
isCapitalize: styles?.typo?.attrs?.transform === 'capitalize',
|
|
35
35
|
translate: setting.translate,
|
|
36
36
|
isReplaceLocationOrigin: isViewliveHeadingOrTextComponent
|
|
37
37
|
});
|
|
@@ -39,7 +39,7 @@ const Text = ({ styles, builderAttrs, style, setting, advanced, builderProps, cl
|
|
|
39
39
|
displayText = renderText;
|
|
40
40
|
}
|
|
41
41
|
} else {
|
|
42
|
-
displayText =
|
|
42
|
+
displayText = common.getDisplayText(renderText ?? '');
|
|
43
43
|
}
|
|
44
44
|
return core.template`
|
|
45
45
|
{% assign locationOrigin = request.origin | append: routes.root_url | split: '/' | join: '/' %}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var helpers = require('../../helpers.js');
|
|
4
|
+
|
|
5
|
+
const getDisplayText = (renderText, isTextCapitalize = false)=>{
|
|
6
|
+
let displayText = renderText;
|
|
7
|
+
if (isTextCapitalize) {
|
|
8
|
+
const links = helpers.getAllHrefFromString(renderText ?? '');
|
|
9
|
+
displayText = helpers.replaceAllHrefFromString(renderText?.toString().toLocaleLowerCase(), links);
|
|
10
|
+
}
|
|
11
|
+
return displayText;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
exports.getDisplayText = getDisplayText;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
6
|
+
var core = require('@gem-sdk/core');
|
|
7
|
+
var ThirdPartyPreview = require('./ThirdPartyPreview.js');
|
|
8
|
+
var EcoboostifyShoppableReelUgc$1 = require('../configs/EcoboostifyShoppableReelUgc.js');
|
|
9
|
+
|
|
10
|
+
const EcoboostifyShoppableReelUgcContent = ()=>{
|
|
11
|
+
return /*#__PURE__*/ jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
12
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
13
|
+
className: "gp-p-2",
|
|
14
|
+
children: /*#__PURE__*/ jsxRuntime.jsx(ThirdPartyPreview.default, {
|
|
15
|
+
setting: {
|
|
16
|
+
label: 'EcoBoostify Shoppable Reel UGC',
|
|
17
|
+
iconSvg: `<img class="gp-w-6 gp-border gp-border-[#494949] gp-rounded-[3px]" src="${EcoboostifyShoppableReelUgc$1.default.logoUrl}">`
|
|
18
|
+
}
|
|
19
|
+
})
|
|
20
|
+
})
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
const EcoboostifyShoppableReelUgc = ({ setting })=>{
|
|
24
|
+
return /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
25
|
+
style: {
|
|
26
|
+
...core.makeStyleResponsive('ta', setting?.align)
|
|
27
|
+
},
|
|
28
|
+
children: /*#__PURE__*/ jsxRuntime.jsx(EcoboostifyShoppableReelUgcContent, {})
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.default = EcoboostifyShoppableReelUgc;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var thirdParty = require('../helpers/thirdParty.js');
|
|
6
|
+
|
|
7
|
+
const EcoboostifyShoppableReelUgc = ({ setting, advanced })=>{
|
|
8
|
+
const { align, appBlockId } = setting ?? {};
|
|
9
|
+
return thirdParty.getLiquidForAppBlock(appBlockId, align, `${advanced?.cssClass ?? ''} !gp-block`);
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = EcoboostifyShoppableReelUgc;
|
|
@@ -6,7 +6,7 @@ var thirdParty = require('../helpers/thirdParty.js');
|
|
|
6
6
|
|
|
7
7
|
const RechargeSubscriptions = ({ setting, advanced })=>{
|
|
8
8
|
const { align, appBlockId } = setting ?? {};
|
|
9
|
-
return thirdParty.getLiquidForAppBlock(appBlockId, align, advanced?.cssClass);
|
|
9
|
+
return thirdParty.getLiquidForAppBlock(appBlockId, align, `${advanced?.cssClass ?? ''} !gp-block`);
|
|
10
10
|
};
|
|
11
11
|
|
|
12
12
|
exports.default = RechargeSubscriptions;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var AppConfig = {
|
|
6
|
+
id: 'ecoboostify-shoppable-reel-ugc',
|
|
7
|
+
label: 'EcoBoostify Shoppable Reel UGC',
|
|
8
|
+
logoUrl: 'https://cdn.shopify.com/app-store/listing_images/cdbdfc53291cf8d2908e72deae77f94e/icon/CJWKq4vxxIkDEAE=.png',
|
|
9
|
+
tag: 'EcoboostifyShoppableReelUgc'
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = AppConfig;
|
|
@@ -458,7 +458,12 @@ const HextomFreeShippingBar = dynamic(()=>Promise.resolve().then(function () { r
|
|
|
458
458
|
ssr: false,
|
|
459
459
|
loading: Loading.default
|
|
460
460
|
});
|
|
461
|
+
const EcoboostifyShoppableReelUgc = dynamic(()=>Promise.resolve().then(function () { return require('./components/EcoboostifyShoppableReelUgc.js'); }), {
|
|
462
|
+
ssr: false,
|
|
463
|
+
loading: Loading.default
|
|
464
|
+
});
|
|
461
465
|
var thirdParty = {
|
|
466
|
+
EcoboostifyShoppableReelUgc,
|
|
462
467
|
EstimatedDeliveryDatePlus,
|
|
463
468
|
OkendoReviewsLoyalty,
|
|
464
469
|
EssentialAnnouncementBar,
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var EcoboostifyShoppableReelUgc = require('../configs/EcoboostifyShoppableReelUgc.js');
|
|
6
|
+
|
|
7
|
+
const config = {
|
|
8
|
+
tag: EcoboostifyShoppableReelUgc.default.tag,
|
|
9
|
+
label: EcoboostifyShoppableReelUgc.default.label,
|
|
10
|
+
icon: '<img class="gp-w-6 gp-border gp-border-[#494949] gp-rounded-[3px]" src="https://cdn.shopify.com/app-store/listing_images/cdbdfc53291cf8d2908e72deae77f94e/icon/CJWKq4vxxIkDEAE=.png">',
|
|
11
|
+
editorConfigs: {
|
|
12
|
+
component: {
|
|
13
|
+
isThirdParty: true
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
presets: [
|
|
17
|
+
{
|
|
18
|
+
id: EcoboostifyShoppableReelUgc.default.id,
|
|
19
|
+
name: {
|
|
20
|
+
en: EcoboostifyShoppableReelUgc.default.label
|
|
21
|
+
},
|
|
22
|
+
hideTextContent: true,
|
|
23
|
+
icon: {
|
|
24
|
+
desktop: `<div class="w-full flex flex-col items-center">
|
|
25
|
+
<img class="w-24 border border-dark-200 rounded-medium" src="https://cdn.shopify.com/app-store/listing_images/cdbdfc53291cf8d2908e72deae77f94e/icon/CJWKq4vxxIkDEAE=.png">
|
|
26
|
+
<span class="preset-item-title">EcoBoostify Shoppable Reel UGC</span>
|
|
27
|
+
</div>`
|
|
28
|
+
},
|
|
29
|
+
components: [
|
|
30
|
+
{
|
|
31
|
+
tag: EcoboostifyShoppableReelUgc.default.tag
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
settings: [
|
|
37
|
+
{
|
|
38
|
+
id: 'setting',
|
|
39
|
+
controls: [
|
|
40
|
+
{
|
|
41
|
+
id: 'appBlockId',
|
|
42
|
+
type: 'input',
|
|
43
|
+
default: ''
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
id: 'widgetType',
|
|
47
|
+
label: 'Choose widget',
|
|
48
|
+
type: 'select',
|
|
49
|
+
options: [
|
|
50
|
+
{
|
|
51
|
+
label: 'Reel Playlist',
|
|
52
|
+
value: 'reel-playlist'
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
default: 'reel-playlist'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
id: 'playlistId',
|
|
59
|
+
label: 'Playlist ID',
|
|
60
|
+
type: 'input'
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
id: 'install',
|
|
64
|
+
type: 'open-link',
|
|
65
|
+
target: '_blank',
|
|
66
|
+
linkType: 'install',
|
|
67
|
+
href: 'https://apps.shopify.com/ecoboostify?utm_source=gempages',
|
|
68
|
+
appName: EcoboostifyShoppableReelUgc.default.label
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
id: 'openApp',
|
|
72
|
+
type: 'open-link',
|
|
73
|
+
target: '_blank',
|
|
74
|
+
linkType: 'openApp',
|
|
75
|
+
href: 'https://admin.shopify.com/?redirect=/apps/ecoboostify',
|
|
76
|
+
appName: EcoboostifyShoppableReelUgc.default.label
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
id: 'align',
|
|
80
|
+
label: 'Alignment',
|
|
81
|
+
type: 'segment',
|
|
82
|
+
options: [
|
|
83
|
+
{
|
|
84
|
+
label: 'Left',
|
|
85
|
+
value: 'left',
|
|
86
|
+
type: 'align'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
label: 'Center',
|
|
90
|
+
value: 'center',
|
|
91
|
+
type: 'align'
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
label: 'Right',
|
|
95
|
+
value: 'right',
|
|
96
|
+
type: 'align'
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
devices: {
|
|
100
|
+
desktop: {
|
|
101
|
+
default: 'left'
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
ui: [
|
|
109
|
+
{
|
|
110
|
+
type: 'control',
|
|
111
|
+
setting: {
|
|
112
|
+
id: 'install'
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
type: 'control',
|
|
117
|
+
setting: {
|
|
118
|
+
id: 'playlistId'
|
|
119
|
+
},
|
|
120
|
+
label: {
|
|
121
|
+
en: 'Playlist ID'
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'control',
|
|
126
|
+
setting: {
|
|
127
|
+
id: 'openApp'
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'control',
|
|
132
|
+
label: {
|
|
133
|
+
en: 'Align'
|
|
134
|
+
},
|
|
135
|
+
setting: {
|
|
136
|
+
id: 'align'
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
exports.default = config;
|
|
@@ -54,8 +54,11 @@ const config = {
|
|
|
54
54
|
options: [
|
|
55
55
|
{
|
|
56
56
|
label: 'Subscription Widget',
|
|
57
|
-
value: 'subscription-widget'
|
|
58
|
-
|
|
57
|
+
value: 'subscription-widget'
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
label: 'Subscription Widget 2.0',
|
|
61
|
+
value: 'subscription-widget-v2'
|
|
59
62
|
}
|
|
60
63
|
],
|
|
61
64
|
default: 'subscription-widget'
|
|
@@ -115,6 +115,7 @@ var GloColorSwatchvariantImage = require('./GloColorSwatchvariantImage.js');
|
|
|
115
115
|
var BfSizeChartSizeGuide = require('./BfSizeChartSizeGuide.js');
|
|
116
116
|
var AlsoBoughtCbb = require('./AlsoBoughtCbb.js');
|
|
117
117
|
var HextomFreeShippingBar = require('./HextomFreeShippingBar.js');
|
|
118
|
+
var EcoboostifyShoppableReelUgc = require('./EcoboostifyShoppableReelUgc.js');
|
|
118
119
|
|
|
119
120
|
var index = {
|
|
120
121
|
HextomCountdownTimerBar: HextomCountdownTimerBar.default,
|
|
@@ -229,7 +230,8 @@ var index = {
|
|
|
229
230
|
GloColorSwatchvariantImage: GloColorSwatchvariantImage.default,
|
|
230
231
|
BfSizeChartSizeGuide: BfSizeChartSizeGuide.default,
|
|
231
232
|
AlsoBoughtCbb: AlsoBoughtCbb.default,
|
|
232
|
-
HextomFreeShippingBar: HextomFreeShippingBar.default
|
|
233
|
+
HextomFreeShippingBar: HextomFreeShippingBar.default,
|
|
234
|
+
EcoboostifyShoppableReelUgc: EcoboostifyShoppableReelUgc.default
|
|
233
235
|
};
|
|
234
236
|
|
|
235
237
|
exports.default = index;
|
|
@@ -10,7 +10,7 @@ const ArticleList = ({ styles, setting, className, children, builderProps })=>{
|
|
|
10
10
|
const { articleSetting, numberOfArticle } = setting ?? {};
|
|
11
11
|
const { articleIds, articlePickType } = articleSetting ?? {};
|
|
12
12
|
const articlesQuery = {
|
|
13
|
-
first: articleIds?.length
|
|
13
|
+
first: articleIds?.length || 50,
|
|
14
14
|
where: {
|
|
15
15
|
baseIDIn: [
|
|
16
16
|
...articleSetting?.articleIds ?? []
|
package/dist/esm/builder.js
CHANGED
|
@@ -119,6 +119,7 @@ import GloColorSwatchvariantImage from './third-party/components/GloColorSwatchv
|
|
|
119
119
|
import BfSizeChartSizeGuide from './third-party/components/BfSizeChartSizeGuide.js';
|
|
120
120
|
import AlsoBoughtCbb from './third-party/components/AlsoBoughtCbb.js';
|
|
121
121
|
import HextomFreeShippingBar from './third-party/components/HextomFreeShippingBar.js';
|
|
122
|
+
import EcoboostifyShoppableReelUgc from './third-party/components/EcoboostifyShoppableReelUgc.js';
|
|
122
123
|
import CartLineVariant from './cart/components/CartLineVariant.js';
|
|
123
124
|
import Cart from './cart/components/Cart.js';
|
|
124
125
|
import CartList from './cart/components/CartList.js';
|
|
@@ -499,7 +500,8 @@ var builder = {
|
|
|
499
500
|
GloColorSwatchvariantImage,
|
|
500
501
|
BfSizeChartSizeGuide,
|
|
501
502
|
AlsoBoughtCbb,
|
|
502
|
-
HextomFreeShippingBar
|
|
503
|
+
HextomFreeShippingBar,
|
|
504
|
+
EcoboostifyShoppableReelUgc
|
|
503
505
|
};
|
|
504
506
|
|
|
505
507
|
export { builder as default };
|
package/dist/esm/helpers.js
CHANGED
|
@@ -32,7 +32,7 @@ const isHexTransparent = (hex)=>{
|
|
|
32
32
|
return Boolean(a);
|
|
33
33
|
};
|
|
34
34
|
const youtubeShortsRegex = /^(?:https?:\/\/)?(?:www\.)?youtube\.com\/shorts\/([^"&?/\s]{11})$/i;
|
|
35
|
-
const getDynamicSourceLocales = ({ val, uid, settingId, isLiquid, pageContext,
|
|
35
|
+
const getDynamicSourceLocales = ({ val, uid, settingId, isLiquid, pageContext, defaultVal = '', translate, isReplaceLocationOrigin, isReplaceInventoryQuantity })=>{
|
|
36
36
|
const hasLiquidInValue = new RegExp(/\{\{.*?\}\}|\{%.*?%\}/).test(val?.toString() ?? '');
|
|
37
37
|
const translateLimit = pageContext?.isTranslateWithLocale ? 1000 : 5000;
|
|
38
38
|
if (!translate || !val?.toString().trim() || val.toString().length > translateLimit || hasLiquidInValue || pageContext?.isPreviewing) return val ?? defaultVal;
|
|
@@ -45,10 +45,7 @@ const getDynamicSourceLocales = ({ val, uid, settingId, isLiquid, pageContext, i
|
|
|
45
45
|
locale += ` | replace: '$locationOrigin', locationOrigin`;
|
|
46
46
|
}
|
|
47
47
|
if (isReplaceInventoryQuantity) {
|
|
48
|
-
locale += ` | replace: '
|
|
49
|
-
}
|
|
50
|
-
if (isCapitalize) {
|
|
51
|
-
locale = `${locale} | downcase`;
|
|
48
|
+
locale += ` | replace: '<$quantity$>', inventory_quantity | replace: '<$quantity$>', inventory_quantity`;
|
|
52
49
|
}
|
|
53
50
|
if (isLiquid) return locale;
|
|
54
51
|
return `{{ ${locale} }}`;
|
|
@@ -124,5 +121,28 @@ const replaceLinkData = (text, isTranslate)=>{
|
|
|
124
121
|
}
|
|
125
122
|
return text;
|
|
126
123
|
};
|
|
124
|
+
const getAllHrefFromString = (htmlString)=>{
|
|
125
|
+
if (!htmlString) return [];
|
|
126
|
+
const regex = /href="([^"]*)"/g;
|
|
127
|
+
const hrefs = [];
|
|
128
|
+
let match;
|
|
129
|
+
while((match = regex.exec(htmlString)) !== null){
|
|
130
|
+
match[1] && hrefs.push(match[1]);
|
|
131
|
+
}
|
|
132
|
+
return hrefs;
|
|
133
|
+
};
|
|
134
|
+
const replaceAllHrefFromString = (htmlString, hrefs)=>{
|
|
135
|
+
if (!htmlString) return '';
|
|
136
|
+
const regex = /href="([^"]*)"/g;
|
|
137
|
+
let match;
|
|
138
|
+
let i = 0;
|
|
139
|
+
while((match = regex.exec(htmlString)) !== null){
|
|
140
|
+
if (match[1]) {
|
|
141
|
+
htmlString = htmlString.replace(match[1], hrefs[i] ?? '');
|
|
142
|
+
i++;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
return htmlString;
|
|
146
|
+
};
|
|
127
147
|
|
|
128
|
-
export { getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, isHexTransparent, isTransparentColor, isTransparentRGBA, replaceLinkData, youtubeShortsRegex };
|
|
148
|
+
export { getAllHrefFromString, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, isHexTransparent, isTransparentColor, isTransparentRGBA, replaceAllHrefFromString, replaceLinkData, youtubeShortsRegex };
|
package/dist/esm/index.js
CHANGED
|
@@ -217,6 +217,7 @@ export { default as GloColorSwatchvariantImage } from './third-party/components/
|
|
|
217
217
|
export { default as BfSizeChartSizeGuide } from './third-party/components/BfSizeChartSizeGuide.js';
|
|
218
218
|
export { default as AlsoBoughtCbb } from './third-party/components/AlsoBoughtCbb.js';
|
|
219
219
|
export { default as HextomFreeShippingBar } from './third-party/components/HextomFreeShippingBar.js';
|
|
220
|
+
export { default as EcoboostifyShoppableReelUgc } from './third-party/components/EcoboostifyShoppableReelUgc.js';
|
|
220
221
|
export { default as thirdPartyInstantSetting } from './third-party-instant/setting/index.js';
|
|
221
222
|
export { default as InstantJudgemeReviews } from './third-party-instant/components/InstantJudgemeReviews.js';
|
|
222
223
|
export { default as InstantLooxReviews } from './third-party-instant/components/InstantLooxReviews.js';
|
|
@@ -307,7 +308,7 @@ export { index_liquid as liquidComponents };
|
|
|
307
308
|
export { default as builderComponent } from './builder.js';
|
|
308
309
|
import 'react/jsx-runtime';
|
|
309
310
|
export { ELEMENT_Z_INDEX } from './common/const.js';
|
|
310
|
-
export { getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, isHexTransparent, isTransparentColor, isTransparentRGBA, replaceLinkData, youtubeShortsRegex } from './helpers.js';
|
|
311
|
+
export { getAllHrefFromString, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, isHexTransparent, isTransparentColor, isTransparentRGBA, replaceAllHrefFromString, replaceLinkData, youtubeShortsRegex } from './helpers.js';
|
|
311
312
|
export { default as postPurchaseTextSetting } from './post-purchase/text/setting/index.js';
|
|
312
313
|
export { default as PostPurchaseText } from './post-purchase/text/Text.js';
|
|
313
314
|
export { convertSizeToWidth, transformHighlighTag, transformNumberTag } from './stock-counter/helpers.js';
|
package/dist/esm/index.liquid.js
CHANGED
|
@@ -172,6 +172,7 @@ export { default as GloColorSwatchvariantImage } from './third-party/components/
|
|
|
172
172
|
export { default as BfSizeChartSizeGuide } from './third-party/components/BfSizeChartSizeGuide.liquid.js';
|
|
173
173
|
export { default as AlsoBoughtCbb } from './third-party/components/AlsoBoughtCbb.liquid.js';
|
|
174
174
|
export { default as HextomFreeShippingBar } from './third-party/components/HextomFreeShippingBar.liquid.js';
|
|
175
|
+
export { default as EcoboostifyShoppableReelUgc } from './third-party/components/EcoboostifyShoppableReelUgc.liquid.js';
|
|
175
176
|
export { default as ImageComparison } from './image-comparison/components/ImageComparison.liquid.js';
|
|
176
177
|
export { default as ThirdPartySlot } from './third-party-slot/components/ThirdPartySlot.liquid.js';
|
|
177
178
|
export { default as Sticky } from './sticky/components/Sticky.liquid.js';
|
|
@@ -233,6 +233,7 @@ const ProductList = ({ setting, builderProps, styles, className, children, advan
|
|
|
233
233
|
endif
|
|
234
234
|
assign arrayRelatedExclude = relatedExclude | split: ","
|
|
235
235
|
assign idSelectedList = ''
|
|
236
|
+
assign relatedListProduct = null
|
|
236
237
|
for collection in collections
|
|
237
238
|
assign collectionId = collection.id
|
|
238
239
|
assign isInCollection = false
|
|
@@ -247,20 +248,15 @@ const ProductList = ({ setting, builderProps, styles, className, children, advan
|
|
|
247
248
|
break
|
|
248
249
|
else
|
|
249
250
|
assign idSelectedList = idSelectedList | append: "," | append: product.id
|
|
251
|
+
assign productSelected = product | sort
|
|
252
|
+
assign relatedListProduct = relatedListProduct | concat: productSelected
|
|
250
253
|
endif
|
|
251
254
|
endfor
|
|
252
255
|
endif
|
|
253
256
|
endunless
|
|
254
257
|
endfor
|
|
255
258
|
endfor
|
|
256
|
-
|
|
257
|
-
assign handle = item.handle
|
|
258
|
-
assign productF = item | sort
|
|
259
|
-
if idSelectedList contains item.id
|
|
260
|
-
assign products = products | concat: productF
|
|
261
|
-
endif
|
|
262
|
-
endfor
|
|
263
|
-
assign products = products | uniq
|
|
259
|
+
assign products = productSelected | uniq
|
|
264
260
|
when 'vendor'
|
|
265
261
|
assign vendorAssignProduct = assignProduct.vendor
|
|
266
262
|
assign productFilter = allProductsPaginated | where: 'vendor', vendorAssignProduct
|
|
@@ -141,10 +141,10 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps, pageCont
|
|
|
141
141
|
${icon}</div>
|
|
142
142
|
`)}
|
|
143
143
|
<div class="gp-hidden gp-text-white gp-py-1 gp-px-2 gp-mr-1 gp-inline-block gp-my-[1px] gp-text-g-${mainColor} gp-bg-g-${mainColor}" >
|
|
144
|
-
<div id="template"
|
|
145
|
-
<div id="out-of-stock-message"
|
|
146
|
-
<div id="continue-selling"
|
|
147
|
-
<div id="unlimited-quantity-message"
|
|
144
|
+
<div id="template">${templateStringDisplay}</div>
|
|
145
|
+
<div id="out-of-stock-message">${outOfStockMessageDisplay}</div>
|
|
146
|
+
<div id="continue-selling">${continueSellingDisplay}</div>
|
|
147
|
+
<div id="unlimited-quantity-message">${unlimitedQuantityMessageDisplay}</div>
|
|
148
148
|
</div>
|
|
149
149
|
<p
|
|
150
150
|
data-slot-type="message"
|
|
@@ -26,13 +26,13 @@ const transformNumberTag = (template, stringColor, quantityLeft)=>{
|
|
|
26
26
|
let quantityTag = '';
|
|
27
27
|
// Is hex color
|
|
28
28
|
if (stringColor.includes('#')) {
|
|
29
|
-
quantityTag = `<span style='--c: ${stringColor}'
|
|
29
|
+
quantityTag = `<span style='--c: ${stringColor}'><$quantity$></span>`;
|
|
30
30
|
} else {
|
|
31
31
|
// Is global style color
|
|
32
|
-
quantityTag = `<span class='gp-text-g-${stringColor}'
|
|
32
|
+
quantityTag = `<span class='gp-text-g-${stringColor}'><$quantity$></span>`;
|
|
33
33
|
}
|
|
34
34
|
if (quantityLeft) {
|
|
35
|
-
quantityTag = quantityTag.replace('
|
|
35
|
+
quantityTag = quantityTag.replace('<$quantity$>', quantityLeft.toString());
|
|
36
36
|
}
|
|
37
37
|
return template.replaceAll(DEFAULT_QUANTITY_TEMPLATE, quantityTag);
|
|
38
38
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { makeGlobalSize, useEditorMode, composeTypographyClassName, composeTypographyStyle, cls, makeStyle, makeStyleResponsive, getGlobalColorClass, getGlobalColorStateClass, getStyleShadowState, getStyleShadow, makeLineClamp, getGlobalColorStyle, getGlobalColorStateStyle, getStyleBackgroundByDevice, getGradientBgrStyleByDevice, getCornerStyle } from '@gem-sdk/core';
|
|
3
3
|
import { forwardRef, useMemo } from 'react';
|
|
4
|
+
import { getDisplayText } from './common.js';
|
|
4
5
|
|
|
5
6
|
const Text = /*#__PURE__*/ forwardRef(({ styles, builderAttrs, style, setting, advanced, builderProps, className, children, ...props }, ref)=>{
|
|
6
7
|
const { text, htmlTag: Element = 'div', options, tagWidth, excludeFlex } = setting ?? {};
|
|
@@ -85,7 +86,7 @@ const Text = /*#__PURE__*/ forwardRef(({ styles, builderAttrs, style, setting, a
|
|
|
85
86
|
overflow: 'hidden'
|
|
86
87
|
},
|
|
87
88
|
dangerouslySetInnerHTML: {
|
|
88
|
-
__html:
|
|
89
|
+
__html: getDisplayText(text?.toString() ?? '<p><br></p>')
|
|
89
90
|
}
|
|
90
91
|
})
|
|
91
92
|
}),
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { makeGlobalSize, composeTypographyClassName, composeTypographyStyle, template, makeStyle, makeStyleResponsive, cls, getGlobalColorClass, getGlobalColorStateClass, getStyleShadowState, getStyleShadow, makeLineClamp, getGlobalColorStyle, getGlobalColorStateStyle, getStyleBackgroundByDevice, getGradientBgrStyleByDevice, getCornerStyle } from '@gem-sdk/core';
|
|
2
2
|
import { replaceLinkData, getDynamicSourceLocales } from '../../helpers.js';
|
|
3
|
+
import { getDisplayText } from './common.js';
|
|
3
4
|
|
|
4
5
|
const Text = ({ styles, builderAttrs, style, setting, advanced, builderProps, className, isText, pageContext, elementAttrs, ...props })=>{
|
|
5
6
|
const { text, htmlTag: Element = 'div', tagWidth, excludeFlex, isForceValue } = setting ?? {};
|
|
@@ -27,7 +28,6 @@ const Text = ({ styles, builderAttrs, style, setting, advanced, builderProps, cl
|
|
|
27
28
|
uid: builderProps?.uid,
|
|
28
29
|
settingId: setting?.translate,
|
|
29
30
|
pageContext,
|
|
30
|
-
isCapitalize: styles?.typo?.attrs?.transform === 'capitalize',
|
|
31
31
|
translate: setting.translate,
|
|
32
32
|
isReplaceLocationOrigin: isViewliveHeadingOrTextComponent
|
|
33
33
|
});
|
|
@@ -35,7 +35,7 @@ const Text = ({ styles, builderAttrs, style, setting, advanced, builderProps, cl
|
|
|
35
35
|
displayText = renderText;
|
|
36
36
|
}
|
|
37
37
|
} else {
|
|
38
|
-
displayText =
|
|
38
|
+
displayText = getDisplayText(renderText ?? '');
|
|
39
39
|
}
|
|
40
40
|
return template`
|
|
41
41
|
{% assign locationOrigin = request.origin | append: routes.root_url | split: '/' | join: '/' %}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getAllHrefFromString, replaceAllHrefFromString } from '../../helpers.js';
|
|
2
|
+
|
|
3
|
+
const getDisplayText = (renderText, isTextCapitalize = false)=>{
|
|
4
|
+
let displayText = renderText;
|
|
5
|
+
if (isTextCapitalize) {
|
|
6
|
+
const links = getAllHrefFromString(renderText ?? '');
|
|
7
|
+
displayText = replaceAllHrefFromString(renderText?.toString().toLocaleLowerCase(), links);
|
|
8
|
+
}
|
|
9
|
+
return displayText;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export { getDisplayText };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { jsx, Fragment } from 'react/jsx-runtime';
|
|
2
|
+
import { makeStyleResponsive } from '@gem-sdk/core';
|
|
3
|
+
import ThirdPartyPreview from './ThirdPartyPreview.js';
|
|
4
|
+
import AppConfig from '../configs/EcoboostifyShoppableReelUgc.js';
|
|
5
|
+
|
|
6
|
+
const EcoboostifyShoppableReelUgcContent = ()=>{
|
|
7
|
+
return /*#__PURE__*/ jsx(Fragment, {
|
|
8
|
+
children: /*#__PURE__*/ jsx("div", {
|
|
9
|
+
className: "gp-p-2",
|
|
10
|
+
children: /*#__PURE__*/ jsx(ThirdPartyPreview, {
|
|
11
|
+
setting: {
|
|
12
|
+
label: 'EcoBoostify Shoppable Reel UGC',
|
|
13
|
+
iconSvg: `<img class="gp-w-6 gp-border gp-border-[#494949] gp-rounded-[3px]" src="${AppConfig.logoUrl}">`
|
|
14
|
+
}
|
|
15
|
+
})
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
const EcoboostifyShoppableReelUgc = ({ setting })=>{
|
|
20
|
+
return /*#__PURE__*/ jsx("div", {
|
|
21
|
+
style: {
|
|
22
|
+
...makeStyleResponsive('ta', setting?.align)
|
|
23
|
+
},
|
|
24
|
+
children: /*#__PURE__*/ jsx(EcoboostifyShoppableReelUgcContent, {})
|
|
25
|
+
});
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export { EcoboostifyShoppableReelUgc as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { getLiquidForAppBlock } from '../helpers/thirdParty.js';
|
|
2
|
+
|
|
3
|
+
const EcoboostifyShoppableReelUgc = ({ setting, advanced })=>{
|
|
4
|
+
const { align, appBlockId } = setting ?? {};
|
|
5
|
+
return getLiquidForAppBlock(appBlockId, align, `${advanced?.cssClass ?? ''} !gp-block`);
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export { EcoboostifyShoppableReelUgc as default };
|
|
@@ -2,7 +2,7 @@ import { getLiquidForAppBlock } from '../helpers/thirdParty.js';
|
|
|
2
2
|
|
|
3
3
|
const RechargeSubscriptions = ({ setting, advanced })=>{
|
|
4
4
|
const { align, appBlockId } = setting ?? {};
|
|
5
|
-
return getLiquidForAppBlock(appBlockId, align, advanced?.cssClass);
|
|
5
|
+
return getLiquidForAppBlock(appBlockId, align, `${advanced?.cssClass ?? ''} !gp-block`);
|
|
6
6
|
};
|
|
7
7
|
|
|
8
8
|
export { RechargeSubscriptions as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var AppConfig = {
|
|
2
|
+
id: 'ecoboostify-shoppable-reel-ugc',
|
|
3
|
+
label: 'EcoBoostify Shoppable Reel UGC',
|
|
4
|
+
logoUrl: 'https://cdn.shopify.com/app-store/listing_images/cdbdfc53291cf8d2908e72deae77f94e/icon/CJWKq4vxxIkDEAE=.png',
|
|
5
|
+
tag: 'EcoboostifyShoppableReelUgc'
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export { AppConfig as default };
|
|
@@ -454,7 +454,12 @@ const HextomFreeShippingBar = dynamic(()=>import('./components/HextomFreeShippin
|
|
|
454
454
|
ssr: false,
|
|
455
455
|
loading: Loading
|
|
456
456
|
});
|
|
457
|
+
const EcoboostifyShoppableReelUgc = dynamic(()=>import('./components/EcoboostifyShoppableReelUgc.js'), {
|
|
458
|
+
ssr: false,
|
|
459
|
+
loading: Loading
|
|
460
|
+
});
|
|
457
461
|
var thirdParty = {
|
|
462
|
+
EcoboostifyShoppableReelUgc,
|
|
458
463
|
EstimatedDeliveryDatePlus,
|
|
459
464
|
OkendoReviewsLoyalty,
|
|
460
465
|
EssentialAnnouncementBar,
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import AppConfig from '../configs/EcoboostifyShoppableReelUgc.js';
|
|
2
|
+
|
|
3
|
+
const config = {
|
|
4
|
+
tag: AppConfig.tag,
|
|
5
|
+
label: AppConfig.label,
|
|
6
|
+
icon: '<img class="gp-w-6 gp-border gp-border-[#494949] gp-rounded-[3px]" src="https://cdn.shopify.com/app-store/listing_images/cdbdfc53291cf8d2908e72deae77f94e/icon/CJWKq4vxxIkDEAE=.png">',
|
|
7
|
+
editorConfigs: {
|
|
8
|
+
component: {
|
|
9
|
+
isThirdParty: true
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
presets: [
|
|
13
|
+
{
|
|
14
|
+
id: AppConfig.id,
|
|
15
|
+
name: {
|
|
16
|
+
en: AppConfig.label
|
|
17
|
+
},
|
|
18
|
+
hideTextContent: true,
|
|
19
|
+
icon: {
|
|
20
|
+
desktop: `<div class="w-full flex flex-col items-center">
|
|
21
|
+
<img class="w-24 border border-dark-200 rounded-medium" src="https://cdn.shopify.com/app-store/listing_images/cdbdfc53291cf8d2908e72deae77f94e/icon/CJWKq4vxxIkDEAE=.png">
|
|
22
|
+
<span class="preset-item-title">EcoBoostify Shoppable Reel UGC</span>
|
|
23
|
+
</div>`
|
|
24
|
+
},
|
|
25
|
+
components: [
|
|
26
|
+
{
|
|
27
|
+
tag: AppConfig.tag
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
settings: [
|
|
33
|
+
{
|
|
34
|
+
id: 'setting',
|
|
35
|
+
controls: [
|
|
36
|
+
{
|
|
37
|
+
id: 'appBlockId',
|
|
38
|
+
type: 'input',
|
|
39
|
+
default: ''
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
id: 'widgetType',
|
|
43
|
+
label: 'Choose widget',
|
|
44
|
+
type: 'select',
|
|
45
|
+
options: [
|
|
46
|
+
{
|
|
47
|
+
label: 'Reel Playlist',
|
|
48
|
+
value: 'reel-playlist'
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
default: 'reel-playlist'
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
id: 'playlistId',
|
|
55
|
+
label: 'Playlist ID',
|
|
56
|
+
type: 'input'
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
id: 'install',
|
|
60
|
+
type: 'open-link',
|
|
61
|
+
target: '_blank',
|
|
62
|
+
linkType: 'install',
|
|
63
|
+
href: 'https://apps.shopify.com/ecoboostify?utm_source=gempages',
|
|
64
|
+
appName: AppConfig.label
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
id: 'openApp',
|
|
68
|
+
type: 'open-link',
|
|
69
|
+
target: '_blank',
|
|
70
|
+
linkType: 'openApp',
|
|
71
|
+
href: 'https://admin.shopify.com/?redirect=/apps/ecoboostify',
|
|
72
|
+
appName: AppConfig.label
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
id: 'align',
|
|
76
|
+
label: 'Alignment',
|
|
77
|
+
type: 'segment',
|
|
78
|
+
options: [
|
|
79
|
+
{
|
|
80
|
+
label: 'Left',
|
|
81
|
+
value: 'left',
|
|
82
|
+
type: 'align'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
label: 'Center',
|
|
86
|
+
value: 'center',
|
|
87
|
+
type: 'align'
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
label: 'Right',
|
|
91
|
+
value: 'right',
|
|
92
|
+
type: 'align'
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
devices: {
|
|
96
|
+
desktop: {
|
|
97
|
+
default: 'left'
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
ui: [
|
|
105
|
+
{
|
|
106
|
+
type: 'control',
|
|
107
|
+
setting: {
|
|
108
|
+
id: 'install'
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
type: 'control',
|
|
113
|
+
setting: {
|
|
114
|
+
id: 'playlistId'
|
|
115
|
+
},
|
|
116
|
+
label: {
|
|
117
|
+
en: 'Playlist ID'
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
type: 'control',
|
|
122
|
+
setting: {
|
|
123
|
+
id: 'openApp'
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'control',
|
|
128
|
+
label: {
|
|
129
|
+
en: 'Align'
|
|
130
|
+
},
|
|
131
|
+
setting: {
|
|
132
|
+
id: 'align'
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
export { config as default };
|
|
@@ -50,8 +50,11 @@ const config = {
|
|
|
50
50
|
options: [
|
|
51
51
|
{
|
|
52
52
|
label: 'Subscription Widget',
|
|
53
|
-
value: 'subscription-widget'
|
|
54
|
-
|
|
53
|
+
value: 'subscription-widget'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
label: 'Subscription Widget 2.0',
|
|
57
|
+
value: 'subscription-widget-v2'
|
|
55
58
|
}
|
|
56
59
|
],
|
|
57
60
|
default: 'subscription-widget'
|
|
@@ -111,6 +111,7 @@ import config$1J from './GloColorSwatchvariantImage.js';
|
|
|
111
111
|
import config$1K from './BfSizeChartSizeGuide.js';
|
|
112
112
|
import config$1L from './AlsoBoughtCbb.js';
|
|
113
113
|
import config$1M from './HextomFreeShippingBar.js';
|
|
114
|
+
import config$1N from './EcoboostifyShoppableReelUgc.js';
|
|
114
115
|
|
|
115
116
|
var index = {
|
|
116
117
|
HextomCountdownTimerBar: config,
|
|
@@ -225,7 +226,8 @@ var index = {
|
|
|
225
226
|
GloColorSwatchvariantImage: config$1J,
|
|
226
227
|
BfSizeChartSizeGuide: config$1K,
|
|
227
228
|
AlsoBoughtCbb: config$1L,
|
|
228
|
-
HextomFreeShippingBar: config$1M
|
|
229
|
+
HextomFreeShippingBar: config$1M,
|
|
230
|
+
EcoboostifyShoppableReelUgc: config$1N
|
|
229
231
|
};
|
|
230
232
|
|
|
231
233
|
export { index as default };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2435,6 +2435,7 @@ declare const _default$r: {
|
|
|
2435
2435
|
BfSizeChartSizeGuide: _gem_sdk_core.ComponentSetting<BfSizeChartSizeGuideProps>;
|
|
2436
2436
|
AlsoBoughtCbb: _gem_sdk_core.ComponentSetting<AlsoBoughtCbbProps>;
|
|
2437
2437
|
HextomFreeShippingBar: _gem_sdk_core.ComponentSetting<HextomFreeShippingBarProps>;
|
|
2438
|
+
EcoboostifyShoppableReelUgc: _gem_sdk_core.ComponentSetting<EcoboostifyShoppableReelUgcProps>;
|
|
2438
2439
|
};
|
|
2439
2440
|
|
|
2440
2441
|
type RechargeSubscriptionsProps = BaseProps<{
|
|
@@ -3505,6 +3506,16 @@ type HextomFreeShippingBarProps = BaseProps<{
|
|
|
3505
3506
|
}>;
|
|
3506
3507
|
declare const HextomFreeShippingBar$1: React.FC<HextomFreeShippingBarProps>;
|
|
3507
3508
|
|
|
3509
|
+
type EcoboostifyShoppableReelUgcProps = BaseProps<{
|
|
3510
|
+
align?: ObjectDevices<AlignProp>;
|
|
3511
|
+
openApp?: any;
|
|
3512
|
+
install?: any;
|
|
3513
|
+
appBlockId?: string;
|
|
3514
|
+
widgetType?: string;
|
|
3515
|
+
playlistId?: string;
|
|
3516
|
+
}>;
|
|
3517
|
+
declare const EcoboostifyShoppableReelUgc$1: React.FC<EcoboostifyShoppableReelUgcProps>;
|
|
3518
|
+
|
|
3508
3519
|
declare const _default$q: {
|
|
3509
3520
|
InstantJudgemeReviews: _gem_sdk_core.ComponentSetting<InstantJudgemeReviewsProps>;
|
|
3510
3521
|
InstantLooxReviews: _gem_sdk_core.ComponentSetting<InstantLooxReviewsProps>;
|
|
@@ -5137,6 +5148,7 @@ declare const _default$1: {
|
|
|
5137
5148
|
InstantLooxReviews: React.ComponentType<InstantLooxReviewsProps>;
|
|
5138
5149
|
InstantKlaviyo: React.ComponentType<InstantKlaviyoProps>;
|
|
5139
5150
|
InstantYotpoLoyalty: React.ComponentType<InstantYotpoLoyaltyProps>;
|
|
5151
|
+
EcoboostifyShoppableReelUgc: React.ComponentType<EcoboostifyShoppableReelUgcProps>;
|
|
5140
5152
|
EstimatedDeliveryDatePlus: React.ComponentType<EstimatedDeliveryDatePlusProps>;
|
|
5141
5153
|
OkendoReviewsLoyalty: React.ComponentType<OkendoReviewsLoyaltyProps>;
|
|
5142
5154
|
EssentialAnnouncementBar: React.ComponentType<EssentialAnnouncementBarProps>;
|
|
@@ -6904,6 +6916,8 @@ declare const AlsoBoughtCbb: ({ setting, advanced }: AlsoBoughtCbbProps) => stri
|
|
|
6904
6916
|
|
|
6905
6917
|
declare const HextomFreeShippingBar: ({ setting, advanced }: HextomFreeShippingBarProps) => string;
|
|
6906
6918
|
|
|
6919
|
+
declare const EcoboostifyShoppableReelUgc: ({ setting, advanced }: EcoboostifyShoppableReelUgcProps) => string;
|
|
6920
|
+
|
|
6907
6921
|
declare const ImageComparison: ({ setting, styles, builderProps, advanced, ...props }: ImageComparisonProps) => string;
|
|
6908
6922
|
|
|
6909
6923
|
declare const ThirdPartySlot: ({ setting, advanced }: ThirdPartySlotProps) => string;
|
|
@@ -7103,6 +7117,7 @@ declare const index_liquid_DynamicCheckout: typeof DynamicCheckout;
|
|
|
7103
7117
|
declare const index_liquid_EasifyProductOptions: typeof EasifyProductOptions;
|
|
7104
7118
|
declare const index_liquid_EasyBundleBuilderSkailama: typeof EasyBundleBuilderSkailama;
|
|
7105
7119
|
declare const index_liquid_EasySellCOD: typeof EasySellCOD;
|
|
7120
|
+
declare const index_liquid_EcoboostifyShoppableReelUgc: typeof EcoboostifyShoppableReelUgc;
|
|
7106
7121
|
declare const index_liquid_EssentialAnnouncementBar: typeof EssentialAnnouncementBar;
|
|
7107
7122
|
declare const index_liquid_EssentialCountdownTimerBar: typeof EssentialCountdownTimerBar;
|
|
7108
7123
|
declare const index_liquid_EstimateDate: typeof EstimateDate;
|
|
@@ -7293,6 +7308,7 @@ declare namespace index_liquid {
|
|
|
7293
7308
|
index_liquid_EasifyProductOptions as EasifyProductOptions,
|
|
7294
7309
|
index_liquid_EasyBundleBuilderSkailama as EasyBundleBuilderSkailama,
|
|
7295
7310
|
index_liquid_EasySellCOD as EasySellCOD,
|
|
7311
|
+
index_liquid_EcoboostifyShoppableReelUgc as EcoboostifyShoppableReelUgc,
|
|
7296
7312
|
index_liquid_EssentialAnnouncementBar as EssentialAnnouncementBar,
|
|
7297
7313
|
index_liquid_EssentialCountdownTimerBar as EssentialCountdownTimerBar,
|
|
7298
7314
|
index_liquid_EstimateDate as EstimateDate,
|
|
@@ -7780,6 +7796,7 @@ declare const _default: {
|
|
|
7780
7796
|
BfSizeChartSizeGuide: React.FC<BfSizeChartSizeGuideProps>;
|
|
7781
7797
|
AlsoBoughtCbb: React.FC<AlsoBoughtCbbProps>;
|
|
7782
7798
|
HextomFreeShippingBar: React.FC<HextomFreeShippingBarProps>;
|
|
7799
|
+
EcoboostifyShoppableReelUgc: React.FC<EcoboostifyShoppableReelUgcProps>;
|
|
7783
7800
|
};
|
|
7784
7801
|
|
|
7785
7802
|
declare const ELEMENT_Z_INDEX: {
|
|
@@ -7809,7 +7826,7 @@ declare const isTransparentColor: (str?: string) => boolean;
|
|
|
7809
7826
|
declare const isTransparentRGBA: (rgbStr: string) => boolean;
|
|
7810
7827
|
declare const isHexTransparent: (hex: string) => boolean;
|
|
7811
7828
|
declare const youtubeShortsRegex: RegExp;
|
|
7812
|
-
declare const getDynamicSourceLocales: ({ val, uid, settingId, isLiquid, pageContext,
|
|
7829
|
+
declare const getDynamicSourceLocales: ({ val, uid, settingId, isLiquid, pageContext, defaultVal, translate, isReplaceLocationOrigin, isReplaceInventoryQuantity, }: DynamicSource) => string | number | boolean | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode>;
|
|
7813
7830
|
declare const getStaticLocale: (tag: string, key: string) => string;
|
|
7814
7831
|
declare const getSettingPreloadData: (disabledValue: string, enabledValue?: string) => string;
|
|
7815
7832
|
declare const getInsertLinkData: (defaultWrap: string, setting?: {
|
|
@@ -7822,5 +7839,7 @@ declare const getInsertLinkData: (defaultWrap: string, setting?: {
|
|
|
7822
7839
|
shouldRenderLink: boolean;
|
|
7823
7840
|
};
|
|
7824
7841
|
declare const replaceLinkData: (text?: string, isTranslate?: boolean) => string | undefined;
|
|
7842
|
+
declare const getAllHrefFromString: (htmlString: string) => string[];
|
|
7843
|
+
declare const replaceAllHrefFromString: (htmlString: string, hrefs: string[]) => string;
|
|
7825
7844
|
|
|
7826
|
-
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, convertSizeToWidth, _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, transformHighlighTag, transformNumberTag, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
|
|
7845
|
+
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, EcoboostifyShoppableReelUgc$1 as EcoboostifyShoppableReelUgc, EcoboostifyShoppableReelUgcProps, 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, convertSizeToWidth, _default$I as countdownSetting, _default$O as couponSetting, _default$k as dialogSetting, _default$5 as estimateDeliverySetting, getAllHrefFromString, 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, replaceAllHrefFromString, 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, transformHighlighTag, transformNumberTag, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/components",
|
|
3
|
-
"version": "2.1.27-staging.
|
|
3
|
+
"version": "2.1.27-staging.10",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"format": "prettier --write \"./src/**/*.{ts,tsx}\""
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@gem-sdk/core": "2.1.27-staging.
|
|
24
|
+
"@gem-sdk/core": "2.1.27-staging.9",
|
|
25
25
|
"@gem-sdk/styles": "2.1.27-staging.0",
|
|
26
26
|
"@types/react-transition-group": "^4.4.5"
|
|
27
27
|
},
|