@gem-sdk/components 2.1.13-staging.29 → 2.1.13-staging.30

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.
@@ -14,7 +14,8 @@ var helpers = require('../../../helpers.js');
14
14
  var renderBadgeLiquid = require('./utils/renderBadgeLiquid.js');
15
15
  var getWhiteSpace = require('./utils/getWhiteSpace.js');
16
16
 
17
- const ProductBadge = ({ styles, builderProps, isInsideProductImage, builderAttrs, setting, style, imageData, dotData })=>{
17
+ const ProductBadge = ({ styles, builderProps, isInsideProductImage, builderAttrs, setting, style, imageData, dotData, pageContext })=>{
18
+ const { displayContent, translate } = setting ?? {};
18
19
  const isTextBadge = setting?.contentType === 'text';
19
20
  const shape$1 = shape.getShape(setting?.shape);
20
21
  const shapeAlignClass = common.getAlignShape(styles?.align, isInsideProductImage);
@@ -34,17 +35,25 @@ const ProductBadge = ({ styles, builderProps, isInsideProductImage, builderAttrs
34
35
  const paddingShape = common.getShapeWrapperPadding(shape$1?.ratio);
35
36
  const composeGlobalSize = core.makeGlobalSize(badgeSize);
36
37
  const isDropOutsideProductImage = setting?.positionWithImage === 'outside';
37
- const isDiscountContent = common.checkDiscountContentProductBadge(setting?.displayContent);
38
+ const isDiscountContent = common.checkDiscountContentProductBadge(displayContent);
39
+ const displayContentVal = helpers.getDynamicSourceLocales({
40
+ val: displayContent?.trim(),
41
+ uid: builderProps?.uid,
42
+ settingId: 'displayContent',
43
+ isLiquid: true,
44
+ pageContext,
45
+ translate
46
+ });
38
47
  return core.template`
39
48
  {% if product %}
40
- ${generateLiquidContent.generateBadgeContent(setting?.displayContent)}
49
+ ${generateLiquidContent.generateBadgeContent(displayContent, pageContext.isPreviewing)}
41
50
  ${renderBadgeLiquid.renderBadgeInFirstTime(setting?.displayTrigger, isDiscountContent, isTextBadge)}
42
51
  <gp-product-badge
43
52
  data-id="${builderProps?.uid}"
44
53
  class="gp-product-badge !gp-max-w-none gp-shrink-0 ${builderProps?.uid} ${builderProps?.builderData?.advanced?.cssClass || ''} {{className}}"
45
54
  id="g-product-badge-${builderProps?.uid}"
46
55
  gp-data='${core.dataStringify({
47
- displayContent: setting?.displayContent,
56
+ displayContent: `${pageContext?.isPreviewing ? displayContentVal : `{{${displayContentVal}}}`}`,
48
57
  minPrice: '{{ minPriceValue }}',
49
58
  variantIDs: '{{ product.variants | map: "id" | json | escape }}',
50
59
  variantInventoryQuantities: '{{ product.variants | map: "inventory_quantity" | json | escape }}',
@@ -1,8 +1,8 @@
1
1
  'use strict';
2
2
 
3
- const generateBadgeContent = (content)=>{
3
+ const generateBadgeContent = (content, isPreviewing)=>{
4
4
  return `
5
- {% assign content = "${content?.trim()}" %}
5
+ {% assign content = ${isPreviewing ? JSON.stringify(content) : content} %}
6
6
 
7
7
  {%if content.size > 0 %}
8
8
  {% if variant.compare_at_price and variant.compare_at_price > 0 %}
@@ -20,8 +20,8 @@ const getDisplayStyle = (fnCondition, defaultValue)=>{
20
20
  });
21
21
  return result;
22
22
  };
23
- const ProductDescription = ({ setting, advanced, builderProps })=>{
24
- const { htmlTag } = setting ?? {};
23
+ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
24
+ const { htmlTag, translate, viewMoreText, viewLessText } = setting ?? {};
25
25
  const appendTypoClass = core.composeTypographyClassName(setting?.typo, setting?.typography);
26
26
  const appendTypoStyle = core.composeTypographyStyle(setting?.typo, setting?.typography);
27
27
  const defaultStyle = {
@@ -45,13 +45,29 @@ const ProductDescription = ({ setting, advanced, builderProps })=>{
45
45
  return getDisplayStyle((device)=>!!setting?.hasLineClamp && setting.hasLineClamp[device] !== undefined && !setting.hasLineClamp[device], 'block');
46
46
  };
47
47
  const Tag = htmlTag === 'html' ? 'div' : 'p';
48
+ const viewMoreTextDisplay = helpers.getDynamicSourceLocales({
49
+ val: viewMoreText,
50
+ uid: builderProps?.uid,
51
+ settingId: 'viewMoreText',
52
+ isLiquid: true,
53
+ pageContext,
54
+ translate
55
+ });
56
+ const viewLessTextDisplay = helpers.getDynamicSourceLocales({
57
+ val: viewLessText,
58
+ uid: builderProps?.uid,
59
+ settingId: 'viewLessText',
60
+ isLiquid: true,
61
+ pageContext,
62
+ translate
63
+ });
48
64
  return core.template`
49
65
  <gp-product-description data-id="${builderProps?.uid}" class="${advanced?.cssClass} gp-product-description" gp-data='${JSON.stringify({
50
66
  setting: {
51
67
  lineClamp: setting?.lineClamp,
52
68
  hasLineClamp: setting?.hasLineClamp,
53
- viewMoreText: setting?.viewMoreText,
54
- viewLessText: setting?.viewLessText,
69
+ viewMoreText: pageContext?.isPreviewing ? viewMoreTextDisplay : `{{${viewMoreTextDisplay}}}`,
70
+ viewLessText: pageContext?.isPreviewing ? viewLessTextDisplay : `{{${viewLessTextDisplay}}}`,
55
71
  enableViewMoreIcon: setting?.enableViewMoreIcon
56
72
  },
57
73
  defaultStyle,
@@ -85,7 +101,7 @@ const ProductDescription = ({ setting, advanced, builderProps })=>{
85
101
  }}"
86
102
  >
87
103
 
88
- ${setting?.viewMoreText}
104
+ ${pageContext?.isPreviewing ? viewMoreTextDisplay : `{{${viewMoreTextDisplay}}}`}
89
105
  ${setting?.enableViewMoreIcon ? `<svg
90
106
  class="gp-ml-1 gp-inline-block"
91
107
  style="display: inline-block; margin-left: 1px;"
@@ -85,6 +85,11 @@ const config = {
85
85
  }
86
86
  ]
87
87
  },
88
+ {
89
+ id: 'translate',
90
+ type: 'input',
91
+ default: 'displayContent'
92
+ },
88
93
  {
89
94
  id: 'shape',
90
95
  label: 'Shape',
@@ -68,6 +68,11 @@ const config = {
68
68
  default: 'Show less',
69
69
  hide: true
70
70
  },
71
+ {
72
+ id: 'translate',
73
+ type: 'input',
74
+ default: 'viewMoreText,viewLessText'
75
+ },
71
76
  {
72
77
  id: 'enableViewMoreIcon',
73
78
  label: 'Enable Icon',
@@ -6,11 +6,12 @@ import { getAlignShape, getSize, getShapeBorderStyle, getFilterDropShadow, conve
6
6
  import { getShapePosition } from './utils/getShapePosition.js';
7
7
  import { composeShapeStyleByPosition, composeTextStyleByPosition } from './utils/getRotateShape.js';
8
8
  import { getStyleAdvanced } from './utils/getStyleAdvanced.js';
9
- import { getSettingPreloadData } from '../../../helpers.js';
9
+ import { getDynamicSourceLocales, getSettingPreloadData } from '../../../helpers.js';
10
10
  import { renderBadgeInFirstTime } from './utils/renderBadgeLiquid.js';
11
11
  import { getWhiteSpaceStyle } from './utils/getWhiteSpace.js';
12
12
 
13
- const ProductBadge = ({ styles, builderProps, isInsideProductImage, builderAttrs, setting, style, imageData, dotData })=>{
13
+ const ProductBadge = ({ styles, builderProps, isInsideProductImage, builderAttrs, setting, style, imageData, dotData, pageContext })=>{
14
+ const { displayContent, translate } = setting ?? {};
14
15
  const isTextBadge = setting?.contentType === 'text';
15
16
  const shape = getShape(setting?.shape);
16
17
  const shapeAlignClass = getAlignShape(styles?.align, isInsideProductImage);
@@ -30,17 +31,25 @@ const ProductBadge = ({ styles, builderProps, isInsideProductImage, builderAttrs
30
31
  const paddingShape = getShapeWrapperPadding(shape?.ratio);
31
32
  const composeGlobalSize = makeGlobalSize(badgeSize);
32
33
  const isDropOutsideProductImage = setting?.positionWithImage === 'outside';
33
- const isDiscountContent = checkDiscountContentProductBadge(setting?.displayContent);
34
+ const isDiscountContent = checkDiscountContentProductBadge(displayContent);
35
+ const displayContentVal = getDynamicSourceLocales({
36
+ val: displayContent?.trim(),
37
+ uid: builderProps?.uid,
38
+ settingId: 'displayContent',
39
+ isLiquid: true,
40
+ pageContext,
41
+ translate
42
+ });
34
43
  return template`
35
44
  {% if product %}
36
- ${generateBadgeContent(setting?.displayContent)}
45
+ ${generateBadgeContent(displayContent, pageContext.isPreviewing)}
37
46
  ${renderBadgeInFirstTime(setting?.displayTrigger, isDiscountContent, isTextBadge)}
38
47
  <gp-product-badge
39
48
  data-id="${builderProps?.uid}"
40
49
  class="gp-product-badge !gp-max-w-none gp-shrink-0 ${builderProps?.uid} ${builderProps?.builderData?.advanced?.cssClass || ''} {{className}}"
41
50
  id="g-product-badge-${builderProps?.uid}"
42
51
  gp-data='${dataStringify({
43
- displayContent: setting?.displayContent,
52
+ displayContent: `${pageContext?.isPreviewing ? displayContentVal : `{{${displayContentVal}}}`}`,
44
53
  minPrice: '{{ minPriceValue }}',
45
54
  variantIDs: '{{ product.variants | map: "id" | json | escape }}',
46
55
  variantInventoryQuantities: '{{ product.variants | map: "inventory_quantity" | json | escape }}',
@@ -1,6 +1,6 @@
1
- const generateBadgeContent = (content)=>{
1
+ const generateBadgeContent = (content, isPreviewing)=>{
2
2
  return `
3
- {% assign content = "${content?.trim()}" %}
3
+ {% assign content = ${isPreviewing ? JSON.stringify(content) : content} %}
4
4
 
5
5
  {%if content.size > 0 %}
6
6
  {% if variant.compare_at_price and variant.compare_at_price > 0 %}
@@ -1,5 +1,5 @@
1
1
  import { composeTypographyClassName, composeTypographyStyle, getStyleShadow, makeStyleResponsive, getGlobalColorStyle, makeStyle, makeLineClamp, template, cls, getGlobalColorClass, RenderIf, isLocalEnv, baseAssetURL } from '@gem-sdk/core';
2
- import { getSettingPreloadData } from '../../helpers.js';
2
+ import { getDynamicSourceLocales, getSettingPreloadData } from '../../helpers.js';
3
3
 
4
4
  const devices = [
5
5
  'desktop',
@@ -16,8 +16,8 @@ const getDisplayStyle = (fnCondition, defaultValue)=>{
16
16
  });
17
17
  return result;
18
18
  };
19
- const ProductDescription = ({ setting, advanced, builderProps })=>{
20
- const { htmlTag } = setting ?? {};
19
+ const ProductDescription = ({ setting, advanced, builderProps, pageContext })=>{
20
+ const { htmlTag, translate, viewMoreText, viewLessText } = setting ?? {};
21
21
  const appendTypoClass = composeTypographyClassName(setting?.typo, setting?.typography);
22
22
  const appendTypoStyle = composeTypographyStyle(setting?.typo, setting?.typography);
23
23
  const defaultStyle = {
@@ -41,13 +41,29 @@ const ProductDescription = ({ setting, advanced, builderProps })=>{
41
41
  return getDisplayStyle((device)=>!!setting?.hasLineClamp && setting.hasLineClamp[device] !== undefined && !setting.hasLineClamp[device], 'block');
42
42
  };
43
43
  const Tag = htmlTag === 'html' ? 'div' : 'p';
44
+ const viewMoreTextDisplay = getDynamicSourceLocales({
45
+ val: viewMoreText,
46
+ uid: builderProps?.uid,
47
+ settingId: 'viewMoreText',
48
+ isLiquid: true,
49
+ pageContext,
50
+ translate
51
+ });
52
+ const viewLessTextDisplay = getDynamicSourceLocales({
53
+ val: viewLessText,
54
+ uid: builderProps?.uid,
55
+ settingId: 'viewLessText',
56
+ isLiquid: true,
57
+ pageContext,
58
+ translate
59
+ });
44
60
  return template`
45
61
  <gp-product-description data-id="${builderProps?.uid}" class="${advanced?.cssClass} gp-product-description" gp-data='${JSON.stringify({
46
62
  setting: {
47
63
  lineClamp: setting?.lineClamp,
48
64
  hasLineClamp: setting?.hasLineClamp,
49
- viewMoreText: setting?.viewMoreText,
50
- viewLessText: setting?.viewLessText,
65
+ viewMoreText: pageContext?.isPreviewing ? viewMoreTextDisplay : `{{${viewMoreTextDisplay}}}`,
66
+ viewLessText: pageContext?.isPreviewing ? viewLessTextDisplay : `{{${viewLessTextDisplay}}}`,
51
67
  enableViewMoreIcon: setting?.enableViewMoreIcon
52
68
  },
53
69
  defaultStyle,
@@ -81,7 +97,7 @@ const ProductDescription = ({ setting, advanced, builderProps })=>{
81
97
  }}"
82
98
  >
83
99
 
84
- ${setting?.viewMoreText}
100
+ ${pageContext?.isPreviewing ? viewMoreTextDisplay : `{{${viewMoreTextDisplay}}}`}
85
101
  ${setting?.enableViewMoreIcon ? `<svg
86
102
  class="gp-ml-1 gp-inline-block"
87
103
  style="display: inline-block; margin-left: 1px;"
@@ -81,6 +81,11 @@ const config = {
81
81
  }
82
82
  ]
83
83
  },
84
+ {
85
+ id: 'translate',
86
+ type: 'input',
87
+ default: 'displayContent'
88
+ },
84
89
  {
85
90
  id: 'shape',
86
91
  label: 'Shape',
@@ -64,6 +64,11 @@ const config = {
64
64
  default: 'Show less',
65
65
  hide: true
66
66
  },
67
+ {
68
+ id: 'translate',
69
+ type: 'input',
70
+ default: 'viewMoreText,viewLessText'
71
+ },
67
72
  {
68
73
  id: 'enableViewMoreIcon',
69
74
  label: 'Enable Icon',
@@ -7,6 +7,7 @@ import { KeenSliderInstance } from '@gem-sdk/keen-slider/react';
7
7
  import React$1, { ReactNode } from 'react';
8
8
  import * as next_image from 'next/image';
9
9
  import { ImageProps as ImageProps$1 } from 'next/image';
10
+ import * as _gem_sdk_core_src_helpers_carousel from '@gem-sdk/core/src/helpers/carousel';
10
11
  import { DotStyle as DotStyle$1 } from '@gem-sdk/core/src/helpers/carousel';
11
12
 
12
13
  declare const _default$R: {
@@ -1338,7 +1339,7 @@ declare const _default$z: {
1338
1339
  ProductVariants: _gem_sdk_core.ComponentSetting<ProductVariantsProps>;
1339
1340
  ProductImages: _gem_sdk_core.ComponentSetting<ProductImagesProps>;
1340
1341
  ProductImagesV2: _gem_sdk_core.ComponentSetting<ProductImagesProps$1>;
1341
- ProductDescription: _gem_sdk_core.ComponentSetting<ProductDescriptionProps$1>;
1342
+ ProductDescription: _gem_sdk_core.ComponentSetting<ProductDescriptionProps>;
1342
1343
  ProductProperties: _gem_sdk_core.ComponentSetting<ProductPropertiesProps>;
1343
1344
  ProductTag: _gem_sdk_core.ComponentSetting<ProductTagProps>;
1344
1345
  ProductList: _gem_sdk_core.ComponentSetting<ProductListProps>;
@@ -1522,7 +1523,7 @@ type ProductQuantityProps = BaseProps<{
1522
1523
  }>;
1523
1524
  declare const ProductQuantity$1: React.FC<ProductQuantityProps>;
1524
1525
 
1525
- type ProductDescriptionProps$1 = BaseProps<{
1526
+ type ProductDescriptionProps = BaseProps<{
1526
1527
  htmlTag?: 'plaintext' | 'html';
1527
1528
  hasLineClamp?: ObjectDevices<boolean>;
1528
1529
  lineClamp?: ObjectDevices<number>;
@@ -1539,8 +1540,11 @@ type ProductDescriptionProps$1 = BaseProps<{
1539
1540
  hasBoxShadow?: boolean;
1540
1541
  boxShadow?: ShadowProps;
1541
1542
  transform?: TransformProp;
1542
- }>;
1543
- declare const ProductDescription$1: React.FC<ProductDescriptionProps$1>;
1543
+ translate?: string;
1544
+ }> & {
1545
+ pageContext: PageContext;
1546
+ };
1547
+ declare const ProductDescription$1: React.FC<ProductDescriptionProps>;
1544
1548
 
1545
1549
  type bundleItem = {
1546
1550
  quantity: number;
@@ -1930,6 +1934,7 @@ declare const ProductViewMore$1: ({ setting, builderProps, builderAttrs, style,
1930
1934
  type ProductBadgeProps = BasePropsWrap<{
1931
1935
  contentType?: 'text' | 'image';
1932
1936
  displayContent?: string;
1937
+ translate?: string;
1933
1938
  displayTrigger?: TDisplayTrigger[];
1934
1939
  positionWithImage?: 'inside' | 'outside';
1935
1940
  shape?: string;
@@ -1965,6 +1970,7 @@ type ProductBadgeProps = BasePropsWrap<{
1965
1970
  };
1966
1971
  } & {
1967
1972
  'bundle-item'?: bundleItem;
1973
+ pageContext: PageContext;
1968
1974
  };
1969
1975
  type PositionType = {
1970
1976
  placement: PlacementType;
@@ -5299,7 +5305,7 @@ declare const _default$1: {
5299
5305
  ProductQuantity: React.ComponentType<ProductQuantityProps>;
5300
5306
  ProductPrice: React.ComponentType<ProductPriceProps>;
5301
5307
  ProductButton: React.ComponentType<ProductButtonProps>;
5302
- ProductDescription: React.ComponentType<ProductDescriptionProps$1>;
5308
+ ProductDescription: React.ComponentType<ProductDescriptionProps>;
5303
5309
  ProductVariants: React.ComponentType<ProductVariantsProps>;
5304
5310
  ProductImages: React.ComponentType<ProductImagesProps>;
5305
5311
  ProductImagesV2: React.ComponentType<ProductImagesProps$1>;
@@ -5726,25 +5732,7 @@ declare const ProductButton: ({ setting, builderProps, builderAttrs, style, styl
5726
5732
  pageContext?: PageContext | undefined;
5727
5733
  }) => string;
5728
5734
 
5729
- type ProductDescriptionProps = BaseProps<{
5730
- htmlTag?: 'plaintext' | 'html';
5731
- hasLineClamp?: ObjectDevices<boolean>;
5732
- lineClamp?: ObjectDevices<number>;
5733
- viewMoreText?: string;
5734
- viewLessText?: string;
5735
- enableViewMoreIcon?: boolean;
5736
- showMoreColor?: ColorValueType;
5737
- color?: ColorValueType;
5738
- typography?: TypographySetting;
5739
- typo?: TypographySettingV2;
5740
- textAlign?: ObjectDevices<AlignProp>;
5741
- hasTextShadow?: boolean;
5742
- textShadow?: ShadowProps;
5743
- hasBoxShadow?: boolean;
5744
- boxShadow?: ShadowProps;
5745
- transform?: TransformProp;
5746
- }>;
5747
- declare const ProductDescription: ({ setting, advanced, builderProps }: ProductDescriptionProps) => string;
5735
+ declare const ProductDescription: ({ setting, advanced, builderProps, pageContext, }: ProductDescriptionProps) => string;
5748
5736
 
5749
5737
  declare const ProductImages$1: (productImageProps: ProductImagesProps) => string;
5750
5738
 
@@ -5992,8 +5980,51 @@ declare const ProductViewMore: ({ setting, builderProps, builderAttrs, style, st
5992
5980
  pageContext?: PageContext | undefined;
5993
5981
  }) => string;
5994
5982
 
5995
- declare const ProductBadge: ({ styles, builderProps, isInsideProductImage, builderAttrs, setting, style, imageData, dotData, }: ProductBadgeProps & {
5996
- pageContext?: PageContext;
5983
+ declare const ProductBadge: ({ styles, builderProps, isInsideProductImage, builderAttrs, setting, style, imageData, dotData, pageContext, }: _gem_sdk_core.BaseProps<{
5984
+ contentType?: "image" | "text" | undefined;
5985
+ displayContent?: string | undefined;
5986
+ translate?: string | undefined;
5987
+ displayTrigger?: TDisplayTrigger[] | undefined;
5988
+ positionWithImage?: "inside" | "outside" | undefined;
5989
+ shape?: string | undefined;
5990
+ image?: {
5991
+ alt?: string | undefined;
5992
+ src?: string | undefined;
5993
+ } | undefined;
5994
+ }, {
5995
+ typo?: _gem_sdk_core.TypographySettingV2 | undefined;
5996
+ position?: Partial<Record<_gem_sdk_core.NameDevices, PositionType>> | undefined;
5997
+ badgeColor?: _gem_sdk_core.ColorValueType | undefined;
5998
+ textColor?: _gem_sdk_core.ColorValueType | undefined;
5999
+ wrapperBorder?: _gem_sdk_core.Border | undefined;
6000
+ borderRadius?: _gem_sdk_core.CornerRadius | undefined;
6001
+ hasShadow?: boolean | undefined;
6002
+ textSize?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.SizeSettingGlobal>> | undefined;
6003
+ imageSize?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.SizeSettingGlobal>> | undefined;
6004
+ align?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.AlignProp>> | undefined;
6005
+ shapeShadow: _gem_sdk_core.ShadowProps;
6006
+ }, Record<string, any>> & {
6007
+ builderAttrs?: Record<string, any> | undefined;
6008
+ style?: React.CSSProperties | undefined;
6009
+ } & {
6010
+ isInsideProductImage?: boolean | undefined;
6011
+ navigationPosition?: Partial<Record<_gem_sdk_core.NameDevices, "none" | "inside" | "outside">> | undefined;
6012
+ children?: React.ReactNode;
6013
+ imageData: {
6014
+ imageShape?: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core.SizeSettingGlobal>> | undefined;
6015
+ imageAlign?: Partial<Record<_gem_sdk_core.NameDevices, csstype.Property.AlignItems>> | undefined;
6016
+ imageLayout?: Partial<Record<_gem_sdk_core.NameDevices, ProductImagesLayout$1>> | undefined;
6017
+ };
6018
+ dotData: {
6019
+ dotSize?: Partial<Record<_gem_sdk_core.NameDevices, number>> | undefined;
6020
+ dotGapToCarousel?: Partial<Record<_gem_sdk_core.NameDevices, string | number>> | undefined;
6021
+ dotStyle: Partial<Record<_gem_sdk_core.NameDevices, _gem_sdk_core_src_helpers_carousel.DotStyle>> | undefined;
6022
+ };
6023
+ } & {
6024
+ 'bundle-item'?: bundleItem | undefined;
6025
+ pageContext: PageContext;
6026
+ } & {
6027
+ pageContext?: PageContext | undefined;
5997
6028
  }) => string;
5998
6029
 
5999
6030
  declare const ProductSku: ({ setting, styles, advanced, builderProps }: SkuProps) => string;
@@ -7543,7 +7574,7 @@ declare const _default: {
7543
7574
  ProductBundleDiscount: React.FC<ProductQuantityBreakProps>;
7544
7575
  ProductBundleDiscountItem: React.FC<ProductQuantityBreakItemProps>;
7545
7576
  ProductButton: React.FC<ProductButtonProps>;
7546
- ProductDescription: React.FC<ProductDescriptionProps$1>;
7577
+ ProductDescription: React.FC<ProductDescriptionProps>;
7547
7578
  ProductVariants: React.FC<ProductVariantsProps>;
7548
7579
  ProductImages: React.FC<ProductImagesProps>;
7549
7580
  ProductImagesV2: React.FC<ProductImagesProps$1>;
@@ -7780,4 +7811,4 @@ declare const getInsertLinkData: (defaultWrap: string, setting?: {
7780
7811
  };
7781
7812
  declare const replaceLinkData: (text?: string, isTranslate?: boolean) => string | undefined;
7782
7813
 
7783
- export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, AccordionItemProps, AccordionProps, AftershipEmailMarketingsms$1 as AftershipEmailMarketingsms, AftershipEmailMarketingsmsProps, AirProductReviewsAppUgc$1 as AirProductReviewsAppUgc, AirProductReviewsAppUgcProps, AliReviews$1 as AliReviews, AliReviewsProps, AlsoBoughtCbb$1 as AlsoBoughtCbb, AlsoBoughtCbbProps, AppointmentBookingCowlendar$1 as AppointmentBookingCowlendar, AppointmentBookingCowlendarProps, AppstleSubscriptions$1 as AppstleSubscriptions, AppstleSubscriptionsProps, ArticleAuthor$1 as ArticleAuthor, ArticleCategory$1 as ArticleCategory, ArticleContent$1 as ArticleContent, ArticleDate$1 as ArticleDate, ArticleExcerpt$1 as ArticleExcerpt, ArticleImage$1 as ArticleImage, ArticleList$1 as ArticleList, ArticlePagination$1 as ArticlePagination, ArticleReadMore$1 as ArticleReadMore, ArticleTag$1 as ArticleTag, ArticleTitle$1 as ArticleTitle, BgImage as BackgroundImage, BackgroundImageProps, BasicHeader, BestBuyFulfillment$1 as BestBuyFulfillment, BestBuyFulfillmentProps, BfSizeChartSizeGuide$1 as BfSizeChartSizeGuide, BfSizeChartSizeGuideProps, BirdChime$1 as BirdChime, BirdChimeProps, Bogos$1 as Bogos, BogosProps, BoldProductOptions$1 as BoldProductOptions, BoldProductOptionsProps, BoldSubscriptions$1 as BoldSubscriptions, BoldSubscriptionsProps, BonLoyaltyRewardsReferrals$1 as BonLoyaltyRewardsReferrals, BonLoyaltyRewardsReferralsProps, BoostAISearchDiscovery$1 as BoostAISearchDiscovery, BoostAISearchDiscoveryProps, Breadcrumb$1 as Breadcrumb, Breadcrumb$1 as BreadcrumbProps, Bundler$1 as Bundler, BundlerProps, Button$2 as Button, ButtonProps, CSSCode$1 as CSSCode, CSSCodeProps, Carousel$1 as Carousel, CarouselItem$1 as CarouselItem, CarouselItemProps, CarouselProps, CarouselSettings, CarouselStyles, Cart, CartCheckout, CartDiscount, CartLineAttribute, CartLineImage, CartLinePrice, CartLineVariant, CartList, CartOrderNote, CartProps, CartTotalItem, CartTotalPrice, CheckoutNow, CleanSizeChartProps, CleanSizeCharts$1 as CleanSizeCharts, Column$1 as Col, ColProps$1 as ColProps, CollectionBanner$1 as CollectionBanner, CollectionBannerProps, CollectionDescription$1 as CollectionDescription, CollectionDescriptionProps, CollectionPaginator$1 as CollectionPaginator, CollectionPaginatorProps, CollectionTitle$1 as CollectionTitle, CollectionTitleProps, CollectionToolbar$1 as CollectionToolbar, CollectionToolbarProps, ContactForm$1 as ContactForm, Countdown$1 as Countdown, CountdownProps, Coupon$1 as Coupon, CouponList, CouponProps, CrossSellCartUpsell$1 as CrossSellCartUpsell, CrossSellCartUpsellProps, CustomProductOptionsVariant$1 as CustomProductOptionsVariant, CustomProductOptionsVariantProps, DataVideoType, DesktopMenu, Dialog$1 as Dialog, DiscountInput, DiscountyBulkDiscountSales$1 as DiscountyBulkDiscountSales, DiscountyBulkDiscountSalesProps, DynamicCheckout$1 as DynamicCheckout, DynamicCheckoutProps, ELEMENT_Z_INDEX, EasifyProductOptions$1 as EasifyProductOptions, EasifyProductOptionsProps, EasyBundleBuilderSkailama$1 as EasyBundleBuilderSkailama, EasyBundleBuilderSkailamaProps, EasySell as EasySellCOD, EasySellProps, EssentialAnnouncementBar$1 as EssentialAnnouncementBar, EssentialAnnouncementBarProps, EssentialCountdownTimerBar$1 as EssentialCountdownTimerBar, EssentialCountdownTimerBarProps, EstimateDate$1 as EstimateDate, EstimateDateProps, EstimatedDeliveryDatePlus$1 as EstimatedDeliveryDatePlus, EstimatedDeliveryDatePlusProps, FastBundleBundlesDiscounts$1 as FastBundleBundlesDiscounts, FastBundleBundlesDiscountsProps, FeraReviews$1 as FeraReviews, FeraReviewsProps, FileUpload$1 as FileUpload, FileUploadProps, FirePush$1 as FirePush, FirePushProps, FlyBundlesUpsellsFbt$1 as FlyBundlesUpsellsFbt, FlyBundlesUpsellsFbtProps, FordeerProductLabels$1 as FordeerProductLabels, FordeerProductLabelsProps, FormCheckbox, FormCheckboxProps, FormDropdown$1 as FormDropdown, FormDropdownProps, FormEmail$1 as FormEmail, FormEmailProps, FormTextArea as FormTextarea, FrequentlyBoughtTogether$1 as FrequentlyBoughtTogether, FrequentlyBoughtTogetherProps, GloColorSwatchvariantImage$1 as GloColorSwatchvariantImage, GloColorSwatchvariantImageProps, GloboProductOptionsVariant$1 as GloboProductOptionsVariant, GloboProductOptionsVariantProps, GoogleReviewsByReputon$1 as GoogleReviewsByReputon, GoogleReviewsByReputonProps, Growave$1 as Growave, GrowaveProps, Header, HeaderProps, Heading$1 as Heading, HeadingProps, HeroBanner$1 as HeroBanner, HeroBannerProps, HextomCountdownTimerBar$1 as HextomCountdownTimerBar, HextomCountdownTimerBarProps, HextomFreeShippingBar$1 as HextomFreeShippingBar, HextomFreeShippingBarProps, HulkFormBuilder$1 as HulkFormBuilder, HulkFormBuilderProps, HulkProductOptions$1 as HulkProductOptions, HulkProductOptionsProps, Icon$1 as Icon, IconList$1 as IconList, IconListHoz$1 as IconListHoz, IconListHozItem, IconListHozProps, IconListItem$1 as IconListItem, IconListItemProps$3 as IconListItemProps, IconListProps$2 as IconListProps, IconListV2$1 as IconListV2, IconProps$1 as IconProps, Image$1 as Image, ImageComparison$1 as ImageComparison, ImageDetection, ImageDetectionProps, ImageProps, InfiniteOptions$1 as InfiniteOptions, InfiniteOptionsProps, Input, InputProps, Instafeed$1 as Instafeed, InstafeedProps, InstantJudgemeReviews, InstantJudgemeReviewsProps, InstantKlaviyo, InstantKlaviyoProps, InstantLooxReviews, InstantLooxReviewsProps, InstantYotpoLoyalty, InstantYotpoLoyaltyProps, InstasellShoppableInstagram$1 as InstasellShoppableInstagram, InstasellShoppableInstagramProps, JudgemeReviews$1 as JudgemeReviews, JudgemeReviewsProps, JunipProductReviewsUgc$1 as JunipProductReviewsUgc, JunipProductReviewsUgcProps, KachingBundles$1 as KachingBundles, KachingBundlesProps, KingProductOptions$1 as KingProductOptions, KingProductOptionsProps, KiteFreeGiftDiscount$1 as KiteFreeGiftDiscount, KiteFreeGiftDiscountProps, KlarnaMessaging$1 as KlarnaMessaging, KlarnaMessagingProps, Klaviyo$1 as Klaviyo, KlaviyoProps, KoalaBundleQuantityDiscount$1 as KoalaBundleQuantityDiscount, KoalaBundleQuantityDiscountProps, LaiProductReviews$1 as LaiProductReviews, LaiProductReviewsProps, Line$2 as Line, LineProps$1 as LineProps, Link, LinkProps$1 as LinkProps, LoloyalLoyaltyReferrals$1 as LoloyalLoyaltyReferrals, LoloyalLoyaltyReferralsProps, LoopSubscriptions$1 as LoopSubscriptions, LoopSubscriptionsProps, LooxReviews$1 as LooxReviews, LooxReviewsProps, Marquee$1 as Marquee, _default$2 as MarqueeItem, MarqueeItemProps, MarqueeProps, MaxbundleProductBundles$1 as MaxbundleProductBundles, MaxbundleProductBundlesProps, MbcBundleVolumeDiscount$1 as MbcBundleVolumeDiscount, MbcBundleVolumeDiscountProps, Menu, MenuProps, MobileMenu, Modal, ModernHeader, MyappgurusProductReviews$1 as MyappgurusProductReviews, MyappgurusProductReviewsProps, Newsletter$1 as Newsletter, NewsletterProps, Notify as Notice, NotificationAPI, NotificationConfig, NotifyBackInStockPreOrder$1 as NotifyBackInStockPreOrder, NotifyBackInStockPreOrderProps, OkendoReviewsLoyalty$1 as OkendoReviewsLoyalty, OkendoReviewsLoyaltyProps, Omnisend$1 as Omnisend, OmnisendProps, Opinew$1 as Opinew, OpinewProps, Pagination, PaginationProps, ParcelPanel$1 as ParcelPanel, ParcelPanelProps, PickyStory$1 as PickyStory, PickyStoryProps, PostPurchaseAcceptButton, PostPurchaseAcceptButtonProps, PostPurchaseAdvancedList, PostPurchaseAdvancedListItem, PostPurchaseAdvancedListProps, Button$1 as PostPurchaseButton, PostPurchaseButtonProps, CalloutBox as PostPurchaseCalloutBox, CalloutText as PostPurchaseCalloutText, PostPurchaseCountdownTimer, PostPurchaseHeading, PostPurchaseImage, PostPurchaseImageProps, Line$1 as PostPurchaseLine, PostPurchaseLineProps, PostPurchaseProductDescription, PostPurchaseProductDescriptionProps, PostPurchaseProductDiscountTag, PostPurchaseProductDiscountTagProps, PostPurchaseProductImages, PostPurchaseProductImagesProps, PostPurchaseProductOffer, PostPurchaseProductOfferProps, PostPurchaseProductPrice, PostPurchaseProductPriceBreakdown, PostPurchaseProductPriceBreakdownProps, PostPurchaseProductPriceProps, PostPurchaseProductQuantity, PostPurchaseProductQuantityProps, PostPurchaseProductTitle, PostPurchaseProductTitleProps, PostPurchaseProductVariants, PostPurchaseProductVariantsProps, Text$1 as PostPurchaseText, PostPurchaseTextProps, PowerfulContactFormBuilder$1 as PowerfulContactFormBuilder, PowerfulContactFormBuilderProps, PowrContactFormBuilder$1 as PowrContactFormBuilder, PowrContactFormBuilderProps, PreorderNowPreOrderPq$1 as PreorderNowPreOrderPq, PreorderNowPreOrderPqProps, PreorderNowWodPresale$1 as PreorderNowWodPresale, PreorderNowWodPresaleProps, Product$1 as Product, ProductBadge$1 as ProductBadge, ProductBadgeProps, ProductBundleDiscount$1 as ProductBundleDiscount, ProductBundleDiscountItem$1 as ProductBundleDiscountItem, ProductButton$1 as ProductButton, ProductButtonProps, ProductDescription$1 as ProductDescription, ProductDescriptionProps$1 as ProductDescriptionProps, ProductImages$2 as ProductImages, ProductImagesProps, ProductImagesV2, ProductList$1 as ProductList, ProductList$1 as ProductListProps, ProductOptionsCustomizer$1 as ProductOptionsCustomizer, ProductOptionsCustomizerProps, ProductOptionsVariantOption$1 as ProductOptionsVariantOption, ProductOptionsVariantOptionProps, ProductPrice$1 as ProductPrice, ProductPriceProps, ProductPropertiesProps, ProductProperties$1 as ProductPropertyInput, ProductProps, ProductQuantity$1 as ProductQuantity, ProductQuantityBreakItemProps, ProductQuantityBreakProps, ProductQuantityProps, QuickView as ProductQuickView, ProductReviews$1 as ProductReviews, ProductReviewsProps, ProductSku$1 as ProductSku, ProductTag$1 as ProductTag, ProductTagProps, ProductTitle$1 as ProductTitle, ProductTitleProps, ProductVariants$1 as ProductVariants, ProductVariantsProps, ProductVendor$1 as ProductVendor, ProductViewMore$1 as ProductViewMore, ProductViewMoreProps, PumperBundlesVolumeDiscount$1 as PumperBundlesVolumeDiscount, PumperBundlesVolumeDiscountProps, PushOwl$1 as PushOwl, PushOwlProps, QikifyUpsell$1 as QikifyUpsell, QikifyUpsellProps, Radio, RadioProps, RapiBundleQuantityBreaks$1 as RapiBundleQuantityBreaks, RapiBundleQuantityBreaksProps, RechargeSubscriptions$1 as RechargeSubscriptions, RechargeSubscriptionsProps, RecurpaySubscriptionApp$1 as RecurpaySubscriptionApp, RecurpaySubscriptionAppProps, Releasit$1 as Releasit, ReleasitProps, RequestQuoteHidePrice$1 as RequestQuoteHidePrice, RequestQuoteHidePriceProps, ReviewxpoProductReviewsApp$1 as ReviewxpoProductReviewsApp, ReviewxpoProductReviewsAppProps, Rivyo$1 as Rivyo, RivyoProps, Root$1 as Root, RootProps$1 as RootProps, Row$1 as Row, RowProps$1 as RowProps, Ryviu$1 as Ryviu, RyviuProps, SealSubscriptions$1 as SealSubscriptions, SealSubscriptionsProps, Section$1 as Section, SegunoEmailMarketing$1 as SegunoEmailMarketing, SegunoEmailMarketingProps, Select, SelectProps, Selleasy$1 as Selleasy, SelleasyProps, SeoantTrustBadgesIcon$1 as SeoantTrustBadgesIcon, SeoantTrustBadgesIconProps, ShopPayButton$1 as ShopPayButton, ShopPayButtonProps, ShopifyForms$1 as ShopifyForms, ShopifyFormsProps, ShopifySubscriptions$1 as ShopifySubscriptions, ShopifySubscriptionsProps, SimpleBundlesKits$1 as SimpleBundlesKits, SimpleBundlesKitsProps, SkioSubscriptionsYcS20$1 as SkioSubscriptionsYcS20, SkioSubscriptionsYcS20Props, SkuProps, SmartSearchBarAndFilters$1 as SmartSearchBarAndFilters, SmartSearchBarAndFiltersProps, SproutPlantTreesGrowSales$1 as SproutPlantTreesGrowSales, SproutPlantTreesGrowSalesProps, Stamped$1 as Stamped, StampedProps, StellarDeliveryDatePickup$1 as StellarDeliveryDatePickup, StellarDeliveryDatePickupProps, Sticky$1 as Sticky, StickyProps, StockCounter$1 as StockCounter, StockCounterProps$1 as StockCounterProps, SubifySubscriptionsApp$1 as SubifySubscriptionsApp, SubifySubscriptionsAppProps, SubmitButton$1 as SubmitButton, SubmitButtonProps, TabItem$1 as TabItem, TabItemProps, Tabs$1 as Tabs, TabsProps, TagembedSocialPostReview$1 as TagembedSocialPostReview, TagembedSocialPostReviewProps, TagshopShoppableVideosUgc$1 as TagshopShoppableVideosUgc, TagshopShoppableVideosUgcProps, TeeinblueProductPersonalizer$1 as TeeinblueProductPersonalizer, TeeinblueProductPersonalizerProps, Text$2 as Text, TextAreaProps, TextField$1 as TextField, TextFieldProps, TextProps$1 as TextProps, TextArea as Textarea, TextareaProps, ThirdPartySlot$1 as ThirdPartySlot, TrustBadgesBear$1 as TrustBadgesBear, TrustBadgesBearProps, TrustMe$1 as TrustMe, TrustMeProps, TrustedsiteTrustBadges$1 as TrustedsiteTrustBadges, TrustedsiteTrustBadgesProps, Trustoo$1 as Trustoo, TrustooProps, TrustreviewsProductReviews$1 as TrustreviewsProductReviews, TrustreviewsProductReviewsProps, TrustshopProductReviews$1 as TrustshopProductReviews, TrustshopProductReviewsProps, UltimateSalesBoost$1 as UltimateSalesBoost, UltimateSalesBoostProps, UnlimitedBundlesDiscounts$1 as UnlimitedBundlesDiscounts, UnlimitedBundlesDiscountsProps, VendorProps, Video$1 as Video, Vitals$1 as Vitals, VitalsProps, WhatmoreShoppableVideosreel$1 as WhatmoreShoppableVideosreel, WhatmoreShoppableVideosreelProps, WideBundle$1 as WideBundle, WideBundleProps, Wiser$1 as Wiser, WiserProps, WishlistKing$1 as WishlistKing, WishlistKingProps, WishlistPlus$1 as WishlistPlus, WishlistPlusProps, YotpoLoyalty, YotpoLoyaltyProps, YotpoReviews$1 as YotpoReviews, YotpoReviewsProps, _default$R as accordionSetting, _default$4 as articleListSetting, _default$p as bannerSetting, _default$Q as breadcrumbSetting, _default as builderComponent, _default$P as buttonSetting, _default$N as carouselSetting, _default$K as cartSetting, _default$n as codeSetting, _default$J as collectionSetting, _default$j as contactFormSetting, _default$I as countdownSetting, _default$O as couponSetting, _default$k as dialogSetting, _default$5 as estimateDeliverySetting, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, _default$L as gridSetting, _default$G as headerSetting, _default$H as headingSetting, _default$m as iconListHozSetting, _default$o as iconListSetting, _default$e as iconListSettingV2, _default$F as iconSetting, _default$h as imageComparisonSetting, _default$i as imageDetectionSetting, _default$M as imageSetting, _default$E as inputSetting, isHexTransparent, isTransparentColor, isTransparentRGBA, _default$D as lineSetting, _default$C as linkSetting, index_liquid as liquidComponents, _default$3 as marqueeSetting, _default$s as menuSetting, _default$B as modalSetting, _default$1 as nextComponent, openConfirm, _default$A as paginationSetting, _default$7 as postPurchaseAdvancedListSetting, _default$b as postPurchaseButtonSetting, _default$9 as postPurchaseCalloutBoxSetting, _default$6 as postPurchaseCountdownTimerSetting, _default$c as postPurchaseImageSetting, _default$8 as postPurchaseLineSetting, postPurchaseProduct1Col, postPurchaseProduct2Col, postPurchaseProductDefault, _default$a as postPurchaseProductSetting, _default$d as postPurchaseTextSetting, _default$z as productSetting, _default$x as radioSetting, replaceLinkData, _default$w as selectSetting, _default$f as stickySetting, _default$l as stockCounterSetting, _default$v as tabSetting, _default$y as textSetting, _default$u as textareaSetting, _default$q as thirdPartyInstantSetting, _default$r as thirdPartySetting, _default$g as thirdPartySlotSetting, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
7814
+ export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, AccordionItemProps, AccordionProps, AftershipEmailMarketingsms$1 as AftershipEmailMarketingsms, AftershipEmailMarketingsmsProps, AirProductReviewsAppUgc$1 as AirProductReviewsAppUgc, AirProductReviewsAppUgcProps, AliReviews$1 as AliReviews, AliReviewsProps, AlsoBoughtCbb$1 as AlsoBoughtCbb, AlsoBoughtCbbProps, AppointmentBookingCowlendar$1 as AppointmentBookingCowlendar, AppointmentBookingCowlendarProps, AppstleSubscriptions$1 as AppstleSubscriptions, AppstleSubscriptionsProps, ArticleAuthor$1 as ArticleAuthor, ArticleCategory$1 as ArticleCategory, ArticleContent$1 as ArticleContent, ArticleDate$1 as ArticleDate, ArticleExcerpt$1 as ArticleExcerpt, ArticleImage$1 as ArticleImage, ArticleList$1 as ArticleList, ArticlePagination$1 as ArticlePagination, ArticleReadMore$1 as ArticleReadMore, ArticleTag$1 as ArticleTag, ArticleTitle$1 as ArticleTitle, BgImage as BackgroundImage, BackgroundImageProps, BasicHeader, BestBuyFulfillment$1 as BestBuyFulfillment, BestBuyFulfillmentProps, BfSizeChartSizeGuide$1 as BfSizeChartSizeGuide, BfSizeChartSizeGuideProps, BirdChime$1 as BirdChime, BirdChimeProps, Bogos$1 as Bogos, BogosProps, BoldProductOptions$1 as BoldProductOptions, BoldProductOptionsProps, BoldSubscriptions$1 as BoldSubscriptions, BoldSubscriptionsProps, BonLoyaltyRewardsReferrals$1 as BonLoyaltyRewardsReferrals, BonLoyaltyRewardsReferralsProps, BoostAISearchDiscovery$1 as BoostAISearchDiscovery, BoostAISearchDiscoveryProps, Breadcrumb$1 as Breadcrumb, Breadcrumb$1 as BreadcrumbProps, Bundler$1 as Bundler, BundlerProps, Button$2 as Button, ButtonProps, CSSCode$1 as CSSCode, CSSCodeProps, Carousel$1 as Carousel, CarouselItem$1 as CarouselItem, CarouselItemProps, CarouselProps, CarouselSettings, CarouselStyles, Cart, CartCheckout, CartDiscount, CartLineAttribute, CartLineImage, CartLinePrice, CartLineVariant, CartList, CartOrderNote, CartProps, CartTotalItem, CartTotalPrice, CheckoutNow, CleanSizeChartProps, CleanSizeCharts$1 as CleanSizeCharts, Column$1 as Col, ColProps$1 as ColProps, CollectionBanner$1 as CollectionBanner, CollectionBannerProps, CollectionDescription$1 as CollectionDescription, CollectionDescriptionProps, CollectionPaginator$1 as CollectionPaginator, CollectionPaginatorProps, CollectionTitle$1 as CollectionTitle, CollectionTitleProps, CollectionToolbar$1 as CollectionToolbar, CollectionToolbarProps, ContactForm$1 as ContactForm, Countdown$1 as Countdown, CountdownProps, Coupon$1 as Coupon, CouponList, CouponProps, CrossSellCartUpsell$1 as CrossSellCartUpsell, CrossSellCartUpsellProps, CustomProductOptionsVariant$1 as CustomProductOptionsVariant, CustomProductOptionsVariantProps, DataVideoType, DesktopMenu, Dialog$1 as Dialog, DiscountInput, DiscountyBulkDiscountSales$1 as DiscountyBulkDiscountSales, DiscountyBulkDiscountSalesProps, DynamicCheckout$1 as DynamicCheckout, DynamicCheckoutProps, ELEMENT_Z_INDEX, EasifyProductOptions$1 as EasifyProductOptions, EasifyProductOptionsProps, EasyBundleBuilderSkailama$1 as EasyBundleBuilderSkailama, EasyBundleBuilderSkailamaProps, EasySell as EasySellCOD, EasySellProps, EssentialAnnouncementBar$1 as EssentialAnnouncementBar, EssentialAnnouncementBarProps, EssentialCountdownTimerBar$1 as EssentialCountdownTimerBar, EssentialCountdownTimerBarProps, EstimateDate$1 as EstimateDate, EstimateDateProps, EstimatedDeliveryDatePlus$1 as EstimatedDeliveryDatePlus, EstimatedDeliveryDatePlusProps, FastBundleBundlesDiscounts$1 as FastBundleBundlesDiscounts, FastBundleBundlesDiscountsProps, FeraReviews$1 as FeraReviews, FeraReviewsProps, FileUpload$1 as FileUpload, FileUploadProps, FirePush$1 as FirePush, FirePushProps, FlyBundlesUpsellsFbt$1 as FlyBundlesUpsellsFbt, FlyBundlesUpsellsFbtProps, FordeerProductLabels$1 as FordeerProductLabels, FordeerProductLabelsProps, FormCheckbox, FormCheckboxProps, FormDropdown$1 as FormDropdown, FormDropdownProps, FormEmail$1 as FormEmail, FormEmailProps, FormTextArea as FormTextarea, FrequentlyBoughtTogether$1 as FrequentlyBoughtTogether, FrequentlyBoughtTogetherProps, GloColorSwatchvariantImage$1 as GloColorSwatchvariantImage, GloColorSwatchvariantImageProps, GloboProductOptionsVariant$1 as GloboProductOptionsVariant, GloboProductOptionsVariantProps, GoogleReviewsByReputon$1 as GoogleReviewsByReputon, GoogleReviewsByReputonProps, Growave$1 as Growave, GrowaveProps, Header, HeaderProps, Heading$1 as Heading, HeadingProps, HeroBanner$1 as HeroBanner, HeroBannerProps, HextomCountdownTimerBar$1 as HextomCountdownTimerBar, HextomCountdownTimerBarProps, HextomFreeShippingBar$1 as HextomFreeShippingBar, HextomFreeShippingBarProps, HulkFormBuilder$1 as HulkFormBuilder, HulkFormBuilderProps, HulkProductOptions$1 as HulkProductOptions, HulkProductOptionsProps, Icon$1 as Icon, IconList$1 as IconList, IconListHoz$1 as IconListHoz, IconListHozItem, IconListHozProps, IconListItem$1 as IconListItem, IconListItemProps$3 as IconListItemProps, IconListProps$2 as IconListProps, IconListV2$1 as IconListV2, IconProps$1 as IconProps, Image$1 as Image, ImageComparison$1 as ImageComparison, ImageDetection, ImageDetectionProps, ImageProps, InfiniteOptions$1 as InfiniteOptions, InfiniteOptionsProps, Input, InputProps, Instafeed$1 as Instafeed, InstafeedProps, InstantJudgemeReviews, InstantJudgemeReviewsProps, InstantKlaviyo, InstantKlaviyoProps, InstantLooxReviews, InstantLooxReviewsProps, InstantYotpoLoyalty, InstantYotpoLoyaltyProps, InstasellShoppableInstagram$1 as InstasellShoppableInstagram, InstasellShoppableInstagramProps, JudgemeReviews$1 as JudgemeReviews, JudgemeReviewsProps, JunipProductReviewsUgc$1 as JunipProductReviewsUgc, JunipProductReviewsUgcProps, KachingBundles$1 as KachingBundles, KachingBundlesProps, KingProductOptions$1 as KingProductOptions, KingProductOptionsProps, KiteFreeGiftDiscount$1 as KiteFreeGiftDiscount, KiteFreeGiftDiscountProps, KlarnaMessaging$1 as KlarnaMessaging, KlarnaMessagingProps, Klaviyo$1 as Klaviyo, KlaviyoProps, KoalaBundleQuantityDiscount$1 as KoalaBundleQuantityDiscount, KoalaBundleQuantityDiscountProps, LaiProductReviews$1 as LaiProductReviews, LaiProductReviewsProps, Line$2 as Line, LineProps$1 as LineProps, Link, LinkProps$1 as LinkProps, LoloyalLoyaltyReferrals$1 as LoloyalLoyaltyReferrals, LoloyalLoyaltyReferralsProps, LoopSubscriptions$1 as LoopSubscriptions, LoopSubscriptionsProps, LooxReviews$1 as LooxReviews, LooxReviewsProps, Marquee$1 as Marquee, _default$2 as MarqueeItem, MarqueeItemProps, MarqueeProps, MaxbundleProductBundles$1 as MaxbundleProductBundles, MaxbundleProductBundlesProps, MbcBundleVolumeDiscount$1 as MbcBundleVolumeDiscount, MbcBundleVolumeDiscountProps, Menu, MenuProps, MobileMenu, Modal, ModernHeader, MyappgurusProductReviews$1 as MyappgurusProductReviews, MyappgurusProductReviewsProps, Newsletter$1 as Newsletter, NewsletterProps, Notify as Notice, NotificationAPI, NotificationConfig, NotifyBackInStockPreOrder$1 as NotifyBackInStockPreOrder, NotifyBackInStockPreOrderProps, OkendoReviewsLoyalty$1 as OkendoReviewsLoyalty, OkendoReviewsLoyaltyProps, Omnisend$1 as Omnisend, OmnisendProps, Opinew$1 as Opinew, OpinewProps, Pagination, PaginationProps, ParcelPanel$1 as ParcelPanel, ParcelPanelProps, PickyStory$1 as PickyStory, PickyStoryProps, PostPurchaseAcceptButton, PostPurchaseAcceptButtonProps, PostPurchaseAdvancedList, PostPurchaseAdvancedListItem, PostPurchaseAdvancedListProps, Button$1 as PostPurchaseButton, PostPurchaseButtonProps, CalloutBox as PostPurchaseCalloutBox, CalloutText as PostPurchaseCalloutText, PostPurchaseCountdownTimer, PostPurchaseHeading, PostPurchaseImage, PostPurchaseImageProps, Line$1 as PostPurchaseLine, PostPurchaseLineProps, PostPurchaseProductDescription, PostPurchaseProductDescriptionProps, PostPurchaseProductDiscountTag, PostPurchaseProductDiscountTagProps, PostPurchaseProductImages, PostPurchaseProductImagesProps, PostPurchaseProductOffer, PostPurchaseProductOfferProps, PostPurchaseProductPrice, PostPurchaseProductPriceBreakdown, PostPurchaseProductPriceBreakdownProps, PostPurchaseProductPriceProps, PostPurchaseProductQuantity, PostPurchaseProductQuantityProps, PostPurchaseProductTitle, PostPurchaseProductTitleProps, PostPurchaseProductVariants, PostPurchaseProductVariantsProps, Text$1 as PostPurchaseText, PostPurchaseTextProps, PowerfulContactFormBuilder$1 as PowerfulContactFormBuilder, PowerfulContactFormBuilderProps, PowrContactFormBuilder$1 as PowrContactFormBuilder, PowrContactFormBuilderProps, PreorderNowPreOrderPq$1 as PreorderNowPreOrderPq, PreorderNowPreOrderPqProps, PreorderNowWodPresale$1 as PreorderNowWodPresale, PreorderNowWodPresaleProps, Product$1 as Product, ProductBadge$1 as ProductBadge, ProductBadgeProps, ProductBundleDiscount$1 as ProductBundleDiscount, ProductBundleDiscountItem$1 as ProductBundleDiscountItem, ProductButton$1 as ProductButton, ProductButtonProps, ProductDescription$1 as ProductDescription, ProductDescriptionProps, ProductImages$2 as ProductImages, ProductImagesProps, ProductImagesV2, ProductList$1 as ProductList, ProductList$1 as ProductListProps, ProductOptionsCustomizer$1 as ProductOptionsCustomizer, ProductOptionsCustomizerProps, ProductOptionsVariantOption$1 as ProductOptionsVariantOption, ProductOptionsVariantOptionProps, ProductPrice$1 as ProductPrice, ProductPriceProps, ProductPropertiesProps, ProductProperties$1 as ProductPropertyInput, ProductProps, ProductQuantity$1 as ProductQuantity, ProductQuantityBreakItemProps, ProductQuantityBreakProps, ProductQuantityProps, QuickView as ProductQuickView, ProductReviews$1 as ProductReviews, ProductReviewsProps, ProductSku$1 as ProductSku, ProductTag$1 as ProductTag, ProductTagProps, ProductTitle$1 as ProductTitle, ProductTitleProps, ProductVariants$1 as ProductVariants, ProductVariantsProps, ProductVendor$1 as ProductVendor, ProductViewMore$1 as ProductViewMore, ProductViewMoreProps, PumperBundlesVolumeDiscount$1 as PumperBundlesVolumeDiscount, PumperBundlesVolumeDiscountProps, PushOwl$1 as PushOwl, PushOwlProps, QikifyUpsell$1 as QikifyUpsell, QikifyUpsellProps, Radio, RadioProps, RapiBundleQuantityBreaks$1 as RapiBundleQuantityBreaks, RapiBundleQuantityBreaksProps, RechargeSubscriptions$1 as RechargeSubscriptions, RechargeSubscriptionsProps, RecurpaySubscriptionApp$1 as RecurpaySubscriptionApp, RecurpaySubscriptionAppProps, Releasit$1 as Releasit, ReleasitProps, RequestQuoteHidePrice$1 as RequestQuoteHidePrice, RequestQuoteHidePriceProps, ReviewxpoProductReviewsApp$1 as ReviewxpoProductReviewsApp, ReviewxpoProductReviewsAppProps, Rivyo$1 as Rivyo, RivyoProps, Root$1 as Root, RootProps$1 as RootProps, Row$1 as Row, RowProps$1 as RowProps, Ryviu$1 as Ryviu, RyviuProps, SealSubscriptions$1 as SealSubscriptions, SealSubscriptionsProps, Section$1 as Section, SegunoEmailMarketing$1 as SegunoEmailMarketing, SegunoEmailMarketingProps, Select, SelectProps, Selleasy$1 as Selleasy, SelleasyProps, SeoantTrustBadgesIcon$1 as SeoantTrustBadgesIcon, SeoantTrustBadgesIconProps, ShopPayButton$1 as ShopPayButton, ShopPayButtonProps, ShopifyForms$1 as ShopifyForms, ShopifyFormsProps, ShopifySubscriptions$1 as ShopifySubscriptions, ShopifySubscriptionsProps, SimpleBundlesKits$1 as SimpleBundlesKits, SimpleBundlesKitsProps, SkioSubscriptionsYcS20$1 as SkioSubscriptionsYcS20, SkioSubscriptionsYcS20Props, SkuProps, SmartSearchBarAndFilters$1 as SmartSearchBarAndFilters, SmartSearchBarAndFiltersProps, SproutPlantTreesGrowSales$1 as SproutPlantTreesGrowSales, SproutPlantTreesGrowSalesProps, Stamped$1 as Stamped, StampedProps, StellarDeliveryDatePickup$1 as StellarDeliveryDatePickup, StellarDeliveryDatePickupProps, Sticky$1 as Sticky, StickyProps, StockCounter$1 as StockCounter, StockCounterProps$1 as StockCounterProps, SubifySubscriptionsApp$1 as SubifySubscriptionsApp, SubifySubscriptionsAppProps, SubmitButton$1 as SubmitButton, SubmitButtonProps, TabItem$1 as TabItem, TabItemProps, Tabs$1 as Tabs, TabsProps, TagembedSocialPostReview$1 as TagembedSocialPostReview, TagembedSocialPostReviewProps, TagshopShoppableVideosUgc$1 as TagshopShoppableVideosUgc, TagshopShoppableVideosUgcProps, TeeinblueProductPersonalizer$1 as TeeinblueProductPersonalizer, TeeinblueProductPersonalizerProps, Text$2 as Text, TextAreaProps, TextField$1 as TextField, TextFieldProps, TextProps$1 as TextProps, TextArea as Textarea, TextareaProps, ThirdPartySlot$1 as ThirdPartySlot, TrustBadgesBear$1 as TrustBadgesBear, TrustBadgesBearProps, TrustMe$1 as TrustMe, TrustMeProps, TrustedsiteTrustBadges$1 as TrustedsiteTrustBadges, TrustedsiteTrustBadgesProps, Trustoo$1 as Trustoo, TrustooProps, TrustreviewsProductReviews$1 as TrustreviewsProductReviews, TrustreviewsProductReviewsProps, TrustshopProductReviews$1 as TrustshopProductReviews, TrustshopProductReviewsProps, UltimateSalesBoost$1 as UltimateSalesBoost, UltimateSalesBoostProps, UnlimitedBundlesDiscounts$1 as UnlimitedBundlesDiscounts, UnlimitedBundlesDiscountsProps, VendorProps, Video$1 as Video, Vitals$1 as Vitals, VitalsProps, WhatmoreShoppableVideosreel$1 as WhatmoreShoppableVideosreel, WhatmoreShoppableVideosreelProps, WideBundle$1 as WideBundle, WideBundleProps, Wiser$1 as Wiser, WiserProps, WishlistKing$1 as WishlistKing, WishlistKingProps, WishlistPlus$1 as WishlistPlus, WishlistPlusProps, YotpoLoyalty, YotpoLoyaltyProps, YotpoReviews$1 as YotpoReviews, YotpoReviewsProps, _default$R as accordionSetting, _default$4 as articleListSetting, _default$p as bannerSetting, _default$Q as breadcrumbSetting, _default as builderComponent, _default$P as buttonSetting, _default$N as carouselSetting, _default$K as cartSetting, _default$n as codeSetting, _default$J as collectionSetting, _default$j as contactFormSetting, _default$I as countdownSetting, _default$O as couponSetting, _default$k as dialogSetting, _default$5 as estimateDeliverySetting, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, _default$L as gridSetting, _default$G as headerSetting, _default$H as headingSetting, _default$m as iconListHozSetting, _default$o as iconListSetting, _default$e as iconListSettingV2, _default$F as iconSetting, _default$h as imageComparisonSetting, _default$i as imageDetectionSetting, _default$M as imageSetting, _default$E as inputSetting, isHexTransparent, isTransparentColor, isTransparentRGBA, _default$D as lineSetting, _default$C as linkSetting, index_liquid as liquidComponents, _default$3 as marqueeSetting, _default$s as menuSetting, _default$B as modalSetting, _default$1 as nextComponent, openConfirm, _default$A as paginationSetting, _default$7 as postPurchaseAdvancedListSetting, _default$b as postPurchaseButtonSetting, _default$9 as postPurchaseCalloutBoxSetting, _default$6 as postPurchaseCountdownTimerSetting, _default$c as postPurchaseImageSetting, _default$8 as postPurchaseLineSetting, postPurchaseProduct1Col, postPurchaseProduct2Col, postPurchaseProductDefault, _default$a as postPurchaseProductSetting, _default$d as postPurchaseTextSetting, _default$z as productSetting, _default$x as radioSetting, replaceLinkData, _default$w as selectSetting, _default$f as stickySetting, _default$l as stockCounterSetting, _default$v as tabSetting, _default$y as textSetting, _default$u as textareaSetting, _default$q as thirdPartyInstantSetting, _default$r as thirdPartySetting, _default$g as thirdPartySlotSetting, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/components",
3
- "version": "2.1.13-staging.29",
3
+ "version": "2.1.13-staging.30",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",