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