@prefecthq/prefect-ui-library 2.4.9 → 2.4.11
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-9I9p9qHt.mjs → FlowRunsPageWithDefaultFilter-aHlaX_JJ.mjs} +2 -2
- package/dist/{FlowRunsPageWithDefaultFilter-9I9p9qHt.mjs.map → FlowRunsPageWithDefaultFilter-aHlaX_JJ.mjs.map} +1 -1
- package/dist/{index-EFGqOADn.mjs → index-Dteax-3L.mjs} +12231 -12149
- package/dist/index-Dteax-3L.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +702 -700
- package/dist/prefect-ui-library.umd.js +78 -78
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/DateRangeSelect.vue.d.ts +25 -0
- package/dist/types/src/components/index.d.ts +5 -4
- package/dist/types/src/compositions/index.d.ts +1 -0
- package/dist/types/src/compositions/useWorkspaceDashboardFilter.d.ts +2 -0
- package/dist/types/src/maps/dateRangeSelectValue.d.ts +9 -0
- package/dist/types/src/maps/index.d.ts +7 -0
- package/dist/types/src/mocks/index.d.ts +1 -1
- package/dist/types/src/services/Mapper.d.ts +7 -0
- package/dist/types/src/services/Mocker.d.ts +1 -1
- package/dist/types/src/types/dashboard.d.ts +2 -1
- package/package.json +2 -2
- package/dist/index-EFGqOADn.mjs.map +0 -1
|
@@ -104,6 +104,13 @@ export declare const mapper: Mapper<{
|
|
|
104
104
|
Date: {
|
|
105
105
|
string: MapFunction<Date, string>;
|
|
106
106
|
};
|
|
107
|
+
DateRangeSelectValue: {
|
|
108
|
+
DateRange: MapFunction<NonNullable<import("@prefecthq/prefect-design").DateRangeSelectValue>, {
|
|
109
|
+
startDate: Date;
|
|
110
|
+
endDate: Date;
|
|
111
|
+
timeSpanInSeconds: number;
|
|
112
|
+
}>;
|
|
113
|
+
};
|
|
107
114
|
DeploymentFilter: {
|
|
108
115
|
DeploymentFilterRequest: MapFunction<import("..").DeploymentFilter, import("../models/api/Filters").DeploymentFilterRequest>;
|
|
109
116
|
};
|
|
@@ -23,7 +23,7 @@ export declare const mocker: Mocker<{
|
|
|
23
23
|
blockType: MockFunction<import("..").BlockType, [(Partial<import("..").BlockType> | undefined)?]>;
|
|
24
24
|
blockTypeSnippet: MockFunction<string, []>;
|
|
25
25
|
boolean: MockFunction<boolean, []>;
|
|
26
|
-
char: MockFunction<"h" | "d" | "w" | "m" | "y" | "a" | "b" | "c" | "e" | "f" | "g" | "i" | "j" | "k" | "l" | "n" | "o" | "p" | "q" | "r" | "
|
|
26
|
+
char: MockFunction<"h" | "d" | "w" | "m" | "y" | "s" | "a" | "b" | "c" | "e" | "f" | "g" | "i" | "j" | "k" | "l" | "n" | "o" | "p" | "q" | "r" | "t" | "u" | "v" | "x" | "z", []>;
|
|
27
27
|
collectionItem: MockFunction<import("..").CollectionItem, [(Partial<import("..").CollectionItem> | undefined)?]>;
|
|
28
28
|
concurrencyLimit: MockFunction<import("..").ConcurrencyLimit, [(Partial<import("..").ConcurrencyLimit> | undefined)?]>;
|
|
29
29
|
concurrencyV2Limit: MockFunction<import("..").ConcurrencyV2Limit, [(Partial<import("..").ConcurrencyV2Limit> | undefined)?]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prefecthq/prefect-ui-library",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"vue-tsc": "1.8.25"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@prefecthq/prefect-design": "^2.1
|
|
66
|
+
"@prefecthq/prefect-design": "^2.2.1",
|
|
67
67
|
"@prefecthq/vue-charts": "^2.0.3",
|
|
68
68
|
"@prefecthq/vue-compositions": "^1.6.6",
|
|
69
69
|
"vee-validate": "^4.7.0",
|