dataset-types 3.0.12 → 3.0.14

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.
Files changed (2) hide show
  1. package/index.d.ts +17 -0
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -95,6 +95,7 @@ export interface IProcessingConfig {
95
95
  remove?: boolean;
96
96
  record?: boolean;
97
97
  modes?: IChannel[];
98
+ notificationenabled?: boolean;
98
99
  }
99
100
  export interface IPersistResult {
100
101
  data: any[] | any;
@@ -229,4 +230,20 @@ export interface IDataTypeMeta {
229
230
  tooltip: string;
230
231
  value: (ci: IConfigurationItem) => string;
231
232
  }
233
+ export interface IMenuLink {
234
+ path: string;
235
+ label: string;
236
+ match?: RegExp;
237
+ }
238
+ export interface IMenuGroup {
239
+ label: string;
240
+ links: IMenuLink[];
241
+ }
242
+ export interface IMenuAction {
243
+ icon?: string;
244
+ label?: string;
245
+ size?: 'small' | 'large' | 'extra small' | 'medium';
246
+ isActive?: boolean;
247
+ click?: () => void;
248
+ }
232
249
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.12",
3
+ "version": "3.0.14",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",
@@ -30,4 +30,4 @@
30
30
  "prettier": "^3.4.2",
31
31
  "typescript": "^5.7.2"
32
32
  }
33
- }
33
+ }