@prefecthq/prefect-ui-library 1.4.6 → 1.5.0
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/{index-fc10472d.mjs → index-d9d3a498.mjs} +17975 -17325
- package/dist/index-d9d3a498.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +645 -632
- package/dist/prefect-ui-library.umd.js +83 -83
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/demo/compositions/useFlowMock.d.ts +4 -1
- package/dist/types/demo/sections/flows/FlowList.vue.d.ts +2 -0
- package/dist/types/demo/sections/flows/FlowListItem.vue.d.ts +2 -0
- package/dist/types/demo/services/mockWorkspaceDeploymentsApi.d.ts +6 -0
- package/dist/types/demo/services/mockWorkspaceFlowRunsApi.d.ts +6 -0
- package/dist/types/demo/services/mockWorkspaceFlowsApi.d.ts +6 -0
- package/dist/types/demo/utilities/data.d.ts +2 -2
- package/dist/types/src/components/DeploymentList.vue.d.ts +43 -0
- package/dist/types/src/components/DeploymentListItem.vue.d.ts +23 -0
- package/dist/types/src/components/ExtraInfoModal.vue.d.ts +1 -0
- package/dist/types/src/components/FlowList.vue.d.ts +44 -0
- package/dist/types/src/components/FlowListItem.vue.d.ts +31 -0
- package/dist/types/src/components/FlowRunDeployment.vue.d.ts +15 -0
- package/dist/types/src/components/FlowRunTaskCount.vue.d.ts +2 -11
- package/dist/types/src/components/FlowRunTimeline.vue.d.ts +9 -2
- package/dist/types/src/components/FlowRunWorkPool.vue.d.ts +15 -0
- package/dist/types/src/components/FlowRunWorkQueue.vue.d.ts +17 -0
- package/dist/types/src/components/ListItemMeta.vue.d.ts +24 -0
- package/dist/types/src/components/ListItemMetaFlowRun.vue.d.ts +18 -0
- package/dist/types/src/components/StateListItem.vue.d.ts +8 -6
- package/dist/types/src/components/index.d.ts +10 -4
- package/dist/types/src/compositions/index.d.ts +5 -0
- package/dist/types/src/compositions/useDeployments.d.ts +7 -0
- package/dist/types/src/compositions/useDeploymentsCount.d.ts +6 -0
- package/dist/types/src/compositions/useFlows.d.ts +4 -2
- package/dist/types/src/compositions/useFlowsCount.d.ts +6 -0
- package/dist/types/src/compositions/useLastFlowRun.d.ts +9 -0
- package/dist/types/src/compositions/useNextFlowRun.d.ts +9 -0
- package/dist/types/src/localization/index.d.ts +12 -0
- package/dist/types/src/localization/locale/en.d.ts +12 -0
- package/dist/types/src/models/StateType.d.ts +3 -0
- package/dist/{viewport.es-84fb8076-717d5319.mjs → viewport.es-14935be0-cad7f008.mjs} +10 -10
- package/dist/{viewport.es-84fb8076-717d5319.mjs.map → viewport.es-14935be0-cad7f008.mjs.map} +1 -1
- package/package.json +3 -3
- package/dist/index-fc10472d.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prefecthq/prefect-ui-library",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"eslint": "8.38.0",
|
|
51
51
|
"lodash.camelcase": "4.3.0",
|
|
52
52
|
"lodash.debounce": "4.0.8",
|
|
53
|
-
"postcss": "8.4.
|
|
53
|
+
"postcss": "8.4.22",
|
|
54
54
|
"tailwindcss": "3.3.1",
|
|
55
55
|
"tsc-alias": "1.8.5",
|
|
56
56
|
"typescript": "4.9.5",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"vue-router": "^4.0.12"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@prefecthq/graphs": "1.0.
|
|
70
|
+
"@prefecthq/graphs": "1.0.5",
|
|
71
71
|
"@prefecthq/radar": "0.0.19",
|
|
72
72
|
"@types/lodash.isequal": "4.5.6",
|
|
73
73
|
"axios": "0.27.2",
|