@gem-sdk/core 1.5.32 → 1.5.40
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/cjs/components/ComponentWrapper.js +3 -1
- package/dist/cjs/components/ComponentWrapperPreview.js +3 -1
- package/dist/cjs/components/Render.liquid.js +3 -1
- package/dist/cjs/components/constant.js +3 -1
- package/dist/cjs/index.js +2 -0
- package/dist/esm/components/ComponentWrapper.js +3 -1
- package/dist/esm/components/ComponentWrapperPreview.js +3 -1
- package/dist/esm/components/Render.liquid.js +3 -1
- package/dist/esm/components/constant.js +3 -1
- package/dist/esm/index.js +1 -0
- package/dist/types/index.d.ts +81 -19
- package/package.json +1 -1
|
@@ -10,10 +10,12 @@ var constant = require('./constant.js');
|
|
|
10
10
|
const ComponentWrapper = ({ children , ...props })=>{
|
|
11
11
|
if (props.type === 'section') return null;
|
|
12
12
|
const style = composeAdvanceStyle.composeAdvanceStyle(props.advanced, props.tag);
|
|
13
|
+
const advanced = props.advanced;
|
|
13
14
|
if (constant.disableWrap.includes(props.tag) && /*#__PURE__*/ react.isValidElement(children)) {
|
|
14
15
|
return /*#__PURE__*/ jsxRuntime.jsx(children.type, {
|
|
15
16
|
...children.props,
|
|
16
|
-
style
|
|
17
|
+
style,
|
|
18
|
+
advanced
|
|
17
19
|
});
|
|
18
20
|
}
|
|
19
21
|
return /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
@@ -41,6 +41,7 @@ const ComponentWrapperPreview = ({ children , ...props })=>{
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
const style = composeAdvanceStyle.composeAdvanceStyle(props.advanced, props.tag);
|
|
44
|
+
const advanced = props.advanced;
|
|
44
45
|
const builderAttrs = {
|
|
45
46
|
...customProps,
|
|
46
47
|
'data-uid': props.uid,
|
|
@@ -52,7 +53,8 @@ const ComponentWrapperPreview = ({ children , ...props })=>{
|
|
|
52
53
|
return /*#__PURE__*/ jsxRuntime.jsx(children.type, {
|
|
53
54
|
...children.props,
|
|
54
55
|
style,
|
|
55
|
-
builderAttrs
|
|
56
|
+
builderAttrs,
|
|
57
|
+
advanced
|
|
56
58
|
});
|
|
57
59
|
}
|
|
58
60
|
// Render
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var composeAdvanceStyle = require('../helpers/compose-advance-style.js');
|
|
5
6
|
require('react');
|
|
6
7
|
require('swr');
|
|
7
8
|
var render = require('../helpers/render.js');
|
|
8
9
|
require('../helpers/convert.js');
|
|
9
|
-
var composeAdvanceStyle = require('../helpers/compose-advance-style.js');
|
|
10
10
|
var constant = require('./constant.js');
|
|
11
11
|
|
|
12
12
|
const Render = ({ uid , builder , components , ...passProps })=>{
|
|
@@ -31,6 +31,7 @@ const Render = ({ uid , builder , components , ...passProps })=>{
|
|
|
31
31
|
styles: item.styles,
|
|
32
32
|
setting: item.settings,
|
|
33
33
|
style,
|
|
34
|
+
advanced: item.advanced,
|
|
34
35
|
...passProps,
|
|
35
36
|
rawChildren: item.childrens.map((id)=>{
|
|
36
37
|
return {
|
|
@@ -53,6 +54,7 @@ const Render = ({ uid , builder , components , ...passProps })=>{
|
|
|
53
54
|
},
|
|
54
55
|
styles: item.styles,
|
|
55
56
|
setting: item.settings,
|
|
57
|
+
advanced: item.advanced,
|
|
56
58
|
style,
|
|
57
59
|
...passProps
|
|
58
60
|
}));
|
package/dist/cjs/index.js
CHANGED
|
@@ -23,6 +23,7 @@ var storeProperty_generated = require('./graphql/queries/store-property.generate
|
|
|
23
23
|
var previewPage_generated = require('./graphql/queries/preview-page.generated.js');
|
|
24
24
|
var borders = require('./helpers/borders.js');
|
|
25
25
|
var cls = require('./helpers/cls.js');
|
|
26
|
+
var composeAdvanceStyle = require('./helpers/compose-advance-style.js');
|
|
26
27
|
var flattenConnection = require('./helpers/flatten-connection.js');
|
|
27
28
|
var getResonsiveValue = require('./helpers/get-resonsive-value.js');
|
|
28
29
|
var getShortname = require('./helpers/get-shortname.js');
|
|
@@ -123,6 +124,7 @@ exports.handleConvertBorderStyle = borders.handleConvertBorderStyle;
|
|
|
123
124
|
exports.handleConvertBorderWidth = borders.handleConvertBorderWidth;
|
|
124
125
|
exports.handleConvertClassColor = borders.handleConvertClassColor;
|
|
125
126
|
exports.cls = cls.cls;
|
|
127
|
+
exports.composeAdvanceStyle = composeAdvanceStyle.composeAdvanceStyle;
|
|
126
128
|
exports.flattenConnection = flattenConnection.flattenConnection;
|
|
127
129
|
exports.getResponsiveStateValue = getResonsiveValue.getResponsiveStateValue;
|
|
128
130
|
exports.getResponsiveValue = getResonsiveValue.getResponsiveValue;
|
|
@@ -6,10 +6,12 @@ import { disableWrap } from './constant.js';
|
|
|
6
6
|
const ComponentWrapper = ({ children , ...props })=>{
|
|
7
7
|
if (props.type === 'section') return null;
|
|
8
8
|
const style = composeAdvanceStyle(props.advanced, props.tag);
|
|
9
|
+
const advanced = props.advanced;
|
|
9
10
|
if (disableWrap.includes(props.tag) && /*#__PURE__*/ isValidElement(children)) {
|
|
10
11
|
return /*#__PURE__*/ jsx(children.type, {
|
|
11
12
|
...children.props,
|
|
12
|
-
style
|
|
13
|
+
style,
|
|
14
|
+
advanced
|
|
13
15
|
});
|
|
14
16
|
}
|
|
15
17
|
return /*#__PURE__*/ jsx("div", {
|
|
@@ -37,6 +37,7 @@ const ComponentWrapperPreview = ({ children , ...props })=>{
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
const style = composeAdvanceStyle(props.advanced, props.tag);
|
|
40
|
+
const advanced = props.advanced;
|
|
40
41
|
const builderAttrs = {
|
|
41
42
|
...customProps,
|
|
42
43
|
'data-uid': props.uid,
|
|
@@ -48,7 +49,8 @@ const ComponentWrapperPreview = ({ children , ...props })=>{
|
|
|
48
49
|
return /*#__PURE__*/ jsx(children.type, {
|
|
49
50
|
...children.props,
|
|
50
51
|
style,
|
|
51
|
-
builderAttrs
|
|
52
|
+
builderAttrs,
|
|
53
|
+
advanced
|
|
52
54
|
});
|
|
53
55
|
}
|
|
54
56
|
// Render
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { composeAdvanceStyle } from '../helpers/compose-advance-style.js';
|
|
1
2
|
import 'react';
|
|
2
3
|
import 'swr';
|
|
3
4
|
import { RenderIf, template } from '../helpers/render.js';
|
|
4
5
|
import '../helpers/convert.js';
|
|
5
|
-
import { composeAdvanceStyle } from '../helpers/compose-advance-style.js';
|
|
6
6
|
import { disableWrap } from './constant.js';
|
|
7
7
|
|
|
8
8
|
const Render = ({ uid , builder , components , ...passProps })=>{
|
|
@@ -27,6 +27,7 @@ const Render = ({ uid , builder , components , ...passProps })=>{
|
|
|
27
27
|
styles: item.styles,
|
|
28
28
|
setting: item.settings,
|
|
29
29
|
style,
|
|
30
|
+
advanced: item.advanced,
|
|
30
31
|
...passProps,
|
|
31
32
|
rawChildren: item.childrens.map((id)=>{
|
|
32
33
|
return {
|
|
@@ -49,6 +50,7 @@ const Render = ({ uid , builder , components , ...passProps })=>{
|
|
|
49
50
|
},
|
|
50
51
|
styles: item.styles,
|
|
51
52
|
setting: item.settings,
|
|
53
|
+
advanced: item.advanced,
|
|
52
54
|
style,
|
|
53
55
|
...passProps
|
|
54
56
|
}));
|
package/dist/esm/index.js
CHANGED
|
@@ -21,6 +21,7 @@ export { StorePropertyDocument } from './graphql/queries/store-property.generate
|
|
|
21
21
|
export { PreviewPageDocument } from './graphql/queries/preview-page.generated.js';
|
|
22
22
|
export { handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor } from './helpers/borders.js';
|
|
23
23
|
export { cls } from './helpers/cls.js';
|
|
24
|
+
export { composeAdvanceStyle } from './helpers/compose-advance-style.js';
|
|
24
25
|
export { flattenConnection } from './helpers/flatten-connection.js';
|
|
25
26
|
export { getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen } from './helpers/get-resonsive-value.js';
|
|
26
27
|
export { getShortName } from './helpers/get-shortname.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -154,7 +154,7 @@ type LinkData = {
|
|
|
154
154
|
hide?: true;
|
|
155
155
|
};
|
|
156
156
|
};
|
|
157
|
-
type Mapped$
|
|
157
|
+
type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
158
158
|
id: K;
|
|
159
159
|
label: string;
|
|
160
160
|
info?: string;
|
|
@@ -220,7 +220,7 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
220
220
|
default?: T;
|
|
221
221
|
};
|
|
222
222
|
type SharedControlType<T> = {
|
|
223
|
-
[K in keyof T]-?: Mapped$
|
|
223
|
+
[K in keyof T]-?: Mapped$4<K, T[K]>;
|
|
224
224
|
}[keyof T];
|
|
225
225
|
|
|
226
226
|
type AngleControlType<T> = SharedControlType<T> & {
|
|
@@ -232,12 +232,12 @@ type AngleControlType<T> = SharedControlType<T> & {
|
|
|
232
232
|
readonly?: boolean;
|
|
233
233
|
};
|
|
234
234
|
|
|
235
|
-
type Option$
|
|
235
|
+
type Option$3<T> = {
|
|
236
236
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
237
237
|
text: string | number;
|
|
238
238
|
desc?: any;
|
|
239
239
|
};
|
|
240
|
-
type Mapped$
|
|
240
|
+
type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
241
241
|
id: K;
|
|
242
242
|
label: string;
|
|
243
243
|
hideOnMode?: {
|
|
@@ -255,7 +255,7 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
255
255
|
active?: boolean;
|
|
256
256
|
};
|
|
257
257
|
type: 'checkbox';
|
|
258
|
-
options: Option$
|
|
258
|
+
options: Option$3<T>[];
|
|
259
259
|
devices?: ResponsiveConfig<U>;
|
|
260
260
|
} : {
|
|
261
261
|
id: K;
|
|
@@ -275,11 +275,11 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
275
275
|
active?: boolean;
|
|
276
276
|
};
|
|
277
277
|
type: 'checkbox';
|
|
278
|
-
options: Option$
|
|
278
|
+
options: Option$3<T>[];
|
|
279
279
|
default?: T;
|
|
280
280
|
};
|
|
281
281
|
type CheckboxControlType<T> = {
|
|
282
|
-
[K in keyof T]-?: Mapped$
|
|
282
|
+
[K in keyof T]-?: Mapped$3<K, T[K]>;
|
|
283
283
|
}[keyof T];
|
|
284
284
|
|
|
285
285
|
type ChildrensControlType = {
|
|
@@ -344,6 +344,7 @@ type InputControlType<T> = SharedControlType<T> & {
|
|
|
344
344
|
datalist?: {
|
|
345
345
|
value: any;
|
|
346
346
|
}[];
|
|
347
|
+
readonly?: boolean;
|
|
347
348
|
};
|
|
348
349
|
|
|
349
350
|
type InputFixContentControlType<T> = SharedControlType<T> & {
|
|
@@ -400,13 +401,13 @@ type RangeControlType<T> = SharedControlType<T> & {
|
|
|
400
401
|
disableOnChange?: boolean;
|
|
401
402
|
};
|
|
402
403
|
|
|
403
|
-
type Option$
|
|
404
|
+
type Option$2<T> = {
|
|
404
405
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
405
406
|
label?: string | number;
|
|
406
407
|
type?: string;
|
|
407
408
|
icon?: string;
|
|
408
409
|
};
|
|
409
|
-
type Mapped$
|
|
410
|
+
type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
410
411
|
id: K;
|
|
411
412
|
label: string;
|
|
412
413
|
info?: string;
|
|
@@ -426,7 +427,8 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
426
427
|
};
|
|
427
428
|
placeholder?: string;
|
|
428
429
|
type: 'segment';
|
|
429
|
-
options: Option$
|
|
430
|
+
options: Option$2<T>[];
|
|
431
|
+
iconCustom?: boolean;
|
|
430
432
|
devices?: ResponsiveConfig<U>;
|
|
431
433
|
} : {
|
|
432
434
|
id: K;
|
|
@@ -448,18 +450,19 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
448
450
|
};
|
|
449
451
|
placeholder?: string;
|
|
450
452
|
type: 'segment';
|
|
451
|
-
options: Option$
|
|
453
|
+
options: Option$2<T>[];
|
|
454
|
+
iconCustom?: boolean;
|
|
452
455
|
default?: T;
|
|
453
456
|
};
|
|
454
457
|
type SegmentControlType<T> = {
|
|
455
|
-
[K in keyof T]-?: Mapped$
|
|
458
|
+
[K in keyof T]-?: Mapped$2<K, T[K]>;
|
|
456
459
|
}[keyof T];
|
|
457
460
|
|
|
458
|
-
type Option<T> = {
|
|
461
|
+
type Option$1<T> = {
|
|
459
462
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
460
463
|
label: string | number;
|
|
461
464
|
};
|
|
462
|
-
type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
465
|
+
type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
463
466
|
id: K;
|
|
464
467
|
label: string;
|
|
465
468
|
info?: string;
|
|
@@ -479,7 +482,7 @@ type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
479
482
|
};
|
|
480
483
|
placeholder?: string;
|
|
481
484
|
type: 'select';
|
|
482
|
-
options: Option<T>[];
|
|
485
|
+
options: Option$1<T>[];
|
|
483
486
|
devices?: ResponsiveConfig<U>;
|
|
484
487
|
} : {
|
|
485
488
|
id: K;
|
|
@@ -501,11 +504,11 @@ type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
501
504
|
};
|
|
502
505
|
placeholder?: string;
|
|
503
506
|
type: 'select';
|
|
504
|
-
options: Option<T>[];
|
|
507
|
+
options: Option$1<T>[];
|
|
505
508
|
default?: T;
|
|
506
509
|
};
|
|
507
510
|
type SelectControlType<T> = {
|
|
508
|
-
[K in keyof T]-?: Mapped<K, T[K]>;
|
|
511
|
+
[K in keyof T]-?: Mapped$1<K, T[K]>;
|
|
509
512
|
}[keyof T];
|
|
510
513
|
|
|
511
514
|
type TextareaControlType<T> = SharedControlType<T> & {
|
|
@@ -702,9 +705,65 @@ type CustomCodeEditor = {
|
|
|
702
705
|
id: string;
|
|
703
706
|
};
|
|
704
707
|
|
|
705
|
-
type
|
|
708
|
+
type Option<T> = {
|
|
709
|
+
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
710
|
+
label?: string | number;
|
|
711
|
+
type?: string;
|
|
712
|
+
icon?: string;
|
|
713
|
+
};
|
|
714
|
+
type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
715
|
+
id: K;
|
|
716
|
+
label: string;
|
|
717
|
+
info?: string;
|
|
718
|
+
hide?: boolean;
|
|
719
|
+
hideOnMode?: {
|
|
720
|
+
responsive?: boolean;
|
|
721
|
+
mobileOnly?: boolean;
|
|
722
|
+
};
|
|
723
|
+
links?: LinkData[];
|
|
724
|
+
allowReset?: boolean;
|
|
725
|
+
disableToggle?: boolean;
|
|
726
|
+
state?: {
|
|
727
|
+
normal?: boolean;
|
|
728
|
+
hover?: boolean;
|
|
729
|
+
focus?: boolean;
|
|
730
|
+
active?: boolean;
|
|
731
|
+
};
|
|
732
|
+
placeholder?: string;
|
|
733
|
+
type: 'layout-segment';
|
|
734
|
+
options: Option<T>[];
|
|
735
|
+
devices?: ResponsiveConfig<U>;
|
|
736
|
+
} : {
|
|
737
|
+
id: K;
|
|
738
|
+
label: string;
|
|
739
|
+
info?: string;
|
|
740
|
+
hide?: boolean;
|
|
741
|
+
hideOnMode?: {
|
|
742
|
+
responsive?: boolean;
|
|
743
|
+
mobileOnly?: boolean;
|
|
744
|
+
};
|
|
745
|
+
links?: LinkData[];
|
|
746
|
+
allowReset?: boolean;
|
|
747
|
+
disableToggle?: boolean;
|
|
748
|
+
state?: {
|
|
749
|
+
normal?: boolean;
|
|
750
|
+
hover?: boolean;
|
|
751
|
+
focus?: boolean;
|
|
752
|
+
active?: boolean;
|
|
753
|
+
};
|
|
754
|
+
placeholder?: string;
|
|
755
|
+
type: 'layout-segment';
|
|
756
|
+
options: Option<T>[];
|
|
757
|
+
default?: T;
|
|
758
|
+
};
|
|
759
|
+
type LayoutSegmentControlType<T> = {
|
|
760
|
+
[K in keyof T]-?: Mapped<K, T[K]>;
|
|
761
|
+
}[keyof T];
|
|
762
|
+
|
|
763
|
+
type ControlProp<T> = AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | CustomCodeEditor | LayoutSegmentControlType<T>;
|
|
706
764
|
type Setting<P extends BaseProps> = {
|
|
707
765
|
id: 'setting';
|
|
766
|
+
note?: string;
|
|
708
767
|
controls?: ControlProp<NonNullable<P['setting']>>[];
|
|
709
768
|
} | {
|
|
710
769
|
id: 'style';
|
|
@@ -7160,6 +7219,9 @@ interface ClassDictionary {
|
|
|
7160
7219
|
}
|
|
7161
7220
|
declare function cls(...classes: ClassValue[]): string;
|
|
7162
7221
|
|
|
7222
|
+
type AdvanceValue = Primitive | ObjectDevices<Primitive>;
|
|
7223
|
+
declare function composeAdvanceStyle(data?: Record<string, AdvanceValue>, tag?: string): React.CSSProperties;
|
|
7224
|
+
|
|
7163
7225
|
/**
|
|
7164
7226
|
* The `flattenConnection` utility transforms a connection object from the Storefront API (for example, [Product-related connections](api/storefront/reference/products/product#connections)) into a flat array of nodes.
|
|
7165
7227
|
*/
|
|
@@ -7539,4 +7601,4 @@ declare const fetchMedias: (fetcher: FetchFunc, { id, isSample }: FetchParams) =
|
|
|
7539
7601
|
|
|
7540
7602
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
7541
7603
|
|
|
7542
|
-
export { AddOn, AddonProvider, AddonProviderProps, AlignItemProp, AlignProp, Background, BaseProps, BasePropsWrap, BlockEntity, Border, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentSetting, ContainerProp, ControlProp, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, ExtractState, FetchFunc, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, InitComponentType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LooxReviewsWidgetType, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, OptionNormalStyle, OptionSpecialStyle, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, RenderMemo as Render, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveStateProp, RoundedSize, SectionData, SectionEntity, SectionProvider, SectionProviderProps, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeType, SpacingType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographyType, VariantSelectFragment, calculateFirstProduct, cls, composeRadius, composeSize, composeSpacing, fetchMedias, fetchVariants, flattenConnection, fpixel, genTypoClass, genVariable, getCollection, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, globalEvent, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, isBrowser, isColor, isDefined, isEmptyChildren, isLocalEnv, loadScript, makeAspectRatio, makeHeight, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, prefetchQueries, props, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useIsSampleProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useMoney, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
7604
|
+
export { AddOn, AddonProvider, AddonProviderProps, AlignItemProp, AlignProp, Background, BaseProps, BasePropsWrap, BlockEntity, Border, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentSetting, ContainerProp, ControlProp, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, ExtractState, FetchFunc, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, InitComponentType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LooxReviewsWidgetType, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, OptionNormalStyle, OptionSpecialStyle, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, RenderMemo as Render, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveStateProp, RoundedSize, SectionData, SectionEntity, SectionProvider, SectionProviderProps, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeType, SpacingType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographyType, VariantSelectFragment, calculateFirstProduct, cls, composeAdvanceStyle, composeRadius, composeSize, composeSpacing, fetchMedias, fetchVariants, flattenConnection, fpixel, genTypoClass, genVariable, getCollection, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, globalEvent, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, isBrowser, isColor, isDefined, isEmptyChildren, isLocalEnv, loadScript, makeAspectRatio, makeHeight, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, prefetchQueries, props, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useIsSampleProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useMoney, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|