@gem-sdk/core 1.53.0-dev.139 → 1.53.0-dev.145
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/helpers/background.js +3 -10
- package/dist/cjs/index.js +0 -1
- package/dist/esm/helpers/background.js +4 -10
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +53 -36
- package/package.json +1 -1
|
@@ -4,15 +4,6 @@ var constant = require('./constant.js');
|
|
|
4
4
|
var colors = require('./colors.js');
|
|
5
5
|
var makeStyle = require('./make-style.js');
|
|
6
6
|
|
|
7
|
-
const getStyleBackgroundImage = (bgImage, options)=>{
|
|
8
|
-
return {
|
|
9
|
-
...getStyleBgImage(bgImage, options),
|
|
10
|
-
...getStyleBgPosition(bgImage),
|
|
11
|
-
...getStyleBgSize(bgImage),
|
|
12
|
-
...getStyleBgRepeat(bgImage),
|
|
13
|
-
...getStyleBgAttachment(bgImage)
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
7
|
const getStyleBackgroundByDevice = (background, options)=>{
|
|
17
8
|
if (!background) {
|
|
18
9
|
return {};
|
|
@@ -85,6 +76,9 @@ const getBgImageByDevice = (background, device, options)=>{
|
|
|
85
76
|
if (typeof imageByDevice === 'string') {
|
|
86
77
|
return `url(${imageByDevice})`;
|
|
87
78
|
}
|
|
79
|
+
if (imageByDevice !== undefined) {
|
|
80
|
+
return 'none';
|
|
81
|
+
}
|
|
88
82
|
};
|
|
89
83
|
const getStyleBgPosition = (background)=>{
|
|
90
84
|
const bgPosition = {
|
|
@@ -240,6 +234,5 @@ exports.getBgImageByDevice = getBgImageByDevice;
|
|
|
240
234
|
exports.getGradientBgrStyleByDevice = getGradientBgrStyleByDevice;
|
|
241
235
|
exports.getGradientBgrStyleForButton = getGradientBgrStyleForButton;
|
|
242
236
|
exports.getStyleBackgroundByDevice = getStyleBackgroundByDevice;
|
|
243
|
-
exports.getStyleBackgroundImage = getStyleBackgroundImage;
|
|
244
237
|
exports.getStyleBgColor = getStyleBgColor;
|
|
245
238
|
exports.makeFixedBgAttachment = makeFixedBgAttachment;
|
package/dist/cjs/index.js
CHANGED
|
@@ -205,7 +205,6 @@ exports.getBgImageByDevice = background.getBgImageByDevice;
|
|
|
205
205
|
exports.getGradientBgrStyleByDevice = background.getGradientBgrStyleByDevice;
|
|
206
206
|
exports.getGradientBgrStyleForButton = background.getGradientBgrStyleForButton;
|
|
207
207
|
exports.getStyleBackgroundByDevice = background.getStyleBackgroundByDevice;
|
|
208
|
-
exports.getStyleBackgroundImage = background.getStyleBackgroundImage;
|
|
209
208
|
exports.getStyleBgColor = background.getStyleBgColor;
|
|
210
209
|
exports.makeFixedBgAttachment = background.makeFixedBgAttachment;
|
|
211
210
|
exports.composeTextColorCss = colors.composeTextColorCss;
|
|
@@ -2,15 +2,6 @@ import { devicesMapping } from './constant.js';
|
|
|
2
2
|
import { isColor, getSingleColorVariable } from './colors.js';
|
|
3
3
|
import { makeStyleResponsive } from './make-style.js';
|
|
4
4
|
|
|
5
|
-
const getStyleBackgroundImage = (bgImage, options)=>{
|
|
6
|
-
return {
|
|
7
|
-
...getStyleBgImage(bgImage, options),
|
|
8
|
-
...getStyleBgPosition(bgImage),
|
|
9
|
-
...getStyleBgSize(bgImage),
|
|
10
|
-
...getStyleBgRepeat(bgImage),
|
|
11
|
-
...getStyleBgAttachment(bgImage)
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
5
|
const getStyleBackgroundByDevice = (background, options)=>{
|
|
15
6
|
if (!background) {
|
|
16
7
|
return {};
|
|
@@ -83,6 +74,9 @@ const getBgImageByDevice = (background, device, options)=>{
|
|
|
83
74
|
if (typeof imageByDevice === 'string') {
|
|
84
75
|
return `url(${imageByDevice})`;
|
|
85
76
|
}
|
|
77
|
+
if (imageByDevice !== undefined) {
|
|
78
|
+
return 'none';
|
|
79
|
+
}
|
|
86
80
|
};
|
|
87
81
|
const getStyleBgPosition = (background)=>{
|
|
88
82
|
const bgPosition = {
|
|
@@ -232,4 +226,4 @@ const getGradientBgrStyleByDevice = (backgroundStyle, ignoreBackgroundImage = fa
|
|
|
232
226
|
return bgrStyle;
|
|
233
227
|
};
|
|
234
228
|
|
|
235
|
-
export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice,
|
|
229
|
+
export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice, getStyleBgColor, makeFixedBgAttachment };
|
package/dist/esm/index.js
CHANGED
|
@@ -54,7 +54,7 @@ import * as gtag from './helpers/tracking/gtag.js';
|
|
|
54
54
|
export { gtag };
|
|
55
55
|
import * as tiktokpixel from './helpers/tracking/tiktokpixel.js';
|
|
56
56
|
export { tiktokpixel };
|
|
57
|
-
export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice,
|
|
57
|
+
export { GRADIENT_BGR_KEY, composeBackgroundCss, getBgImageByDevice, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getStyleBackgroundByDevice, getStyleBgColor, makeFixedBgAttachment } from './helpers/background.js';
|
|
58
58
|
export { composeTextColorCss, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getSingleColorVariable, isColor } from './helpers/colors.js';
|
|
59
59
|
export { composeAdvanceStyle, composeAdvanceStyleForPostPurchase, filterAttrInStyle, filterCornerInStyle, removeAttrInStyle, removePaddingYInStyle, splitStyle } from './helpers/compose-advance-style.js';
|
|
60
60
|
export { baseAssetURL, isLocalEnv } from './helpers/convert.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7551,23 +7551,23 @@ type Background = {
|
|
|
7551
7551
|
storage?: 'THEME' | 'FILE_CONTENT';
|
|
7552
7552
|
backupFilePath?: string;
|
|
7553
7553
|
};
|
|
7554
|
-
size?: BgSize$
|
|
7555
|
-
position?: BgPosition$
|
|
7556
|
-
repeat?: BgRepeat$
|
|
7557
|
-
attachment?: BgAttachment$
|
|
7554
|
+
size?: BgSize$2;
|
|
7555
|
+
position?: BgPosition$2;
|
|
7556
|
+
repeat?: BgRepeat$2;
|
|
7557
|
+
attachment?: BgAttachment$2;
|
|
7558
7558
|
video?: string;
|
|
7559
7559
|
videoHtml5?: string;
|
|
7560
7560
|
videoType?: 'youtube' | 'html5';
|
|
7561
7561
|
loop?: boolean;
|
|
7562
7562
|
lazyLoad?: boolean;
|
|
7563
7563
|
};
|
|
7564
|
-
type BgSize$
|
|
7565
|
-
type BgRepeat$
|
|
7566
|
-
type BgPosition$
|
|
7564
|
+
type BgSize$2 = 'cover' | 'contain';
|
|
7565
|
+
type BgRepeat$2 = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
7566
|
+
type BgPosition$2 = {
|
|
7567
7567
|
x: number;
|
|
7568
7568
|
y: number;
|
|
7569
7569
|
};
|
|
7570
|
-
type BgAttachment$
|
|
7570
|
+
type BgAttachment$2 = 'scroll' | 'fixed' | 'local';
|
|
7571
7571
|
|
|
7572
7572
|
type VisibilityControlType<T> = SharedControlType<T> & {
|
|
7573
7573
|
type: 'visibility';
|
|
@@ -8226,7 +8226,6 @@ type SettingUIControl = {
|
|
|
8226
8226
|
type ControlTriggerAction$1 = {
|
|
8227
8227
|
controlId: string;
|
|
8228
8228
|
newValue: any;
|
|
8229
|
-
field: string;
|
|
8230
8229
|
controlType: string;
|
|
8231
8230
|
groupType: string;
|
|
8232
8231
|
valueIfNull?: any;
|
|
@@ -8317,22 +8316,22 @@ type BackgroundImageValue = {
|
|
|
8317
8316
|
width: number;
|
|
8318
8317
|
height: number;
|
|
8319
8318
|
};
|
|
8320
|
-
size?: BgSize;
|
|
8321
|
-
position?: BgPosition;
|
|
8322
|
-
repeat?: BgRepeat;
|
|
8323
|
-
attachment?: BgAttachment;
|
|
8319
|
+
size?: BgSize$1;
|
|
8320
|
+
position?: BgPosition$1;
|
|
8321
|
+
repeat?: BgRepeat$1;
|
|
8322
|
+
attachment?: BgAttachment$1;
|
|
8324
8323
|
altText?: string;
|
|
8325
8324
|
imageTitle?: string;
|
|
8326
8325
|
lazyLoad?: boolean;
|
|
8327
8326
|
preload?: boolean;
|
|
8328
8327
|
};
|
|
8329
|
-
type BgSize = 'cover' | 'contain' | '100% 100%';
|
|
8330
|
-
type BgRepeat = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
8331
|
-
type BgPosition = {
|
|
8328
|
+
type BgSize$1 = 'cover' | 'contain' | '100% 100%';
|
|
8329
|
+
type BgRepeat$1 = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
8330
|
+
type BgPosition$1 = {
|
|
8332
8331
|
x: number;
|
|
8333
8332
|
y: number;
|
|
8334
8333
|
};
|
|
8335
|
-
type BgAttachment = 'scroll' | 'fixed' | 'local';
|
|
8334
|
+
type BgAttachment$1 = 'scroll' | 'fixed' | 'local';
|
|
8336
8335
|
|
|
8337
8336
|
type BackgroundVideoType<T> = SharedControlType<T> & {
|
|
8338
8337
|
type: 'background-video';
|
|
@@ -8346,7 +8345,42 @@ type BackgroundVideoValue = {
|
|
|
8346
8345
|
loop?: boolean;
|
|
8347
8346
|
};
|
|
8348
8347
|
|
|
8349
|
-
type
|
|
8348
|
+
type BackgroundMediaControlType<T> = SharedControlType<T> & {
|
|
8349
|
+
type: 'background-media';
|
|
8350
|
+
value?: BackgroundMedia;
|
|
8351
|
+
showVideo?: Boolean;
|
|
8352
|
+
};
|
|
8353
|
+
type BackgroundMedia = {
|
|
8354
|
+
type: 'color' | 'image' | 'video';
|
|
8355
|
+
color?: string;
|
|
8356
|
+
image?: {
|
|
8357
|
+
src?: string;
|
|
8358
|
+
width?: number;
|
|
8359
|
+
height?: number;
|
|
8360
|
+
backupFileKey?: string;
|
|
8361
|
+
storage?: 'THEME' | 'FILE_CONTENT';
|
|
8362
|
+
backupFilePath?: string;
|
|
8363
|
+
};
|
|
8364
|
+
size?: BgSize;
|
|
8365
|
+
position?: BgPosition;
|
|
8366
|
+
repeat?: BgRepeat;
|
|
8367
|
+
attachment?: BgAttachment;
|
|
8368
|
+
video?: string;
|
|
8369
|
+
videoHtml5?: string;
|
|
8370
|
+
videoType?: 'youtube' | 'html5';
|
|
8371
|
+
loop?: boolean;
|
|
8372
|
+
lazyLoad?: boolean;
|
|
8373
|
+
preload?: boolean;
|
|
8374
|
+
};
|
|
8375
|
+
type BgSize = 'cover' | 'contain';
|
|
8376
|
+
type BgRepeat = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
8377
|
+
type BgPosition = {
|
|
8378
|
+
x: number;
|
|
8379
|
+
y: number;
|
|
8380
|
+
};
|
|
8381
|
+
type BgAttachment = 'scroll' | 'fixed' | 'local';
|
|
8382
|
+
|
|
8383
|
+
type ControlProp<T> = ProductBundleChildControlType<T> | SelectProductBundleControlType<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> | OpenLinkControlType<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> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | DisplayTriggerControlType<T> | CustomPositionControlType<T> | DealControlType<T> | ProductHandleType<T> | ColorPickerV2ControlType<T> | BorderV2ControlType<T> | CornerV2ControlType<T> | PaddingV2ControlType<T> | BackgroundImageType<T> | BackgroundMediaControlType<T> | BackgroundVideoType<T>;
|
|
8350
8384
|
type ControlTriggerAction = {
|
|
8351
8385
|
controlId: string;
|
|
8352
8386
|
newValue?: any;
|
|
@@ -32065,23 +32099,6 @@ type Options = {
|
|
|
32065
32099
|
ignoreBackgroundImageProperties?: boolean;
|
|
32066
32100
|
ignoreBackgroundColor?: boolean;
|
|
32067
32101
|
};
|
|
32068
|
-
declare const getStyleBackgroundImage: (bgImage?: ObjectDevices<BackgroundImageValue>, options?: Options) => {
|
|
32069
|
-
"--bga": string;
|
|
32070
|
-
"--bga-tablet": string;
|
|
32071
|
-
"--bga-mobile": string;
|
|
32072
|
-
"--bgr": string;
|
|
32073
|
-
"--bgr-tablet": string;
|
|
32074
|
-
"--bgr-mobile": string;
|
|
32075
|
-
"--bgs": string;
|
|
32076
|
-
"--bgs-tablet": string;
|
|
32077
|
-
"--bgs-mobile": string;
|
|
32078
|
-
"--bgp": string;
|
|
32079
|
-
"--bgp-tablet": string;
|
|
32080
|
-
"--bgp-mobile": string;
|
|
32081
|
-
"--bgi": string;
|
|
32082
|
-
"--bgi-tablet": string;
|
|
32083
|
-
"--bgi-mobile": string;
|
|
32084
|
-
};
|
|
32085
32102
|
declare const getStyleBackgroundByDevice: (background?: ObjectDevices<Background>, options?: Options) => {
|
|
32086
32103
|
"--bga"?: string | undefined;
|
|
32087
32104
|
"--bga-tablet"?: string | undefined;
|
|
@@ -41766,4 +41783,4 @@ declare const useInteraction: () => {
|
|
|
41766
41783
|
};
|
|
41767
41784
|
};
|
|
41768
41785
|
|
|
41769
|
-
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, 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, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, 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, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResonsiveStyleShadow, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice,
|
|
41786
|
+
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, 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, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, 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, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResonsiveStyleShadow, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|