@prefecthq/prefect-ui-library 1.1.13 → 1.1.15
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-1db88feb.mjs → index-4d5db146.mjs} +21978 -21569
- package/dist/index-4d5db146.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +657 -647
- package/dist/prefect-ui-library.umd.js +74 -74
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/demo/sections/flowRuns/FlowRunResults.vue.d.ts +2 -0
- package/dist/types/demo/sections/flows/FlowDetails.vue.d.ts +2 -0
- package/dist/types/demo/sections/flows/index.d.ts +2 -0
- package/dist/types/demo/services/MockApi.d.ts +1 -0
- package/dist/types/demo/services/mockWorkspaceArtifactsApi.d.ts +10 -0
- package/dist/types/src/components/ArtifactDataMarkdown.vue.d.ts +16 -0
- package/dist/types/src/components/ArtifactDataResult.vue.d.ts +16 -0
- package/dist/types/src/components/ArtifactDataUnknown.vue.d.ts +16 -0
- package/dist/types/src/components/ArtifactDataView.vue.d.ts +16 -0
- package/dist/types/src/components/ArtifactMenu.vue.d.ts +25 -0
- package/dist/types/src/components/ConfirmDeleteModal.vue.d.ts +1 -1
- package/dist/types/src/components/DeploymentQuickRunOverflowMenuItem.vue.d.ts +5 -2
- package/dist/types/src/components/FlowRunResults.vue.d.ts +25 -0
- package/dist/types/src/components/LogLevelSelect.vue.d.ts +2 -2
- package/dist/types/src/components/PageHeadingArtifact.vue.d.ts +16 -0
- package/dist/types/src/components/QuickRunParametersModal.vue.d.ts +29 -0
- package/dist/types/src/components/SchemaForm.vue.d.ts +1 -1
- package/dist/types/src/components/index.d.ts +10 -0
- package/dist/types/src/compositions/useWorkspaceRoutes.d.ts +15 -0
- package/dist/types/src/localization/index.d.ts +2 -0
- package/dist/types/src/localization/locale/en.d.ts +2 -0
- package/dist/types/src/mocks/index.d.ts +2 -2
- package/dist/types/src/models/FlowRun.d.ts +3 -2
- package/dist/types/src/models/api/FlowRunResponse.d.ts +2 -1
- package/dist/types/src/router/routes.d.ts +15 -0
- package/dist/types/src/services/Mocker.d.ts +2 -2
- package/dist/types/src/services/schemas/properties/SchemaPropertyObject.d.ts +0 -2
- package/dist/types/src/services/schemas/properties/SchemaPropertyService.d.ts +0 -1
- package/dist/types/src/utilities/timezone.d.ts +35 -35
- package/dist/{viewport.es-5fa29f11-4bb82e07.mjs → viewport.es-5fa29f11-4da0fd1e.mjs} +3 -3
- package/dist/{viewport.es-5fa29f11-4bb82e07.mjs.map → viewport.es-5fa29f11-4da0fd1e.mjs.map} +1 -1
- package/package.json +6 -6
- package/dist/index-1db88feb.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prefecthq/prefect-ui-library",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.15",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,24 +42,24 @@
|
|
|
42
42
|
"@tailwindcss/line-clamp": "0.4.2",
|
|
43
43
|
"@types/lodash.camelcase": "4.3.7",
|
|
44
44
|
"@types/lodash.debounce": "4.0.7",
|
|
45
|
-
"@types/node": "^18.
|
|
45
|
+
"@types/node": "^18.15.2",
|
|
46
46
|
"@types/prismjs": "^1.26.0",
|
|
47
47
|
"@vitejs/plugin-vue": "4.0.0",
|
|
48
48
|
"auto-changelog": "^2.4.0",
|
|
49
|
-
"autoprefixer": "10.4.
|
|
50
|
-
"eslint": "8.
|
|
49
|
+
"autoprefixer": "10.4.14",
|
|
50
|
+
"eslint": "8.36.0",
|
|
51
51
|
"lodash.camelcase": "4.3.0",
|
|
52
52
|
"lodash.debounce": "4.0.8",
|
|
53
53
|
"postcss": "8.4.21",
|
|
54
54
|
"tailwindcss": "3.2.7",
|
|
55
|
-
"tsc-alias": "1.8.
|
|
55
|
+
"tsc-alias": "1.8.3",
|
|
56
56
|
"typescript": "^4.9.5",
|
|
57
57
|
"vite": "4.1.4",
|
|
58
58
|
"vite-svg-loader": "^4.0.0",
|
|
59
59
|
"vue-tsc": "1.2.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"@prefecthq/prefect-design": "^1.
|
|
62
|
+
"@prefecthq/prefect-design": "^1.4.0",
|
|
63
63
|
"@prefecthq/vue-compositions": "^1.3.5",
|
|
64
64
|
"vee-validate": "^4.7.0",
|
|
65
65
|
"vue": "^3.2.45",
|