@kestra-io/ui-libs 0.0.218 → 0.0.220
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/components/nodes/BasicNode.vue.d.ts +41 -1
- package/dist/components/nodes/BasicNode.vue.d.ts.map +1 -1
- package/dist/components/nodes/TaskNode.vue.d.ts +36 -1
- package/dist/components/nodes/TaskNode.vue.d.ts.map +1 -1
- package/dist/components/nodes/TriggerNode.vue.d.ts +25 -1
- package/dist/components/nodes/TriggerNode.vue.d.ts.map +1 -1
- package/dist/components/plugins/PluginIndex.vue.d.ts.map +1 -1
- package/dist/components/topology/Topology.vue.d.ts +18 -4
- package/dist/components/topology/Topology.vue.d.ts.map +1 -1
- package/dist/components/topology/injectionKeys.d.ts +4 -0
- package/dist/components/topology/injectionKeys.d.ts.map +1 -0
- package/dist/kestra-index.cjs.js +16 -20
- package/dist/kestra-index.cjs.js.map +1 -1
- package/dist/kestra-index.es.js +4150 -4921
- package/dist/kestra-index.es.js.map +1 -1
- package/dist/ui-libs.css +1 -1
- package/package.json +1 -2
- package/src/components/nodes/BasicNode.vue +6 -2
- package/src/components/nodes/TaskNode.vue +9 -3
- package/src/components/nodes/TriggerNode.vue +6 -2
- package/src/components/plugins/PluginIndex.vue +2 -2
- package/src/components/topology/Topology.vue +14 -3
- package/src/components/topology/injectionKeys.ts +4 -0
|
@@ -1,7 +1,47 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<any, {}, {
|
|
2
2
|
filter: undefined;
|
|
3
3
|
isOpen: boolean;
|
|
4
|
-
},
|
|
4
|
+
}, {
|
|
5
|
+
Utils(): {
|
|
6
|
+
capitalize: (str: string) => string;
|
|
7
|
+
dateFilter: (dateString: string, format: string) => any;
|
|
8
|
+
splitFirst(str: string, separator: string): string;
|
|
9
|
+
duration(isoString: string): number;
|
|
10
|
+
humanDuration(value: number | string, options?: import("humanize-duration").Options & {
|
|
11
|
+
languages?: any;
|
|
12
|
+
}): string;
|
|
13
|
+
afterLastDot(str: string): string | undefined;
|
|
14
|
+
distinctFilter(value: any, index: number, array: any[]): boolean;
|
|
15
|
+
};
|
|
16
|
+
borderColor(): any;
|
|
17
|
+
EVENTS(): {
|
|
18
|
+
readonly EDIT: "edit";
|
|
19
|
+
readonly DELETE: "delete";
|
|
20
|
+
readonly SHOW_DESCRIPTION: "showDescription";
|
|
21
|
+
readonly COLLAPSE: "collapse";
|
|
22
|
+
readonly EXPAND: "expand";
|
|
23
|
+
readonly OPEN_LINK: "openLink";
|
|
24
|
+
readonly ADD_TASK: "addTask";
|
|
25
|
+
readonly SHOW_LOGS: "showLogs";
|
|
26
|
+
readonly MOUSE_OVER: "mouseover";
|
|
27
|
+
readonly MOUSE_LEAVE: "mouseleave";
|
|
28
|
+
readonly ADD_ERROR: "addError";
|
|
29
|
+
readonly EXPAND_DEPENDENCIES: "expandDependencies";
|
|
30
|
+
readonly SHOW_CONDITION: "showCondition";
|
|
31
|
+
};
|
|
32
|
+
expandable(): any;
|
|
33
|
+
description(): any;
|
|
34
|
+
trimmedId(): string | undefined;
|
|
35
|
+
taskIconBg(): any;
|
|
36
|
+
stateColor(): "success" | "primary" | "danger" | "warning" | null;
|
|
37
|
+
classes(): {
|
|
38
|
+
[x: string]: any;
|
|
39
|
+
"unused-path": any;
|
|
40
|
+
disabled: any;
|
|
41
|
+
};
|
|
42
|
+
cls(): any;
|
|
43
|
+
hoverTooltip(): string | undefined;
|
|
44
|
+
}, {
|
|
5
45
|
mouseover(): void;
|
|
6
46
|
mouseleave(): void;
|
|
7
47
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("edit" | "delete" | "showDescription" | "expand" | "openLink" | "addTask" | "showLogs" | "mouseover" | "mouseleave" | "addError")[], "edit" | "delete" | "showDescription" | "expand" | "openLink" | "addTask" | "showLogs" | "mouseover" | "mouseleave" | "addError", import("vue").PublicProps, Readonly<any> & Readonly<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BasicNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/BasicNode.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BasicNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/BasicNode.vue"],"names":[],"mappings":";;;;;;;;;;qBAqSI,CApPkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAmcQ,GAAG;mCACW,GAAG;kCACJ,GAAG;;;6BA+TjB,CAAC,EAAE,CAAC"}
|
|
@@ -1,4 +1,39 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<any, {}, {},
|
|
1
|
+
declare const _default: import("vue").DefineComponent<any, {}, {}, {
|
|
2
|
+
SECTIONS(): {
|
|
3
|
+
readonly TASKS: "TASKS";
|
|
4
|
+
readonly TRIGGERS: "TRIGGERS";
|
|
5
|
+
readonly TASK_RUNNERS: "TASK_RUNNERS";
|
|
6
|
+
};
|
|
7
|
+
EVENTS(): {
|
|
8
|
+
readonly EDIT: "edit";
|
|
9
|
+
readonly DELETE: "delete";
|
|
10
|
+
readonly SHOW_DESCRIPTION: "showDescription";
|
|
11
|
+
readonly COLLAPSE: "collapse";
|
|
12
|
+
readonly EXPAND: "expand";
|
|
13
|
+
readonly OPEN_LINK: "openLink";
|
|
14
|
+
readonly ADD_TASK: "addTask";
|
|
15
|
+
readonly SHOW_LOGS: "showLogs";
|
|
16
|
+
readonly MOUSE_OVER: "mouseover";
|
|
17
|
+
readonly MOUSE_LEAVE: "mouseleave";
|
|
18
|
+
readonly ADD_ERROR: "addError";
|
|
19
|
+
readonly EXPAND_DEPENDENCIES: "expandDependencies";
|
|
20
|
+
readonly SHOW_CONDITION: "showCondition";
|
|
21
|
+
};
|
|
22
|
+
color(): any;
|
|
23
|
+
taskId(): string | undefined;
|
|
24
|
+
taskRunList(): any;
|
|
25
|
+
taskExecution(): any;
|
|
26
|
+
taskRuns(): any;
|
|
27
|
+
state(): any;
|
|
28
|
+
classes(): {
|
|
29
|
+
"execution-no-taskrun": any;
|
|
30
|
+
};
|
|
31
|
+
expandData(): {
|
|
32
|
+
id: any;
|
|
33
|
+
type: any;
|
|
34
|
+
};
|
|
35
|
+
dataWithLink(): any;
|
|
36
|
+
}, {
|
|
2
37
|
forwardEvent(event: any, payload: any): void;
|
|
3
38
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("edit" | "delete" | "expand" | "openLink" | "addTask" | "showLogs" | "mouseover" | "mouseleave" | "addError" | "showCondition")[], "edit" | "delete" | "expand" | "openLink" | "addTask" | "showLogs" | "mouseover" | "mouseleave" | "addError" | "showCondition", import("vue").PublicProps, Readonly<any> & Readonly<{
|
|
4
39
|
onMouseleave?: ((...args: any[]) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TaskNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/TaskNode.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TaskNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/TaskNode.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA6PI,KA9NW;;;6BA8NX,KA5NK,kBA4NL,gBA5NoC;;;6BA4NpC,KA3NS;;;6BA2NT,KAzN2B,kBAyN3B,gBAzN0D;;;6BAyN1D,KArNG,kBAqNH,gBArNkC;;;6BAqNlC,KAnNM;;;6BAmNN,KAlNiD;;;;8CAkNjD,gBAzO+C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAyO/C,KA9NW;;;yBA8NX,KA5NK,kBA4NL,gBA5NoC;;;yBA4NpC,KA3NS;;;yBA2NT,KAzN2B,kBAyN3B,gBAzN0D;;;yBAyN1D,KArNG,kBAqNH,gBArNkC;;;yBAqNlC,KAnNM;;;yBAmNN,KAlNiD;;;;0CAkNjD,gBAzO+C"}
|
|
@@ -1,4 +1,28 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<any, {}, {},
|
|
1
|
+
declare const _default: import("vue").DefineComponent<any, {}, {}, {
|
|
2
|
+
SECTIONS(): {
|
|
3
|
+
readonly TASKS: "TASKS";
|
|
4
|
+
readonly TRIGGERS: "TRIGGERS";
|
|
5
|
+
readonly TASK_RUNNERS: "TASK_RUNNERS";
|
|
6
|
+
};
|
|
7
|
+
EVENTS(): {
|
|
8
|
+
readonly EDIT: "edit";
|
|
9
|
+
readonly DELETE: "delete";
|
|
10
|
+
readonly SHOW_DESCRIPTION: "showDescription";
|
|
11
|
+
readonly COLLAPSE: "collapse";
|
|
12
|
+
readonly EXPAND: "expand";
|
|
13
|
+
readonly OPEN_LINK: "openLink";
|
|
14
|
+
readonly ADD_TASK: "addTask";
|
|
15
|
+
readonly SHOW_LOGS: "showLogs";
|
|
16
|
+
readonly MOUSE_OVER: "mouseover";
|
|
17
|
+
readonly MOUSE_LEAVE: "mouseleave";
|
|
18
|
+
readonly ADD_ERROR: "addError";
|
|
19
|
+
readonly EXPAND_DEPENDENCIES: "expandDependencies";
|
|
20
|
+
readonly SHOW_CONDITION: "showCondition";
|
|
21
|
+
};
|
|
22
|
+
color(): any;
|
|
23
|
+
formattedData(): any;
|
|
24
|
+
triggerId(): string | undefined;
|
|
25
|
+
}, {
|
|
2
26
|
forwardEvent(event: any, payload: any): void;
|
|
3
27
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("edit" | "delete" | "showDescription")[], "edit" | "delete" | "showDescription", import("vue").PublicProps, Readonly<any> & Readonly<{
|
|
4
28
|
onEdit?: ((...args: any[]) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TriggerNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/TriggerNode.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TriggerNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/TriggerNode.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAuHI,KApFE;;;6BAoFF,KAjFG,kBAiFH,gBA/Ee;;;6BA+Ef,KA9E4C;;;6BA8E5C,KA5ES,kBA4ET,gBA5EwC;;;6BA4ExC,KA1Ec,kBA0Ed,gBAzEE;;;6BAyEF,KAtEJ;;;6BAsEI,KAnEW;;;;8CAmEX,gBAhGQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAgGR,KApFE;;;yBAoFF,KAjFG,kBAiFH,gBA/Ee;;;yBA+Ef,KA9E4C;;;yBA8E5C,KA5ES,kBA4ET,gBA5EwC;;;yBA4ExC,KA1Ec,kBA0Ed,gBAzEE;;;yBAyEF,KAtEJ;;;yBAsEI,KAnEW;;;;0CAmEX,gBAhGQ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PluginIndex.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/PluginIndex.vue"],"names":[],"mappings":"AA4FI,OAAO,KAAK,EAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"PluginIndex.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/PluginIndex.vue"],"names":[],"mappings":"AA4FI,OAAO,KAAK,EAAC,MAAM,EAAgB,MAAM,qBAAqB,CAAC;AAM/D,KAAK,WAAW,GAAG;IACf,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CAChC,CAAC;AAyCN,iBAAS,cAAc;WAgHT,OAAO,IAA6B;;;;YAVpB,GAAG;;;;EAehC;AAmBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;mBA/ImB,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC;kBAAY,MAAM;;;;mBAAnD,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC;kBAAY,MAAM;;6FAuJzF,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -32,12 +32,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32
32
|
};
|
|
33
33
|
flowId: {
|
|
34
34
|
type: StringConstructor;
|
|
35
|
-
required: false;
|
|
36
35
|
default: undefined;
|
|
37
36
|
};
|
|
38
37
|
namespace: {
|
|
39
38
|
type: StringConstructor;
|
|
40
|
-
required: false;
|
|
41
39
|
default: undefined;
|
|
42
40
|
};
|
|
43
41
|
expandedSubflows: {
|
|
@@ -56,6 +54,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
56
54
|
type: BooleanConstructor;
|
|
57
55
|
default: boolean;
|
|
58
56
|
};
|
|
57
|
+
execution: {
|
|
58
|
+
type: ObjectConstructor;
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
61
|
+
subflowsExecutions: {
|
|
62
|
+
type: PropType<Record<string, any[]>>;
|
|
63
|
+
default: () => {};
|
|
64
|
+
};
|
|
59
65
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
60
66
|
edit: (...args: any[]) => void;
|
|
61
67
|
delete: (...args: any[]) => void;
|
|
@@ -102,12 +108,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
102
108
|
};
|
|
103
109
|
flowId: {
|
|
104
110
|
type: StringConstructor;
|
|
105
|
-
required: false;
|
|
106
111
|
default: undefined;
|
|
107
112
|
};
|
|
108
113
|
namespace: {
|
|
109
114
|
type: StringConstructor;
|
|
110
|
-
required: false;
|
|
111
115
|
default: undefined;
|
|
112
116
|
};
|
|
113
117
|
expandedSubflows: {
|
|
@@ -126,6 +130,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
126
130
|
type: BooleanConstructor;
|
|
127
131
|
default: boolean;
|
|
128
132
|
};
|
|
133
|
+
execution: {
|
|
134
|
+
type: ObjectConstructor;
|
|
135
|
+
default: undefined;
|
|
136
|
+
};
|
|
137
|
+
subflowsExecutions: {
|
|
138
|
+
type: PropType<Record<string, any[]>>;
|
|
139
|
+
default: () => {};
|
|
140
|
+
};
|
|
129
141
|
}>> & Readonly<{
|
|
130
142
|
onEdit?: ((...args: any[]) => any) | undefined;
|
|
131
143
|
onDelete?: ((...args: any[]) => any) | undefined;
|
|
@@ -152,6 +164,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
152
164
|
expandedSubflows: unknown[];
|
|
153
165
|
iconComponent: Record<string, any>;
|
|
154
166
|
enableSubflowInteraction: boolean;
|
|
167
|
+
execution: Record<string, any>;
|
|
168
|
+
subflowsExecutions: Record<string, any[]>;
|
|
155
169
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
156
170
|
export default _default;
|
|
157
171
|
//# sourceMappingURL=Topology.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Topology.vue.d.ts","sourceRoot":"","sources":["../../../src/components/topology/Topology.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Topology.vue.d.ts","sourceRoot":"","sources":["../../../src/components/topology/Topology.vue"],"names":[],"mappings":"AAgfI,OAAO,EAAgC,QAAQ,EAAsB,MAAM,KAAK,CAAC;AAwBjF,OAAqB,EAAC,KAAK,SAAS,EAAC,MAAM,0BAA0B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAy0B9C,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgCnB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAhC/B,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgCnB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjE3D,wBAsEG"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ComputedRef, InjectionKey } from "vue";
|
|
2
|
+
export declare const EXECUTION_INJECTION_KEY: InjectionKey<ComputedRef<any>>;
|
|
3
|
+
export declare const SUBFLOWS_EXECUTIONS_INJECTION_KEY: InjectionKey<ComputedRef<Record<string, any[]>>>;
|
|
4
|
+
//# sourceMappingURL=injectionKeys.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"injectionKeys.d.ts","sourceRoot":"","sources":["../../../src/components/topology/injectionKeys.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,WAAW,EAAE,YAAY,EAAC,MAAM,KAAK,CAAA;AAElD,eAAO,MAAM,uBAAuB,EAAwC,YAAY,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAA;AAC1G,eAAO,MAAM,iCAAiC,EAAkD,YAAY,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA"}
|