@gem-sdk/core 2.0.0-dev.354 → 2.0.0-dev.356
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 +12 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -36314,9 +36314,21 @@ type SettingUIToggleSettings = {
|
|
|
36314
36314
|
controls?: SettingUIControl[];
|
|
36315
36315
|
isActiveDefault?: boolean;
|
|
36316
36316
|
} & SettingUIControl & SettingUIToggleGroup;
|
|
36317
|
+
type SettingUIMessageConfig = {
|
|
36318
|
+
type: 'success' | 'error' | 'warning' | 'info';
|
|
36319
|
+
closable?: boolean;
|
|
36320
|
+
title?: string;
|
|
36321
|
+
message?: string;
|
|
36322
|
+
link?: {
|
|
36323
|
+
label: string;
|
|
36324
|
+
url?: string;
|
|
36325
|
+
isLinkToDashboard?: boolean;
|
|
36326
|
+
};
|
|
36327
|
+
};
|
|
36317
36328
|
type SettingUIGroup = {
|
|
36318
36329
|
label?: LabelWithLang;
|
|
36319
36330
|
message?: string;
|
|
36331
|
+
messageConfig?: SettingUIMessageConfig;
|
|
36320
36332
|
disableToggle?: boolean;
|
|
36321
36333
|
conditionDisplay?: string;
|
|
36322
36334
|
conditionEnable?: string;
|