@gem-sdk/components 2.5.7 → 2.5.9
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/banner/components/hero-banner/index.liquid.js +5 -2
- package/dist/cjs/banner/setting/HeroBanner.js +50 -6
- package/dist/cjs/banner/setting/presets/heroBanner1ColPreSalesPage.js +134 -0
- package/dist/cjs/banner/setting/presets/heroBannerContentLeftPreSalesPage.js +154 -0
- package/dist/cjs/banner/setting/presets/heroBannerContentRightPreSalesPage.js +162 -0
- package/dist/cjs/banner/setting/presets/heroBannerParallaxPreSalesPage.js +134 -0
- package/dist/cjs/banner/setting/presets/heroBannerVideoPreSalesPage.js +130 -0
- package/dist/cjs/button/components/Button.liquid.js +6 -2
- package/dist/cjs/button/setting/Button.js +112 -5
- package/dist/cjs/constants.js +5 -0
- package/dist/cjs/helpers.js +17 -0
- package/dist/cjs/icon/components/Icon.liquid.js +5 -2
- package/dist/cjs/icon/setting/Icon.js +69 -5
- package/dist/cjs/image/components/Image.liquid.js +6 -3
- package/dist/cjs/image/setting/Image.js +207 -16
- package/dist/cjs/index.js +1 -0
- package/dist/esm/banner/components/hero-banner/index.liquid.js +6 -3
- package/dist/esm/banner/setting/HeroBanner.js +50 -6
- package/dist/esm/banner/setting/presets/heroBanner1ColPreSalesPage.js +132 -0
- package/dist/esm/banner/setting/presets/heroBannerContentLeftPreSalesPage.js +152 -0
- package/dist/esm/banner/setting/presets/heroBannerContentRightPreSalesPage.js +160 -0
- package/dist/esm/banner/setting/presets/heroBannerParallaxPreSalesPage.js +132 -0
- package/dist/esm/banner/setting/presets/heroBannerVideoPreSalesPage.js +128 -0
- package/dist/esm/button/components/Button.liquid.js +7 -3
- package/dist/esm/button/setting/Button.js +112 -5
- package/dist/esm/constants.js +3 -0
- package/dist/esm/helpers.js +17 -1
- package/dist/esm/icon/components/Icon.liquid.js +6 -3
- package/dist/esm/icon/setting/Icon.js +69 -5
- package/dist/esm/image/components/Image.liquid.js +7 -4
- package/dist/esm/image/setting/Image.js +207 -16
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +38 -1
- package/package.json +2 -2
|
@@ -19,6 +19,17 @@ const config = {
|
|
|
19
19
|
default: `<svg height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" data-id="508414815326568808">
|
|
20
20
|
<path fill="currentColor" strokelinecap="round" strokelinejoin="round" d="M234.29,114.85l-45,38.83L203,211.75a16.4,16.4,0,0,1-24.5,17.82L128,198.49,77.47,229.57A16.4,16.4,0,0,1,53,211.75l13.76-58.07-45-38.83A16.46,16.46,0,0,1,31.08,86l59-4.76,22.76-55.08a16.36,16.36,0,0,1,30.27,0l22.75,55.08,59,4.76a16.46,16.46,0,0,1,9.37,28.86Z"></path></svg>`
|
|
21
21
|
},
|
|
22
|
+
{
|
|
23
|
+
id: 'isGoToSalesPage',
|
|
24
|
+
type: 'toggle',
|
|
25
|
+
label: 'Go to Sales page',
|
|
26
|
+
default: false
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
id: 'linkedToPreSalesPageBanner',
|
|
30
|
+
type: 'banner-pre-sales-page',
|
|
31
|
+
default: false
|
|
32
|
+
},
|
|
22
33
|
{
|
|
23
34
|
id: 'iconLink',
|
|
24
35
|
type: 'pick-link',
|
|
@@ -230,14 +241,37 @@ const config = {
|
|
|
230
241
|
]
|
|
231
242
|
},
|
|
232
243
|
{
|
|
233
|
-
type: '
|
|
244
|
+
type: 'group',
|
|
234
245
|
label: {
|
|
235
246
|
en: 'Insert link'
|
|
236
247
|
},
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
248
|
+
controls: [
|
|
249
|
+
{
|
|
250
|
+
type: 'control',
|
|
251
|
+
condition: 'pageType == "GP_PRE_SALE_PAGE"',
|
|
252
|
+
setting: {
|
|
253
|
+
id: 'linkedToPreSalesPageBanner'
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
type: 'control',
|
|
258
|
+
condition: 'pageType == "GP_PRE_SALE_PAGE"',
|
|
259
|
+
setting: {
|
|
260
|
+
id: 'isGoToSalesPage'
|
|
261
|
+
},
|
|
262
|
+
label: {
|
|
263
|
+
en: 'Go to Sales page'
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
type: 'control',
|
|
268
|
+
condition: 'isGoToSalesPage === false || pageType != "GP_PRE_SALE_PAGE"',
|
|
269
|
+
layout: 'vertical',
|
|
270
|
+
setting: {
|
|
271
|
+
id: 'iconLink'
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
]
|
|
241
275
|
},
|
|
242
276
|
{
|
|
243
277
|
type: 'group',
|
|
@@ -342,6 +376,36 @@ const config = {
|
|
|
342
376
|
}
|
|
343
377
|
}
|
|
344
378
|
]
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
id: 'icon-pre-sales-page',
|
|
382
|
+
name: {
|
|
383
|
+
en: 'Icon'
|
|
384
|
+
},
|
|
385
|
+
icon: {
|
|
386
|
+
desktop: `
|
|
387
|
+
<svg width="96" height="48" viewBox="0 0 96 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
388
|
+
<path d="M47.283 7.62515C47.5764 7.03055 48.4243 7.03055 48.7177 7.62515L52.251 14.7844C52.3676 15.0205 52.5928 15.1842 52.8534 15.222L60.7541 16.3701C61.4102 16.4654 61.6722 17.2718 61.1974 17.7346L55.4804 23.3073C55.2919 23.4911 55.2059 23.7559 55.2504 24.0154L56.6 31.8842C56.7121 32.5377 56.0261 33.0361 55.4392 32.7275L48.3726 29.0124C48.1396 28.8899 47.8611 28.8898 47.6281 29.0124L40.5615 32.7275C39.9746 33.0361 39.2886 32.5377 39.4007 31.8842L40.7503 24.0154C40.7948 23.7559 40.7088 23.4911 40.5202 23.3073L34.8033 17.7346C34.3284 17.2718 34.5904 16.4654 35.2466 16.3701L43.1473 15.222C43.4079 15.1842 43.6331 15.0205 43.7497 14.7844L47.283 7.62515Z" fill="#D6D6D6"/>
|
|
389
|
+
</svg>
|
|
390
|
+
`
|
|
391
|
+
},
|
|
392
|
+
components: [
|
|
393
|
+
{
|
|
394
|
+
tag: 'Icon',
|
|
395
|
+
advanced: {
|
|
396
|
+
'spacing-setting': {
|
|
397
|
+
desktop: {
|
|
398
|
+
margin: {
|
|
399
|
+
bottom: 0
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
settings: {
|
|
405
|
+
isGoToSalesPage: true
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
]
|
|
345
409
|
}
|
|
346
410
|
],
|
|
347
411
|
rootOverride: {
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { makeStyleResponsive, getWidthByShapeGlobalSize, getHeightByShapeGlobalSize, template, cls, getStyleShadowState, handleConvertClassColor, getBorderStyle, getBorderRadiusStyle, getStyleShadow, getAspectRatioGlobalSize, getCornerCSSFromGlobal } from '@gem-sdk/core';
|
|
2
2
|
import AdaptiveImage from './AdaptiveImage.liquid.js';
|
|
3
3
|
import NextImage from './NextImage.liquid.js';
|
|
4
|
-
import {
|
|
4
|
+
import { getLinkDataConfigs } from '../../helpers.js';
|
|
5
5
|
|
|
6
6
|
const Image = ({ styles, className, setting, builderAttrs, builderProps, style, advanced, enableLazyloadImage = true })=>{
|
|
7
|
-
const { imageLink, isNotLazyload } = setting ?? {};
|
|
7
|
+
const { imageLink, isNotLazyload, isGoToSalesPage } = setting ?? {};
|
|
8
|
+
const { Wrap: WrapLink, urlData, shouldRenderLink } = getLinkDataConfigs({
|
|
9
|
+
defaultWrap: 'div',
|
|
10
|
+
setting: imageLink
|
|
11
|
+
}, isGoToSalesPage);
|
|
8
12
|
const { shape } = styles ?? {};
|
|
9
|
-
const { Wrap: WrapLink, urlData } = getInsertLinkData('div', imageLink);
|
|
10
13
|
const overwriteDefaultRadius = (cornerRadius)=>{
|
|
11
14
|
const radius = {
|
|
12
15
|
...cornerRadius
|
|
@@ -38,7 +41,7 @@ const Image = ({ styles, className, setting, builderAttrs, builderProps, style,
|
|
|
38
41
|
>
|
|
39
42
|
<${WrapLink}
|
|
40
43
|
class="pointer-events-auto h-full gp-flex"
|
|
41
|
-
${
|
|
44
|
+
${shouldRenderLink ? {
|
|
42
45
|
...urlData,
|
|
43
46
|
title: setting?.title
|
|
44
47
|
} : {}}
|
|
@@ -60,6 +60,17 @@ const config = {
|
|
|
60
60
|
target: '_self'
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
|
+
{
|
|
64
|
+
id: 'isGoToSalesPage',
|
|
65
|
+
type: 'toggle',
|
|
66
|
+
label: 'Go to Sales page',
|
|
67
|
+
default: false
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
id: 'linkedToPreSalesPageBanner',
|
|
71
|
+
type: 'banner-pre-sales-page',
|
|
72
|
+
default: false
|
|
73
|
+
},
|
|
63
74
|
{
|
|
64
75
|
id: 'seo',
|
|
65
76
|
type: 'group',
|
|
@@ -390,14 +401,37 @@ const config = {
|
|
|
390
401
|
]
|
|
391
402
|
},
|
|
392
403
|
{
|
|
393
|
-
type: '
|
|
404
|
+
type: 'group',
|
|
394
405
|
label: {
|
|
395
406
|
en: 'Insert link'
|
|
396
407
|
},
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
408
|
+
controls: [
|
|
409
|
+
{
|
|
410
|
+
type: 'control',
|
|
411
|
+
condition: 'pageType == "GP_PRE_SALE_PAGE"',
|
|
412
|
+
setting: {
|
|
413
|
+
id: 'linkedToPreSalesPageBanner'
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
type: 'control',
|
|
418
|
+
condition: 'pageType == "GP_PRE_SALE_PAGE"',
|
|
419
|
+
setting: {
|
|
420
|
+
id: 'isGoToSalesPage'
|
|
421
|
+
},
|
|
422
|
+
label: {
|
|
423
|
+
en: 'Go to Sales page'
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
type: 'control',
|
|
428
|
+
condition: 'isGoToSalesPage === false || pageType != "GP_PRE_SALE_PAGE"',
|
|
429
|
+
layout: 'vertical',
|
|
430
|
+
setting: {
|
|
431
|
+
id: 'imageLink'
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
]
|
|
401
435
|
},
|
|
402
436
|
{
|
|
403
437
|
type: 'group',
|
|
@@ -603,19 +637,19 @@ const config = {
|
|
|
603
637
|
}
|
|
604
638
|
},
|
|
605
639
|
borderRadius: {
|
|
606
|
-
btrr:
|
|
607
|
-
bblr:
|
|
608
|
-
bbrr:
|
|
609
|
-
btlr:
|
|
610
|
-
radiusType:
|
|
640
|
+
btrr: '999999px',
|
|
641
|
+
bblr: '999999px',
|
|
642
|
+
bbrr: '999999px',
|
|
643
|
+
btlr: '999999px',
|
|
644
|
+
radiusType: 'custom'
|
|
611
645
|
},
|
|
612
646
|
wrapperBorder: {
|
|
613
|
-
borderType:
|
|
614
|
-
border:
|
|
615
|
-
width:
|
|
616
|
-
position:
|
|
617
|
-
borderWidth:
|
|
618
|
-
color:
|
|
647
|
+
borderType: 'none',
|
|
648
|
+
border: 'none',
|
|
649
|
+
width: '1px 1px 1px 1px',
|
|
650
|
+
position: 'all',
|
|
651
|
+
borderWidth: '1px',
|
|
652
|
+
color: '#000000',
|
|
619
653
|
isCustom: true
|
|
620
654
|
}
|
|
621
655
|
},
|
|
@@ -633,6 +667,163 @@ const config = {
|
|
|
633
667
|
}
|
|
634
668
|
}
|
|
635
669
|
]
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
id: 'image-pre-sales-page',
|
|
673
|
+
name: {
|
|
674
|
+
en: 'Image'
|
|
675
|
+
},
|
|
676
|
+
icon: {
|
|
677
|
+
desktop: `
|
|
678
|
+
<svg width="96" height="48" viewBox="0 0 96 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
679
|
+
<rect width="96" height="48" rx="3" fill="#424242"/>
|
|
680
|
+
<circle cx="37" cy="17" r="3" fill="#D6D6D6"/>
|
|
681
|
+
<path d="M32.42 30.9518L37.1407 25.1338C37.3005 24.9364 37.498 24.7768 37.7203 24.6653C37.9427 24.5538 38.1848 24.4929 38.431 24.4866C38.6772 24.4803 38.9218 24.5287 39.149 24.6287C39.3762 24.7288 39.5809 24.8781 39.7496 25.0671L41.957 27.5361L50.5857 16.6629C50.7546 16.4499 50.967 16.2797 51.2069 16.165C51.4469 16.0503 51.7083 15.9941 51.9718 16.0005C52.2352 16.0069 52.4939 16.0758 52.7285 16.202C52.9632 16.3283 53.1679 16.5086 53.3273 16.7297L63.6435 31.0236C63.8408 31.2976 63.9615 31.6242 63.9922 31.9666C64.0229 32.3089 63.9623 32.6535 63.8173 32.9616C63.6723 33.2697 63.4485 33.529 63.1712 33.7105C62.8939 33.8919 62.5741 33.9883 62.2476 33.9887L33.7537 34C33.4185 33.9999 33.0904 33.8986 32.8082 33.7082C32.526 33.5177 32.3014 33.2461 32.1611 32.9255C32.0208 32.6048 31.9706 32.2485 32.0165 31.8988C32.0624 31.549 32.2024 31.2204 32.42 30.9518Z" fill="#D6D6D6"/>
|
|
682
|
+
</svg>
|
|
683
|
+
`
|
|
684
|
+
},
|
|
685
|
+
components: [
|
|
686
|
+
{
|
|
687
|
+
tag: 'Image',
|
|
688
|
+
advanced: {
|
|
689
|
+
'spacing-setting': {
|
|
690
|
+
desktop: {
|
|
691
|
+
margin: {
|
|
692
|
+
bottom: 'var(--g-s-l)'
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
editorData: {
|
|
697
|
+
cssPlaceholder: '.{{rootClassName}} {\n\n}\n.{{rootClassName}} > figure > img {\n\n}'
|
|
698
|
+
}
|
|
699
|
+
},
|
|
700
|
+
settings: {
|
|
701
|
+
isGoToSalesPage: true
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
],
|
|
705
|
+
flowTagComponents: {
|
|
706
|
+
Marquee: [
|
|
707
|
+
{
|
|
708
|
+
tag: 'Image',
|
|
709
|
+
styles: {
|
|
710
|
+
shape: {
|
|
711
|
+
desktop: {
|
|
712
|
+
width: 'auto',
|
|
713
|
+
height: 'auto'
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
enableBorder: 'none'
|
|
717
|
+
},
|
|
718
|
+
advanced: {
|
|
719
|
+
'spacing-setting': {
|
|
720
|
+
desktop: {
|
|
721
|
+
margin: {
|
|
722
|
+
bottom: 'var(--g-s-l)'
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
editorData: {
|
|
727
|
+
rootClassName: '{{rootClassName}}',
|
|
728
|
+
css: '.{{rootClassName}} {\n\n}\n.{{rootClassName}} > figure > img {\n\n}'
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
settings: {
|
|
732
|
+
isNotLazyload: true
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
]
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
id: 'image-circle-pre-sales-page',
|
|
740
|
+
name: {
|
|
741
|
+
en: 'Image'
|
|
742
|
+
},
|
|
743
|
+
icon: {
|
|
744
|
+
desktop: `
|
|
745
|
+
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
746
|
+
<rect x="2" y="2" width="52" height="52" rx="26" fill="#424242"/>
|
|
747
|
+
<ellipse cx="20.4375" cy="22.9688" rx="2.0625" ry="1.96875" fill="#F9F9F9"/>
|
|
748
|
+
<path d="M17.2887 32.9997L20.5342 29.1816C20.6441 29.052 20.7799 28.9473 20.9327 28.8741C21.0856 28.8009 21.2521 28.761 21.4213 28.7568C21.5905 28.7527 21.7587 28.7845 21.915 28.8501C22.0712 28.9158 22.2118 29.0138 22.3278 29.1378L23.8454 30.758L29.7777 23.6225C29.8938 23.4827 30.0398 23.371 30.2048 23.2958C30.3697 23.2205 30.5495 23.1836 30.7306 23.1878C30.9117 23.192 31.0895 23.2372 31.2509 23.3201C31.4122 23.4029 31.5529 23.5213 31.6625 23.6663L38.7549 33.0467C38.8905 33.2266 38.9735 33.4409 38.9947 33.6656C39.0158 33.8902 38.9741 34.1164 38.8744 34.3186C38.7747 34.5207 38.6209 34.6909 38.4302 34.81C38.2396 34.9291 38.0197 34.9923 37.7952 34.9926L18.2057 35C17.9753 34.9999 17.7497 34.9334 17.5557 34.8085C17.3616 34.6835 17.2072 34.5053 17.1108 34.2948C17.0143 34.0844 16.9798 33.8506 17.0113 33.6211C17.0429 33.3915 17.1391 33.1759 17.2887 32.9997Z" fill="#F9F9F9"/>
|
|
749
|
+
</svg>
|
|
750
|
+
`
|
|
751
|
+
},
|
|
752
|
+
components: [
|
|
753
|
+
{
|
|
754
|
+
tag: 'Image',
|
|
755
|
+
settings: {
|
|
756
|
+
imageStyle: 'circle',
|
|
757
|
+
isGoToSalesPage: true
|
|
758
|
+
},
|
|
759
|
+
styles: {
|
|
760
|
+
shape: {
|
|
761
|
+
desktop: {
|
|
762
|
+
shape: 'square',
|
|
763
|
+
shapeValue: '1/1',
|
|
764
|
+
width: '80px',
|
|
765
|
+
shapeLinked: true
|
|
766
|
+
}
|
|
767
|
+
},
|
|
768
|
+
borderRadius: {
|
|
769
|
+
btrr: '999999px',
|
|
770
|
+
bblr: '999999px',
|
|
771
|
+
bbrr: '999999px',
|
|
772
|
+
btlr: '999999px',
|
|
773
|
+
radiusType: 'custom'
|
|
774
|
+
},
|
|
775
|
+
wrapperBorder: {
|
|
776
|
+
borderType: 'none',
|
|
777
|
+
border: 'none',
|
|
778
|
+
width: '1px 1px 1px 1px',
|
|
779
|
+
position: 'all',
|
|
780
|
+
borderWidth: '1px',
|
|
781
|
+
color: '#000000',
|
|
782
|
+
isCustom: true
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
advanced: {
|
|
786
|
+
'spacing-setting': {
|
|
787
|
+
desktop: {
|
|
788
|
+
margin: {
|
|
789
|
+
bottom: 'var(--g-s-l)'
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
editorData: {
|
|
794
|
+
cssplaceholder: '.{{rootClassName}} {\n\n}\n.{{rootClassName}} > figure > img {\n\n}'
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
],
|
|
799
|
+
rootOverride: {
|
|
800
|
+
styles: {
|
|
801
|
+
shape: {
|
|
802
|
+
desktop: {
|
|
803
|
+
shape: 'square',
|
|
804
|
+
shapeValue: '1/1',
|
|
805
|
+
width: '80px',
|
|
806
|
+
shapeLinked: true
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
borderRadius: {
|
|
810
|
+
btrr: '999999px',
|
|
811
|
+
bblr: '999999px',
|
|
812
|
+
bbrr: '999999px',
|
|
813
|
+
btlr: '999999px',
|
|
814
|
+
radiusType: 'custom'
|
|
815
|
+
}
|
|
816
|
+
},
|
|
817
|
+
advanced: {
|
|
818
|
+
'spacing-setting': {
|
|
819
|
+
desktop: {
|
|
820
|
+
margin: {
|
|
821
|
+
bottom: 0
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
}
|
|
636
827
|
}
|
|
637
828
|
],
|
|
638
829
|
rootOverride: {
|
package/dist/esm/index.js
CHANGED
|
@@ -310,7 +310,7 @@ export { index_liquid as liquidComponents };
|
|
|
310
310
|
export { default as builderComponent } from './builder.js';
|
|
311
311
|
import 'react/jsx-runtime';
|
|
312
312
|
export { ELEMENT_Z_INDEX } from './common/const.js';
|
|
313
|
-
export { getAllHrefFromString, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, isHexTransparent, isTransparentColor, isTransparentRGBA, replaceAllHrefFromString, replaceLinkData, youtubeShortsRegex } from './helpers.js';
|
|
313
|
+
export { getAllHrefFromString, getDynamicSourceLocales, getInsertLinkData, getLinkDataConfigs, getSettingPreloadData, getStaticLocale, isHexTransparent, isTransparentColor, isTransparentRGBA, replaceAllHrefFromString, replaceLinkData, youtubeShortsRegex } from './helpers.js';
|
|
314
314
|
export { default as postPurchaseTextSetting } from './post-purchase/text/setting/index.js';
|
|
315
315
|
export { default as PostPurchaseText } from './post-purchase/text/Text.js';
|
|
316
316
|
export { convertSizeToWidth, transformHighlighTag, transformNumberTag } from './stock-counter/helpers.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -117,6 +117,7 @@ type ButtonProps = MixedProps$6 & BasePropsWrap<{
|
|
|
117
117
|
translate?: string;
|
|
118
118
|
/** SVG icon */
|
|
119
119
|
iconSvg?: string;
|
|
120
|
+
isGoToSalesPage?: boolean;
|
|
120
121
|
btnLink?: {
|
|
121
122
|
link?: string;
|
|
122
123
|
target?: string;
|
|
@@ -132,6 +133,7 @@ type ButtonProps = MixedProps$6 & BasePropsWrap<{
|
|
|
132
133
|
shouldClearSpace?: boolean;
|
|
133
134
|
disabledLoading?: boolean;
|
|
134
135
|
innerBorder?: boolean;
|
|
136
|
+
linkedToPreSalesPageBanner?: boolean;
|
|
135
137
|
}, {
|
|
136
138
|
type?: 'primary' | 'secondary';
|
|
137
139
|
/** */
|
|
@@ -448,6 +450,8 @@ type ImageSetting$1 = Pick<NextImageProps, 'priority' | 'quality' | 'vw'> & Pick
|
|
|
448
450
|
};
|
|
449
451
|
hoverEffect?: string;
|
|
450
452
|
isNotLazyload?: boolean;
|
|
453
|
+
isGoToSalesPage?: boolean;
|
|
454
|
+
linkedToPreSalesPageBanner?: boolean;
|
|
451
455
|
} & Pick<AdaptiveImageProps, 'srcSet'>;
|
|
452
456
|
type ImageStyleSetting$1 = {
|
|
453
457
|
shape?: ObjectDevices<SizeSettingGlobal>;
|
|
@@ -981,6 +985,8 @@ type IconProps$1 = {
|
|
|
981
985
|
target?: string;
|
|
982
986
|
title?: string;
|
|
983
987
|
};
|
|
988
|
+
isGoToSalesPage?: boolean;
|
|
989
|
+
linkedToPreSalesPageBanner?: boolean;
|
|
984
990
|
}, {
|
|
985
991
|
/**
|
|
986
992
|
Set height icon
|
|
@@ -3611,6 +3617,8 @@ type Setting$6 = {
|
|
|
3611
3617
|
title?: string;
|
|
3612
3618
|
aspectRatio?: ObjectDevices<string>;
|
|
3613
3619
|
ratioOptions?: ObjectDevices<Ratio>;
|
|
3620
|
+
isGoToSalesPage?: boolean;
|
|
3621
|
+
linkedToPreSalesPageBanner?: boolean;
|
|
3614
3622
|
} & Pick<NonNullable<RowProps$1['setting']>, 'layout' | 'horizontalAlign'>;
|
|
3615
3623
|
type Styles$2 = {
|
|
3616
3624
|
height?: ObjectDevices<string>;
|
|
@@ -5453,6 +5461,7 @@ declare const Coupon: ({ setting, builderProps, builderAttrs, style, styles, adv
|
|
|
5453
5461
|
label?: React.ReactNode;
|
|
5454
5462
|
translate?: string | undefined;
|
|
5455
5463
|
iconSvg?: string | undefined;
|
|
5464
|
+
isGoToSalesPage?: boolean | undefined;
|
|
5456
5465
|
btnLink?: {
|
|
5457
5466
|
link?: string | undefined;
|
|
5458
5467
|
target?: string | undefined;
|
|
@@ -5466,6 +5475,7 @@ declare const Coupon: ({ setting, builderProps, builderAttrs, style, styles, adv
|
|
|
5466
5475
|
shouldClearSpace?: boolean | undefined;
|
|
5467
5476
|
disabledLoading?: boolean | undefined;
|
|
5468
5477
|
innerBorder?: boolean | undefined;
|
|
5478
|
+
linkedToPreSalesPageBanner?: boolean | undefined;
|
|
5469
5479
|
}, "iconSvg" | "iconAlign" | "iconVisible" | "shouldClearSpace">, {
|
|
5470
5480
|
type?: "primary" | "secondary" | undefined;
|
|
5471
5481
|
roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
|
|
@@ -5558,6 +5568,7 @@ type IconProps = {
|
|
|
5558
5568
|
target?: string;
|
|
5559
5569
|
title?: string;
|
|
5560
5570
|
};
|
|
5571
|
+
isGoToSalesPage?: boolean;
|
|
5561
5572
|
}, {
|
|
5562
5573
|
/**
|
|
5563
5574
|
Set height icon
|
|
@@ -5719,6 +5730,7 @@ declare const ProductButton: ({ setting, builderProps, builderAttrs, style, styl
|
|
|
5719
5730
|
label?: React.ReactNode;
|
|
5720
5731
|
translate?: string | undefined;
|
|
5721
5732
|
iconSvg?: string | undefined;
|
|
5733
|
+
isGoToSalesPage?: boolean | undefined;
|
|
5722
5734
|
btnLink?: {
|
|
5723
5735
|
link?: string | undefined;
|
|
5724
5736
|
target?: string | undefined;
|
|
@@ -5732,6 +5744,7 @@ declare const ProductButton: ({ setting, builderProps, builderAttrs, style, styl
|
|
|
5732
5744
|
shouldClearSpace?: boolean | undefined;
|
|
5733
5745
|
disabledLoading?: boolean | undefined;
|
|
5734
5746
|
innerBorder?: boolean | undefined;
|
|
5747
|
+
linkedToPreSalesPageBanner?: boolean | undefined;
|
|
5735
5748
|
}, "iconSvg" | "iconAlign" | "iconVisible">, {
|
|
5736
5749
|
type?: "primary" | "secondary" | undefined;
|
|
5737
5750
|
roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
|
|
@@ -5890,6 +5903,7 @@ declare const DynamicCheckout: ({ builderProps, styles, advanced, setting, pageC
|
|
|
5890
5903
|
label?: React.ReactNode;
|
|
5891
5904
|
translate?: string | undefined;
|
|
5892
5905
|
iconSvg?: string | undefined;
|
|
5906
|
+
isGoToSalesPage?: boolean | undefined;
|
|
5893
5907
|
btnLink?: {
|
|
5894
5908
|
link?: string | undefined;
|
|
5895
5909
|
target?: string | undefined;
|
|
@@ -5903,6 +5917,7 @@ declare const DynamicCheckout: ({ builderProps, styles, advanced, setting, pageC
|
|
|
5903
5917
|
shouldClearSpace?: boolean | undefined;
|
|
5904
5918
|
disabledLoading?: boolean | undefined;
|
|
5905
5919
|
innerBorder?: boolean | undefined;
|
|
5920
|
+
linkedToPreSalesPageBanner?: boolean | undefined;
|
|
5906
5921
|
}, "iconSvg" | "iconAlign" | "iconVisible">, {
|
|
5907
5922
|
type?: "primary" | "secondary" | undefined;
|
|
5908
5923
|
roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
|
|
@@ -5982,6 +5997,7 @@ declare const ProductViewMore: ({ setting, builderProps, builderAttrs, style, st
|
|
|
5982
5997
|
label?: React.ReactNode;
|
|
5983
5998
|
translate?: string | undefined;
|
|
5984
5999
|
iconSvg?: string | undefined;
|
|
6000
|
+
isGoToSalesPage?: boolean | undefined;
|
|
5985
6001
|
btnLink?: {
|
|
5986
6002
|
link?: string | undefined;
|
|
5987
6003
|
target?: string | undefined;
|
|
@@ -5995,6 +6011,7 @@ declare const ProductViewMore: ({ setting, builderProps, builderAttrs, style, st
|
|
|
5995
6011
|
shouldClearSpace?: boolean | undefined;
|
|
5996
6012
|
disabledLoading?: boolean | undefined;
|
|
5997
6013
|
innerBorder?: boolean | undefined;
|
|
6014
|
+
linkedToPreSalesPageBanner?: boolean | undefined;
|
|
5998
6015
|
}, "iconSvg" | "iconAlign" | "iconVisible" | "shouldClearSpace">, {
|
|
5999
6016
|
type?: "primary" | "secondary" | undefined;
|
|
6000
6017
|
roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
|
|
@@ -6319,6 +6336,8 @@ declare const Image: ({ styles, className, setting, builderAttrs, builderProps,
|
|
|
6319
6336
|
} | undefined;
|
|
6320
6337
|
hoverEffect?: string | undefined;
|
|
6321
6338
|
isNotLazyload?: boolean | undefined;
|
|
6339
|
+
isGoToSalesPage?: boolean | undefined;
|
|
6340
|
+
linkedToPreSalesPageBanner?: boolean | undefined;
|
|
6322
6341
|
} & Pick<AdaptiveImageProps, "srcSet">, {
|
|
6323
6342
|
shape?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.SizeSettingGlobal>> | undefined;
|
|
6324
6343
|
customAspectRadio?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.Ratio>> | undefined;
|
|
@@ -6421,6 +6440,8 @@ declare const HeroBanner: ({ builderAttrs, builderProps, setting, styles, style,
|
|
|
6421
6440
|
title?: string | undefined;
|
|
6422
6441
|
aspectRatio?: Partial<Record<NameDevices, string>> | undefined;
|
|
6423
6442
|
ratioOptions?: Partial<Record<NameDevices, _gem_sdk_core.Ratio>> | undefined;
|
|
6443
|
+
isGoToSalesPage?: boolean | undefined;
|
|
6444
|
+
linkedToPreSalesPageBanner?: boolean | undefined;
|
|
6424
6445
|
} & Pick<{
|
|
6425
6446
|
responsive?: Partial<Record<NameDevices, string>> | undefined;
|
|
6426
6447
|
layout?: Partial<Record<NameDevices, _gem_sdk_core.ObjectLayoutValue>> | undefined;
|
|
@@ -6547,6 +6568,7 @@ declare const SubmitButton: ({ setting, builderProps, builderAttrs, style, style
|
|
|
6547
6568
|
label?: React.ReactNode;
|
|
6548
6569
|
translate?: string | undefined;
|
|
6549
6570
|
iconSvg?: string | undefined;
|
|
6571
|
+
isGoToSalesPage?: boolean | undefined;
|
|
6550
6572
|
btnLink?: {
|
|
6551
6573
|
link?: string | undefined;
|
|
6552
6574
|
target?: string | undefined;
|
|
@@ -6560,6 +6582,7 @@ declare const SubmitButton: ({ setting, builderProps, builderAttrs, style, style
|
|
|
6560
6582
|
shouldClearSpace?: boolean | undefined;
|
|
6561
6583
|
disabledLoading?: boolean | undefined;
|
|
6562
6584
|
innerBorder?: boolean | undefined;
|
|
6585
|
+
linkedToPreSalesPageBanner?: boolean | undefined;
|
|
6563
6586
|
}, "iconSvg" | "iconAlign" | "iconVisible" | "shouldClearSpace">, {
|
|
6564
6587
|
type?: "primary" | "secondary" | undefined;
|
|
6565
6588
|
roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
|
|
@@ -7860,6 +7883,15 @@ type DynamicSource = {
|
|
|
7860
7883
|
isReplaceLocationOrigin?: boolean;
|
|
7861
7884
|
isReplaceInventoryQuantity?: boolean;
|
|
7862
7885
|
};
|
|
7886
|
+
type InsertLinkDataParams = {
|
|
7887
|
+
defaultWrap: string;
|
|
7888
|
+
setting?: {
|
|
7889
|
+
link?: string;
|
|
7890
|
+
target?: string;
|
|
7891
|
+
isTranslate?: boolean;
|
|
7892
|
+
};
|
|
7893
|
+
htmlType?: React.ButtonHTMLAttributes<HTMLButtonElement>['type'] | 'link';
|
|
7894
|
+
};
|
|
7863
7895
|
declare const isTransparentColor: (str?: string) => boolean;
|
|
7864
7896
|
declare const isTransparentRGBA: (rgbStr: string) => boolean;
|
|
7865
7897
|
declare const isHexTransparent: (hex: string) => boolean;
|
|
@@ -7876,8 +7908,13 @@ declare const getInsertLinkData: (defaultWrap: string, setting?: {
|
|
|
7876
7908
|
urlData: Record<string, any>;
|
|
7877
7909
|
shouldRenderLink: boolean;
|
|
7878
7910
|
};
|
|
7911
|
+
declare const getLinkDataConfigs: (insertLinkDataParams: InsertLinkDataParams, isGoToSalesPage?: boolean) => {
|
|
7912
|
+
Wrap: string;
|
|
7913
|
+
urlData: Record<string, any>;
|
|
7914
|
+
shouldRenderLink: boolean;
|
|
7915
|
+
};
|
|
7879
7916
|
declare const replaceLinkData: (text?: string, isTranslate?: boolean) => string | undefined;
|
|
7880
7917
|
declare const getAllHrefFromString: (htmlString: string) => string[];
|
|
7881
7918
|
declare const replaceAllHrefFromString: (htmlString: string, hrefs: string[]) => string;
|
|
7882
7919
|
|
|
7883
|
-
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, AppstleBundlesDiscounts$1 as AppstleBundlesDiscounts, AppstleBundlesDiscountsProps, 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, EcomsendBackInStockAlert$1 as EcomsendBackInStockAlert, EcomsendBackInStockAlertProps, 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 };
|
|
7920
|
+
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, AppstleBundlesDiscounts$1 as AppstleBundlesDiscounts, AppstleBundlesDiscountsProps, 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, EcomsendBackInStockAlert$1 as EcomsendBackInStockAlert, EcomsendBackInStockAlertProps, 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, getLinkDataConfigs, 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.5.
|
|
3
|
+
"version": "2.5.9",
|
|
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.5.
|
|
24
|
+
"@gem-sdk/core": "2.5.9",
|
|
25
25
|
"@gem-sdk/styles": "2.4.8",
|
|
26
26
|
"@types/react-transition-group": "^4.4.5"
|
|
27
27
|
},
|