@gem-sdk/components 2.5.7 → 2.5.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.
Files changed (46) hide show
  1. package/dist/cjs/banner/components/hero-banner/index.liquid.js +5 -2
  2. package/dist/cjs/banner/setting/HeroBanner.js +50 -6
  3. package/dist/cjs/banner/setting/presets/heroBanner1ColPreSalesPage.js +134 -0
  4. package/dist/cjs/banner/setting/presets/heroBannerContentLeftPreSalesPage.js +154 -0
  5. package/dist/cjs/banner/setting/presets/heroBannerContentRightPreSalesPage.js +162 -0
  6. package/dist/cjs/banner/setting/presets/heroBannerParallaxPreSalesPage.js +134 -0
  7. package/dist/cjs/banner/setting/presets/heroBannerVideoPreSalesPage.js +130 -0
  8. package/dist/cjs/button/components/Button.liquid.js +6 -2
  9. package/dist/cjs/button/setting/Button.js +112 -5
  10. package/dist/cjs/carousel/components/CarouselItem.js +1 -1
  11. package/dist/cjs/carousel/components/CarouselItem.liquid.js +1 -1
  12. package/dist/cjs/constants.js +5 -0
  13. package/dist/cjs/grid/components/Row.js +4 -3
  14. package/dist/cjs/grid/components/Row.liquid.js +3 -2
  15. package/dist/cjs/grid/setting/Row.js +32 -2
  16. package/dist/cjs/helpers.js +17 -0
  17. package/dist/cjs/icon/components/Icon.liquid.js +5 -2
  18. package/dist/cjs/icon/setting/Icon.js +69 -5
  19. package/dist/cjs/image/components/Image.js +4 -1
  20. package/dist/cjs/image/components/Image.liquid.js +11 -5
  21. package/dist/cjs/image/setting/Image.js +216 -16
  22. package/dist/cjs/index.js +1 -0
  23. package/dist/esm/banner/components/hero-banner/index.liquid.js +6 -3
  24. package/dist/esm/banner/setting/HeroBanner.js +50 -6
  25. package/dist/esm/banner/setting/presets/heroBanner1ColPreSalesPage.js +132 -0
  26. package/dist/esm/banner/setting/presets/heroBannerContentLeftPreSalesPage.js +152 -0
  27. package/dist/esm/banner/setting/presets/heroBannerContentRightPreSalesPage.js +160 -0
  28. package/dist/esm/banner/setting/presets/heroBannerParallaxPreSalesPage.js +132 -0
  29. package/dist/esm/banner/setting/presets/heroBannerVideoPreSalesPage.js +128 -0
  30. package/dist/esm/button/components/Button.liquid.js +7 -3
  31. package/dist/esm/button/setting/Button.js +112 -5
  32. package/dist/esm/carousel/components/CarouselItem.js +1 -1
  33. package/dist/esm/carousel/components/CarouselItem.liquid.js +1 -1
  34. package/dist/esm/constants.js +3 -0
  35. package/dist/esm/grid/components/Row.js +4 -3
  36. package/dist/esm/grid/components/Row.liquid.js +3 -2
  37. package/dist/esm/grid/setting/Row.js +32 -2
  38. package/dist/esm/helpers.js +17 -1
  39. package/dist/esm/icon/components/Icon.liquid.js +6 -3
  40. package/dist/esm/icon/setting/Icon.js +69 -5
  41. package/dist/esm/image/components/Image.js +5 -2
  42. package/dist/esm/image/components/Image.liquid.js +13 -7
  43. package/dist/esm/image/setting/Image.js +216 -16
  44. package/dist/esm/index.js +1 -1
  45. package/dist/types/index.d.ts +43 -1
  46. package/package.json +2 -2
@@ -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',
@@ -133,6 +144,15 @@ const config = {
133
144
  displayOptions: [
134
145
  'full'
135
146
  ]
147
+ },
148
+ height: {
149
+ displayOptions: [
150
+ 'full'
151
+ ],
152
+ units: [
153
+ 'px',
154
+ '%'
155
+ ]
136
156
  }
