@gem-sdk/core 2.0.0-dev.248 → 2.0.0-dev.249

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.
@@ -7918,6 +7918,61 @@ type SegmentControlType<T> = {
7918
7918
  [K in keyof T]-?: Mapped$6<K, T[K]>;
7919
7919
  }[keyof T];
7920
7920
 
7921
+ type Option$4<T> = {
7922
+ value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
7923
+ label?: string | number;
7924
+ type?: string;
7925
+ icon?: string;
7926
+ tooltip?: string;
7927
+ iconName?: string;
7928
+ };
7929
+ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7930
+ id: K;
7931
+ label?: string;
7932
+ info?: string;
7933
+ hide?: boolean;
7934
+ hideOnMode?: {
7935
+ responsive?: boolean;
7936
+ mobileOnly?: boolean;
7937
+ };
7938
+ disableToggle?: boolean;
7939
+ state?: {
7940
+ normal?: boolean;
7941
+ hover?: boolean;
7942
+ focus?: boolean;
7943
+ active?: boolean;
7944
+ };
7945
+ placeholder?: string;
7946
+ type: 'option:value' | 'accordion:segment';
7947
+ options: Option$4<T>[];
7948
+ iconCustom?: boolean;
7949
+ devices?: ResponsiveConfig<U>;
7950
+ } : {
7951
+ id: K;
7952
+ label?: string;
7953
+ info?: string;
7954
+ hide?: boolean;
7955
+ hideOnMode?: {
7956
+ responsive?: boolean;
7957
+ mobileOnly?: boolean;
7958
+ };
7959
+ disableToggle?: boolean;
7960
+ state?: {
7961
+ normal?: boolean;
7962
+ hover?: boolean;
7963
+ focus?: boolean;
7964
+ active?: boolean;
7965
+ };
7966
+ placeholder?: string;
7967
+ type: 'option:value' | 'accordion:segment';
7968
+ options: Option$4<T>[];
7969
+ iconCustom?: boolean;
7970
+ default?: T;
7971
+ };
7972
+ type OptionValueControlType<T> = {
7973
+ [K in keyof T]-?: Mapped$5<K, T[K]>;
7974
+ }[keyof T];
7975
+
7921
7976
  type OpenLinkControlType<T> = SharedControlType<T> & {
7922
7977
  type: 'open-link';
7923
7978
  target?: string;
@@ -7926,7 +7981,7 @@ type OpenLinkControlType<T> = SharedControlType<T> & {
7926
7981
  linkType?: 'openApp' | 'install';
7927
7982
  };
7928
7983
 
7929
- type Option$4<T> = {
7984
+ type Option$3<T> = {
7930
7985
  value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
7931
7986
  label?: string | number;
7932
7987
  title?: string;
@@ -7940,7 +7995,7 @@ type Option$4<T> = {
7940
7995
  note?: string;
7941
7996
  maxOption?: number;
7942
7997
  };
7943
- type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7998
+ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7944
7999
  id: K;
7945
8000
  label?: string;
7946
8001
  info?: string;
@@ -7959,7 +8014,7 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7959
8014
  };
7960
8015
  placeholder?: string;
7961
8016
  type: 'select';
7962
- options: Option$4<T>[];
8017
+ options: Option$3<T>[];
7963
8018
  devices?: ResponsiveConfig<U>;
7964
8019
  } : {
7965
8020
  id: K;
@@ -7979,12 +8034,12 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7979
8034
  };
7980
8035
  placeholder?: string;
7981
8036
  type: 'select';
7982
- options: Option$4<T>[];
8037
+ options: Option$3<T>[];
7983
8038
  default?: T;
7984
8039
  isFullWidth?: boolean;
7985
8040
  };
7986
8041
  type SelectControlType<T> = {
7987
- [K in keyof T]-?: Mapped$5<K, T[K]>;
8042
+ [K in keyof T]-?: Mapped$4<K, T[K]>;
7988
8043
  }[keyof T];
7989
8044
 
