@gem-sdk/core 2.0.0-dev.264 → 2.0.0-dev.276
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 +3 -8
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -8147,6 +8147,7 @@ type SettingUIControl = {
|
|
|
8147
8147
|
}[];
|
|
8148
8148
|
toggleStyle?: 'switch' | 'option';
|
|
8149
8149
|
clearButton?: boolean;
|
|
8150
|
+
labelAlign?: 'top' | 'center';
|
|
8150
8151
|
};
|
|
8151
8152
|
setting?: {
|
|
8152
8153
|
id: string;
|
|
@@ -8191,6 +8192,7 @@ type SettingUICompo = {
|
|
|
8191
8192
|
comboType?: 'color' | 'image';
|
|
8192
8193
|
isHideClear?: boolean;
|
|
8193
8194
|
disableClearMessage?: string;
|
|
8195
|
+
iconPrefix?: string;
|
|
8194
8196
|
};
|
|
8195
8197
|
type SettingUIMoreSetting = {
|
|
8196
8198
|
label?: LabelWithLang;
|
|
@@ -8796,14 +8798,7 @@ type ProductInputCurrencyUnitControlType<T> = SharedControlType<T> & {
|
|
|
8796
8798
|
useOnlyUnitInit?: boolean;
|
|
8797
8799
|
};
|
|
8798
8800
|
|
|
8799
|
-
|
|
8800
|
-
Default = "default",
|
|
8801
|
-
Small = "small",
|
|
8802
|
-
Medium = "medium",
|
|
8803
|
-
Large = "large",
|
|
8804
|
-
XLarge = "xlarge"
|
|
8805
|
-
}
|
|
8806
|
-
type PostPurchaseFontSize = PostPurchaseFontSizeValue;
|
|
8801
|
+
type PostPurchaseFontSize = 'default' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
8807
8802
|
type PostPurchaseFontWeight = 'normal' | 'bold';
|
|
8808
8803
|
type PostPurchaseTextTransform = 'none' | 'uppercase' | 'capitalize' | 'lowercase';
|
|
8809
8804
|
type PostPurchaseTextColor = 'success' | 'warning' | 'critical' | 'default' | 'defaultButton' | 'defaultLink';
|