@kestra-io/ui-libs 0.0.217 → 0.0.218
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/utils/plugins.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export type PluginElement = {
|
|
2
|
+
cls: string;
|
|
3
|
+
deprecated?: boolean;
|
|
4
|
+
};
|
|
1
5
|
export type Plugin = {
|
|
2
6
|
name: string;
|
|
3
7
|
title: string;
|
|
@@ -11,7 +15,7 @@ export type Plugin = {
|
|
|
11
15
|
aliases?: string[];
|
|
12
16
|
guides?: string[];
|
|
13
17
|
} & {
|
|
14
|
-
[pluginElement: string]:
|
|
18
|
+
[pluginElement: string]: PluginElement[];
|
|
15
19
|
};
|
|
16
20
|
export declare function isEntryAPluginElementPredicate(key: string, value: any): boolean;
|
|
17
21
|
export declare function subGroupName(subGroupWrapper: Plugin): string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../src/utils/plugins.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,MAAM,GAAG;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB,GAAG;IACA,CAAC,aAAa,EAAE,MAAM,GAAG,
|
|
1
|
+
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../src/utils/plugins.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB,CAAA;AAED,MAAM,MAAM,MAAM,GAAG;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB,GAAG;IACA,CAAC,aAAa,EAAE,MAAM,GAAG,aAAa,EAAE,CAAC;CAC5C,CAAA;AAED,wBAAgB,8BAA8B,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,WAKrE;AAED,wBAAgB,YAAY,CAAC,eAAe,EAAE,MAAM,UAGnD"}
|
package/package.json
CHANGED
package/src/utils/plugins.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export type PluginElement = {
|
|
2
|
+
cls: string;
|
|
3
|
+
deprecated?: boolean;
|
|
4
|
+
}
|
|
5
|
+
|
|
1
6
|
export type Plugin = {
|
|
2
7
|
name: string;
|
|
3
8
|
title: string;
|
|
@@ -11,7 +16,7 @@ export type Plugin = {
|
|
|
11
16
|
aliases?: string[];
|
|
12
17
|
guides?: string[];
|
|
13
18
|
} & {
|
|
14
|
-
[pluginElement: string]:
|
|
19
|
+
[pluginElement: string]: PluginElement[];
|
|
15
20
|
}
|
|
16
21
|
|
|
17
22
|
export function isEntryAPluginElementPredicate(key: string, value: any) {
|