137
157
  },
138
158
  hiddenSettings: [
@@ -390,14 +410,37 @@ const config = {
390
410
  ]
391
411
  },
392
412
  {
393
- type: 'control',
413
+ type: 'group',
394
414
  label: {
395
415
  en: 'Insert link'
396
416
  },
397
- setting: {
398
- id: 'imageLink'
399
- },
400
- layout: 'vertical'
417
+ controls: [
418
+ {
419
+ type: 'control',
420
+ condition: 'pageType == "GP_PRE_SALE_PAGE"',
421
+ setting: {
422
+ id: 'linkedToPreSalesPageBanner'
423
+ }
424
+ },
425
+ {
426
+ type: 'control',
427
+ condition: 'pageType == "GP_PRE_SALE_PAGE"',
428
+ setting: {
429
+ id: 'isGoToSalesPage'
430
+ },
431
+ label: {
432
+ en: 'Go to Sales page'
433
+ }
434
+ },
435
+ {
436
+ type: 'control',
437
+ condition: 'isGoToSalesPage === false || pageType != "GP_PRE_SALE_PAGE"',
438
+ layout: 'vertical',
439
+ setting: {
440
+ id: 'imageLink'
441
+ }
442
+ }
443
+ ]
401
444
  },
402
445
  {
403
446
  type: 'group',
@@ -603,19 +646,19 @@ const config = {
603
646
  }
604
647
  },
605
648
  borderRadius: {
606
- btrr: "999999px",
607
- bblr: "999999px",
608
- bbrr: "999999px",
609
- btlr: "999999px",
610
- radiusType: "custom"
649
+ btrr: '999999px',
650
+ bblr: '999999px',
651
+ bbrr: '999999px',
652
+ btlr: '999999px',
653
+ radiusType: 'custom'
611
654
  },
612
655
  wrapperBorder: {
613
- borderType: "none",
614
- border: "none",
615
- width: "1px 1px 1px 1px",
616
- position: "all",
617
- borderWidth: "1px",
618
- color: "#000000",
656
+ borderType: 'none',
657
+ border: 'none',
658
+ width: '1px 1px 1px 1px',
659
+ position: 'all',
660
+ borderWidth: '1px',
661
+ color: '#000000',
619
662
  isCustom: true
620
663
  }
621
664
  },
@@ -633,6 +676,163 @@ const config = {
633
676
  }
634
677
  }
635
678
  ]
