@gem-sdk/core 1.48.0-dev.69 → 1.48.0-dev.71
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 -4
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -8163,7 +8163,7 @@ type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022
|
|
|
8163
8163
|
type SettingUIControl = {
|
|
8164
8164
|
id?: string;
|
|
8165
8165
|
controlConfig?: ControlConfig;
|
|
8166
|
-
|
|
8166
|
+
type?: 'control' | 'combo' | 'tab' | 'toggleGroup';
|
|
8167
8167
|
layout?: 'vertical' | 'horizontal';
|
|
8168
8168
|
toggleGroupId?: string;
|
|
8169
8169
|
label?: LabelWithLang;
|
|
@@ -8186,6 +8186,7 @@ type SettingUIControl = {
|
|
|
8186
8186
|
state?: SettingStateType;
|
|
8187
8187
|
};
|
|
8188
8188
|
searchKeyword?: string;
|
|
8189
|
+
tabs?: SettingUITab[];
|
|
8189
8190
|
} & SettingUICompo;
|
|
8190
8191
|
type SettingUICompo = {
|
|
8191
8192
|
controls?: SettingUIControl[];
|
|
@@ -8201,7 +8202,7 @@ type SettingUIMoreSetting = {
|
|
|
8201
8202
|
controls?: SettingUIControl[];
|
|
8202
8203
|
help?: SettingUIHelpType;
|
|
8203
8204
|
};
|
|
8204
|
-
type
|
|
8205
|
+
type SettingUITab = {
|
|
8205
8206
|
label?: LabelWithLang;
|
|
8206
8207
|
controls?: SettingUIControl[];
|
|
8207
8208
|
hide?: boolean;
|
|
@@ -8213,7 +8214,6 @@ type SettingUIToggleGroup = {
|
|
|
8213
8214
|
controls?: SettingUIControl[];
|
|
8214
8215
|
};
|
|
8215
8216
|
type SettingUIToggleSettings = {
|
|
8216
|
-
type: 'control' | 'toggleGroup';
|
|
8217
8217
|
controls?: SettingUIControl[];
|
|
8218
8218
|
isActiveDefault?: boolean;
|
|
8219
8219
|
} & SettingUIControl & SettingUIToggleGroup;
|
|
@@ -8226,7 +8226,7 @@ type SettingUIGroup = {
|
|
|
8226
8226
|
controls?: SettingUIControl[];
|
|
8227
8227
|
moreSettings?: SettingUIMoreSetting;
|
|
8228
8228
|
toggleSettings?: SettingUIToggleSettings[];
|
|
8229
|
-
states?:
|
|
8229
|
+
states?: SettingUITab[];
|
|
8230
8230
|
help?: SettingUIHelpType;
|
|
8231
8231
|
options?: {
|
|
8232
8232
|
disableMessage?: string;
|