@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.
@@ -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" | "s" | "t" | "u" | "v" | "x" | "z", []>;
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)?]>;
@@ -1,4 +1,5 @@
1
+ import { DateRangeSelectValue } from '@prefecthq/prefect-design';
1
2
  export type WorkspaceDashboardFilter = {
2
- timeSpanInSeconds: number;
3
+ range: NonNullable<DateRangeSelectValue>;
3
4
  tags: string[];
4
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prefecthq/prefect-ui-library",
3
- "version": "2.4.9",
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.3",
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",