@gem-sdk/core 2.0.0-dev.324 → 2.0.0-dev.340
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 +119 -53
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -34244,6 +34244,7 @@ type PreOrderNowWodWidgetType = 'app-block' | 'popups-block';
|
|
|
34244
34244
|
type TagShopWidgetType = 'homeLandingGalleries' | 'productGalleries' | 'tagGalleries';
|
|
34245
34245
|
type AirProductReview = 'review_box' | 'star_rating' | 'review_carousel';
|
|
34246
34246
|
type FastBundleWidgetType = 'fbt_position' | 'product_bundles' | 'product_bundle_with_ids' | 'volume_position';
|
|
34247
|
+
type DotStyle = 'none' | 'inside' | 'outside';
|
|
34247
34248
|
|
|
34248
34249
|
type NameDevices = 'desktop' | 'tablet' | 'mobile';
|
|
34249
34250
|
type TypographyV2Family = string | {
|
|
@@ -35364,7 +35365,6 @@ declare const handleConvertClassColorDynamicBtn: (value?: BorderStyle) => string
|
|
|
35364
35365
|
declare const composeBorderCss: (borderV?: Border | undefined) => string;
|
|
35365
35366
|
declare const composeBorderResponsive: (borderValue?: ObjectDevices<Border>) => React.CSSProperties;
|
|
35366
35367
|
|
|
35367
|
-
type DotStyle = 'none' | 'inside' | 'outside';
|
|
35368
35368
|
declare const getCarouselContainerHeight: <T>(dotStyle?: Partial<Record<NameDevices$1, T>> | undefined) => {
|
|
35369
35369
|
desktop: string | undefined;
|
|
35370
35370
|
tablet: string | undefined;
|
|
@@ -35545,7 +35545,7 @@ type HyperlinkInfo = {
|
|
|
35545
35545
|
link?: string;
|
|
35546
35546
|
modal?: CommonModalApp;
|
|
35547
35547
|
};
|
|
35548
|
-
type Mapped$
|
|
35548
|
+
type Mapped$b<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
35549
35549
|
id: K;
|
|
35550
35550
|
label?: string;
|
|
35551
35551
|
info?: string;
|
|
@@ -35622,17 +35622,17 @@ type Mapped$a<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35622
35622
|
disableGetDefault?: boolean;
|
|
35623
35623
|
};
|
|
35624
35624
|
type SharedControlType<T> = {
|
|
35625
|
-
[K in keyof T]-?: Mapped$
|
|
35625
|
+
[K in keyof T]-?: Mapped$b<K, T[K]>;
|
|
35626
35626
|
}[keyof T];
|
|
35627
35627
|
|
|
35628
|
-
type Option$
|
|
35628
|
+
type Option$9 = {
|
|
35629
35629
|
value: number | string;
|
|
35630
35630
|
label?: string | number;
|
|
35631
35631
|
type?: string;
|
|
35632
35632
|
icon?: string;
|
|
35633
35633
|
isTextIcon?: boolean;
|
|
35634
35634
|
};
|
|
35635
|
-
type Mapped$
|
|
35635
|
+
type Mapped$a<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
35636
35636
|
id: K;
|
|
35637
35637
|
label: string;
|
|
35638
35638
|
info?: string;
|
|
@@ -35650,7 +35650,7 @@ type Mapped$9<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35650
35650
|
};
|
|
35651
35651
|
placeholder?: string;
|
|
35652
35652
|
type: 'layout-custom-segment';
|
|
35653
|
-
options: Option$
|
|
35653
|
+
options: Option$9[];
|
|
35654
35654
|
devices?: ResponsiveConfig<U>;
|
|
35655
35655
|
iconViewBox?: string;
|
|
35656
35656
|
enableItemBackground?: boolean;
|
|
@@ -35675,14 +35675,14 @@ type Mapped$9<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35675
35675
|
};
|
|
35676
35676
|
placeholder?: string;
|
|
35677
35677
|
type: 'layout-custom-segment';
|
|
35678
|
-
options?: Option$
|
|
35678
|
+
options?: Option$9[];
|
|
35679
35679
|
iconViewBox?: string;
|
|
35680
35680
|
enableItemBackground?: boolean;
|
|
35681
35681
|
enableTooltip?: boolean;
|
|
35682
35682
|
default?: T;
|
|
35683
35683
|
};
|
|
35684
35684
|
type LayoutCustomSegmentControlType<T> = {
|
|
35685
|
-
[K in keyof T]-?: Mapped$
|
|
35685
|
+
[K in keyof T]-?: Mapped$a<K, T[K]>;
|
|
35686
35686
|
}[keyof T];
|
|
35687
35687
|
|
|
35688
35688
|
type AngleControlType<T> = SharedControlType<T> & {
|
|
@@ -35694,12 +35694,12 @@ type AngleControlType<T> = SharedControlType<T> & {
|
|
|
35694
35694
|
readonly?: boolean;
|
|
35695
35695
|
};
|
|
35696
35696
|
|
|
35697
|
-
type Option$
|
|
35697
|
+
type Option$8<T> = {
|
|
35698
35698
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
35699
35699
|
text: string | number;
|
|
35700
35700
|
desc?: any;
|
|
35701
35701
|
};
|
|
35702
|
-
type Mapped$
|
|
35702
|
+
type Mapped$9<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
35703
35703
|
id: K;
|
|
35704
35704
|
label: string;
|
|
35705
35705
|
hideOnMode?: {
|
|
@@ -35715,7 +35715,7 @@ type Mapped$8<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35715
35715
|
active?: boolean;
|
|
35716
35716
|
};
|
|
35717
35717
|
type: 'checkbox';
|
|
35718
|
-
options: Option$
|
|
35718
|
+
options: Option$8<T>[];
|
|
35719
35719
|
devices?: ResponsiveConfig<U>;
|
|
35720
35720
|
} : {
|
|
35721
35721
|
id: K;
|
|
@@ -35733,11 +35733,11 @@ type Mapped$8<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35733
35733
|
active?: boolean;
|
|
35734
35734
|
};
|
|
35735
35735
|
type: 'checkbox';
|
|
35736
|
-
options: Option$
|
|
35736
|
+
options: Option$8<T>[];
|
|
35737
35737
|
default?: T;
|
|
35738
35738
|
};
|
|
35739
35739
|
type CheckboxControlType<T> = {
|
|
35740
|
-
[K in keyof T]-?: Mapped$
|
|
35740
|
+
[K in keyof T]-?: Mapped$9<K, T[K]>;
|
|
35741
35741
|
}[keyof T];
|
|
35742
35742
|
|
|
35743
35743
|
type ChildrensControlType = {
|
|
@@ -35886,14 +35886,14 @@ type RangeControlType<T> = SharedControlType<T> & {
|
|
|
35886
35886
|
maxRelated?: string;
|
|
35887
35887
|
}>;
|
|
35888
35888
|
|
|
35889
|
-
type Option$
|
|
35889
|
+
type Option$7<T> = {
|
|
35890
35890
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
35891
35891
|
label?: string | number;
|
|
35892
35892
|
type?: string;
|
|
35893
35893
|
icon?: string;
|
|
35894
35894
|
tooltip?: string;
|
|
35895
35895
|
};
|
|
35896
|
-
type Mapped$
|
|
35896
|
+
type Mapped$8<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
35897
35897
|
id: K;
|
|
35898
35898
|
label?: string;
|
|
35899
35899
|
info?: string;
|
|
@@ -35911,7 +35911,7 @@ type Mapped$7<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35911
35911
|
};
|
|
35912
35912
|
placeholder?: string;
|
|
35913
35913
|
type: 'segment' | 'accordion:segment';
|
|
35914
|
-
options: Option$
|
|
35914
|
+
options: Option$7<T>[];
|
|
35915
35915
|
iconCustom?: boolean;
|
|
35916
35916
|
devices?: ResponsiveConfig<U>;
|
|
35917
35917
|
} : {
|
|
@@ -35932,15 +35932,15 @@ type Mapped$7<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35932
35932
|
};
|
|
35933
35933
|
placeholder?: string;
|
|
35934
35934
|
type: 'segment' | 'accordion:segment';
|
|
35935
|
-
options: Option$
|
|
35935
|
+
options: Option$7<T>[];
|
|
35936
35936
|
iconCustom?: boolean;
|
|
35937
35937
|
default?: T;
|
|
35938
35938
|
};
|
|
35939
35939
|
type SegmentControlType<T> = {
|
|
35940
|
-
[K in keyof T]-?: Mapped$
|
|
35940
|
+
[K in keyof T]-?: Mapped$8<K, T[K]>;
|
|
35941
35941
|
}[keyof T];
|
|
35942
35942
|
|
|
35943
|
-
type Option$
|
|
35943
|
+
type Option$6<T> = {
|
|
35944
35944
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
35945
35945
|
label?: string | number;
|
|
35946
35946
|
type?: string;
|
|
@@ -35948,7 +35948,7 @@ type Option$5<T> = {
|
|
|
35948
35948
|
tooltip?: string;
|
|
35949
35949
|
iconName?: string;
|
|
35950
35950
|
};
|
|
35951
|
-
type Mapped$
|
|
35951
|
+
type Mapped$7<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
35952
35952
|
id: K;
|
|
35953
35953
|
label?: string;
|
|
35954
35954
|
info?: string;
|
|
@@ -35966,7 +35966,7 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35966
35966
|
};
|
|
35967
35967
|
placeholder?: string;
|
|
35968
35968
|
type: 'option:value' | 'accordion:segment';
|
|
35969
|
-
options: Option$
|
|
35969
|
+
options: Option$6<T>[];
|
|
35970
35970
|
iconCustom?: boolean;
|
|
35971
35971
|
devices?: ResponsiveConfig<U>;
|
|
35972
35972
|
} : {
|
|
@@ -35987,15 +35987,15 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35987
35987
|
};
|
|
35988
35988
|
placeholder?: string;
|
|
35989
35989
|
type: 'option:value' | 'accordion:segment';
|
|
35990
|
-
options: Option$
|
|
35990
|
+
options: Option$6<T>[];
|
|
35991
35991
|
iconCustom?: boolean;
|
|
35992
35992
|
default?: T;
|
|
35993
35993
|
};
|
|
35994
35994
|
type OptionValueControlType<T> = {
|
|
35995
|
-
[K in keyof T]-?: Mapped$
|
|
35995
|
+
[K in keyof T]-?: Mapped$7<K, T[K]>;
|
|
35996
35996
|
}[keyof T];
|
|
35997
35997
|
|
|
35998
|
-
type Option$
|
|
35998
|
+
type Option$5<T> = {
|
|
35999
35999
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
36000
36000
|
label?: string | number;
|
|
36001
36001
|
type?: string;
|
|
@@ -36003,7 +36003,7 @@ type Option$4<T> = {
|
|
|
36003
36003
|
svgName?: string;
|
|
36004
36004
|
hide?: boolean;
|
|
36005
36005
|
};
|
|
36006
|
-
type Mapped$
|
|
36006
|
+
type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
36007
36007
|
id: K;
|
|
36008
36008
|
label: string;
|
|
36009
36009
|
info?: string;
|
|
@@ -36021,10 +36021,10 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36021
36021
|
};
|
|
36022
36022
|
placeholder?: string;
|
|
36023
36023
|
type: 'option:illustration';
|
|
36024
|
-
options: Option$
|
|
36024
|
+
options: Option$5<T>[];
|
|
36025
36025
|
groups?: {
|
|
36026
36026
|
label: string;
|
|
36027
|
-
options: Option$
|
|
36027
|
+
options: Option$5<T>[];
|
|
36028
36028
|
}[];
|
|
36029
36029
|
devices?: ResponsiveConfig<U>;
|
|
36030
36030
|
iconViewBox?: string;
|
|
@@ -36052,16 +36052,16 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36052
36052
|
type: 'option:illustration';
|
|
36053
36053
|
itemPerRow?: number;
|
|
36054
36054
|
itemSpacing?: 'large' | 'small';
|
|
36055
|
-
options?: Option$
|
|
36055
|
+
options?: Option$5<T>[];
|
|
36056
36056
|
groups?: {
|
|
36057
36057
|
label: string;
|
|
36058
|
-
options: Option$
|
|
36058
|
+
options: Option$5<T>[];
|
|
36059
36059
|
}[];
|
|
36060
36060
|
enableTooltip?: boolean;
|
|
36061
36061
|
default?: T;
|
|
36062
36062
|
};
|
|
36063
36063
|
type OptionIllustrationControlType<T> = {
|
|
36064
|
-
[K in keyof T]-?: Mapped$
|
|
36064
|
+
[K in keyof T]-?: Mapped$6<K, T[K]>;
|
|
36065
36065
|
}[keyof T];
|
|
36066
36066
|
|
|
36067
36067
|
type OpenLinkControlType<T> = SharedControlType<T> & {
|
|
@@ -36072,7 +36072,7 @@ type OpenLinkControlType<T> = SharedControlType<T> & {
|
|
|
36072
36072
|
linkType?: 'openApp' | 'install';
|
|
36073
36073
|
};
|
|
36074
36074
|
|
|
36075
|
-
type Option$
|
|
36075
|
+
type Option$4<T> = {
|
|
36076
36076
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
36077
36077
|
label?: string | number;
|
|
36078
36078
|
title?: string;
|
|
@@ -36088,7 +36088,7 @@ type Option$3<T> = {
|
|
|
36088
36088
|
note?: string;
|
|
36089
36089
|
maxOption?: number;
|
|
36090
36090
|
};
|
|
36091
|
-
type Mapped$
|
|
36091
|
+
type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
36092
36092
|
id: K;
|
|
36093
36093
|
label?: string;
|
|
36094
36094
|
info?: string;
|
|
@@ -36107,7 +36107,7 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36107
36107
|
};
|
|
36108
36108
|
placeholder?: string;
|
|
36109
36109
|
type: 'select';
|
|
36110
|
-
options: Option$
|
|
36110
|
+
options: Option$4<T>[];
|
|
36111
36111
|
devices?: ResponsiveConfig<U>;
|
|
36112
36112
|
} : {
|
|
36113
36113
|
id: K;
|
|
@@ -36127,13 +36127,13 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36127
36127
|
};
|
|
36128
36128
|
placeholder?: string;
|
|
36129
36129
|
type: 'select';
|
|
36130
|
-
options: Option$
|
|
36130
|
+
options: Option$4<T>[];
|
|
36131
36131
|
default?: T;
|
|
36132
36132
|
isFullWidth?: boolean;
|
|
36133
36133
|
showSelectedIcon?: boolean;
|
|
36134
36134
|
};
|
|
36135
36135
|
type SelectControlType<T> = {
|
|
36136
|
-
[K in keyof T]-?: Mapped$
|
|
36136
|
+
[K in keyof T]-?: Mapped$5<K, T[K]>;
|
|
36137
36137
|
}[keyof T];
|
|
36138
36138
|
|
|
36139
36139
|
type TextareaControlType<T> = SharedControlType<T> & {
|
|
@@ -36500,7 +36500,7 @@ type CustomCodeEditor = {
|
|
|
36500
36500
|
id: string;
|
|
36501
36501
|
};
|
|
36502
36502
|
|
|
36503
|
-
type Option$
|
|
36503
|
+
type Option$3<T> = {
|
|
36504
36504
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
36505
36505
|
label?: string | number;
|
|
36506
36506
|
type?: string;
|
|
@@ -36508,7 +36508,7 @@ type Option$2<T> = {
|
|
|
36508
36508
|
iconName?: string;
|
|
36509
36509
|
isTextIcon?: boolean;
|
|
36510
36510
|
};
|
|
36511
|
-
type Mapped$
|
|
36511
|
+
type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
36512
36512
|
id: K;
|
|
36513
36513
|
label: string;
|
|
36514
36514
|
info?: string;
|
|
@@ -36526,10 +36526,10 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36526
36526
|
};
|
|
36527
36527
|
placeholder?: string;
|
|
36528
36528
|
type: 'layout-segment';
|
|
36529
|
-
options: Option$
|
|
36529
|
+
options: Option$3<T>[];
|
|
36530
36530
|
groups?: {
|
|
36531
36531
|
label: string;
|
|
36532
|
-
options: Option$
|
|
36532
|
+
options: Option$3<T>[];
|
|
36533
36533
|
}[];
|
|
36534
36534
|
devices?: ResponsiveConfig<U>;
|
|
36535
36535
|
iconViewBox?: string;
|
|
@@ -36557,10 +36557,10 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36557
36557
|
type: 'layout-segment';
|
|
36558
36558
|
itemPerRow?: number;
|
|
36559
36559
|
itemSpacing?: 'large' | 'small';
|
|
36560
|
-
options?: Option$
|
|
36560
|
+
options?: Option$3<T>[];
|
|
36561
36561
|
groups?: {
|
|
36562
36562
|
label: string;
|
|
36563
|
-
options: Option$
|
|
36563
|
+
options: Option$3<T>[];
|
|
36564
36564
|
}[];
|
|
36565
36565
|
iconViewBox?: string;
|
|
36566
36566
|
enableItemBackground?: boolean;
|
|
@@ -36568,7 +36568,7 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36568
36568
|
default?: T;
|
|
36569
36569
|
};
|
|
36570
36570
|
type LayoutSegmentControlType<T> = {
|
|
36571
|
-
[K in keyof T]-?: Mapped$
|
|
36571
|
+
[K in keyof T]-?: Mapped$4<K, T[K]>;
|
|
36572
36572
|
}[keyof T];
|
|
36573
36573
|
|
|
36574
36574
|
type InputSpacing<T> = SharedControlType<T> & {
|
|
@@ -36695,7 +36695,7 @@ type Actions = {
|
|
|
36695
36695
|
actionHandle?: string;
|
|
36696
36696
|
link?: string;
|
|
36697
36697
|
};
|
|
36698
|
-
type Mapped$
|
|
36698
|
+
type Mapped$3<K, T> = {
|
|
36699
36699
|
id: K;
|
|
36700
36700
|
label: string;
|
|
36701
36701
|
info?: string;
|
|
@@ -36704,7 +36704,7 @@ type Mapped$2<K, T> = {
|
|
|
36704
36704
|
default?: T;
|
|
36705
36705
|
};
|
|
36706
36706
|
type StepsGuide<T> = {
|
|
36707
|
-
[K in keyof T]-?: Mapped$
|
|
36707
|
+
[K in keyof T]-?: Mapped$3<K, T[K]>;
|
|
36708
36708
|
}[keyof T];
|
|
36709
36709
|
|
|
36710
36710
|
type ImageShape<T> = SharedControlType<T> & {
|
|
@@ -36815,14 +36815,14 @@ type SneakPeakRange<T> = SharedControlType<T> & {
|
|
|
36815
36815
|
sneakPeakType?: string;
|
|
36816
36816
|
};
|
|
36817
36817
|
|
|
36818
|
-
type Option$
|
|
36818
|
+
type Option$2<T> = {
|
|
36819
36819
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
36820
36820
|
label?: string | number;
|
|
36821
36821
|
type?: string;
|
|
36822
36822
|
icon?: string;
|
|
36823
36823
|
isTextIcon?: boolean;
|
|
36824
36824
|
};
|
|
36825
|
-
type Mapped$
|
|
36825
|
+
type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
36826
36826
|
id: K;
|
|
36827
36827
|
label: string;
|
|
36828
36828
|
info?: string;
|
|
@@ -36840,7 +36840,7 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36840
36840
|
};
|
|
36841
36841
|
placeholder?: string;
|
|
36842
36842
|
type: 'sneak-peak-type';
|
|
36843
|
-
options: Option$
|
|
36843
|
+
options: Option$2<T>[];
|
|
36844
36844
|
devices?: ResponsiveConfig<U>;
|
|
36845
36845
|
iconViewBox?: string;
|
|
36846
36846
|
enableItemBackground?: boolean;
|
|
@@ -36865,14 +36865,14 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36865
36865
|
};
|
|
36866
36866
|
placeholder?: string;
|
|
36867
36867
|
type: 'sneak-peak-type';
|
|
36868
|
-
options?: Option$
|
|
36868
|
+
options?: Option$2<T>[];
|
|
36869
36869
|
iconViewBox?: string;
|
|
36870
36870
|
enableItemBackground?: boolean;
|
|
36871
36871
|
enableTooltip?: boolean;
|
|
36872
36872
|
default?: T;
|
|
36873
36873
|
};
|
|
36874
36874
|
type SneakPeakTypeControlType<T> = {
|
|
36875
|
-
[K in keyof T]-?: Mapped$
|
|
36875
|
+
[K in keyof T]-?: Mapped$2<K, T[K]>;
|
|
36876
36876
|
}[keyof T];
|
|
36877
36877
|
|
|
36878
36878
|
type ProductInputCurrencyUnitControlType<T> = SharedControlType<T> & {
|
|
@@ -36949,9 +36949,75 @@ type ButtonLayoutType<T> = SharedControlType<T> & {
|
|
|
36949
36949
|
}[];
|
|
36950
36950
|
};
|
|
36951
36951
|
|
|
36952
|
-
type
|
|
36953
|
-
|
|
36952
|
+
type Option$1<T> = {
|
|
36953
|
+
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
36954
|
+
label?: string | number;
|
|
36955
|
+
iconName?: string;
|
|
36956
|
+
type?: string;
|
|
36957
|
+
noPadding?: string;
|
|
36954
36958
|
};
|
|
36959
|
+
type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
36960
|
+
id: K;
|
|
36961
|
+
label: string;
|
|
36962
|
+
info?: string;
|
|
36963
|
+
hide?: boolean;
|
|
36964
|
+
hideOnMode?: {
|
|
36965
|
+
responsive?: boolean;
|
|
36966
|
+
mobileOnly?: boolean;
|
|
36967
|
+
};
|
|
36968
|
+
disableToggle?: boolean;
|
|
36969
|
+
state?: {
|
|
36970
|
+
normal?: boolean;
|
|
36971
|
+
hover?: boolean;
|
|
36972
|
+
focus?: boolean;
|
|
36973
|
+
active?: boolean;
|
|
36974
|
+
};
|
|
36975
|
+
placeholder?: string;
|
|
36976
|
+
type: 'badge-style';
|
|
36977
|
+
options: Option$1<T>[];
|
|
36978
|
+
groups?: {
|
|
36979
|
+
label: string;
|
|
36980
|
+
options: Option$1<T>[];
|
|
36981
|
+
}[];
|
|
36982
|
+
devices?: ResponsiveConfig<U>;
|
|
36983
|
+
iconViewBox?: string;
|
|
36984
|
+
enableItemBackground?: boolean;
|
|
36985
|
+
itemPerRow?: number;
|
|
36986
|
+
itemSpacing?: 'large' | 'small';
|
|
36987
|
+
enableTooltip?: boolean;
|
|
36988
|
+
} : {
|
|
36989
|
+
id: K;
|
|
36990
|
+
label: string;
|
|
36991
|
+
info?: string;
|
|
36992
|
+
hide?: boolean;
|
|
36993
|
+
hideOnMode?: {
|
|
36994
|
+
responsive?: boolean;
|
|
36995
|
+
mobileOnly?: boolean;
|
|
36996
|
+
};
|
|
36997
|
+
disableToggle?: boolean;
|
|
36998
|
+
state?: {
|
|
36999
|
+
normal?: boolean;
|
|
37000
|
+
hover?: boolean;
|
|
37001
|
+
focus?: boolean;
|
|
37002
|
+
active?: boolean;
|
|
37003
|
+
};
|
|
37004
|
+
placeholder?: string;
|
|
37005
|
+
type: 'badge-style';
|
|
37006
|
+
itemPerRow?: number;
|
|
37007
|
+
itemSpacing?: 'large' | 'small';
|
|
37008
|
+
options?: Option$1<T>[];
|
|
37009
|
+
groups?: {
|
|
37010
|
+
label: string;
|
|
37011
|
+
options: Option$1<T>[];
|
|
37012
|
+
}[];
|
|
37013
|
+
iconViewBox?: string;
|
|
37014
|
+
enableItemBackground?: boolean;
|
|
37015
|
+
enableTooltip?: boolean;
|
|
37016
|
+
default?: T;
|
|
37017
|
+
};
|
|
37018
|
+
type ShapeSelectorControlType<T> = {
|
|
37019
|
+
[K in keyof T]-?: Mapped$1<K, T[K]>;
|
|
37020
|
+
}[keyof T];
|
|
36955
37021
|
|
|
36956
37022
|
declare enum CompareType {
|
|
36957
37023
|
EXACT = "exact",
|
|
@@ -37296,7 +37362,7 @@ type GroupControlType<T> = {
|
|
|
37296
37362
|
mobileOnly?: boolean;
|
|
37297
37363
|
};
|
|
37298
37364
|
};
|
|
37299
|
-
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$
|
|
37365
|
+
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$7<T> | OptionValueControlType<T> | OptionIllustrationControlType<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<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> | ImageSelect<T> | InputSliderControlType<T> | VariantSwatchesPresetV2ControlType<T> | LayoutPostPurchase<T>) & {
|
|
37300
37366
|
validate?: ValidateType;
|
|
37301
37367
|
};
|
|
37302
37368
|
type ValidateType = {
|
|
@@ -47488,4 +47554,4 @@ declare const useInteraction: () => {
|
|
|
47488
47554
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
47489
47555
|
};
|
|
47490
47556
|
|
|
47491
|
-
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, ArticlesDocument, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsDocument, BlogsQueryResponse, BlogsQueryVariables, 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$1 as 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, composeTypoHover, 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, handleConvertInputBorderColor, handleConvertInputBorderWidth, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, 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 };
|
|
47557
|
+
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, ArticlesDocument, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsDocument, BlogsQueryResponse, BlogsQueryVariables, 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, DotStyle, 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, MediaSelectFragment, 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$1 as 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, VariableRelatedStyles, 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, composeTypoHover, 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, handleConvertInputBorderColor, handleConvertInputBorderWidth, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, 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 };
|