@prefecthq/prefect-ui-library 3.11.19 → 3.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prefecthq/prefect-ui-library",
3
- "version": "3.11.19",
3
+ "version": "3.11.20",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -59,19 +59,19 @@
59
59
  "@types/lodash.merge": "4.6.9",
60
60
  "@types/node": "^22.9.0",
61
61
  "@types/prismjs": "^1.26.5",
62
- "@vitejs/plugin-vue": "5.1.5",
62
+ "@vitejs/plugin-vue": "5.2.0",
63
63
  "auto-changelog": "^2.5.0",
64
64
  "autoprefixer": "10.4.20",
65
65
  "eslint": "8.57.1",
66
66
  "lodash.camelcase": "4.3.0",
67
67
  "lodash.debounce": "4.0.8",
68
68
  "postcss": "8.4.49",
69
- "tailwindcss": "3.4.14",
69
+ "tailwindcss": "3.4.15",
70
70
  "tsc-alias": "1.8.10",
71
71
  "typescript": "5.6.3",
72
72
  "vite": "5.4.11",
73
73
  "vite-svg-loader": "^5.1.0",
74
- "vitest": "^2.1.4",
74
+ "vitest": "^2.1.5",
75
75
  "vue-tsc": "^2.1.10"
76
76
  },
77
77
  "peerDependencies": {
@@ -8,6 +8,7 @@ export const mapWorkspaceDashboardFilterToTaskRunsFilter: MapFunction<WorkspaceD
8
8
  return {
9
9
  flowRuns: {
10
10
  tags: {
11
+ operator: 'or',
11
12
  name: source.tags,
12
13
  },
13
14
  parentTaskRunIdNull: source.hideSubflows ? true : undefined,
@@ -28,6 +29,7 @@ export const mapWorkspaceDashboardFilterToTaskRunsHistoryFilter: MapFunction<Wor
28
29
  historyIntervalSeconds: timeSpanInSeconds / 20,
29
30
  flowRuns: {
30
31
  tags: {
32
+ operator: 'or',
31
33
  name: source.tags,
32
34
  },
33
35
  parentTaskRunIdNull: source.hideSubflows ? true : undefined,
@@ -43,6 +45,7 @@ export const mapWorkspaceDashboardFilterToFlowRunsFilter: MapFunction<WorkspaceD
43
45
  expectedStartTimeAfter: startDate,
44
46
  expectedStartTimeBefore: endDate,
45
47
  tags: {
48
+ operator: 'or',
46
49
  name: source.tags,
47
50
  },
48
51
  parentTaskRunIdNull: source.hideSubflows ? true : undefined,