@gem-sdk/core 1.9.21 → 1.9.23
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/borders.js +2 -2
- package/dist/cjs/helpers/make-style.js +16 -0
- package/dist/cjs/index.js +1 -0
- package/dist/esm/helpers/borders.js +2 -2
- package/dist/esm/helpers/make-style.js +16 -1
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -172,8 +172,8 @@ const composeBorderCss = (borderV)=>{
|
|
|
172
172
|
return '';
|
|
173
173
|
}
|
|
174
174
|
return `${border ? `border-style: ${border};` : ''}
|
|
175
|
-
${width ? `border-width: ${width};` :
|
|
176
|
-
${color ? `border-color: ${colors.getSingleColorVariable(color)};` :
|
|
175
|
+
${width ? `border-width: ${width};` : ''}
|
|
176
|
+
${color ? `border-color: ${colors.getSingleColorVariable(color)};` : ''}
|
|
177
177
|
`;
|
|
178
178
|
};
|
|
179
179
|
|
|
@@ -80,9 +80,25 @@ const makeAspectRatio = (aspectRatio, aspectWidth, aspectHeight)=>{
|
|
|
80
80
|
mobile: aspectRatio?.mobile === 'custom' ? `${getResonsiveValue.getResponsiveValueByScreen(aspectWidth, 'mobile')}/${getResonsiveValue.getResponsiveValueByScreen(aspectHeight, 'mobile')}` : aspectRatio?.mobile
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
|
+
const makeLineClamp = (lineClampValue, hasLineClampValue)=>{
|
|
84
|
+
const getVal = (deviceValue, lineClampValue, hasLineClampValue)=>{
|
|
85
|
+
const lineClamp = lineClampValue?.[deviceValue];
|
|
86
|
+
const hasLineClamp = hasLineClampValue?.[deviceValue];
|
|
87
|
+
if (hasLineClamp || hasLineClamp === undefined) {
|
|
88
|
+
return lineClamp;
|
|
89
|
+
}
|
|
90
|
+
return 'unset';
|
|
91
|
+
};
|
|
92
|
+
return {
|
|
93
|
+
desktop: getVal('desktop', lineClampValue, hasLineClampValue),
|
|
94
|
+
tablet: getVal('tablet', lineClampValue, hasLineClampValue),
|
|
95
|
+
mobile: getVal('mobile', lineClampValue, hasLineClampValue)
|
|
96
|
+
};
|
|
97
|
+
};
|
|
83
98
|
|
|
84
99
|
exports.makeAspectRatio = makeAspectRatio;
|
|
85
100
|
exports.makeHeight = makeHeight;
|
|
101
|
+
exports.makeLineClamp = makeLineClamp;
|
|
86
102
|
exports.makeStyle = makeStyle;
|
|
87
103
|
exports.makeStyleResponsive = makeStyleResponsive;
|
|
88
104
|
exports.makeStyleResponsiveState = makeStyleResponsiveState;
|
package/dist/cjs/index.js
CHANGED
|
@@ -144,6 +144,7 @@ exports.isBrowser = isBrowser.default;
|
|
|
144
144
|
exports.isEmptyChildren = isEmptyChildren.isEmptyChildren;
|
|
145
145
|
exports.makeAspectRatio = makeStyle.makeAspectRatio;
|
|
146
146
|
exports.makeHeight = makeStyle.makeHeight;
|
|
147
|
+
exports.makeLineClamp = makeStyle.makeLineClamp;
|
|
147
148
|
exports.makeStyle = makeStyle.makeStyle;
|
|
148
149
|
exports.makeStyleResponsive = makeStyle.makeStyleResponsive;
|
|
149
150
|
exports.makeStyleResponsiveState = makeStyle.makeStyleResponsiveState;
|
|
@@ -170,8 +170,8 @@ const composeBorderCss = (borderV)=>{
|
|
|
170
170
|
return '';
|
|
171
171
|
}
|
|
172
172
|
return `${border ? `border-style: ${border};` : ''}
|
|
173
|
-
${width ? `border-width: ${width};` :
|
|
174
|
-
${color ? `border-color: ${getSingleColorVariable(color)};` :
|
|
173
|
+
${width ? `border-width: ${width};` : ''}
|
|
174
|
+
${color ? `border-color: ${getSingleColorVariable(color)};` : ''}
|
|
175
175
|
`;
|
|
176
176
|
};
|
|
177
177
|
|
|
@@ -78,5 +78,20 @@ const makeAspectRatio = (aspectRatio, aspectWidth, aspectHeight)=>{
|
|
|
78
78
|
mobile: aspectRatio?.mobile === 'custom' ? `${getResponsiveValueByScreen(aspectWidth, 'mobile')}/${getResponsiveValueByScreen(aspectHeight, 'mobile')}` : aspectRatio?.mobile
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
|
+
const makeLineClamp = (lineClampValue, hasLineClampValue)=>{
|
|
82
|
+
const getVal = (deviceValue, lineClampValue, hasLineClampValue)=>{
|
|
83
|
+
const lineClamp = lineClampValue?.[deviceValue];
|
|
84
|
+
const hasLineClamp = hasLineClampValue?.[deviceValue];
|
|
85
|
+
if (hasLineClamp || hasLineClamp === undefined) {
|
|
86
|
+
return lineClamp;
|
|
87
|
+
}
|
|
88
|
+
return 'unset';
|
|
89
|
+
};
|
|
90
|
+
return {
|
|
91
|
+
desktop: getVal('desktop', lineClampValue, hasLineClampValue),
|
|
92
|
+
tablet: getVal('tablet', lineClampValue, hasLineClampValue),
|
|
93
|
+
mobile: getVal('mobile', lineClampValue, hasLineClampValue)
|
|
94
|
+
};
|
|
95
|
+
};
|
|
81
96
|
|
|
82
|
-
export { makeAspectRatio, makeHeight, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth };
|
|
97
|
+
export { makeAspectRatio, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth };
|
package/dist/esm/index.js
CHANGED
|
@@ -30,7 +30,7 @@ export { getShortName } from './helpers/get-shortname.js';
|
|
|
30
30
|
export { default as globalEvent } from './helpers/GlobalEvent.js';
|
|
31
31
|
export { default as isBrowser } from './helpers/is-browser.js';
|
|
32
32
|
export { isEmptyChildren } from './helpers/is-empty-children.js';
|
|
33
|
-
export { makeAspectRatio, makeHeight, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth } from './helpers/make-style.js';
|
|
33
|
+
export { makeAspectRatio, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth } from './helpers/make-style.js';
|
|
34
34
|
export { normalizeBuilderData } from './helpers/normalize-builder-data.js';
|
|
35
35
|
export { prefetchQueries } from './helpers/prefetch-queries.js';
|
|
36
36
|
export { composeSpacing, getSpacingVariable } from './helpers/spacing.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -128,6 +128,7 @@ type LooxReviewsWidgetType = 'reviews_widget' | 'rating_widget' | 'carousel_widg
|
|
|
128
128
|
type RyviuWidgetType = 'reviews' | 'badge' | 'badgeCollection' | 'carousel' | 'masonry';
|
|
129
129
|
type RivyoWidgetType = 'reviews' | 'badge' | 'testimonials' | 'allReviewsPage';
|
|
130
130
|
type BoldSubscriptionsWidgetType = 'v1' | 'v2';
|
|
131
|
+
type PickyStoryWidgetType = 'gem-picky-bundle' | 'gem-picky-kit' | 'gem-picky-buy-the-look' | 'gem-picky-gallery';
|
|
131
132
|
type KlaviyoWidgetType = 'popup_widget' | 'flyout_widget' | 'embed_widget' | 'full_page_widget';
|
|
132
133
|
type ObjectLayoutValue = {
|
|
133
134
|
display?: 'fill' | 'fit';
|
|
@@ -7339,6 +7340,7 @@ declare const makeStyleResponsive: <T extends ShortHandProperty, K>(name: T, val
|
|
|
7339
7340
|
declare const makeWidth: (widthValue?: ObjectDevices<string | number>, fullWidthValue?: ObjectDevices<boolean>) => ObjectDevices<string | number | undefined>;
|
|
7340
7341
|
declare const makeHeight: (heighValue?: ObjectDevices<string | number>, autoHeight?: ObjectDevices<boolean>) => ObjectDevices<string | number | undefined>;
|
|
7341
7342
|
declare const makeAspectRatio: (aspectRatio?: ObjectDevices<string>, aspectWidth?: ObjectDevices<string | number>, aspectHeight?: ObjectDevices<string | number>) => ObjectDevices<string>;
|
|
7343
|
+
declare const makeLineClamp: (lineClampValue?: ObjectDevices<number>, hasLineClampValue?: ObjectDevices<boolean>) => ObjectDevices<string | number | undefined>;
|
|
7342
7344
|
|
|
7343
7345
|
declare function normalizeBuilderData(data: BuilderEntityNested): {
|
|
7344
7346
|
[x: string]: BuilderEntity;
|
|
@@ -7721,4 +7723,4 @@ declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }:
|
|
|
7721
7723
|
|
|
7722
7724
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
7723
7725
|
|
|
7724
|
-
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, ComponentSetting, ContainerProp, ControlProp, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, ExtractState, FetchFunc, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, InitComponentType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OptionNormalStyle, OptionSpecialStyle, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, RenderMemo as Render, 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, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographyType, VariantSelectFragment, calculateFirstProduct, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeRadius, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypographyCss, convertOldLayout, fetchMedias, fetchVariants, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, 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, isDefined, isEmptyChildren, isLocalEnv, loadScript, makeAspectRatio, makeHeight, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useIsSampleProduct, useIsStorefrontProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
7726
|
+
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, ComponentSetting, ContainerProp, ControlProp, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, ExtractState, FetchFunc, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, InitComponentType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OptionNormalStyle, OptionSpecialStyle, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, RenderMemo as Render, 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, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographyType, VariantSelectFragment, calculateFirstProduct, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeRadius, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypographyCss, convertOldLayout, fetchMedias, fetchVariants, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, 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, isDefined, isEmptyChildren, isLocalEnv, loadScript, makeAspectRatio, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useIsSampleProduct, useIsStorefrontProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|