@gem-sdk/core 2.0.0-dev.248 → 2.0.0-dev.251
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.
package/dist/types/index.d.ts
CHANGED
|
@@ -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,10 +7981,12 @@ type OpenLinkControlType<T> = SharedControlType<T> & {
|
|
|
7926
7981
|
linkType?: 'openApp' | 'install';
|
|
7927
7982
|
};
|
|
7928
7983
|
|
|
7929
|
-
type Option$
|
|
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;
|
|
7988
|
+
showValue?: boolean;
|
|
7989
|
+
displayValue?: string;
|
|
7933
7990
|
hideOnPage?: string[];
|
|
7934
7991
|
flowTag?: string[];
|
|
7935
7992
|
condition?: 'and' | 'or';
|
|
@@ -7940,7 +7997,7 @@ type Option$4<T> = {
|
|
|
7940
7997
|
note?: string;
|
|
7941
7998
|
maxOption?: number;
|
|
7942
7999
|
};
|
|
7943
|
-
type Mapped$
|
|
8000
|
+
type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7944
8001
|
id: K;
|
|
7945
8002
|
label?: string;
|
|
7946
8003
|
info?: string;
|
|
@@ -7959,7 +8016,7 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7959
8016
|
};
|
|
7960
8017
|
placeholder?: string;
|
|
7961
8018
|
type: 'select';
|
|
7962
|
-
options: Option$
|
|
8019
|
+
options: Option$3<T>[];
|
|
7963
8020
|
devices?: ResponsiveConfig<U>;
|
|
7964
8021
|
} : {
|
|
7965
8022
|
id: K;
|
|
@@ -7979,12 +8036,12 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7979
8036
|
};
|
|
7980
8037
|
placeholder?: string;
|
|
7981
8038
|
type: 'select';
|
|
7982
|
-
options: Option$
|
|
8039
|
+
options: Option$3<T>[];
|
|
7983
8040
|
default?: T;
|
|
7984
8041
|
isFullWidth?: boolean;
|
|
7985
8042
|
};
|
|
7986
8043
|
type SelectControlType<T> = {
|
|
7987
|
-
[K in keyof T]-?: Mapped$
|
|
8044
|
+
[K in keyof T]-?: Mapped$4<K, T[K]>;
|
|
7988
8045
|
}[keyof T];
|
|
7989
8046
|
|
|
7990
8047
|
type TextareaControlType<T> = SharedControlType<T> & {
|
|
@@ -8352,7 +8409,7 @@ type CustomCodeEditor = {
|
|
|
8352
8409
|
id: string;
|
|
8353
8410
|
};
|
|
8354
8411
|
|
|
8355
|
-
type Option$
|
|
8412
|
+
type Option$2<T> = {
|
|
8356
8413
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
8357
8414
|
label?: string | number;
|
|
8358
8415
|
type?: string;
|
|
@@ -8360,7 +8417,7 @@ type Option$3<T> = {
|
|
|
8360
8417
|
iconName?: string;
|
|
8361
8418
|
isTextIcon?: boolean;
|
|
8362
8419
|
};
|
|
8363
|
-
type Mapped$
|
|
8420
|
+
type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
8364
8421
|
id: K;
|
|
8365
8422
|
label: string;
|
|
8366
8423
|
info?: string;
|
|
@@ -8378,10 +8435,10 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
8378
8435
|
};
|
|
8379
8436
|
placeholder?: string;
|
|
8380
8437
|
type: 'layout-segment';
|
|
8381
|
-
options: Option$
|
|
8438
|
+
options: Option$2<T>[];
|
|
8382
8439
|
groups?: {
|
|
8383
8440
|
label: string;
|
|
8384
|
-
options: Option$
|
|
8441
|
+
options: Option$2<T>[];
|
|
8385
8442
|
}[];
|
|
8386
8443
|
devices?: ResponsiveConfig<U>;
|
|
8387
8444
|
iconViewBox?: string;
|
|
@@ -8409,10 +8466,10 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
8409
8466
|
type: 'layout-segment';
|
|
8410
8467
|
itemPerRow?: number;
|
|
8411
8468
|
itemSpacing?: 'large' | 'small';
|
|
8412
|
-
options?: Option$
|
|
8469
|
+
options?: Option$2<T>[];
|
|
8413
8470
|
groups?: {
|
|
8414
8471
|
label: string;
|
|
8415
|
-
options: Option$
|
|
8472
|
+
options: Option$2<T>[];
|
|
8416
8473
|
}[];
|
|
8417
8474
|
iconViewBox?: string;
|
|
8418
8475
|
enableItemBackground?: boolean;
|
|
@@ -8420,7 +8477,7 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
8420
8477
|
default?: T;
|
|
8421
8478
|
};
|
|
8422
8479
|
type LayoutSegmentControlType<T> = {
|
|
8423
|
-
[K in keyof T]-?: Mapped$
|
|
8480
|
+
[K in keyof T]-?: Mapped$3<K, T[K]>;
|
|
8424
8481
|
}[keyof T];
|
|
8425
8482
|
|
|
8426
8483
|
type InputSpacing<T> = SharedControlType<T> & {
|
|
@@ -8547,7 +8604,7 @@ type Actions = {
|
|
|
8547
8604
|
actionHandle?: string;
|
|
8548
8605
|
link?: string;
|
|
8549
8606
|
};
|
|
8550
|
-
type Mapped$
|
|
8607
|
+
type Mapped$2<K, T> = {
|
|
8551
8608
|
id: K;
|
|
8552
8609
|
label: string;
|
|
8553
8610
|
info?: string;
|
|
@@ -8556,7 +8613,7 @@ type Mapped$3<K, T> = {
|
|
|
8556
8613
|
default?: T;
|
|
8557
8614
|
};
|
|
8558
8615
|
type StepsGuide<T> = {
|
|
8559
|
-
[K in keyof T]-?: Mapped$
|
|
8616
|
+
[K in keyof T]-?: Mapped$2<K, T[K]>;
|
|
8560
8617
|
}[keyof T];
|
|
8561
8618
|
|
|
8562
8619
|
type ImageShape<T> = SharedControlType<T> & {
|
|
@@ -8666,14 +8723,14 @@ type SneakPeakRange<T> = SharedControlType<T> & {
|
|
|
8666
8723
|
sneakPeakType?: string;
|
|
8667
8724
|
};
|
|
8668
8725
|
|
|
8669
|
-
type Option$
|
|
8726
|
+
type Option$1<T> = {
|
|
8670
8727
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
8671
8728
|
label?: string | number;
|
|
8672
8729
|
type?: string;
|
|
8673
8730
|
icon?: string;
|
|
8674
8731
|
isTextIcon?: boolean;
|
|
8675
8732
|
};
|
|
8676
|
-
type Mapped$
|
|
8733
|
+
type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
8677
8734
|
id: K;
|
|
8678
8735
|
label: string;
|
|
8679
8736
|
info?: string;
|
|
@@ -8691,7 +8748,7 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
8691
8748
|
};
|
|
8692
8749
|
placeholder?: string;
|
|
8693
8750
|
type: 'sneak-peak-type';
|
|
8694
|
-
options: Option$
|
|
8751
|
+
options: Option$1<T>[];
|
|
8695
8752
|
devices?: ResponsiveConfig<U>;
|
|
8696
8753
|
iconViewBox?: string;
|
|
8697
8754
|
enableItemBackground?: boolean;
|
|
@@ -8716,14 +8773,14 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
8716
8773
|
};
|
|
8717
8774
|
placeholder?: string;
|
|
8718
8775
|
type: 'sneak-peak-type';
|
|
8719
|
-
options?: Option$
|
|
8776
|
+
options?: Option$1<T>[];
|
|
8720
8777
|
iconViewBox?: string;
|
|
8721
8778
|
enableItemBackground?: boolean;
|
|
8722
8779
|
enableTooltip?: boolean;
|
|
8723
8780
|
default?: T;
|
|
8724
8781
|
};
|
|
8725
8782
|
type SneakPeakTypeControlType<T> = {
|
|
8726
|
-
[K in keyof T]-?: Mapped$
|
|
8783
|
+
[K in keyof T]-?: Mapped$1<K, T[K]>;
|
|
8727
8784
|
}[keyof T];
|
|
8728
8785
|
|
|
8729
8786
|
type ProductInputCurrencyUnitControlType<T> = SharedControlType<T> & {
|
|
@@ -9190,14 +9247,14 @@ type ComboControlType<T> = SharedControlType<T> & {
|
|
|
9190
9247
|
readonly?: boolean;
|
|
9191
9248
|
};
|
|
9192
9249
|
|
|
9193
|
-
type Option
|
|
9250
|
+
type Option<T> = {
|
|
9194
9251
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
9195
9252
|
label?: string | number;
|
|
9196
9253
|
iconName?: string;
|
|
9197
9254
|
type?: string;
|
|
9198
9255
|
noPadding?: string;
|
|
9199
9256
|
};
|
|
9200
|
-
type Mapped
|
|
9257
|
+
type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
9201
9258
|
id: K;
|
|
9202
9259
|
label: string;
|
|
9203
9260
|
info?: string;
|
|
@@ -9215,10 +9272,10 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
9215
9272
|
};
|
|
9216
9273
|
placeholder?: string;
|
|
9217
9274
|
type: 'layout-selector';
|
|
9218
|
-
options: Option
|
|
9275
|
+
options: Option<T>[];
|
|
9219
9276
|
groups?: {
|
|
9220
9277
|
label: string;
|
|
9221
|
-
options: Option
|
|
9278
|
+
options: Option<T>[];
|
|
9222
9279
|
}[];
|
|
9223
9280
|
devices?: ResponsiveConfig<U>;
|
|
9224
9281
|
iconViewBox?: string;
|
|
@@ -9246,10 +9303,10 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
9246
9303
|
type: 'layout-selector';
|
|
9247
9304
|
itemPerRow?: number;
|
|
9248
9305
|
itemSpacing?: 'large' | 'small';
|
|
9249
|
-
options?: Option
|
|
9306
|
+
options?: Option<T>[];
|
|
9250
9307
|
groups?: {
|
|
9251
9308
|
label: string;
|
|
9252
|
-
options: Option
|
|
9309
|
+
options: Option<T>[];
|
|
9253
9310
|
}[];
|
|
9254
9311
|
iconViewBox?: string;
|
|
9255
9312
|
enableItemBackground?: boolean;
|
|
@@ -9257,61 +9314,6 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
9257
9314
|
default?: T;
|
|
9258
9315
|
};
|
|
9259
9316
|
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
9317
|
[K in keyof T]-?: Mapped<K, T[K]>;
|
|
9316
9318
|
}[keyof T];
|
|
9317
9319
|
|
|
@@ -9346,7 +9348,7 @@ type InputSliderControlType<T> = SharedControlType<T> & {
|
|
|
9346
9348
|
maxRelated?: string;
|
|
9347
9349
|
}>;
|
|
9348
9350
|
|
|
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$
|
|
9351
|
+
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
9352
|
validate?: ValidateType;
|
|
9351
9353
|
};
|
|
9352
9354
|
type ValidateType = {
|
|
@@ -47060,4 +47062,4 @@ declare const useInteraction: () => {
|
|
|
47060
47062
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
47061
47063
|
};
|
|
47062
47064
|
|
|
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 };
|
|
47065
|
+
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 };
|