@prefecthq/prefect-ui-library 3.11.32 → 3.11.33
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/{RunsPageWithDefaultFilter-CUbsARTw.mjs → RunsPageWithDefaultFilter-BQ7LDpW1.mjs} +2 -2
- package/dist/{RunsPageWithDefaultFilter-CUbsARTw.mjs.map → RunsPageWithDefaultFilter-BQ7LDpW1.mjs.map} +1 -1
- package/dist/{WorkQueueToWorkPoolQueueRedirect-BVs60ohc.mjs → WorkQueueToWorkPoolQueueRedirect-IqLDu8PG.mjs} +2 -2
- package/dist/{WorkQueueToWorkPoolQueueRedirect-BVs60ohc.mjs.map → WorkQueueToWorkPoolQueueRedirect-IqLDu8PG.mjs.map} +1 -1
- package/dist/{index-B-zpc4Zz.mjs → index-cs4CfvMO.mjs} +23 -4
- package/dist/{index-B-zpc4Zz.mjs.map → index-cs4CfvMO.mjs.map} +1 -1
- package/dist/prefect-ui-library.mjs +1 -1
- package/dist/prefect-ui-library.umd.js +1 -1
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/types/src/types/SortOptionTypes.d.ts +1 -1
- package/package.json +1 -1
- package/src/types/SortOptionTypes.ts +20 -1
|
@@ -35,7 +35,7 @@ export declare const deploymentSortOptions: {
|
|
|
35
35
|
label: string;
|
|
36
36
|
value: string;
|
|
37
37
|
}[];
|
|
38
|
-
export declare const flowRunSortValues: readonly ["ID_DESC", "END_TIME_DESC", "CREATED_DESC", "NAME_DESC", "NAME_ASC", "EXPECTED_START_TIME_DESC", "EXPECTED_START_TIME_ASC", "NEXT_SCHEDULED_START_TIME_ASC", "START_TIME_DESC", "START_TIME_ASC"];
|
|
38
|
+
export declare const flowRunSortValues: readonly ["ID_DESC", "END_TIME_DESC", "CREATED_DESC", "NAME_DESC", "NAME_ASC", "EXPECTED_START_TIME_DESC", "EXPECTED_START_TIME_ASC", "NEXT_SCHEDULED_START_TIME_ASC", "START_TIME_DESC", "START_TIME_ASC", "DURATION_DESC", "LATENESS_DESC"];
|
|
39
39
|
export type FlowRunSortValues = typeof flowRunSortValues[number];
|
|
40
40
|
export declare const defaultFlowRunSort: FlowRunSortValues;
|
|
41
41
|
export declare function isFlowRunSortValue(value: unknown): value is FlowRunSortValues;
|
package/package.json
CHANGED
|
@@ -67,7 +67,26 @@ export const deploymentSortOptions = [
|
|
|
67
67
|
{ label: 'Z to A', value: 'NAME_DESC' },
|
|
68
68
|
]
|
|
69
69
|
|
|
70
|
-
export const flowRunSortValues = [
|
|
70
|
+
export const flowRunSortValues = [
|
|
71
|
+
'ID_DESC',
|
|
72
|
+
'END_TIME_DESC',
|
|
73
|
+
'CREATED_DESC',
|
|
74
|
+
'NAME_DESC',
|
|
75
|
+
'NAME_ASC',
|
|
76
|
+
'EXPECTED_START_TIME_DESC',
|
|
77
|
+
'EXPECTED_START_TIME_ASC',
|
|
78
|
+
'NEXT_SCHEDULED_START_TIME_ASC',
|
|
79
|
+
'START_TIME_DESC',
|
|
80
|
+
'START_TIME_ASC',
|
|
81
|
+
/**
|
|
82
|
+
* Only supported by cloud
|
|
83
|
+
*/
|
|
84
|
+
'DURATION_DESC',
|
|
85
|
+
/**
|
|
86
|
+
* Only supported by cloud
|
|
87
|
+
*/
|
|
88
|
+
'LATENESS_DESC',
|
|
89
|
+
] as const
|
|
71
90
|
export type FlowRunSortValues = typeof flowRunSortValues[number]
|
|
72
91
|
export const defaultFlowRunSort: FlowRunSortValues = 'START_TIME_DESC'
|
|
73
92
|
|