@gem-sdk/core 1.53.0-dev.123 → 1.53.0-dev.126

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.
@@ -75,6 +75,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
75
75
  parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
76
76
  pageContext,
77
77
  largeComponent,
78
+ sizeLargeComponent,
78
79
  ...passProps,
79
80
  builderAttrs: {
80
81
  ...passProps.builderAttrs
@@ -87,7 +88,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
87
88
  components,
88
89
  customProps,
89
90
  pageContext,
90
- largeComponent
91
+ largeComponent,
92
+ sizeLargeComponent
91
93
  };
92
94
  }),
93
95
  children: !constant.customRenderChildren.includes(item.tag) ? WrapRenderChildren({
@@ -100,7 +102,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
100
102
  customProps,
101
103
  parentTag: item.tag,
102
104
  pageContext,
103
- largeComponent
105
+ largeComponent,
106
+ sizeLargeComponent
104
107
  }))) : ''
105
108
  });
106
109
  }, ()=>{
@@ -117,6 +120,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
117
120
  parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
118
121
  pageContext,
119
122
  largeComponent,
123
+ sizeLargeComponent,
120
124
  ...passProps,
121
125
  builderAttrs: {
122
126
  ...passProps.builderAttrs
@@ -143,6 +147,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
143
147
  },
144
148
  pageContext,
145
149
  largeComponent,
150
+ sizeLargeComponent,
146
151
  ...passProps,
147
152
  builderAttrs: {
148
153
  ...passProps.builderAttrs
@@ -155,7 +160,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
155
160
  components,
156
161
  customProps,
157
162
  pageContext,
158
- largeComponent
163
+ largeComponent,
164
+ sizeLargeComponent
159
165
  };
160
166
  }),
161
167
  children: !constant.customRenderChildren.includes(item.tag) ? WrapRenderChildren({
@@ -168,7 +174,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
168
174
  customProps,
169
175
  parentTag: item.tag,
170
176
  pageContext,
171
- largeComponent
177
+ largeComponent,
178
+ sizeLargeComponent
172
179
  }))) : ''
173
180
  });
174
181
  }, ()=>{
@@ -4,6 +4,15 @@ var constant = require('./constant.js');
4
4
  var colors = require('./colors.js');
5
5
  var makeStyle = require('./make-style.js');
6
6
 
7
+ const getStyleBackgroundImage = (bgImage, options)=>{
8
+ return {
9
+ ...getStyleBgImage(bgImage, options),
10
+ ...getStyleBgPosition(bgImage),
11
+ ...getStyleBgSize(bgImage),
12
+ ...getStyleBgRepeat(bgImage),
13
+ ...getStyleBgAttachment(bgImage)
14
+ };
15
+ };
7
16
  const getStyleBackgroundByDevice = (background, options)=>{
8
17
  if (!background) {
9
18
  return {};
@@ -231,5 +240,6 @@ exports.getBgImageByDevice = getBgImageByDevice;
231
240
  exports.getGradientBgrStyleByDevice = getGradientBgrStyleByDevice;
232
241
  exports.getGradientBgrStyleForButton = getGradientBgrStyleForButton;
233
242
  exports.getStyleBackgroundByDevice = getStyleBackgroundByDevice;
243
+ exports.getStyleBackgroundImage = getStyleBackgroundImage;
234
244
  exports.getStyleBgColor = getStyleBgColor;
235
245
  exports.makeFixedBgAttachment = makeFixedBgAttachment;
@@ -84,7 +84,7 @@ const composeFontFamilyTypographyV2 = (value)=>{
84
84
  if (typeof fontFamily === 'string') {
85
85
  return getFontUsedByTypographyV2({
86
86
  fontFamily,
87
- fallbackFontFamily: value?.fallbackFontFamily
87
+ fallbackFontFamily: getFallbackFontFamily(value?.fallbackFontFamily, type)
88
88
  });
89
89
  }
90
90
  if (typeof fontFamily === 'object' && typeof fontFamily?.value === 'string') {
@@ -94,12 +94,15 @@ const composeFontFamilyTypographyV2 = (value)=>{
94
94
  default:
95
95
  return getFontUsedByTypographyV2({
96
96
  fontFamily: fontFamily.value,
97
- fallbackFontFamily: composeFallbackTypographyStyle(type ?? 'heading')
97
+ fallbackFontFamily: getFallbackFontFamily(value?.fallbackFontFamily, type)
98
98
  });
99
99
  }
100
100
  }
101
101
  return;
102
102
  };
103
+ const getFallbackFontFamily = (fallbackFontFamilyDefault, type)=>{
104
+ return fallbackFontFamilyDefault || composeFallbackTypographyStyle(type ?? 'heading');
105
+ };
103
106
  const getFontUsedByTypographyV2 = ({ fontFamily, fallbackFontFamily })=>{
104
107
  if (fontFamily) {
105
108
  return `var(--g-font-${fontFamily?.replace(/ /g, '-')}, '${fontFamily}'), ${fallbackFontFamily}`;
package/dist/cjs/index.js CHANGED
@@ -204,6 +204,7 @@ exports.getBgImageByDevice = background.getBgImageByDevice;
204
204
  exports.getGradientBgrStyleByDevice = background.getGradientBgrStyleByDevice;
205
205
  exports.getGradientBgrStyleForButton = background.getGradientBgrStyleForButton;
206
206
  exports.getStyleBackgroundByDevice = background.getStyleBackgroundByDevice;
207
+ exports.getStyleBackgroundImage = background.getStyleBackgroundImage;
207
208
  exports.getStyleBgColor = background.getStyleBgColor;
208
209
  exports.makeFixedBgAttachment = background.makeFixedBgAttachment;
209
210
  exports.composeTextColorCss = colors.composeTextColorCss;
@@ -71,6 +71,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
71
71
  parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
72
72
  pageContext,
73
73
  largeComponent,
74
+ sizeLargeComponent,
74
75
  ...passProps,
75
76
  builderAttrs: {
76
77
  ...passProps.builderAttrs
@@ -83,7 +84,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
83
84
  components,
84
85
  customProps,
85
86
  pageContext,
86
- largeComponent
87
+ largeComponent,
88
+ sizeLargeComponent
87
89
  };
88
90
  }),
89
91
  children: !customRenderChildren.includes(item.tag) ? WrapRenderChildren({
@@ -96,7 +98,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
96
98
  customProps,
97
99
  parentTag: item.tag,
98
100
  pageContext,
99
- largeComponent
101
+ largeComponent,
102
+ sizeLargeComponent
100
103
  }))) : ''
101
104
  });