679
+ },
680
+ {
681
+ id: 'image-pre-sales-page',
682
+ name: {
683
+ en: 'Image'
684
+ },
685
+ icon: {
686
+ desktop: `
687
+ <svg width="96" height="48" viewBox="0 0 96 48" fill="none" xmlns="http://www.w3.org/2000/svg">
688
+ <rect width="96" height="48" rx="3" fill="#424242"/>
689
+ <circle cx="37" cy="17" r="3" fill="#D6D6D6"/>
690
+ <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"/>
691
+ </svg>
692
+ `
693
+ },
694
+ components: [
695
+ {
696
+ tag: 'Image',
697
+ advanced: {
698
+ 'spacing-setting': {
699
+ desktop: {
700
+ margin: {
701
+ bottom: 'var(--g-s-l)'
702
+ }
703
+ }
704
+ },
705
+ editorData: {
706
+ cssPlaceholder: '.{{rootClassName}} {\n\n}\n.{{rootClassName}} > figure > img {\n\n}'
707
+ }
708
+ },
709
+ settings: {
710
+ isGoToSalesPage: true
711
+ }
712
+ }
713
+ ],
714
+ flowTagComponents: {
715
+ Marquee: [
716
+ {
717
+ tag: 'Image',
718
+ styles: {
719
+ shape: {
720
+ desktop: {
721
+ width: 'auto',
722
+ height: 'auto'
723
+ }
724
+ },
725
+ enableBorder: 'none'
726
+ },
727
+ advanced: {
728
+ 'spacing-setting': {
729
+ desktop: {
730
+ margin: {
731
+ bottom: 'var(--g-s-l)'
732
+ }
733
+ }
734
+ },
735
+ editorData: {
736
+ rootClassName: '{{rootClassName}}',
737
+ css: '.{{rootClassName}} {\n\n}\n.{{rootClassName}} > figure > img {\n\n}'
738
+ }
739
+ },
740
+ settings: {
741
+ isNotLazyload: true
742
+ }
743
+ }
744
+ ]
745
+ }
746
+ },
747
+ {
748
+ id: 'image-circle-pre-sales-page',
749
+ name: {
750
+ en: 'Image'
751
+ },
752
+ icon: {
753
+ desktop: `
754
+ <svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
755
+ <rect x="2" y="2" width="52" height="52" rx="26" fill="#424242"/>
756
+ <ellipse cx="20.4375" cy="22.9688" rx="2.0625" ry="1.96875" fill="#F9F9F9"/>
757
+ <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"/>
758
+ </svg>
759
+ `
760
+ },
761
+ components: [
762
+ {
763
+ tag: 'Image',
764
+ settings: {
765
+ imageStyle: 'circle',
766
+ isGoToSalesPage: true
767
+ },
768
+ styles: {
769
+ shape: {
770
+ desktop: {
771
+ shape: 'square',
772
+ shapeValue: '1/1',
773
+ width: '80px',
774
+ shapeLinked: true
775
+ }
776
+ },
777
+ borderRadius: {
778
+ btrr: '999999px',
779
+ bblr: '999999px',
780
+ bbrr: '999999px',
781
+ btlr: '999999px',
782
+ radiusType: 'custom'
783
+ },
784
+ wrapperBorder: {
785
+ borderType: 'none',
786
+ border: 'none',
787
+ width: '1px 1px 1px 1px',
788
+ position: 'all',
789
+ borderWidth: '1px',
790
+ color: '#000000',
791
+ isCustom: true
792
+ }
793
+ },
794
+ advanced: {
795
+ 'spacing-setting': {
796
+ desktop: {
797
+ margin: {
798
+ bottom: 'var(--g-s-l)'
799
+ }
800
+ }
801
+ },
802
+ editorData: {
803
+ cssplaceholder: '.{{rootClassName}} {\n\n}\n.{{rootClassName}} > figure > img {\n\n}'
804
+ }
805
+ }
806
+ }
807
+ ],
808
+ rootOverride: {
809
+ styles: {
810
+ shape: {
811
+ desktop: {
812
+ shape: 'square',
813
+ shapeValue: '1/1',
814
+ width: '80px',
815
+ shapeLinked: true
816
+ }
817
+ },
818
+ borderRadius: {
819
+ btrr: '999999px',
820
+ bblr: '999999px',
821
+ bbrr: '999999px',
822
+ btlr: '999999px',
823
+ radiusType: 'custom'
824
+ }
825
+ },
826
+ advanced: {
827
+ 'spacing-setting': {
828
+ desktop: {
829
+ margin: {
830
+ bottom: 0
831
+ }
832
+ }
833
+ }
834
+ }
835
+ }
636
836
  }
637
837
  ],
638
838
  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';
