@gem-sdk/core 1.25.37 → 1.25.45
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/ComponentWrapperPreview.js +7 -3
- package/dist/cjs/components/constant.js +5 -0
- package/dist/cjs/helpers/queries/get-collection.js +7 -1
- package/dist/cjs/helpers/size.js +10 -1
- package/dist/cjs/index.js +1 -0
- package/dist/esm/components/ComponentWrapperPreview.js +8 -4
- package/dist/esm/components/constant.js +5 -1
- package/dist/esm/helpers/queries/get-collection.js +7 -1
- package/dist/esm/helpers/size.js +10 -2
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +32 -6
- package/package.json +1 -1
|
@@ -106,12 +106,16 @@ const ComponentWrapperPreview = ({ children, ...props })=>{
|
|
|
106
106
|
advanced: advanced
|
|
107
107
|
}),
|
|
108
108
|
/*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
109
|
-
style: !props.
|
|
109
|
+
style: !constant.excludeApplyStyle.includes(props.tag) ? style : {
|
|
110
|
+
'--mb': style?.['--mb'],
|
|
111
|
+
'--mb-tablet': style?.['--mb-tablet'],
|
|
112
|
+
'--mb-mobile': style?.['--mb-mobile']
|
|
113
|
+
},
|
|
110
114
|
className: `${props.uid} ${props.advanced?.cssClass ? props.advanced?.cssClass : ''}`,
|
|
111
115
|
...builderAttrs,
|
|
112
116
|
children: [
|
|
113
|
-
!props.
|
|
114
|
-
/*#__PURE__*/ react.isValidElement(children) && props.
|
|
117
|
+
!constant.excludeApplyStyle.includes(props.tag) && children,
|
|
118
|
+
/*#__PURE__*/ react.isValidElement(children) && constant.excludeApplyStyle.includes(props.tag) && /*#__PURE__*/ jsxRuntime.jsx(children.type, {
|
|
115
119
|
...children.props,
|
|
116
120
|
style,
|
|
117
121
|
advanced
|
|
@@ -44,6 +44,11 @@ const customRenderChildren = [
|
|
|
44
44
|
'IconList',
|
|
45
45
|
'Tabs'
|
|
46
46
|
];
|
|
47
|
+
const excludeApplyStyle = [
|
|
48
|
+
'IconListV2',
|
|
49
|
+
'Accordion'
|
|
50
|
+
];
|
|
47
51
|
|
|
48
52
|
exports.customRenderChildren = customRenderChildren;
|
|
49
53
|
exports.disableWrap = disableWrap;
|
|
54
|
+
exports.excludeApplyStyle = excludeApplyStyle;
|
|
@@ -178,7 +178,13 @@ const fetchVariantsByBaseIds = async (fetcher, { ids, isSample, isStorefront })=
|
|
|
178
178
|
try {
|
|
179
179
|
return await fetcher([
|
|
180
180
|
productVariants_generated.ProductVariantsDocument,
|
|
181
|
-
|
|
181
|
+
{
|
|
182
|
+
...variables,
|
|
183
|
+
orderByVariant: {
|
|
184
|
+
field: 'POSITION',
|
|
185
|
+
direction: 'ASC'
|
|
186
|
+
}
|
|
187
|
+
}
|
|
182
188
|
]);
|
|
183
189
|
} catch {
|
|
184
190
|
return {};
|
package/dist/cjs/helpers/size.js
CHANGED
|
@@ -39,7 +39,15 @@ const makeGlobalSize = (globalSize)=>{
|
|
|
39
39
|
mobile: '--g-ct-w'
|
|
40
40
|
}),
|
|
41
41
|
height: makeStyle.makeStyleResponsive('h', getWidthHeightGlobalSize('height', globalSize)),
|
|
42
|
-
padding: getPaddingGlobalSize(globalSize)
|
|
42
|
+
padding: getPaddingGlobalSize(globalSize),
|
|
43
|
+
gap: getGlobalSizeGap(globalSize)
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
const getGlobalSizeGap = (globalSize)=>{
|
|
47
|
+
return {
|
|
48
|
+
'--gg': globalSize?.desktop?.gap,
|
|
49
|
+
'--gg-tablet': globalSize?.tablet?.gap,
|
|
50
|
+
'--gg-mobile': globalSize?.mobile?.gap
|
|
43
51
|
};
|
|
44
52
|
};
|
|
45
53
|
const makeStyleWithDefault = (name, value, defaultVal)=>{
|
|
@@ -166,6 +174,7 @@ exports.composeSize = composeSize;
|
|
|
166
174
|
exports.composeSizeCss = composeSizeCss;
|
|
167
175
|
exports.genSizeClass = genSizeClass;
|
|
168
176
|
exports.getAspectRatioGlobalSize = getAspectRatioGlobalSize;
|
|
177
|
+
exports.getGlobalSizeGap = getGlobalSizeGap;
|
|
169
178
|
exports.getHeightByShapeGlobalSize = getHeightByShapeGlobalSize;
|
|
170
179
|
exports.getPaddingGlobalSize = getPaddingGlobalSize;
|
|
171
180
|
exports.getWidthByShapeGlobalSize = getWidthByShapeGlobalSize;
|
package/dist/cjs/index.js
CHANGED
|
@@ -223,6 +223,7 @@ exports.composeSize = size.composeSize;
|
|
|
223
223
|
exports.composeSizeCss = size.composeSizeCss;
|
|
224
224
|
exports.genSizeClass = size.genSizeClass;
|
|
225
225
|
exports.getAspectRatioGlobalSize = size.getAspectRatioGlobalSize;
|
|
226
|
+
exports.getGlobalSizeGap = size.getGlobalSizeGap;
|
|
226
227
|
exports.getHeightByShapeGlobalSize = size.getHeightByShapeGlobalSize;
|
|
227
228
|
exports.getPaddingGlobalSize = size.getPaddingGlobalSize;
|
|
228
229
|
exports.getWidthByShapeGlobalSize = size.getWidthByShapeGlobalSize;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { useEffect, isValidElement } from 'react';
|
|
3
3
|
import { composeAdvanceStyle } from '../helpers/compose-advance-style.js';
|
|
4
|
-
import { disableWrap } from './constant.js';
|
|
4
|
+
import { disableWrap, excludeApplyStyle } from './constant.js';
|
|
5
5
|
import RenderCustomCode from './RenderCustomCode.js';
|
|
6
6
|
import { ComponentToolbarPreview } from './ComponentToolbarPreview.js';
|
|
7
7
|
|
|
@@ -102,12 +102,16 @@ const ComponentWrapperPreview = ({ children, ...props })=>{
|
|
|
102
102
|
advanced: advanced
|
|
103
103
|
}),
|
|
104
104
|
/*#__PURE__*/ jsxs("div", {
|
|
105
|
-
style: !props.
|
|
105
|
+
style: !excludeApplyStyle.includes(props.tag) ? style : {
|
|
106
|
+
'--mb': style?.['--mb'],
|
|
107
|
+
'--mb-tablet': style?.['--mb-tablet'],
|
|
108
|
+
'--mb-mobile': style?.['--mb-mobile']
|
|
109
|
+
},
|
|
106
110
|
className: `${props.uid} ${props.advanced?.cssClass ? props.advanced?.cssClass : ''}`,
|
|
107
111
|
...builderAttrs,
|
|
108
112
|
children: [
|
|
109
|
-
!props.
|
|
110
|
-
/*#__PURE__*/ isValidElement(children) && props.
|
|
113
|
+
!excludeApplyStyle.includes(props.tag) && children,
|
|
114
|
+
/*#__PURE__*/ isValidElement(children) && excludeApplyStyle.includes(props.tag) && /*#__PURE__*/ jsx(children.type, {
|
|
111
115
|
...children.props,
|
|
112
116
|
style,
|
|
113
117
|
advanced
|
|
@@ -176,7 +176,13 @@ const fetchVariantsByBaseIds = async (fetcher, { ids, isSample, isStorefront })=
|
|
|
176
176
|
try {
|
|
177
177
|
return await fetcher([
|
|
178
178
|
ProductVariantsDocument,
|
|
179
|
-
|
|
179
|
+
{
|
|
180
|
+
...variables,
|
|
181
|
+
orderByVariant: {
|
|
182
|
+
field: 'POSITION',
|
|
183
|
+
direction: 'ASC'
|
|
184
|
+
}
|
|
185
|
+
}
|
|
180
186
|
]);
|
|
181
187
|
} catch {
|
|
182
188
|
return {};
|
package/dist/esm/helpers/size.js
CHANGED
|
@@ -37,7 +37,15 @@ const makeGlobalSize = (globalSize)=>{
|
|
|
37
37
|
mobile: '--g-ct-w'
|
|
38
38
|
}),
|
|
39
39
|
height: makeStyleResponsive('h', getWidthHeightGlobalSize('height', globalSize)),
|
|
40
|
-
padding: getPaddingGlobalSize(globalSize)
|
|
40
|
+
padding: getPaddingGlobalSize(globalSize),
|
|
41
|
+
gap: getGlobalSizeGap(globalSize)
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
const getGlobalSizeGap = (globalSize)=>{
|
|
45
|
+
return {
|
|
46
|
+
'--gg': globalSize?.desktop?.gap,
|
|
47
|
+
'--gg-tablet': globalSize?.tablet?.gap,
|
|
48
|
+
'--gg-mobile': globalSize?.mobile?.gap
|
|
41
49
|
};
|
|
42
50
|
};
|
|
43
51
|
const makeStyleWithDefault = (name, value, defaultVal)=>{
|
|
@@ -160,4 +168,4 @@ const getPaddingGlobalSize = (globalSize)=>{
|
|
|
160
168
|
return Object.assign({}, getCustomPaddingSizeCSSByDevice(globalSize, 'desktop'), getCustomPaddingSizeCSSByDevice(globalSize, 'tablet'), getCustomPaddingSizeCSSByDevice(globalSize, 'mobile'));
|
|
161
169
|
};
|
|
162
170
|
|
|
163
|
-
export { composeSize, composeSizeCss, genSizeClass, getAspectRatioGlobalSize, getHeightByShapeGlobalSize, getPaddingGlobalSize, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, makeGlobalSize, makeStyleWithDefault };
|
|
171
|
+
export { composeSize, composeSizeCss, genSizeClass, getAspectRatioGlobalSize, getGlobalSizeGap, getHeightByShapeGlobalSize, getPaddingGlobalSize, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, makeGlobalSize, makeStyleWithDefault };
|
package/dist/esm/index.js
CHANGED
|
@@ -53,7 +53,7 @@ import * as tiktokpixel from './helpers/tracking/tiktokpixel.js';
|
|
|
53
53
|
export { tiktokpixel };
|
|
54
54
|
export { RenderIf, composeMemo, dataStringify, props, styles, template } from './helpers/render.js';
|
|
55
55
|
export { baseAssetURL, isLocalEnv } from './helpers/convert.js';
|
|
56
|
-
export { composeSize, composeSizeCss, genSizeClass, getAspectRatioGlobalSize, getHeightByShapeGlobalSize, getPaddingGlobalSize, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, makeGlobalSize, makeStyleWithDefault } from './helpers/size.js';
|
|
56
|
+
export { composeSize, composeSizeCss, genSizeClass, getAspectRatioGlobalSize, getGlobalSizeGap, getHeightByShapeGlobalSize, getPaddingGlobalSize, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, makeGlobalSize, makeStyleWithDefault } from './helpers/size.js';
|
|
57
57
|
export { composeShadowCss, getStyleShadow, getStyleShadowState, parseValueWithUnit } from './helpers/shadow.js';
|
|
58
58
|
export { composeBackgroundCss, getStyleBackgroundByDevice, makeFixedBgAttachment } from './helpers/background.js';
|
|
59
59
|
export { generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey } from './helpers/query.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ type SizeSettingGlobal = {
|
|
|
95
95
|
shape?: 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
|
|
96
96
|
shapeLinked?: boolean;
|
|
97
97
|
shapeValue?: string;
|
|
98
|
+
widthHeightLinked?: boolean;
|
|
98
99
|
padding?: {
|
|
99
100
|
type?: 'small' | 'medium' | 'large' | 'custom';
|
|
100
101
|
top?: string;
|
|
@@ -104,6 +105,7 @@ type SizeSettingGlobal = {
|
|
|
104
105
|
};
|
|
105
106
|
width?: string;
|
|
106
107
|
height?: string;
|
|
108
|
+
gap?: string;
|
|
107
109
|
};
|
|
108
110
|
type FlexDirectionProp = 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
109
111
|
type TransformProp = 'default' | 'capitalize' | 'uppercase' | 'lowercase' | 'none';
|
|
@@ -348,6 +350,7 @@ type GroupControlType<T> = {
|
|
|
348
350
|
type IconControlType<T> = SharedControlType<T> & {
|
|
349
351
|
type: 'icon';
|
|
350
352
|
placeholder?: string;
|
|
353
|
+
hideLabel?: boolean;
|
|
351
354
|
hideInput?: boolean;
|
|
352
355
|
};
|
|
353
356
|
|
|
@@ -451,7 +454,7 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
451
454
|
active?: boolean;
|
|
452
455
|
};
|
|
453
456
|
placeholder?: string;
|
|
454
|
-
type: 'segment';
|
|
457
|
+
type: 'segment' | 'accordion:segment';
|
|
455
458
|
options: Option$2<T>[];
|
|
456
459
|
iconCustom?: boolean;
|
|
457
460
|
devices?: ResponsiveConfig<U>;
|
|
@@ -472,7 +475,7 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
472
475
|
active?: boolean;
|
|
473
476
|
};
|
|
474
477
|
placeholder?: string;
|
|
475
|
-
type: 'segment';
|
|
478
|
+
type: 'segment' | 'accordion:segment';
|
|
476
479
|
options: Option$2<T>[];
|
|
477
480
|
iconCustom?: boolean;
|
|
478
481
|
default?: T;
|
|
@@ -782,7 +785,7 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
782
785
|
};
|
|
783
786
|
placeholder?: string;
|
|
784
787
|
type: 'layout-segment';
|
|
785
|
-
options
|
|
788
|
+
options?: Option<T>[];
|
|
786
789
|
iconViewBox?: string;
|
|
787
790
|
enableItemBackground?: boolean;
|
|
788
791
|
enableTooltip?: boolean;
|
|
@@ -928,6 +931,8 @@ type SettingConfig = {
|
|
|
928
931
|
sizeConfig?: Partial<Record<'small' | 'medium' | 'large', string>>;
|
|
929
932
|
displayOptions?: OptionKeyword[];
|
|
930
933
|
paddingConfig?: PaddingConfig;
|
|
934
|
+
name?: string;
|
|
935
|
+
units?: string[];
|
|
931
936
|
};
|
|
932
937
|
type SizeSetting$1<T> = SharedControlType<T> & {
|
|
933
938
|
type: 'size-setting';
|
|
@@ -944,7 +949,7 @@ type ChildIconType<T> = SharedControlType<T> & {
|
|
|
944
949
|
};
|
|
945
950
|
|
|
946
951
|
type DropdownInput<T> = SharedControlType<T> & {
|
|
947
|
-
type: 'dropdown:input';
|
|
952
|
+
type: 'dropdown:input' | 'accordion:dropdown:input';
|
|
948
953
|
hideUnit?: boolean;
|
|
949
954
|
inputType?: 'text' | 'number';
|
|
950
955
|
displayOptions?: {
|
|
@@ -955,7 +960,17 @@ type DropdownInput<T> = SharedControlType<T> & {
|
|
|
955
960
|
}[];
|
|
956
961
|
};
|
|
957
962
|
|
|
958
|
-
type
|
|
963
|
+
type Dropdown<T> = SharedControlType<T> & {
|
|
964
|
+
type: 'dropdown';
|
|
965
|
+
inputType?: 'text';
|
|
966
|
+
displayOptions?: {
|
|
967
|
+
label: string;
|
|
968
|
+
value: string;
|
|
969
|
+
icon?: string;
|
|
970
|
+
}[];
|
|
971
|
+
};
|
|
972
|
+
|
|
973
|
+
type ControlProp<T> = AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | ProductListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T>;
|
|
959
974
|
type Setting<P extends BaseProps> = {
|
|
960
975
|
id: 'setting';
|
|
961
976
|
note?: string;
|
|
@@ -1040,6 +1055,7 @@ type ControlUI = {
|
|
|
1040
1055
|
info?: 'near' | 'far';
|
|
1041
1056
|
labelSpacing?: 'small' | 'medium' | 'large';
|
|
1042
1057
|
removeSpacing?: boolean;
|
|
1058
|
+
noGap?: boolean;
|
|
1043
1059
|
tooltip?: {
|
|
1044
1060
|
icon?: string;
|
|
1045
1061
|
content?: string;
|
|
@@ -9561,6 +9577,16 @@ declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) =>
|
|
|
9561
9577
|
width: Record<ResponsiveKey<"w">, string | number>;
|
|
9562
9578
|
height: Record<ResponsiveKey<"h">, string | number>;
|
|
9563
9579
|
padding: React.CSSProperties;
|
|
9580
|
+
gap: {
|
|
9581
|
+
'--gg': string | undefined;
|
|
9582
|
+
'--gg-tablet': string | undefined;
|
|
9583
|
+
'--gg-mobile': string | undefined;
|
|
9584
|
+
};
|
|
9585
|
+
};
|
|
9586
|
+
declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
9587
|
+
'--gg': string | undefined;
|
|
9588
|
+
'--gg-tablet': string | undefined;
|
|
9589
|
+
'--gg-mobile': string | undefined;
|
|
9564
9590
|
};
|
|
9565
9591
|
declare const makeStyleWithDefault: <T extends ShortHandProperty, K>(name: T, value?: Partial<Record<NameDevices$1, K>> | undefined, defaultVal?: Partial<Record<NameDevices$1, K>> | undefined) => Record<ResponsiveKey<T>, K>;
|
|
9566
9592
|
declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
|
|
@@ -9884,4 +9910,4 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage, 'id' | 'name' |
|
|
|
9884
9910
|
|
|
9885
9911
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
9886
9912
|
|
|
9887
|
-
export { AddOn, AddonProvider, AddonProviderProps, AlignItemProp, AlignProp, Background, BaseProps, BasePropsWrap, BlockEntity, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsWidgetType, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OptionNormalStyle, OptionSpecialStyle, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SectionData, SectionEntity, SectionProvider, SectionProviderProps, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, VariantSelectFragment, VitalsWidgetType, WiserWidgetType, WrapRenderChildren, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertOldLayout, dataStringify, fetchMedias, fetchVariants, filterToolbarPreview, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAspectRatioGlobalSize, getBorderStyle, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeNullUndefined, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
9913
|
+
export { AddOn, AddonProvider, AddonProviderProps, AlignItemProp, AlignProp, Background, BaseProps, BasePropsWrap, BlockEntity, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsWidgetType, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OptionNormalStyle, OptionSpecialStyle, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SectionData, SectionEntity, SectionProvider, SectionProviderProps, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, VariantSelectFragment, VitalsWidgetType, WiserWidgetType, WrapRenderChildren, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertOldLayout, dataStringify, fetchMedias, fetchVariants, filterToolbarPreview, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAspectRatioGlobalSize, getBorderStyle, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeNullUndefined, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|