@prefecthq/prefect-ui-library 2.6.19 → 2.6.20
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/{FlowRunsPageWithDefaultFilter-u-oDkQ8k.mjs → FlowRunsPageWithDefaultFilter-sU-DII5j.mjs} +2 -2
- package/dist/{FlowRunsPageWithDefaultFilter-u-oDkQ8k.mjs.map → FlowRunsPageWithDefaultFilter-sU-DII5j.mjs.map} +1 -1
- package/dist/{index-nhSi3CkJ.mjs → index-s3Y3AxKm.mjs} +10902 -10770
- package/dist/index-s3Y3AxKm.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +681 -680
- package/dist/prefect-ui-library.umd.js +79 -79
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/FlowRunGraphArtifactsPopover.vue.d.ts +6 -2
- package/dist/types/src/components/FlowRunGraphPopover.vue.d.ts +6 -2
- package/dist/types/src/components/FlowRunGraphStatePopover.vue.d.ts +20 -0
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/types/src/maps/index.d.ts +3 -0
- package/dist/types/src/maps/runGraphData.d.ts +3 -2
- package/dist/types/src/models/api/RunGraphDataResponse.d.ts +8 -1
- package/dist/types/src/services/Mapper.d.ts +3 -0
- package/dist/types/src/utilities/object.d.ts +3 -0
- package/package.json +2 -2
- package/dist/index-nhSi3CkJ.mjs.map +0 -1
|
@@ -276,6 +276,9 @@ export declare const mapper: Mapper<{
|
|
|
276
276
|
RunGraphArtifactResponse: {
|
|
277
277
|
RunGraphArtifact: MapFunction<import("../models/api/RunGraphDataResponse").RunGraphArtifactResponse, import("@prefecthq/graphs").RunGraphArtifact>;
|
|
278
278
|
};
|
|
279
|
+
RunGraphStateResponse: {
|
|
280
|
+
RunGraphStateEvent: MapFunction<import("../models/api/RunGraphDataResponse").RunGraphStateResponse, import("@prefecthq/graphs").RunGraphStateEvent>;
|
|
281
|
+
};
|
|
279
282
|
RunHistory: {
|
|
280
283
|
FlowRunHistoryResponse: MapFunction<import("..").RunHistory, import("..").FlowRunHistoryResponse>;
|
|
281
284
|
DivergingBarChartItem: MapFunction<import("..").RunHistory, import("@prefecthq/vue-charts").DivergingBarChartItem>;
|
|
@@ -12,6 +12,9 @@ export declare function isEmptyObject(value: unknown): value is Record<string, n
|
|
|
12
12
|
export declare function isTypeRequired<T extends Record<PropertyKey, unknown>>(value: Partial<T>): value is Required<T>;
|
|
13
13
|
export declare function hasString<T extends Record<PropertyKey, unknown>>(obj: T, str: string): boolean;
|
|
14
14
|
export declare function isRecord(item: unknown): item is Record<PropertyKey, unknown>;
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated Please use lodash.merge instead.
|
|
17
|
+
*/
|
|
15
18
|
export declare function merge<T extends Record<PropertyKey, unknown>>(target: T, ...sources: T[]): T;
|
|
16
19
|
type EmptyObjectsRemoved<T extends Record<PropertyKey, unknown>> = {
|
|
17
20
|
[P in keyof T]: T[P] extends Record<PropertyKey, unknown> ? EmptyObjectsRemoved<T[P]> | undefined : T[P];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prefecthq/prefect-ui-library",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"vue-router": "^4.0.12"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@prefecthq/graphs": "2.2.
|
|
72
|
+
"@prefecthq/graphs": "2.2.5",
|
|
73
73
|
"@types/lodash.isequal": "4.5.8",
|
|
74
74
|
"axios": "1.6.2",
|
|
75
75
|
"cronstrue": "^2.48.0",
|