@@ -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>;
@@ -543,6 +547,7 @@ type RowProps$1 = BaseProps<{
543
547
  }, {
544
548
  fullWidth?: ObjectDevices<boolean>;
545
549
  width?: ObjectDevices<string>;
550
+ height?: ObjectDevices<'auto' | '100%'>;
546
551
  verticalGutter?: ObjectDevices<string>;
547
552
  background?: ObjectDevices<Background>;
548
553
  preloadBgImage?: boolean;
@@ -981,6 +986,8 @@ type IconProps$1 = {
981
986
  target?: string;
982
987
  title?: string;
983
988
  };
989
+ isGoToSalesPage?: boolean;
990
+ linkedToPreSalesPageBanner?: boolean;
984
991
  }, {
985
992
  /**
986
993
  Set height icon
@@ -3611,6 +3618,8 @@ type Setting$6 = {
3611
3618
  title?: string;
3612
3619
  aspectRatio?: ObjectDevices<string>;
3613
3620
  ratioOptions?: ObjectDevices<Ratio>;
3621
+ isGoToSalesPage?: boolean;
3622
+ linkedToPreSalesPageBanner?: boolean;
3614
3623
  } & Pick<NonNullable<RowProps$1['setting']>, 'layout' | 'horizontalAlign'>;
3615
3624
  type Styles$2 = {
3616
3625
  height?: ObjectDevices<string>;
@@ -5453,6 +5462,7 @@ declare const Coupon: ({ setting, builderProps, builderAttrs, style, styles, adv
5453
5462
  label?: React.ReactNode;
5454
5463
  translate?: string | undefined;
5455
5464
  iconSvg?: string | undefined;
5465
+ isGoToSalesPage?: boolean | undefined;
5456
5466
  btnLink?: {
5457
5467
  link?: string | undefined;
5458
5468
  target?: string | undefined;
@@ -5466,6 +5476,7 @@ declare const Coupon: ({ setting, builderProps, builderAttrs, style, styles, adv
5466
5476
  shouldClearSpace?: boolean | undefined;
5467
5477
  disabledLoading?: boolean | undefined;
5468
5478
  innerBorder?: boolean | undefined;
5479
+ linkedToPreSalesPageBanner?: boolean | undefined;
5469
5480
  }, "iconSvg" | "iconAlign" | "iconVisible" | "shouldClearSpace">, {
5470
5481
  type?: "primary" | "secondary" | undefined;
5471
5482
  roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
@@ -5525,6 +5536,7 @@ type RowProps = BaseProps<{
5525
5536
  }, {
5526
5537
  fullWidth?: ObjectDevices<boolean>;
5527
5538
  width?: ObjectDevices<string>;
5539
+ height?: ObjectDevices<'auto' | '100%'>;
5528
5540
  verticalGutter?: ObjectDevices<string>;
5529
5541
  background?: ObjectDevices<Background>;
5530
5542
  preloadBgImage?: boolean;
@@ -5558,6 +5570,7 @@ type IconProps = {
5558
5570
  target?: string;
5559
5571
  title?: string;
5560
5572
  };
5573
+ isGoToSalesPage?: boolean;
5561
5574
  }, {
5562
5575
  /**
5563
5576
  Set height icon
@@ -5669,6 +5682,7 @@ declare const Product: ({ children, setting, styles, style, builderProps, rawChi
5669
5682
  }, {
5670
5683
  fullWidth?: Partial<Record<_gem_sdk_core.NameDevices, boolean>> | undefined;
5671
5684
  width?: Partial<Record<_gem_sdk_core.NameDevices, string>> | undefined;
5685
+ height?: Partial<Record<_gem_sdk_core.NameDevices, "auto" | "100%">> | undefined;
5672
5686
  verticalGutter?: Partial<Record<_gem_sdk_core.NameDevices, string>> | undefined;
5673
5687
  background?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.Background>> | undefined;
5674
5688
  preloadBgImage?: boolean | undefined;
@@ -5719,6 +5733,7 @@ declare const ProductButton: ({ setting, builderProps, builderAttrs, style, styl
5719
5733
  label?: React.ReactNode;
5720
5734
  translate?: string | undefined;
5721
5735
  iconSvg?: string | undefined;
5736
+ isGoToSalesPage?: boolean | undefined;
5722
5737
  btnLink?: {
5723
5738
  link?: string | undefined;
5724
5739
  target?: string | undefined;
@@ -5732,6 +5747,7 @@ declare const ProductButton: ({ setting, builderProps, builderAttrs, style, styl
5732
5747
  shouldClearSpace?: boolean | undefined;
5733
5748
  disabledLoading?: boolean | undefined;
5734
5749
  innerBorder?: boolean | undefined;
5750
+ linkedToPreSalesPageBanner?: boolean | undefined;
5735
5751
  }, "iconSvg" | "iconAlign" | "iconVisible">, {
5736
5752
  type?: "primary" | "secondary" | undefined;
5737
5753
  roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
@@ -5890,6 +5906,7 @@ declare const DynamicCheckout: ({ builderProps, styles, advanced, setting, pageC
5890
5906
  label?: React.ReactNode;
5891
5907
  translate?: string | undefined;
5892
5908
  iconSvg?: string | undefined;
5909
+ isGoToSalesPage?: boolean | undefined;
5893
5910
  btnLink?: {
5894
5911
  link?: string | undefined;
5895
5912
  target?: string | undefined;
@@ -5903,6 +5920,7 @@ declare const DynamicCheckout: ({ builderProps, styles, advanced, setting, pageC
5903
5920
  shouldClearSpace?: boolean | undefined;
5904
5921
  disabledLoading?: boolean | undefined;
5905
5922
  innerBorder?: boolean | undefined;
5923
+ linkedToPreSalesPageBanner?: boolean | undefined;
5906
5924
  }, "iconSvg" | "iconAlign" | "iconVisible">, {
5907
5925
  type?: "primary" | "secondary" | undefined;
5908
5926
  roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
@@ -5982,6 +6000,7 @@ declare const ProductViewMore: ({ setting, builderProps, builderAttrs, style, st
5982
6000
  label?: React.ReactNode;
5983
6001
  translate?: string | undefined;
5984
6002
  iconSvg?: string | undefined;
6003
+ isGoToSalesPage?: boolean | undefined;
5985
6004
  btnLink?: {
5986
6005
  link?: string | undefined;
5987
6006
  target?: string | undefined;
@@ -5995,6 +6014,7 @@ declare const ProductViewMore: ({ setting, builderProps, builderAttrs, style, st
5995
6014
  shouldClearSpace?: boolean | undefined;
5996
6015
  disabledLoading?: boolean | undefined;
5997
6016
  innerBorder?: boolean | undefined;
6017
+ linkedToPreSalesPageBanner?: boolean | undefined;
5998
6018
  }, "iconSvg" | "iconAlign" | "iconVisible" | "shouldClearSpace">, {
5999
6019
  type?: "primary" | "secondary" | undefined;
6000
6020
  roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
@@ -6319,6 +6339,8 @@ declare const Image: ({ styles, className, setting, builderAttrs, builderProps,
6319
6339
  } | undefined;
6320
6340
  hoverEffect?: string | undefined;
6321
6341
  isNotLazyload?: boolean | undefined;
6342
+ isGoToSalesPage?: boolean | undefined;
6343
+ linkedToPreSalesPageBanner?: boolean | undefined;
6322
6344
  } & Pick<AdaptiveImageProps, "srcSet">, {
6323
6345
  shape?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.SizeSettingGlobal>> | undefined;
6324
6346
  customAspectRadio?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.Ratio>> | undefined;
@@ -6421,6 +6443,8 @@ declare const HeroBanner: ({ builderAttrs, builderProps, setting, styles, style,
6421
6443
  title?: string | undefined;
6422
6444
  aspectRatio?: Partial<Record<NameDevices, string>> | undefined;
6423
6445
  ratioOptions?: Partial<Record<NameDevices, _gem_sdk_core.Ratio>> | undefined;
6446
+ isGoToSalesPage?: boolean | undefined;
6447
+ linkedToPreSalesPageBanner?: boolean | undefined;
6424
6448
  } & Pick<{
6425
6449
  responsive?: Partial<Record<NameDevices, string>> | undefined;
6426
6450
  layout?: Partial<Record<NameDevices, _gem_sdk_core.ObjectLayoutValue>> | undefined;
@@ -6457,6 +6481,7 @@ declare const HeroBanner: ({ builderAttrs, builderProps, setting, styles, style,
6457
6481
  } & Pick<{
6458
6482
  fullWidth?: Partial<Record<NameDevices, boolean>> | undefined;
6459
6483
  width?: Partial<Record<NameDevices, string>> | undefined;
6484
+ height?: Partial<Record<NameDevices, "auto" | "100%">> | undefined;
6460
6485
  verticalGutter?: Partial<Record<NameDevices, string>> | undefined;
6461
6486
  background?: Partial<Record<NameDevices, Background>> | undefined;
6462
6487
  preloadBgImage?: boolean | undefined;
@@ -6547,6 +6572,7 @@ declare const SubmitButton: ({ setting, builderProps, builderAttrs, style, style
6547
6572
  label?: React.ReactNode;
6548
6573
  translate?: string | undefined;
6549
6574
  iconSvg?: string | undefined;
6575
+ isGoToSalesPage?: boolean | undefined;
6550
6576
  btnLink?: {
6551
6577
  link?: string | undefined;
6552
6578
  target?: string | undefined;
@@ -6560,6 +6586,7 @@ declare const SubmitButton: ({ setting, builderProps, builderAttrs, style, style
6560
6586
  shouldClearSpace?: boolean | undefined;
6561
6587
  disabledLoading?: boolean | undefined;
6562
6588
  innerBorder?: boolean | undefined;
6589
+ linkedToPreSalesPageBanner?: boolean | undefined;
6563
6590
  }, "iconSvg" | "iconAlign" | "iconVisible" | "shouldClearSpace">, {
6564
6591
  type?: "primary" | "secondary" | undefined;
6565
6592
  roundedBtn?: Partial<Record<_gem_sdk_core.StateType, _gem_sdk_core.CornerRadius>> | undefined;
@@ -6698,6 +6725,7 @@ declare const CollectionBanner: ({ builderAttrs, builderProps, setting, style, c
6698
6725
  }, "layout" | "verticalAlign" | "horizontalAlign"> & Pick<{
6699
6726
  fullWidth?: Partial<Record<_gem_sdk_core.NameDevices, boolean>> | undefined;
6700
6727
  width?: Partial<Record<_gem_sdk_core.NameDevices, string>> | undefined;
6728
+ height?: Partial<Record<_gem_sdk_core.NameDevices, "auto" | "100%">> | undefined;
6701
6729
  verticalGutter?: Partial<Record<_gem_sdk_core.NameDevices, string>> | undefined;
6702
6730
  background?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.Background>> | undefined;
6703
6731
  preloadBgImage?: boolean | undefined;
@@ -7860,6 +7888,15 @@ type DynamicSource = {
7860
7888
  isReplaceLocationOrigin?: boolean;
7861
7889
  isReplaceInventoryQuantity?: boolean;
7862
7890
  };
7891
+ type InsertLinkDataParams = {
7892
+ defaultWrap: string;
7893
+ setting?: {
7894
+ link?: string;
7895
+ target?: string;
7896
+ isTranslate?: boolean;
7897
+ };
7898
+ htmlType?: React.ButtonHTMLAttributes<HTMLButtonElement>['type'] | 'link';
7899
+ };
7863
7900
  declare const isTransparentColor: (str?: string) => boolean;
7864
7901
  declare const isTransparentRGBA: (rgbStr: string) => boolean;
7865
7902
  declare const isHexTransparent: (hex: string) => boolean;
@@ -7876,8 +7913,13 @@ declare const getInsertLinkData: (defaultWrap: string, setting?: {
7876
7913
  urlData: Record<string, any>;
7877
7914
  shouldRenderLink: boolean;
7878
7915
  };
7916
+ declare const getLinkDataConfigs: (insertLinkDataParams: InsertLinkDataParams, isGoToSalesPage?: boolean) => {
7917
+ Wrap: string;
7918
+ urlData: Record<string, any>;
7919
+ shouldRenderLink: boolean;
7920
+ };
7879
7921
  declare const replaceLinkData: (text?: string, isTranslate?: boolean) => string | undefined;
7880
7922
  declare const getAllHrefFromString: (htmlString: string) => string[];
7881
7923
  declare const replaceAllHrefFromString: (htmlString: string, hrefs: string[]) => string;
7882
7924
 
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 };
7925
+ 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.7",
3
+ "version": "2.5.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.5.7",
24
+ "@gem-sdk/core": "2.5.10",
25
25
  "@gem-sdk/styles": "2.4.8",
26
26
  "@types/react-transition-group": "^4.4.5"
27
27
  },