@gem-sdk/core 1.22.16 → 1.22.19
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.
|
@@ -16,7 +16,7 @@ const componentTexts = [
|
|
|
16
16
|
'Text',
|
|
17
17
|
'Heading'
|
|
18
18
|
];
|
|
19
|
-
const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passProps })=>{
|
|
19
|
+
const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageContext, ...passProps })=>{
|
|
20
20
|
const item = builder[uid];
|
|
21
21
|
const Component = components[item?.tag];
|
|
22
22
|
if (!Component) {
|
|
@@ -55,6 +55,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
55
55
|
style,
|
|
56
56
|
advanced: item.advanced,
|
|
57
57
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
58
|
+
pageContext,
|
|
58
59
|
...passProps,
|
|
59
60
|
rawChildren: item.childrens.map((id)=>{
|
|
60
61
|
return {
|
|
@@ -62,7 +63,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
62
63
|
uid: id,
|
|
63
64
|
builder,
|
|
64
65
|
components,
|
|
65
|
-
customProps
|
|
66
|
+
customProps,
|
|
67
|
+
pageContext
|
|
66
68
|
};
|
|
67
69
|
}),
|
|
68
70
|
children: !constant.customRenderChildren.includes(item.tag) ? WrapRenderChildren({
|
|
@@ -73,7 +75,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
73
75
|
builder,
|
|
74
76
|
components,
|
|
75
77
|
customProps,
|
|
76
|
-
parentTag: item.tag
|
|
78
|
+
parentTag: item.tag,
|
|
79
|
+
pageContext
|
|
77
80
|
}))) : ''
|
|
78
81
|
});
|
|
79
82
|
}, ()=>{
|
|
@@ -88,6 +91,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
88
91
|
style,
|
|
89
92
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
90
93
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
94
|
+
pageContext,
|
|
91
95
|
...passProps
|
|
92
96
|
});
|
|
93
97
|
});
|
|
@@ -104,6 +108,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
104
108
|
advanced: {
|
|
105
109
|
cssClass: item?.advanced?.cssClass
|
|
106
110
|
},
|
|
111
|
+
pageContext,
|
|
107
112
|
...passProps,
|
|
108
113
|
rawChildren: item.childrens.map((id)=>{
|
|
109
114
|
return {
|
|
@@ -111,7 +116,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
111
116
|
uid: id,
|
|
112
117
|
builder,
|
|
113
118
|
components,
|
|
114
|
-
customProps
|
|
119
|
+
customProps,
|
|
120
|
+
pageContext
|
|
115
121
|
};
|
|
116
122
|
}),
|
|
117
123
|
children: !constant.customRenderChildren.includes(item.tag) ? WrapRenderChildren({
|
|
@@ -122,7 +128,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
122
128
|
builder,
|
|
123
129
|
components,
|
|
124
130
|
customProps,
|
|
125
|
-
parentTag: item.tag
|
|
131
|
+
parentTag: item.tag,
|
|
132
|
+
pageContext
|
|
126
133
|
}))) : ''
|
|
127
134
|
});
|
|
128
135
|
}, ()=>{
|
|
@@ -136,6 +143,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
136
143
|
advanced: {
|
|
137
144
|
cssClass: item?.advanced?.cssClass
|
|
138
145
|
},
|
|
146
|
+
pageContext,
|
|
139
147
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
140
148
|
...passProps
|
|
141
149
|
});
|
|
@@ -12,7 +12,7 @@ const componentTexts = [
|
|
|
12
12
|
'Text',
|
|
13
13
|
'Heading'
|
|
14
14
|
];
|
|
15
|
-
const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passProps })=>{
|
|
15
|
+
const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageContext, ...passProps })=>{
|
|
16
16
|
const item = builder[uid];
|
|
17
17
|
const Component = components[item?.tag];
|
|
18
18
|
if (!Component) {
|
|
@@ -51,6 +51,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
51
51
|
style,
|
|
52
52
|
advanced: item.advanced,
|
|
53
53
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
54
|
+
pageContext,
|
|
54
55
|
...passProps,
|
|
55
56
|
rawChildren: item.childrens.map((id)=>{
|
|
56
57
|
return {
|
|
@@ -58,7 +59,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
58
59
|
uid: id,
|
|
59
60
|
builder,
|
|
60
61
|
components,
|
|
61
|
-
customProps
|
|
62
|
+
customProps,
|
|
63
|
+
pageContext
|
|
62
64
|
};
|
|
63
65
|
}),
|
|
64
66
|
children: !customRenderChildren.includes(item.tag) ? WrapRenderChildren({
|
|
@@ -69,7 +71,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
69
71
|
builder,
|
|
70
72
|
components,
|
|
71
73
|
customProps,
|
|
72
|
-
parentTag: item.tag
|
|
74
|
+
parentTag: item.tag,
|
|
75
|
+
pageContext
|
|
73
76
|
}))) : ''
|
|
74
77
|
});
|
|
75
78
|
}, ()=>{
|
|
@@ -84,6 +87,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
84
87
|
style,
|
|
85
88
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
86
89
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
90
|
+
pageContext,
|
|
87
91
|
...passProps
|
|
88
92
|
});
|
|
89
93
|
});
|
|
@@ -100,6 +104,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
100
104
|
advanced: {
|
|
101
105
|
cssClass: item?.advanced?.cssClass
|
|
102
106
|
},
|
|
107
|
+
pageContext,
|
|
103
108
|
...passProps,
|
|
104
109
|
rawChildren: item.childrens.map((id)=>{
|
|
105
110
|
return {
|
|
@@ -107,7 +112,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
107
112
|
uid: id,
|
|
108
113
|
builder,
|
|
109
114
|
components,
|
|
110
|
-
customProps
|
|
115
|
+
customProps,
|
|
116
|
+
pageContext
|
|
111
117
|
};
|
|
112
118
|
}),
|
|
113
119
|
children: !customRenderChildren.includes(item.tag) ? WrapRenderChildren({
|
|
@@ -118,7 +124,8 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
118
124
|
builder,
|
|
119
125
|
components,
|
|
120
126
|
customProps,
|
|
121
|
-
parentTag: item.tag
|
|
127
|
+
parentTag: item.tag,
|
|
128
|
+
pageContext
|
|
122
129
|
}))) : ''
|
|
123
130
|
});
|
|
124
131
|
}, ()=>{
|
|
@@ -132,6 +139,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, ...passPr
|
|
|
132
139
|
advanced: {
|
|
133
140
|
cssClass: item?.advanced?.cssClass
|
|
134
141
|
},
|
|
142
|
+
pageContext,
|
|
135
143
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
136
144
|
...passProps
|
|
137
145
|
});
|
package/dist/types/index.d.ts
CHANGED
|
@@ -26,39 +26,6 @@ type Props$1 = {
|
|
|
26
26
|
};
|
|
27
27
|
declare const RenderPreviewMemo: React.NamedExoticComponent<Props$1>;
|
|
28
28
|
|
|
29
|
-
type ExtraFiles = Record<string, string>;
|
|
30
|
-
type Props = {
|
|
31
|
-
uid: string;
|
|
32
|
-
builder: Record<string, any>;
|
|
33
|
-
components: Record<string, any>;
|
|
34
|
-
extraFiles?: ExtraFiles;
|
|
35
|
-
[key: string]: any;
|
|
36
|
-
};
|
|
37
|
-
declare const Render: ({ uid, builder, components, parentId, extraFiles, ...passProps }: Props) => {
|
|
38
|
-
liquid: string;
|
|
39
|
-
extraFiles: ExtraFiles;
|
|
40
|
-
};
|
|
41
|
-
declare const RenderChildren: (props: Props) => string;
|
|
42
|
-
declare const WrapRenderChildren: ({ uid, customProps, }: {
|
|
43
|
-
uid: string;
|
|
44
|
-
customProps: {
|
|
45
|
-
extraFiles: ExtraFiles;
|
|
46
|
-
};
|
|
47
|
-
}, codes?: (string | undefined)[]) => string;
|
|
48
|
-
|
|
49
|
-
type AddonContextProps = {
|
|
50
|
-
components: Record<string, React.ComponentType<any>>;
|
|
51
|
-
};
|
|
52
|
-
type AddonProviderProps = Pick<AddonContextProps, 'components'> & {
|
|
53
|
-
children: React.ReactNode;
|
|
54
|
-
key?: React.Key;
|
|
55
|
-
};
|
|
56
|
-
declare const AddonProvider: React.FC<AddonProviderProps>;
|
|
57
|
-
declare const useAddons: () => Record<string, React.ComponentType<any>>;
|
|
58
|
-
declare const useAddon: (id?: string) => React.ComponentType<any> | React.FC<BaseProps & {
|
|
59
|
-
children?: React.ReactNode;
|
|
60
|
-
}>;
|
|
61
|
-
|
|
62
29
|
type BlockEntity = {
|
|
63
30
|
uid: string;
|
|
64
31
|
tag: string;
|
|
@@ -7084,6 +7051,9 @@ declare namespace shop {
|
|
|
7084
7051
|
};
|
|
7085
7052
|
}
|
|
7086
7053
|
|
|
7054
|
+
type PageContext = {
|
|
7055
|
+
numberOfProductOfProductList: number;
|
|
7056
|
+
};
|
|
7087
7057
|
type DeepPartial<T> = {
|
|
7088
7058
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
7089
7059
|
};
|
|
@@ -7272,6 +7242,40 @@ type ProductInputAnalytic = {
|
|
|
7272
7242
|
currency?: string;
|
|
7273
7243
|
};
|
|
7274
7244
|
|
|
7245
|
+
type ExtraFiles = Record<string, string>;
|
|
7246
|
+
type Props = {
|
|
7247
|
+
uid: string;
|
|
7248
|
+
builder: Record<string, any>;
|
|
7249
|
+
components: Record<string, any>;
|
|
7250
|
+
extraFiles?: ExtraFiles;
|
|
7251
|
+
pageContext?: PageContext;
|
|
7252
|
+
[key: string]: any;
|
|
7253
|
+
};
|
|
7254
|
+
declare const Render: ({ uid, builder, components, parentId, extraFiles, pageContext, ...passProps }: Props) => {
|
|
7255
|
+
liquid: string;
|
|
7256
|
+
extraFiles: ExtraFiles;
|
|
7257
|
+
};
|
|
7258
|
+
declare const RenderChildren: (props: Props) => string;
|
|
7259
|
+
declare const WrapRenderChildren: ({ uid, customProps, }: {
|
|
7260
|
+
uid: string;
|
|
7261
|
+
customProps: {
|
|
7262
|
+
extraFiles: ExtraFiles;
|
|
7263
|
+
};
|
|
7264
|
+
}, codes?: (string | undefined)[]) => string;
|
|
7265
|
+
|
|
7266
|
+
type AddonContextProps = {
|
|
7267
|
+
components: Record<string, React.ComponentType<any>>;
|
|
7268
|
+
};
|
|
7269
|
+
type AddonProviderProps = Pick<AddonContextProps, 'components'> & {
|
|
7270
|
+
children: React.ReactNode;
|
|
7271
|
+
key?: React.Key;
|
|
7272
|
+
};
|
|
7273
|
+
declare const AddonProvider: React.FC<AddonProviderProps>;
|
|
7274
|
+
declare const useAddons: () => Record<string, React.ComponentType<any>>;
|
|
7275
|
+
declare const useAddon: (id?: string) => React.ComponentType<any> | React.FC<BaseProps & {
|
|
7276
|
+
children?: React.ReactNode;
|
|
7277
|
+
}>;
|
|
7278
|
+
|
|
7275
7279
|
type BuilderComponentProps = {
|
|
7276
7280
|
components: Record<string, React.ComponentType<any>>;
|
|
7277
7281
|
getItem: (id: string) => React.ComponentType<BaseProps> | undefined;
|
|
@@ -9740,4 +9744,4 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage, 'id' | 'name' |
|
|
|
9740
9744
|
|
|
9741
9745
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
9742
9746
|
|
|
9743
|
-
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, ExtractState, 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, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OptionNormalStyle, OptionSpecialStyle, 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, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, VariantSelectFragment, VitalsWidgetType, WiserWidgetType, WrapRenderChildren, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeMemo, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertOldLayout, dataStringify, fetchMedias, fetchVariants, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getBorderStyle, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, 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, 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 };
|
|
9747
|
+
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, ExtractState, 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, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OptionNormalStyle, OptionSpecialStyle, PageContext, 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, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, VariantSelectFragment, VitalsWidgetType, WiserWidgetType, WrapRenderChildren, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeMemo, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertOldLayout, dataStringify, fetchMedias, fetchVariants, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getBorderStyle, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, 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, 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 };
|