@gem-sdk/core 1.46.1 → 1.47.0-dev.4

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 (42) hide show
  1. package/dist/cjs/components/ComponentToolbarPreview.js +156 -106
  2. package/dist/cjs/components/ComponentWrapperPreview.js +16 -2
  3. package/dist/cjs/components/InteractionSuffix.js +107 -0
  4. package/dist/cjs/components/Render.liquid.js +21 -6
  5. package/dist/cjs/components/RenderPreview.js +1 -0
  6. package/dist/cjs/components/constant.js +2 -1
  7. package/dist/cjs/contexts/PageContext.js +29 -1
  8. package/dist/cjs/contexts/SectionContext.js +0 -1
  9. package/dist/cjs/helpers/align.js +19 -0
  10. package/dist/cjs/helpers/colors.js +1 -1
  11. package/dist/cjs/helpers/shadow.js +1 -1
  12. package/dist/cjs/helpers/third-party/appConfig.js +14 -0
  13. package/dist/cjs/helpers/third-party/appSetting.js +22 -0
  14. package/dist/cjs/helpers/third-party/constant.js +3 -1
  15. package/dist/cjs/hooks/animation/useApplyAnimation.js +1 -0
  16. package/dist/cjs/hooks/useFormatMoney.js +61 -60
  17. package/dist/cjs/hooks/useInteraction.js +19 -0
  18. package/dist/cjs/hooks/useProduct.js +2 -1
  19. package/dist/cjs/index.js +12 -0
  20. package/dist/cjs/types/custom.js +44 -0
  21. package/dist/esm/components/ComponentToolbarPreview.js +156 -106
  22. package/dist/esm/components/ComponentWrapperPreview.js +16 -2
  23. package/dist/esm/components/InteractionSuffix.js +105 -0
  24. package/dist/esm/components/Render.liquid.js +21 -6
  25. package/dist/esm/components/RenderPreview.js +1 -0
  26. package/dist/esm/components/constant.js +2 -1
  27. package/dist/esm/contexts/PageContext.js +29 -1
  28. package/dist/esm/contexts/SectionContext.js +0 -1
  29. package/dist/esm/helpers/align.js +17 -0
  30. package/dist/esm/helpers/colors.js +1 -1
  31. package/dist/esm/helpers/shadow.js +1 -1
  32. package/dist/esm/helpers/third-party/appConfig.js +13 -1
  33. package/dist/esm/helpers/third-party/appSetting.js +22 -0
  34. package/dist/esm/helpers/third-party/constant.js +4 -2
  35. package/dist/esm/hooks/animation/useApplyAnimation.js +1 -0
  36. package/dist/esm/hooks/useFormatMoney.js +61 -61
  37. package/dist/esm/hooks/useInteraction.js +17 -0
  38. package/dist/esm/hooks/useProduct.js +2 -1
  39. package/dist/esm/index.js +3 -1
  40. package/dist/esm/types/custom.js +44 -0
  41. package/dist/types/index.d.ts +169 -6
  42. package/package.json +3 -3
@@ -5433,9 +5433,6 @@ type PublishedThemePage$1 = {
5433
5433
  themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PublishedThemePageOnlineStoreData$1>>>;
5434
5434
  type: PublishedThemePageType$1;
5435
5435
  updatedAt?: Maybe$1<Scalars$2['Time']>;
5436
- publishedAt?: Maybe$1<Scalars$2['Time']>;
5437
- isPlatformDefault?: boolean;
5438
- platformOriginalTemplateContent?: string;
5439
5436
  };
