@gem-sdk/core 2.0.0-dev.603 → 2.0.0-dev.621
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 +4 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -35826,6 +35826,7 @@ type InputControlType<T> = SharedControlType<T> & {
|
|
|
35826
35826
|
placeholder?: string;
|
|
35827
35827
|
fallbackValue?: string;
|
|
35828
35828
|
clearButton?: boolean;
|
|
35829
|
+
isUpdateCustomLabel?: boolean;
|
|
35829
35830
|
datalist?: {
|
|
35830
35831
|
value: any;
|
|
35831
35832
|
}[];
|
|
@@ -36283,6 +36284,7 @@ type SettingUIControl = {
|
|
|
36283
36284
|
}[];
|
|
36284
36285
|
toggleStyle?: 'switch' | 'option';
|
|
36285
36286
|
clearButton?: boolean;
|
|
36287
|
+
isUpdateCustomLabel?: boolean;
|
|
36286
36288
|
labelAlign?: 'top' | 'center';
|
|
36287
36289
|
tooltipPosition?: 'left' | 'right';
|
|
36288
36290
|
isComboLayout?: boolean;
|
|
@@ -37209,6 +37211,8 @@ type PaddingV2ControlType<T> = SharedControlType<T> & {
|
|
|
37209
37211
|
type BackgroundImageType<T> = SharedControlType<T> & {
|
|
37210
37212
|
type: 'background-image';
|
|
37211
37213
|
value?: BackgroundImageValue;
|
|
37214
|
+
isBackground?: boolean;
|
|
37215
|
+
isHideClear?: boolean;
|
|
37212
37216
|
};
|
|
37213
37217
|
type BackgroundImageValue = {
|
|
37214
37218
|
image?: {
|