dataset-types 3.0.12 → 3.0.13

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 +16 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -229,4 +229,20 @@ export interface IDataTypeMeta {
229
229
  tooltip: string;
230
230
  value: (ci: IConfigurationItem) => string;
231
231
  }
232
+ export interface IMenuLink {
233
+ path: string;
234
+ label: string;
235
+ match?: RegExp;
236
+ }
237
+ export interface IMenuGroup {
238
+ label: string;
239
+ links: IMenuLink[];
240
+ }
241
+ export interface IMenuAction {
242
+ icon?: string;
243
+ label?: string;
244
+ size?: 'small' | 'large' | 'extra small' | 'medium';
245
+ isActive?: boolean;
246
+ click?: () => void;
247
+ }
232
248
  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.13",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",