@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.0.0-dev.354",
3
+ "version": "2.0.0-dev.356",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",