@prefecthq/prefect-ui-library 1.4.7 → 1.5.1
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-c7254856.mjs → index-ec802bdf.mjs} +18581 -17943
- package/dist/index-ec802bdf.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +645 -634
- package/dist/prefect-ui-library.umd.js +77 -77
- 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/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/{viewport.es-14935be0-d1813701.mjs → viewport.es-87938ebd-23b84af0.mjs} +7 -7
- package/dist/{viewport.es-14935be0-d1813701.mjs.map → viewport.es-87938ebd-23b84af0.mjs.map} +1 -1
- package/package.json +3 -3
- package/dist/index-c7254856.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.1",
|
|
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.6",
|
|
71
71
|
"@prefecthq/radar": "0.0.19",
|
|
72
72
|
"@types/lodash.isequal": "4.5.6",
|
|
73
73
|
"axios": "0.27.2",
|