7990
8045
  type TextareaControlType<T> = SharedControlType<T> & {
@@ -8352,7 +8407,7 @@ type CustomCodeEditor = {
8352
8407
  id: string;
8353
8408
  };
8354
8409
 
8355
- type Option$3<T> = {
8410
+ type Option$2<T> = {
8356
8411
  value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
8357
8412
  label?: string | number;
8358
8413
  type?: string;
@@ -8360,7 +8415,7 @@ type Option$3<T> = {
8360
8415
  iconName?: string;
8361
8416
  isTextIcon?: boolean;
8362
8417
  };
8363
- type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8418
+ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8364
8419
  id: K;
8365
8420
  label: string;
8366
8421
  info?: string;
@@ -8378,10 +8433,10 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8378
8433
  };
8379
8434
  placeholder?: string;
8380
8435
  type: 'layout-segment';
8381
- options: Option$3<T>[];
8436
+ options: Option$2<T>[];
8382
8437
  groups?: {
8383
8438
  label: string;
8384
- options: Option$3<T>[];
8439
+ options: Option$2<T>[];
8385
8440
  }[];
8386
8441
  devices?: ResponsiveConfig<U>;
8387
8442
  iconViewBox?: string;
@@ -8409,10 +8464,10 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8409
8464
  type: 'layout-segment';
8410
8465
  itemPerRow?: number;
8411
8466
  itemSpacing?: 'large' | 'small';
8412
- options?: Option$3<T>[];
8467
+ options?: Option$2<T>[];
8413
8468
  groups?: {
8414
8469
  label: string;
8415
- options: Option$3<T>[];
8470
+ options: Option$2<T>[];
8416
8471
  }[];
8417
8472
  iconViewBox?: string;
8418
8473
  enableItemBackground?: boolean;
@@ -8420,7 +8475,7 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8420
8475
  default?: T;
8421
8476
  };
8422
8477
  type LayoutSegmentControlType<T> = {
8423
- [K in keyof T]-?: Mapped$4<K, T[K]>;
8478
+ [K in keyof T]-?: Mapped$3<K, T[K]>;
8424
8479
  }[keyof T];
8425
8480
 
8426
8481
  type InputSpacing<T> = SharedControlType<T> & {
@@ -8547,7 +8602,7 @@ type Actions = {
8547
8602
  actionHandle?: string;
8548
8603
  link?: string;
8549
8604
  };
8550
- type Mapped$3<K, T> = {
8605
+ type Mapped$2<K, T> = {
8551
8606
  id: K;
8552
8607
  label: string;
8553
8608
  info?: string;
@@ -8556,7 +8611,7 @@ type Mapped$3<K, T> = {
8556
8611
  default?: T;
8557
8612
  };
8558
8613
  type StepsGuide<T> = {
8559
- [K in keyof T]-?: Mapped$3<K, T[K]>;
8614
+ [K in keyof T]-?: Mapped$2<K, T[K]>;
8560
8615
  }[keyof T];
8561
8616
 
8562
8617
  type ImageShape<T> = SharedControlType<T> & {
@@ -8666,14 +8721,14 @@ type SneakPeakRange<T> = SharedControlType<T> & {
8666
8721
  sneakPeakType?: string;
8667
8722
  };
8668
8723
 
8669
- type Option$2<T> = {
8724
+ type Option$1<T> = {
8670
8725
  value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
8671
8726
  label?: string | number;
8672
8727
  type?: string;
8673
8728
  icon?: string;
8674
8729
  isTextIcon?: boolean;
8675
8730
  };
8676
- type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8731
+ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8677
8732
  id: K;
8678
8733
  label: string;
8679
8734
  info?: string;
@@ -8691,7 +8746,7 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8691
8746
  };
8692
8747
  placeholder?: string;
8693
8748
  type: 'sneak-peak-type';
8694
- options: Option$2<T>[];
8749
+ options: Option$1<T>[];
8695
8750
  devices?: ResponsiveConfig<U>;
8696
8751
  iconViewBox?: string;
8697
8752
  enableItemBackground?: boolean;
@@ -8716,14 +8771,14 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
8716
8771
  };
8717
8772
  placeholder?: string;
8718
8773
  type: 'sneak-peak-type';
8719
- options?: Option$2<T>[];
8774
+ options?: Option$1<T>[];
8720
8775
  iconViewBox?: string;
8721
8776
  enableItemBackground?: boolean;
8722
8777
  enableTooltip?: boolean;
8723
8778
  default?: T;
8724
8779
  };
8725
8780
  type SneakPeakTypeControlType<T> = {
8726
- [K in keyof T]-?: Mapped$2<K, T[K]>;
8781
+ [K in keyof T]-?: Mapped$1<K, T[K]>;
8727
8782
  }[keyof T];
8728
8783
 
8729
8784
  type ProductInputCurrencyUnitControlType<T> = SharedControlType<T> & {
@@ -9190,14 +9245,14 @@ type ComboControlType<T> = SharedControlType<T> & {
9190
9245
  readonly?: boolean;
9191
9246
  };
9192
9247
 
9193
- type Option$1<T> = {
9248
+ type Option<T> = {
9194
9249
  value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
9195
9250
  label?: string | number;
9196
9251
  iconName?: string;
9197
9252
  type?: string;
9198
9253
  noPadding?: string;
9199
9254
  };
9200
- type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
9255
+ type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
9201
9256
  id: K;
9202
9257
  label: string;
9203
9258
  info?: string;
@@ -9215,10 +9270,10 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
9215
9270
  };
9216
9271
  placeholder?: string;
9217
9272
  type: 'layout-selector';
9218
- options: Option$1<T>[];
9273
+ options: Option<T>[];
9219
9274
  groups?: {
9220
9275
  label: string;
9221
- options: Option$1<T>[];
9276
+ options: Option<T>[];
9222
9277
  }[];
9223
9278
  devices?: ResponsiveConfig<U>;
9224
9279
  iconViewBox?: string;
@@ -9246,10 +9301,10 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
9246
9301
  type: 'layout-selector';
9247
9302
  itemPerRow?: number;
9248
9303
  itemSpacing?: 'large' | 'small';
9249
- options?: Option$1<T>[];
9304
+ options?: Option<T>[];
9250
9305
  groups?: {
9251
9306
  label: string;
9252
- options: Option$1<T>[];
9307
+ options: Option<T>[];
9253
9308
  }[];
9254
9309
  iconViewBox?: string;
9255
9310
  enableItemBackground?: boolean;
@@ -9257,61 +9312,6 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
9257
9312
  default?: T;
9258
9313
  };
9259
9314
  type LayoutSelectorControlType<T> = {
9260
- [K in keyof T]-?: Mapped$1<K, T[K]>;
9261
- }[keyof T];
9262
-
9263
- type Option<T> = {
9264
- value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
9265
- label?: string | number;
9266
- type?: string;
9267
- icon?: string;
9268
- tooltip?: string;
9269
- iconName?: string;
9270
- };
9271
- type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
9272
- id: K;
9273
- label?: string;
9274
- info?: string;
9275
- hide?: boolean;
9276
- hideOnMode?: {
9277
- responsive?: boolean;
9278
- mobileOnly?: boolean;
9279
- };
9280
- disableToggle?: boolean;
9281
- state?: {
9282
- normal?: boolean;
9283
- hover?: boolean;
9284
- focus?: boolean;
9285
- active?: boolean;
9286
- };
9287
- placeholder?: string;
9288
- type: 'segment-v2';
9289
- options: Option<T>[];
9290
- iconCustom?: boolean;
9291
- devices?: ResponsiveConfig<U>;
9292
- } : {
9293
- id: K;
9294
- label?: string;
9295
- info?: string;
9296
- hide?: boolean;
9297
- hideOnMode?: {
9298
- responsive?: boolean;
9299
- mobileOnly?: boolean;
9300
- };
9301
- disableToggle?: boolean;
9302
- state?: {
9303
- normal?: boolean;
9304
- hover?: boolean;
9305
- focus?: boolean;
9306
- active?: boolean;
9307
- };
9308
- placeholder?: string;
9309
- type: 'segment-v2';
9310
- options: Option<T>[];
9311
- iconCustom?: boolean;
9312
- default?: T;
9313
- };
9314
- type SegmentV2ControlType<T> = {
9315
9315
  [K in keyof T]-?: Mapped<K, T[K]>;
9316
9316
  }[keyof T];
9317
9317
 
@@ -9346,7 +9346,7 @@ type InputSliderControlType<T> = SharedControlType<T> & {
9346
9346
  maxRelated?: string;
9347
9347
  }>;
9348
9348
 
9349
- type ControlProp<T> = (ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputStepperControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | Option$5<T> | OpenLinkControlType<T> | SelectControlType<T> | Option$4<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 | VariantListingControlType | 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> | DisplayTriggerControlType<T> | CustomPositionControlType<T> | DealControlType<T> | ProductHandleType<T> | ColorPickerV2ControlType<T> | BorderV2ControlType<T> | CornerV2ControlType<T> | PaddingV2ControlType<T> | BackgroundImageType<T> | BackgroundVideoType<T> | ShadowV2ControlType<T> | BackgroundMediaControlType<T> | BackgroundVideoType<T> | ImageV2ControlType<T> | LayoutSelectorControlType<T> | ComboControlType<T> | SegmentV2ControlType<T> | DynamicOfferQuantity<T> | ImagePostPurchase<T> | InputSliderControlType<T> | VariantSwatchesPresetV2ControlType<T>) & {
9349
+ type ControlProp<T> = (ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputStepperControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | Option$5<T> | OptionValueControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | Option$3<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 | VariantListingControlType | 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> | DisplayTriggerControlType<T> | CustomPositionControlType<T> | DealControlType<T> | ProductHandleType<T> | ColorPickerV2ControlType<T> | BorderV2ControlType<T> | CornerV2ControlType<T> | PaddingV2ControlType<T> | BackgroundImageType<T> | BackgroundVideoType<T> | ShadowV2ControlType<T> | BackgroundMediaControlType<T> | BackgroundVideoType<T> | ImageV2ControlType<T> | LayoutSelectorControlType<T> | ComboControlType<T> | DynamicOfferQuantity<T> | ImagePostPurchase<T> | InputSliderControlType<T> | VariantSwatchesPresetV2ControlType<T>) & {
9350
9350
  validate?: ValidateType;
9351
9351
  };
9352
9352
  type ValidateType = {
@@ -47060,4 +47060,4 @@ declare const useInteraction: () => {
47060
47060
  interactionListenerLoaded: (callback: () => void) => void;
47061
47061
  };
47062
47062
 
47063
- 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, BackgroundMedia, 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, Dropdown, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, 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, LooxReviewsWidgetTypeV2, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$4 as Option, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, 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, SaleFunnelOfferDocument, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, ValidateType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, 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, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
47063
+ 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, BackgroundMedia, 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, Dropdown, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, 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, LooxReviewsWidgetTypeV2, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$3 as Option, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, 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, SaleFunnelOfferDocument, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, ValidateType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, 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, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.0.0-dev.248",
3
+ "version": "2.0.0-dev.249",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",