@prefecthq/prefect-ui-library 1.6.39 → 1.6.40
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/{index-dd600e4d.mjs → index-159b51a8.mjs} +7642 -7511
- package/dist/index-159b51a8.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +1 -1
- package/dist/prefect-ui-library.umd.js +66 -66
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/FlowRunFilteredList.vue.d.ts +4 -4
- package/dist/types/src/types/states.d.ts +2 -1
- package/dist/types/src/utilities/delete.d.ts +1 -1
- package/dist/{viewport.es-ae91b8e8-6cbc1fed.mjs → viewport.es-ae91b8e8-90800189.mjs} +2 -2
- package/dist/{viewport.es-ae91b8e8-6cbc1fed.mjs.map → viewport.es-ae91b8e8-90800189.mjs.map} +1 -1
- package/package.json +4 -4
- package/dist/index-dd600e4d.mjs.map +0 -1
- /package/dist/types/src/components/{WorkPoolLateCount.vue.d.ts → DashboardWorkPoolLateCount.vue.d.ts} +0 -0
|
@@ -5,26 +5,26 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
5
5
|
required: true;
|
|
6
6
|
};
|
|
7
7
|
states: {
|
|
8
|
-
type: import("vue").PropType<("Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]>;
|
|
8
|
+
type: import("vue").PropType<("AwaitingRetry" | "Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]>;
|
|
9
9
|
};
|
|
10
10
|
disableDeletion: {
|
|
11
11
|
type: import("vue").PropType<boolean>;
|
|
12
12
|
};
|
|
13
13
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
-
"update:states": (value: ("Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]) => void;
|
|
14
|
+
"update:states": (value: ("AwaitingRetry" | "Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]) => void;
|
|
15
15
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
16
|
flowRunFilter: {
|
|
17
17
|
type: import("vue").PropType<FlowRunsFilter>;
|
|
18
18
|
required: true;
|
|
19
19
|
};
|
|
20
20
|
states: {
|
|
21
|
-
type: import("vue").PropType<("Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]>;
|
|
21
|
+
type: import("vue").PropType<("AwaitingRetry" | "Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]>;
|
|
22
22
|
};
|
|
23
23
|
disableDeletion: {
|
|
24
24
|
type: import("vue").PropType<boolean>;
|
|
25
25
|
};
|
|
26
26
|
}>> & {
|
|
27
|
-
"onUpdate:states"?: ((value: ("Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]) => any) | undefined;
|
|
27
|
+
"onUpdate:states"?: ((value: ("AwaitingRetry" | "Cancelled" | "Completed" | "Crashed" | "Failed" | "Late" | "Pending" | "Retrying" | "Running" | "Scheduled" | "Resuming" | "Paused" | "Cancelling" | "TimedOut")[]) => any) | undefined;
|
|
28
28
|
}, {}, {}>, {
|
|
29
29
|
"empty-message"?(_: {}): any;
|
|
30
30
|
}>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
export declare const prefectStateNames: readonly ["Scheduled", "Late", "Resuming", "Pending", "Paused", "Running", "Retrying", "Completed", "Cancelled", "Cancelling", "Crashed", "Failed", "TimedOut"];
|
|
1
|
+
export declare const prefectStateNames: readonly ["Scheduled", "Late", "Resuming", "AwaitingRetry", "Pending", "Paused", "Running", "Retrying", "Completed", "Cancelled", "Cancelling", "Crashed", "Failed", "TimedOut"];
|
|
2
2
|
export type PrefectStateNames = typeof prefectStateNames[number];
|
|
3
3
|
export declare const prefectStateNameTypes: {
|
|
4
4
|
readonly Scheduled: "scheduled";
|
|
5
5
|
readonly Late: "scheduled";
|
|
6
6
|
readonly Resuming: "scheduled";
|
|
7
|
+
readonly AwaitingRetry: "scheduled";
|
|
7
8
|
readonly Pending: "pending";
|
|
8
9
|
readonly Paused: "paused";
|
|
9
10
|
readonly Running: "running";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Action } from '@prefecthq/vue-compositions';
|
|
2
|
-
export type ItemType = 'Flow' | 'Deployment' | 'Flow run' | 'Work queue' | 'Block' | 'Notification' | 'Task run' | 'Concurrency Limit' | 'Work pool'
|
|
2
|
+
export type ItemType = 'Flow' | 'Deployment' | 'Flow run' | 'Work queue' | 'Block' | 'Notification' | 'Task run' | 'Concurrency Limit' | 'Work pool';
|
|
3
3
|
type MaybeSingleParam<T extends Action, Params = Parameters<T>> = Params extends [unknown] ? Params[0] | Params : Params;
|
|
4
4
|
export declare function deleteItem<T extends Action>(args: MaybeSingleParam<T>, endpoint: T, type: ItemType): Promise<ReturnType<T> | void>;
|
|
5
5
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { k as O, f as k, $ as b, l as c } from "./index-
|
|
1
|
+
import { k as O, f as k, $ as b, l as c } from "./index-159b51a8.mjs";
|
|
2
2
|
import "vue";
|
|
3
3
|
import "@prefecthq/vue-charts";
|
|
4
4
|
import "@prefecthq/prefect-design";
|
|
@@ -1535,4 +1535,4 @@ export {
|
|
|
1535
1535
|
C as Viewport,
|
|
1536
1536
|
N as Wheel
|
|
1537
1537
|
};
|
|
1538
|
-
//# sourceMappingURL=viewport.es-ae91b8e8-
|
|
1538
|
+
//# sourceMappingURL=viewport.es-ae91b8e8-90800189.mjs.map
|