@gem-sdk/core 2.0.0-staging.936 → 2.0.0-staging.944
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 +32 -31
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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;
|