@gem-sdk/core 2.0.0-dev.380 → 2.0.0-dev.386
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.
|
@@ -167,16 +167,10 @@ const composeTypographyStyle = (typo, typography, disableAttr)=>{
|
|
|
167
167
|
const isCustomTypo = (customTypo)=>{
|
|
168
168
|
return customTypo && Object.keys(customTypo).length > 1 || customTypo && Object.keys(customTypo).length === 1 && !customTypo.fontSize;
|
|
169
169
|
};
|
|
170
|
-
const composeTypoHover = (attrs)=>{
|
|
171
|
-
return {
|
|
172
|
-
'--hvr-c': colors.getSingleColorVariable(attrs?.color) || ''
|
|
173
|
-
};
|
|
174
|
-
};
|
|
175
170
|
|
|
176
171
|
exports.composeFallbackTypographyStyle = composeFallbackTypographyStyle;
|
|
177
172
|
exports.composeFontFamilyTypographyV2 = composeFontFamilyTypographyV2;
|
|
178
173
|
exports.composeTextHoverColorCss = composeTextHoverColorCss;
|
|
179
|
-
exports.composeTypoHover = composeTypoHover;
|
|
180
174
|
exports.composeTypography = composeTypography;
|
|
181
175
|
exports.composeTypographyAttr = composeTypographyAttr;
|
|
182
176
|
exports.composeTypographyClassName = composeTypographyClassName;
|
package/dist/cjs/index.js
CHANGED
|
@@ -324,7 +324,6 @@ exports.makeStyleWithDefault = size.makeStyleWithDefault;
|
|
|
324
324
|
exports.composeFallbackTypographyStyle = typography.composeFallbackTypographyStyle;
|
|
325
325
|
exports.composeFontFamilyTypographyV2 = typography.composeFontFamilyTypographyV2;
|
|
326
326
|
exports.composeTextHoverColorCss = typography.composeTextHoverColorCss;
|
|
327
|
-
exports.composeTypoHover = typography.composeTypoHover;
|
|
328
327
|
exports.composeTypography = typography.composeTypography;
|
|
329
328
|
exports.composeTypographyAttr = typography.composeTypographyAttr;
|
|
330
329
|
exports.composeTypographyClassName = typography.composeTypographyClassName;
|
|
@@ -165,10 +165,5 @@ const composeTypographyStyle = (typo, typography, disableAttr)=>{
|
|
|
165
165
|
const isCustomTypo = (customTypo)=>{
|
|
166
166
|
return customTypo && Object.keys(customTypo).length > 1 || customTypo && Object.keys(customTypo).length === 1 && !customTypo.fontSize;
|
|
167
167
|
};
|
|
168
|
-
const composeTypoHover = (attrs)=>{
|
|
169
|
-
return {
|
|
170
|
-
'--hvr-c': getSingleColorVariable(attrs?.color) || ''
|
|
171
|
-
};
|
|
172
|
-
};
|
|
173
168
|
|
|
174
|
-
export { composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeTextHoverColorCss,
|
|
169
|
+
export { composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, genTypoClass };
|
package/dist/esm/index.js
CHANGED
|
@@ -78,7 +78,7 @@ export { composeCornerCss, composeRadius, composeRadiusResponsive, getCornerCSSF
|
|
|
78
78
|
export { RenderIf, composeMemo, dataStringify, props, removeUndefinedValuesFromObject, styles, template } from './helpers/render.js';
|
|
79
79
|
export { composeShadow, composeShadowCss, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getStyleShadow, getStyleShadowState, parseValueWithUnit } from './helpers/shadow.js';
|
|
80
80
|
export { composeSize, composeSizeCss, genSizeClass, getAspectRatioGlobalSize, getGlobalSizeGap, getHeightByShapeGlobalSize, getPaddingGlobalSize, getPaddingStyleByDevice, getResponsiveStylePadding, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, makeGlobalSize, makeGlobalSizeIcon, makeStyleWithDefault } from './helpers/size.js';
|
|
81
|
-
export { composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeTextHoverColorCss,
|
|
81
|
+
export { composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, genTypoClass } from './helpers/typography.js';
|
|
82
82
|
export { useArticlesQuery, useBlogsQuery } from './hooks/articles/useArticlesQuery.js';
|
|
83
83
|
export { useAddToCart } from './hooks/cart/use-add-to-cart.js';
|
|
84
84
|
export { useCartData } from './hooks/cart/use-cart-data.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -38230,6 +38230,33 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38230
38230
|
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
38231
38231
|
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
38232
38232
|
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
38233
|
+
'--of'?: csstype.Property.Overflow | undefined;
|
|
38234
|
+
'--hvr-of'?: csstype.Property.Overflow | undefined;
|
|
38235
|
+
'--focus-of'?: csstype.Property.Overflow | undefined;
|
|
38236
|
+
'--of-tablet'?: csstype.Property.Overflow | undefined;
|
|
38237
|
+
'--hvr-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
38238
|
+
'--focus-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
38239
|
+
'--of-mobile'?: csstype.Property.Overflow | undefined;
|
|
38240
|
+
'--hvr-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
38241
|
+
'--focus-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
38242
|
+
'--ofx'?: csstype.Property.OverflowX | undefined;
|
|
38243
|
+
'--hvr-ofx'?: csstype.Property.OverflowX | undefined;
|
|
38244
|
+
'--focus-ofx'?: csstype.Property.OverflowX | undefined;
|
|
38245
|
+
'--ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
38246
|
+
'--hvr-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
38247
|
+
'--focus-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
38248
|
+
'--ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
38249
|
+
'--hvr-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
38250
|
+
'--focus-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
38251
|
+
'--ofy'?: csstype.Property.OverflowY | undefined;
|
|
38252
|
+
'--hvr-ofy'?: csstype.Property.OverflowY | undefined;
|
|
38253
|
+
'--focus-ofy'?: csstype.Property.OverflowY | undefined;
|
|
38254
|
+
'--ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
38255
|
+
'--hvr-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
38256
|
+
'--focus-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
38257
|
+
'--ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
38258
|
+
'--hvr-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
38259
|
+
'--focus-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
38233
38260
|
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
38234
38261
|
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
38235
38262
|
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
@@ -39806,6 +39833,33 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
39806
39833
|
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
39807
39834
|
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
39808
39835
|
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
39836
|
+
'--of'?: csstype.Property.Overflow | undefined;
|
|
39837
|
+
'--hvr-of'?: csstype.Property.Overflow | undefined;
|
|
39838
|
+
'--focus-of'?: csstype.Property.Overflow | undefined;
|
|
39839
|
+
'--of-tablet'?: csstype.Property.Overflow | undefined;
|
|
39840
|
+
'--hvr-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
39841
|
+
'--focus-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
39842
|
+
'--of-mobile'?: csstype.Property.Overflow | undefined;
|
|
39843
|
+
'--hvr-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
39844
|
+
'--focus-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
39845
|
+
'--ofx'?: csstype.Property.OverflowX | undefined;
|
|
39846
|
+
'--hvr-ofx'?: csstype.Property.OverflowX | undefined;
|
|
39847
|
+
'--focus-ofx'?: csstype.Property.OverflowX | undefined;
|
|
39848
|
+
'--ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
39849
|
+
'--hvr-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
39850
|
+
'--focus-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
39851
|
+
'--ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
39852
|
+
'--hvr-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
39853
|
+
'--focus-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
39854
|
+
'--ofy'?: csstype.Property.OverflowY | undefined;
|
|
39855
|
+
'--hvr-ofy'?: csstype.Property.OverflowY | undefined;
|
|
39856
|
+
'--focus-ofy'?: csstype.Property.OverflowY | undefined;
|
|
39857
|
+
'--ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
39858
|
+
'--hvr-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
39859
|
+
'--focus-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
39860
|
+
'--ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
39861
|
+
'--hvr-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
39862
|
+
'--focus-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
39809
39863
|
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
39810
39864
|
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
39811
39865
|
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
@@ -41383,6 +41437,33 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
41383
41437
|
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
41384
41438
|
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
41385
41439
|
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
41440
|
+
'--of'?: csstype.Property.Overflow | undefined;
|
|
41441
|
+
'--hvr-of'?: csstype.Property.Overflow | undefined;
|
|
41442
|
+
'--focus-of'?: csstype.Property.Overflow | undefined;
|
|
41443
|
+
'--of-tablet'?: csstype.Property.Overflow | undefined;
|
|
41444
|
+
'--hvr-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
41445
|
+
'--focus-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
41446
|
+
'--of-mobile'?: csstype.Property.Overflow | undefined;
|
|
41447
|
+
'--hvr-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
41448
|
+
'--focus-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
41449
|
+
'--ofx'?: csstype.Property.OverflowX | undefined;
|
|
41450
|
+
'--hvr-ofx'?: csstype.Property.OverflowX | undefined;
|
|
41451
|
+
'--focus-ofx'?: csstype.Property.OverflowX | undefined;
|
|
41452
|
+
'--ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
41453
|
+
'--hvr-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
41454
|
+
'--focus-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
41455
|
+
'--ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
41456
|
+
'--hvr-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
41457
|
+
'--focus-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
41458
|
+
'--ofy'?: csstype.Property.OverflowY | undefined;
|
|
41459
|
+
'--hvr-ofy'?: csstype.Property.OverflowY | undefined;
|
|
41460
|
+
'--focus-ofy'?: csstype.Property.OverflowY | undefined;
|
|
41461
|
+
'--ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
41462
|
+
'--hvr-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
41463
|
+
'--focus-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
41464
|
+
'--ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
41465
|
+
'--hvr-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
41466
|
+
'--focus-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
41386
41467
|
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
41387
41468
|
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
41388
41469
|
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
@@ -43061,6 +43142,33 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43061
43142
|
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
43062
43143
|
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
43063
43144
|
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
43145
|
+
'--of'?: csstype.Property.Overflow | undefined;
|
|
43146
|
+
'--hvr-of'?: csstype.Property.Overflow | undefined;
|
|
43147
|
+
'--focus-of'?: csstype.Property.Overflow | undefined;
|
|
43148
|
+
'--of-tablet'?: csstype.Property.Overflow | undefined;
|
|
43149
|
+
'--hvr-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
43150
|
+
'--focus-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
43151
|
+
'--of-mobile'?: csstype.Property.Overflow | undefined;
|
|
43152
|
+
'--hvr-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
43153
|
+
'--focus-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
43154
|
+
'--ofx'?: csstype.Property.OverflowX | undefined;
|
|
43155
|
+
'--hvr-ofx'?: csstype.Property.OverflowX | undefined;
|
|
43156
|
+
'--focus-ofx'?: csstype.Property.OverflowX | undefined;
|
|
43157
|
+
'--ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
43158
|
+
'--hvr-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
43159
|
+
'--focus-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
43160
|
+
'--ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
43161
|
+
'--hvr-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
43162
|
+
'--focus-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
43163
|
+
'--ofy'?: csstype.Property.OverflowY | undefined;
|
|
43164
|
+
'--hvr-ofy'?: csstype.Property.OverflowY | undefined;
|
|
43165
|
+
'--focus-ofy'?: csstype.Property.OverflowY | undefined;
|
|
43166
|
+
'--ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
43167
|
+
'--hvr-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
43168
|
+
'--focus-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
43169
|
+
'--ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
43170
|
+
'--hvr-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
43171
|
+
'--focus-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
43064
43172
|
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
43065
43173
|
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
43066
43174
|
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
@@ -44640,6 +44748,33 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
44640
44748
|
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
44641
44749
|
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
44642
44750
|
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
44751
|
+
'--of'?: csstype.Property.Overflow | undefined;
|
|
44752
|
+
'--hvr-of'?: csstype.Property.Overflow | undefined;
|
|
44753
|
+
'--focus-of'?: csstype.Property.Overflow | undefined;
|
|
44754
|
+
'--of-tablet'?: csstype.Property.Overflow | undefined;
|
|
44755
|
+
'--hvr-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
44756
|
+
'--focus-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
44757
|
+
'--of-mobile'?: csstype.Property.Overflow | undefined;
|
|
44758
|
+
'--hvr-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
44759
|
+
'--focus-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
44760
|
+
'--ofx'?: csstype.Property.OverflowX | undefined;
|
|
44761
|
+
'--hvr-ofx'?: csstype.Property.OverflowX | undefined;
|
|
44762
|
+
'--focus-ofx'?: csstype.Property.OverflowX | undefined;
|
|
44763
|
+
'--ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
44764
|
+
'--hvr-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
44765
|
+
'--focus-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
44766
|
+
'--ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
44767
|
+
'--hvr-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
44768
|
+
'--focus-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
44769
|
+
'--ofy'?: csstype.Property.OverflowY | undefined;
|
|
44770
|
+
'--hvr-ofy'?: csstype.Property.OverflowY | undefined;
|
|
44771
|
+
'--focus-ofy'?: csstype.Property.OverflowY | undefined;
|
|
44772
|
+
'--ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
44773
|
+
'--hvr-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
44774
|
+
'--focus-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
44775
|
+
'--ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
44776
|
+
'--hvr-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
44777
|
+
'--focus-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
44643
44778
|
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
44644
44779
|
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
44645
44780
|
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
@@ -46273,6 +46408,33 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
46273
46408
|
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
46274
46409
|
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
46275
46410
|
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
46411
|
+
'--of'?: csstype.Property.Overflow | undefined;
|
|
46412
|
+
'--hvr-of'?: csstype.Property.Overflow | undefined;
|
|
46413
|
+
'--focus-of'?: csstype.Property.Overflow | undefined;
|
|
46414
|
+
'--of-tablet'?: csstype.Property.Overflow | undefined;
|
|
46415
|
+
'--hvr-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
46416
|
+
'--focus-of-tablet'?: csstype.Property.Overflow | undefined;
|
|
46417
|
+
'--of-mobile'?: csstype.Property.Overflow | undefined;
|
|
46418
|
+
'--hvr-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
46419
|
+
'--focus-of-mobile'?: csstype.Property.Overflow | undefined;
|
|
46420
|
+
'--ofx'?: csstype.Property.OverflowX | undefined;
|
|
46421
|
+
'--hvr-ofx'?: csstype.Property.OverflowX | undefined;
|
|
46422
|
+
'--focus-ofx'?: csstype.Property.OverflowX | undefined;
|
|
46423
|
+
'--ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
46424
|
+
'--hvr-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
46425
|
+
'--focus-ofx-tablet'?: csstype.Property.OverflowX | undefined;
|
|
46426
|
+
'--ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
46427
|
+
'--hvr-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
46428
|
+
'--focus-ofx-mobile'?: csstype.Property.OverflowX | undefined;
|
|
46429
|
+
'--ofy'?: csstype.Property.OverflowY | undefined;
|
|
46430
|
+
'--hvr-ofy'?: csstype.Property.OverflowY | undefined;
|
|
46431
|
+
'--focus-ofy'?: csstype.Property.OverflowY | undefined;
|
|
46432
|
+
'--ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
46433
|
+
'--hvr-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
46434
|
+
'--focus-ofy-tablet'?: csstype.Property.OverflowY | undefined;
|
|
46435
|
+
'--ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
46436
|
+
'--hvr-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
46437
|
+
'--focus-ofy-mobile'?: csstype.Property.OverflowY | undefined;
|
|
46276
46438
|
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
46277
46439
|
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
46278
46440
|
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
@@ -47262,9 +47424,6 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47262
47424
|
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
47263
47425
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
47264
47426
|
};
|
|
47265
|
-
declare const composeTypoHover: (attrs?: TypographyV2Attrs) => {
|
|
47266
|
-
'--hvr-c': string;
|
|
47267
|
-
};
|
|
47268
47427
|
|
|
47269
47428
|
declare const useArticlesQuery: (variables: ArticlesQueryVariables | null, options?: SWRConfiguration<ArticlesQueryResponse>) => swr__internal.SWRResponse<ArticlesQueryResponse, any, Partial<swr__internal.PublicConfiguration<ArticlesQueryResponse, any, (arg: ["query/articles", any]) => swr__internal.FetcherResponse<ArticlesQueryResponse>>> | undefined>;
|
|
47270
47429
|
declare const useBlogsQuery: (variables: BlogsQueryVariables | null, options?: SWRConfiguration<BlogsQueryResponse>) => swr__internal.SWRResponse<BlogsQueryResponse, any, Partial<swr__internal.PublicConfiguration<BlogsQueryResponse, any, (arg: ["query/blogs", any]) => swr__internal.FetcherResponse<BlogsQueryResponse>>> | undefined>;
|
|
@@ -47586,4 +47745,4 @@ declare const useInteraction: () => {
|
|
|
47586
47745
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
47587
47746
|
};
|
|
47588
47747
|
|
|
47589
|
-
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, ArticlesDocument, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsDocument, BlogsQueryResponse, BlogsQueryVariables, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DotStyle, Dropdown, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, MediaSelectFragment, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$4 as Option, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, SaleFunnelOfferDocument, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting$1 as SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, ValidateType, VariableRelatedStyles, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypoHover, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertBoxShadowV1ToV2, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, handleConvertInputBorderColor, handleConvertInputBorderWidth, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
47748
|
+
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, ArticlesDocument, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsDocument, BlogsQueryResponse, BlogsQueryVariables, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DotStyle, Dropdown, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, MediaSelectFragment, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$4 as Option, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, SaleFunnelOfferDocument, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting$1 as SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, ValidateType, VariableRelatedStyles, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertBoxShadowV1ToV2, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, handleConvertInputBorderColor, handleConvertInputBorderWidth, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/core",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.386",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@gem-sdk/adapter-shopify": "2.0.0-dev.324",
|
|
31
|
-
"@gem-sdk/styles": "2.0.0-dev.
|
|
31
|
+
"@gem-sdk/styles": "2.0.0-dev.381",
|
|
32
32
|
"@types/classnames": "^2.3.1"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|