@gem-sdk/core 2.0.0-staging.936 → 2.0.0-staging.949
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/types/index.d.ts +33 -32
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -34237,7 +34237,7 @@ type WiserV2WidgetType = 'evm-also-bought-products' | 'evm-related-product' | 'e
|
|
|
34237
34237
|
type InstantJudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'floating_reviews_tab' | 'all_reviews_widget' | 'verified_reviews_count_badge' | 'medals' | 'media_grid' | 'all_reviews_text';
|
|
34238
34238
|
type InstantLooxReviewsWidgetType = 'product_reviews_widget' | 'reviews_widget_all_stores' | 'product_star_ratings_widget' | 'carousel_widget';
|
|
34239
34239
|
type InstantKlaviyoWidgetType = 'popup_widget' | 'flyout_widget' | 'embed_widget' | 'full_page_widget';
|
|
34240
|
-
type StampedWidgetType = 'main-widget' | 'carousel' | 'full-page' | 'visual-gallery' | 'wall-photos' | 'site-badge' | 'instagram-feed' | 'checkout-reviews' | 'single-highlight' | 'top-rated' | 'badge-single' | 'badge-double' | 'badge-ribbon' | 'product-rating';
|
|
34240
|
+
type StampedWidgetType = 'main-widget' | 'carousel' | 'full-page' | 'visual-gallery' | 'wall-photos' | 'site-badge' | 'instagram-feed' | 'checkout-reviews' | 'single-highlight' | 'top-rated' | 'badge-single' | 'badge-double' | 'badge-ribbon' | 'product-rating' | 'star-rating-badge';
|
|
34241
34241
|
type StampedWidgetTypeV2 = 'main-widget' | 'product-rating-image' | 'badge-double-image' | 'badge-ribbon-image' | 'badge-single-image' | 'carousel' | 'checkout-comments' | 'full-page' | 'instagram-feed' | 'single-highlight' | 'site-badge' | 'star-rating-badge' | 'top-rated' | 'visual-gallery' | 'wall-photos';
|
|
34242
34242
|
type LaiProductReviewsWidgetType = 'reviews_widget' | 'star_ratings' | 'homepage_reviews' | 'happy_customer_reviews' | 'star_ratings_in_list' | 'advanced_widget';
|
|
34243
34243
|
type LaiProductReviewsAdvancedWidgetType = 'cardCarousel' | 'testimonialCarousel' | 'mediaGallery' | 'cardGrid';
|
|
@@ -36354,6 +36354,7 @@ type SettingUICompo = {
|
|
|
36354
36354
|
capitalizeDisplayValue?: boolean;
|
|
36355
36355
|
isTypoValue?: boolean;
|
|
36356
36356
|
enableCheckSettingsValue?: boolean;
|
|
36357
|
+
state?: 'hover' | 'active' | 'focus';
|
|
36357
36358
|
};
|
|
36358
36359
|
type SettingUIMoreSetting = {
|
|
36359
36360
|
label?: LabelWithLang;
|
|
@@ -36692,9 +36693,38 @@ type LayoutBannerControlType<T> = SharedControlType<T> & {
|
|
|
36692
36693
|
isProductLayout?: boolean;
|
|
36693
36694
|
};
|
|
36694
36695
|
|
|
36696
|
+
type BackgroundImageType<T> = SharedControlType<T> & {
|
|
36697
|
+
type: 'background-image';
|
|
36698
|
+
value?: BackgroundImageValue;
|
|
36699
|
+
isBackground?: boolean;
|
|
36700
|
+
isHideClear?: boolean;
|
|
36701
|
+
};
|
|
36702
|
+
type BackgroundImageValue = {
|
|
36703
|
+
image?: {
|
|
36704
|
+
src: string;
|
|
36705
|
+
width: number;
|
|
36706
|
+
height: number;
|
|
36707
|
+
backupFileKey?: string;
|
|
36708
|
+
storage?: 'THEME' | 'FILE_CONTENT';
|
|
36709
|
+
backupFilePath?: string;
|
|
36710
|
+
hiddenSEO?: boolean;
|
|
36711
|
+
hiddenLCP?: boolean;
|
|
36712
|
+
};
|
|
36713
|
+
size?: BgSize;
|
|
36714
|
+
position?: BgPosition;
|
|
36715
|
+
repeat?: BgRepeat$1;
|
|
36716
|
+
attachment?: BgAttachment$1;
|
|
36717
|
+
altText?: string;
|
|
36718
|
+
imageTitle?: string;
|
|
36719
|
+
lazyLoad?: boolean;
|
|
36720
|
+
preload?: boolean;
|
|
36721
|
+
};
|
|
36722
|
+
type BgRepeat$1 = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
36723
|
+
type BgAttachment$1 = 'scroll' | 'fixed' | 'local';
|
|
36724
|
+
|
|
36695
36725
|
type CollectionBannerControlType<T> = SharedControlType<T> & {
|
|
36696
|
-
type: '
|
|
36697
|
-
value?:
|
|
36726
|
+
type: 'collection-banner';
|
|
36727
|
+
value?: BackgroundImageValue;
|
|
36698
36728
|
};
|
|
36699
36729
|
|
|
36700
36730
|
type ProductListControlType<T> = SharedControlType<T> & {
|
|
@@ -37228,35 +37258,6 @@ type PaddingV2ControlType<T> = SharedControlType<T> & {
|
|
|
37228
37258
|
type: 'padding-v2';
|
|
37229
37259
|
};
|
|
37230
37260
|
|
|
37231
|
-
type BackgroundImageType<T> = SharedControlType<T> & {
|
|
37232
|
-
type: 'background-image';
|
|
37233
|
-
value?: BackgroundImageValue;
|
|
37234
|
-
isBackground?: boolean;
|
|
37235
|
-
isHideClear?: boolean;
|
|
37236
|
-
fixedDisplayValue?: string;
|
|
37237
|
-
};
|
|
37238
|
-
type BackgroundImageValue = {
|
|
37239
|
-
image?: {
|
|
37240
|
-
src: string;
|
|
37241
|
-
width: number;
|
|
37242
|
-
height: number;
|
|
37243
|
-
backupFileKey?: string;
|
|
37244
|
-
storage?: 'THEME' | 'FILE_CONTENT';
|
|
37245
|
-
backupFilePath?: string;
|
|
37246
|
-
hiddenSEO?: boolean;
|
|
37247
|
-
};
|
|
37248
|
-
size?: BgSize;
|
|
37249
|
-
position?: BgPosition;
|
|
37250
|
-
repeat?: BgRepeat$1;
|
|
37251
|
-
attachment?: BgAttachment$1;
|
|
37252
|
-
altText?: string;
|
|
37253
|
-
imageTitle?: string;
|
|
37254
|
-
lazyLoad?: boolean;
|
|
37255
|
-
preload?: boolean;
|
|
37256
|
-
};
|
|
37257
|
-
type BgRepeat$1 = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
37258
|
-
type BgAttachment$1 = 'scroll' | 'fixed' | 'local';
|
|
37259
|
-
|
|
37260
37261
|
type BackgroundVideoType<T> = SharedControlType<T> & {
|
|
37261
37262
|
type: 'background-video';
|
|
37262
37263
|
value?: BackgroundVideoValue;
|