5440
5437
  type PublishedThemePageCustomSection$1 = {
5441
5438
  id: Scalars$2['ID'];
@@ -6832,6 +6829,7 @@ type ImageShape$1 = {
6832
6829
  type SizeSettingGlobal = {
6833
6830
  shape?: 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
6834
6831
  shapeLinked?: boolean;
6832
+ disableShapeLinked?: boolean;
6835
6833
  shapeValue?: string;
6836
6834
  widthHeightLinked?: boolean;
6837
6835
  padding?: {
@@ -7227,6 +7225,7 @@ type PositionControlType<T> = SharedControlType<T> & {
7227
7225
 
7228
7226
  type PositionSquareControlType<T> = SharedControlType<T> & {
7229
7227
  type: 'position:square';
7228
+ ignoreValue?: string[];
7230
7229
  };
7231
7230
 
7232
7231
  type RadioGroupControlType = {
@@ -7382,6 +7381,8 @@ type TextareaControlType<T> = SharedControlType<T> & {
7382
7381
  minHeight?: number;
7383
7382
  maxWidth?: number;
7384
7383
  autoHeight?: boolean;
7384
+ defaultRows?: number;
7385
+ showPlusBtn?: boolean;
7385
7386
  suggestContents?: {
7386
7387
  message: string;
7387
7388
  eg?: string;
@@ -7433,6 +7434,7 @@ type BehaviorStateControlType<T> = {
7433
7434
  type BoxShadowControlType<T> = SharedControlType<T> & {
7434
7435
  id?: string;
7435
7436
  type: 'boxShadow';
7437
+ hideOptions?: string[];
7436
7438
  popup?: boolean;
7437
7439
  };
7438
7440
 
@@ -7818,6 +7820,8 @@ type SizeSetting$1<T> = SharedControlType<T> & {
7818
7820
  hiddenShowMore?: boolean;
7819
7821
  sizePaddingInput?: 'normal' | 'small';
7820
7822
  lockShapeValue?: boolean;
7823
+ isShowResponsive?: boolean;
7824
+ disableShapeLinkedTooltip?: string;
7821
7825
  };
7822
7826
 
7823
7827
  type ChildIconType<T> = SharedControlType<T> & {
@@ -7858,6 +7862,7 @@ type ParallaxScrollingType<T> = SharedControlType<T> & {
7858
7862
 
7859
7863
  type BackgroundColorPickerType<T> = SharedControlType<T> & {
7860
7864
  type: 'background-color-picker';
7865
+ mode?: 'both' | 'solid' | 'gradient';
7861
7866
  popup?: boolean;
7862
7867
  readonly?: boolean;
7863
7868
  };
@@ -8013,7 +8018,39 @@ type ButtonLayoutType<T> = SharedControlType<T> & {
8013
8018
  }[];
8014
8019
  };
8015
8020
 
8016
- type ControlProp<T> = AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T>;
8021
+ type ShapeSelectorControlType<T> = SharedControlType<T> & {
8022
+ type: 'shape-selector';
8023
+ };
8024
+
8025
+ type DisplayTriggerControlType<T> = SharedControlType<T> & {
8026
+ type: 'display-trigger-badge';
8027
+ };
8028
+
8029
+ type CustomPositionControlType<T> = SharedControlType<T> & {
8030
+ type: 'custom-position';
8031
+ ignoreValue?: string[];
8032
+ topGap?: string;
8033
+ leftGap?: string;
8034
+ rightGap?: string;
8035
+ bottomGap?: string;
8036
+ };
8037
+
8038
+ type DealControlType<T> = SharedControlType<T> & {
8039
+ type: 'bundleItem';
8040
+ readonly?: boolean;
8041
+ };
8042
+
8043
+ type ProductBundleChildControlType<T> = SharedControlType<T> & {
8044
+ type: 'product-bundle-child-item';
8045
+ [key: string]: any;
8046
+ };
8047
+ type SelectProductBundleControlType<T> = SharedControlType<T> & {
8048
+ type: 'select-product-bundle';
8049
+ label?: string;
8050
+ hide?: boolean;
8051
+ };
8052
+
8053
+ type ControlProp<T> = ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | CustomPositionControlType<T> | SneakPeakControlType<T> | PostPurchaseTextareaControlType<T> | DealControlType<T> | DisplayTriggerControlType<T>;
8017
8054
  type ControlTriggerAction = {
8018
8055
  controlId: string;
8019
8056
  newValue?: any;
@@ -8069,6 +8106,7 @@ type ComponentSetting<P extends BaseProps> = {
8069
8106
  flowPage?: string;
8070
8107
  notAppendTags?: string[];
8071
8108
  notAppendLeftRight?: boolean;
8109
+ allowAppendTags?: string[];
8072
8110
  };
8073
8111
  sideBar?: {
8074
8112
  hide?: boolean;
@@ -8105,7 +8143,7 @@ type ControlUI = {
8105
8143
  labelPosition?: 'start' | 'end';
8106
8144
  justifyContent?: 'start' | 'end' | 'between' | 'around';
8107
8145
  label?: 'medium' | 'large';
8108
- info?: 'near' | 'far';
8146
+ info?: 'near' | 'far' | 'bottom';
8109
8147
  labelSpacing?: 'small' | 'medium' | 'large';
8110
8148
  removeSpacing?: boolean;
8111
8149
  noGap?: boolean;
@@ -8197,6 +8235,75 @@ type PublicStoreFrontData = {
8197
8235
  token?: string;
8198
8236
  endpoint?: string;
8199
8237
  };
8238
+ type InteractionElement<E, T> = {
8239
+ uid?: string;
8240
+ event?: E;
8241
+ condition?: T;
8242
+ elementTag?: string;
8243
+ targetOutsideSelector?: string;
8244
+ targetInsideSelector?: string;
8245
+ };
8246
+ declare enum InteractionTargetEvent {
8247
+ 'gp:change-background-color' = 0,
8248
+ 'gp:run-animation' = 1,
8249
+ 'gp:toggle-element-visibility' = 2,
8250
+ 'gp:change-text' = 3,
8251
+ 'gp:scroll-to' = 4,
8252
+ 'gp:change-text-style' = 5,
8253
+ 'gp:change-content' = 6,
8254
+ 'gp:change-button-style' = 7,
8255
+ 'gp:copy-text' = 8,
8256
+ 'gp:change-image' = 9,
8257
+ 'gp:toggle-video-play' = 10,
8258
+ 'gp:change-slider-ratio' = 11,
8259
+ 'gp:change-icon-style' = 12,
8260
+ 'gp:change-expanded-item' = 13,
8261
+ 'gp:change-active-item' = 14,
8262
+ 'gp:change-slide' = 15,
8263
+ 'gp:change-image-step' = 16,
8264
+ 'gp:change-text-value' = 17,
8265
+ 'gp:toggle-popup-open' = 18,
8266
+ 'gp:show-or-hide' = 19
8267
+ }
8268
+ declare enum InteractionTriggerEvent {
8269
+ 'click' = 0,
8270
+ active = 1,
8271
+ 'mouseover' = 2,
8272
+ 'gp:appear' = 3,
8273
+ 'gp:item-selected' = 4,
8274
+ 'gp:item-unselected' = 5,
8275
+ 'gp:item-hovered' = 6,
8276
+ 'gp:item-click' = 7,
8277
+ 'gp:after-submit' = 8,
8278
+ 'gp:quantity-change' = 9,
8279
+ 'gp:after-checked-value' = 10,
8280
+ 'gp:after-add-to-cart' = 11,
8281
+ 'gp:popup-open' = 12,
8282
+ 'gp:popup-close' = 13,
8283
+ 'scroll-up' = 14,
8284
+ 'scroll-down' = 15
8285
+ }
8286
+ type InteractionCondition = {
8287
+ type?: 'equal' | 'greater' | 'less' | 'greater-or-equal' | 'less-or-equal' | 'distance-to-top' | 'selected-item' | 'between' | 'out-of-stock' | 'out-of-time' | 'delay';
8288
+ data?: unknown;
8289
+ metaData?: any;
8290
+ };
8291
+ type Interaction = {
8292
+ self?: InteractionElement<InteractionTriggerEvent, InteractionCondition>;
8293
+ targets?: InteractionTarget[];
8294
+ };
8295
+ type InteractionTarget = {
8296
+ uid?: string;
8297
+ elementTag?: string;
8298
+ targetOutsideSelector?: string;
8299
+ targetInsideSelector?: string;
8300
+ events?: InteractionTargetEventObject[];
8301
+ };
8302
+ type InteractionTargetEventObject = {
8303
+ event: InteractionTargetEvent;
8304
+ eventName: string;
8305
+ condition: InteractionCondition;
8306
+ };
8200
8307
 
8201
8308
  type Maybe<T> = T | undefined;
8202
8309
  type InputMaybe<T> = T | undefined;
@@ -28838,11 +28945,19 @@ type PageContextProps = {
28838
28945
  productOffers?: ProductOffer[];
28839
28946
  salePageProductId?: string;
28840
28947
  publicStoreFrontData?: PublicStoreFrontData | null;
28948
+ interactionData?: {
28949
+ item?: Interaction;
28950
+ isSelectOnPage?: boolean;
28951
+ selectType?: 'element' | 'page';
28952
+ };
28841
28953
  setDynamicProduct: (data: DynamicProduct) => void;
28842
28954
  setDynamicCollection: (data: DynamicCollection) => void;
28843
28955
  setPostPurchaseProductOffers: (productOffers: ProductOffer[]) => void;
28844
28956
  setSalePageProductId: (id: string) => void;
28845
28957
  setPublicStoreFrontData: (publicStoreFrontData: PublicStoreFrontData | null) => void;
28958
+ setInteractionItem: (item: Interaction) => void;
28959
+ setInteractionIsSelectOnPage: (value: boolean) => void;
28960
+ setInteractionSelectType: (selectType: 'element' | 'page') => void;
28846
28961
  };
28847
28962
  type PageProviderProps = Pick<PageContextProps, 'dynamicProduct' | 'dynamicCollection' | 'productOffers'> & {
28848
28963
  children: React.ReactNode;
@@ -30127,6 +30242,15 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
30127
30242
  '--z-mobile'?: csstype.Property.ZIndex | undefined;
30128
30243
  '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
30129
30244
  '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
30245
+ '--wm'?: csstype.Property.WritingMode | undefined;
30246
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
30247
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
30248
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
30249
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
30250
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
30251
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
30252
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
30253
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
30130
30254
  accentColor?: csstype.Property.AccentColor | undefined;
30131
30255
  alignContent?: csstype.Property.AlignContent | undefined;
30132
30256
  alignItems?: csstype.Property.AlignItems | undefined;
@@ -31622,6 +31746,15 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
31622
31746
  '--z-mobile'?: csstype.Property.ZIndex | undefined;
31623
31747
  '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
31624
31748
  '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
31749
+ '--wm'?: csstype.Property.WritingMode | undefined;
31750
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
31751
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
31752
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
31753
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
31754
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
31755
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
31756
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
31757
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
31625
31758
  accentColor?: csstype.Property.AccentColor | undefined;
31626
31759
  alignContent?: csstype.Property.AlignContent | undefined;
31627
31760
  alignItems?: csstype.Property.AlignItems | undefined;
@@ -33117,6 +33250,15 @@ declare const filterCornerInStyle: (style?: React.CSSProperties) => {
33117
33250
  '--z-mobile'?: csstype.Property.ZIndex | undefined;
33118
33251
  '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
33119
33252
  '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
33253
+ '--wm'?: csstype.Property.WritingMode | undefined;
33254
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
33255
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
33256
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
33257
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
33258
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
33259
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
33260
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
33261
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
33120
33262
  accentColor?: csstype.Property.AccentColor | undefined;
33121
33263
  alignContent?: csstype.Property.AlignContent | undefined;
33122
33264
  alignItems?: csstype.Property.AlignItems | undefined;
@@ -34612,6 +34754,15 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
34612
34754
  '--z-mobile'?: csstype.Property.ZIndex | undefined;
34613
34755
  '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
34614
34756
  '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
34757
+ '--wm'?: csstype.Property.WritingMode | undefined;
34758
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
34759
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
34760
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
34761
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
34762
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
34763
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
34764
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
34765
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
34615
34766
  accentColor?: csstype.Property.AccentColor | undefined;
34616
34767
  alignContent?: csstype.Property.AlignContent | undefined;
34617
34768
  alignItems?: csstype.Property.AlignItems | undefined;
@@ -35447,6 +35598,8 @@ declare const optionLayoutStyle: (column?: ObjectDevices<string | number>) => Re
35447
35598
  declare const composeGridLayout: (layout?: ObjectDevices<ObjectLayoutValue>) => React.CSSProperties;
35448
35599
  declare const convertOldLayout: (layout?: ObjectDevices<string>) => ObjectDevices<ObjectLayoutValue>;
35449
35600
 
35601
+ declare const convertTextAlignToJustify: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
35602
+
35450
35603
  declare function getSelectedVariant(variants?: Maybe$1<VariantSelectFragment>[], choices?: Record<string, string>, variantId?: string | null): Maybe$1<VariantSelectFragment>;
35451
35604
  declare function parseSelectedOption(options: SelectedOption$1[]): SelectedOption$1 | undefined;
35452
35605
  declare function checkAvailableVariantInStock(variants: Maybe$1<VariantSelectFragment>[] | undefined, optionId: string, optionValue: string): boolean;
@@ -36245,6 +36398,15 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
36245
36398
  '--z-mobile'?: csstype.Property.ZIndex | undefined;
36246
36399
  '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
36247
36400
  '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
36401
+ '--wm'?: csstype.Property.WritingMode | undefined;
36402
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
36403
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
36404
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
36405
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
36406
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
36407
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
36408
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
36409
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
36248
36410
  accentColor?: csstype.Property.AccentColor | undefined;
36249
36411
  alignContent?: csstype.Property.AlignContent | undefined;
36250
36412
  alignItems?: csstype.Property.AlignItems | undefined;
@@ -37143,6 +37305,7 @@ declare const useProductsQueryAll: (variable?: VariableRelatedStyles | undefined
37143
37305
  declare const useCurrentDevice: () => NameDevices$1;
37144
37306
 
37145
37307
  declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
37308
+ declare const formatMoney: (cents: string, format: any) => string;
37146
37309
  declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
37147
37310
 
37148
37311
  declare const useLazyVideo: () => void;
@@ -37377,4 +37540,4 @@ declare const getAppBlocks: (section: PublishedPageSection$1 & {
37377
37540
 
37378
37541
  declare const addAppBlockId: (component: Component) => Component;
37379
37542
 
37380
- export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, 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, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, 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, 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, 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, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, 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, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, 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, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, 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, 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, useInitialSwatchesOptions, 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 };
37543
+ export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, 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, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, 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, 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, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, 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, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, 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, 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, useInitialSwatchesOptions, 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.46.1",
3
+ "version": "1.47.0-dev.4",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",
@@ -27,8 +27,8 @@
27
27
  "type-check": "yarn tsc --noEmit"
28
28
  },
29
29
  "devDependencies": {
30
- "@gem-sdk/adapter-shopify": "1.46.0",
31
- "@gem-sdk/styles": "1.46.0",
30
+ "@gem-sdk/adapter-shopify": "1.47.0-dev.4",
31
+ "@gem-sdk/styles": "1.47.0-dev.4",
32
32
  "@types/classnames": "^2.3.1"
33
33
  },
34
34
  "dependencies": {