102
105
  }, ()=>{
@@ -113,6 +116,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
113
116
  parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
114
117
  pageContext,
115
118
  largeComponent,
119
+ sizeLargeComponent,
116
120
  ...passProps,
117
121
  builderAttrs: {
118
122
  ...passProps.builderAttrs
@@ -139,6 +143,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
139
143
  },
140
144
  pageContext,
141
145
  largeComponent,
146
+ sizeLargeComponent,
142
147
  ...passProps,
143
148
  builderAttrs: {
144
149
  ...passProps.builderAttrs
@@ -151,7 +156,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
151
156
  components,
152
157
  customProps,
153
158
  pageContext,
154
- largeComponent
159
+ largeComponent,
160
+ sizeLargeComponent
155
161
  };
156
162
  }),
157
163
  children: !customRenderChildren.includes(item.tag) ? WrapRenderChildren({
@@ -164,7 +170,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
164
170
  customProps,
165
171
  parentTag: item.tag,
166
172
  pageContext,
167
- largeComponent
173
+ largeComponent,
174
+ sizeLargeComponent
168
175
  }))) : ''
169
176
  });
170
177
  }, ()=>{
@@ -2,6 +2,15 @@ import { devicesMapping } from './constant.js';
2
2
  import { isColor, getSingleColorVariable } from './colors.js';
3
3
  import { makeStyleResponsive } from './make-style.js';
4
4
 
5
+ const getStyleBackgroundImage = (bgImage, options)=>{
6
+ return {
7
+ ...getStyleBgImage(bgImage, options),
8
+ ...getStyleBgPosition(bgImage),
9
+ ...getStyleBgSize(bgImage),
10
+ ...getStyleBgRepeat(bgImage),
11
+ ...getStyleBgAttachment(bgImage)
12
+ };
13
+ };
5
14
  const getStyleBackgroundByDevice = (background, options)=>{
6
15
  if (!background) {
7
16
  return {};
@@ -223,4 +232,4 @@ const getGradientBgrStyleByDevice = (backgroundStyle, ignoreBackgroundImage = fa
223
232
  return bgrStyle;
224
233
  };
225
234
 
226
- export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice, getStyleBgColor, makeFixedBgAttachment };
235
+ export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice, getStyleBackgroundImage, getStyleBgColor, makeFixedBgAttachment };
@@ -82,7 +82,7 @@ const composeFontFamilyTypographyV2 = (value)=>{
82
82
  if (typeof fontFamily === 'string') {
83
83
  return getFontUsedByTypographyV2({
84
84
  fontFamily,
85
- fallbackFontFamily: value?.fallbackFontFamily
85
+ fallbackFontFamily: getFallbackFontFamily(value?.fallbackFontFamily, type)
86
86
  });
87
87
  }
88
88
  if (typeof fontFamily === 'object' && typeof fontFamily?.value === 'string') {
@@ -92,12 +92,15 @@ const composeFontFamilyTypographyV2 = (value)=>{
92
92
  default:
93
93
  return getFontUsedByTypographyV2({
94
94
  fontFamily: fontFamily.value,
95
- fallbackFontFamily: composeFallbackTypographyStyle(type ?? 'heading')
95
+ fallbackFontFamily: getFallbackFontFamily(value?.fallbackFontFamily, type)
96
96
  });
97
97
  }
98
98
  }
99
99
  return;
100
100
  };
101
+ const getFallbackFontFamily = (fallbackFontFamilyDefault, type)=>{
102
+ return fallbackFontFamilyDefault || composeFallbackTypographyStyle(type ?? 'heading');
103
+ };
101
104
  const getFontUsedByTypographyV2 = ({ fontFamily, fallbackFontFamily })=>{
102
105
  if (fontFamily) {
103
106
  return `var(--g-font-${fontFamily?.replace(/ /g, '-')}, '${fontFamily}'), ${fallbackFontFamily}`;
package/dist/esm/index.js CHANGED
@@ -54,7 +54,7 @@ import * as gtag from './helpers/tracking/gtag.js';
54
54
  export { gtag };
55
55
  import * as tiktokpixel from './helpers/tracking/tiktokpixel.js';
56
56
  export { tiktokpixel };
57
- export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice, getStyleBgColor, makeFixedBgAttachment } from './helpers/background.js';
57
+ export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice, getStyleBackgroundImage, getStyleBgColor, makeFixedBgAttachment } from './helpers/background.js';
58
58
  export { composeTextColorCss, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getSingleColorVariable, isColor } from './helpers/colors.js';
59
59
  export { composeAdvanceStyle, composeAdvanceStyleForPostPurchase, filterAttrInStyle, filterCornerInStyle, removeAttrInStyle, removePaddingYInStyle, splitStyle } from './helpers/compose-advance-style.js';
60
60
  export { baseAssetURL, isLocalEnv } from './helpers/convert.js';
@@ -32042,6 +32042,23 @@ type Options = {
32042
32042
  ignoreBackgroundImageProperties?: boolean;
32043
32043
  ignoreBackgroundColor?: boolean;
32044
32044
  };
32045
+ declare const getStyleBackgroundImage: (bgImage?: ObjectDevices<BackgroundImageValue>, options?: Options) => {
32046
+ "--bga": string;
32047
+ "--bga-tablet": string;
32048
+ "--bga-mobile": string;
32049
+ "--bgr": string;
32050
+ "--bgr-tablet": string;
32051
+ "--bgr-mobile": string;
32052
+ "--bgs": string;
32053
+ "--bgs-tablet": string;
32054
+ "--bgs-mobile": string;
32055
+ "--bgp": string;
32056
+ "--bgp-tablet": string;
32057
+ "--bgp-mobile": string;
32058
+ "--bgi": string;
32059
+ "--bgi-tablet": string;
32060
+ "--bgi-mobile": string;
32061
+ };
32045
32062
  declare const getStyleBackgroundByDevice: (background?: ObjectDevices<Background>, options?: Options) => {
32046
32063
  "--bga"?: string | undefined;
32047
32064
  "--bga-tablet"?: string | undefined;
@@ -41724,4 +41741,4 @@ declare const useInteraction: () => {
41724
41741
  };
41725
41742
  };
41726
41743
 
41727
- export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResonsiveStyleShadow, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
41744
+ export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResonsiveStyleShadow, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImage, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.53.0-dev.123",
3
+ "version": "1.53.0-dev.126",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",