@prefecthq/prefect-ui-library 1.3.0 → 1.4.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-9f20f10b.mjs → index-3ea05524.mjs} +15464 -14968
- package/dist/index-3ea05524.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +516 -505
- package/dist/prefect-ui-library.umd.js +81 -81
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/PageHeadingVariables.vue.d.ts +2 -0
- package/dist/types/src/components/VariableCreateModal.vue.d.ts +23 -0
- package/dist/types/src/components/VariableEditModal.vue.d.ts +25 -0
- package/dist/types/src/components/VariableMenu.vue.d.ts +23 -0
- package/dist/types/src/components/VariablesDeleteButton.vue.d.ts +19 -0
- package/dist/types/src/components/VariablesTable.vue.d.ts +20 -0
- package/dist/types/src/components/index.d.ts +4 -0
- package/dist/types/src/compositions/filters.d.ts +2 -1
- package/dist/types/src/compositions/useWorkspaceRoutes.d.ts +7 -0
- package/dist/types/src/localization/index.d.ts +23 -0
- package/dist/types/src/localization/locale/en.d.ts +23 -0
- package/dist/types/src/maps/filters.d.ts +4 -2
- package/dist/types/src/maps/index.d.ts +112 -89
- package/dist/types/src/maps/variable.d.ts +7 -0
- package/dist/types/src/models/Filters.d.ts +15 -1
- package/dist/types/src/models/Variable.d.ts +17 -0
- package/dist/types/src/models/VariableCreate.d.ts +5 -0
- package/dist/types/src/models/VariableEdit.d.ts +5 -0
- package/dist/types/src/models/api/Filters.d.ts +12 -1
- package/dist/types/src/models/api/VariableRequest.d.ts +10 -0
- package/dist/types/src/models/api/VariableResponse.d.ts +9 -0
- package/dist/types/src/models/index.d.ts +3 -0
- package/dist/types/src/router/routes.d.ts +7 -0
- package/dist/types/src/services/Mapper.d.ts +112 -89
- package/dist/types/src/services/WorkspaceVariablesApi.d.ts +21 -0
- package/dist/types/src/services/can.d.ts +2 -2
- package/dist/types/src/services/index.d.ts +1 -0
- package/dist/types/src/types/SortOptionTypes.d.ts +9 -0
- package/dist/types/src/utilities/api.d.ts +2 -0
- package/dist/types/src/utilities/timezone.d.ts +30 -30
- package/dist/{viewport.es-20251669-1ece7d32.mjs → viewport.es-20251669-a528876a.mjs} +2 -2
- package/dist/{viewport.es-20251669-1ece7d32.mjs.map → viewport.es-20251669-a528876a.mjs.map} +1 -1
- package/package.json +5 -6
- package/dist/index-9f20f10b.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.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -38,20 +38,19 @@
|
|
|
38
38
|
],
|
|
39
39
|
"types": "./dist/types/src/index.d.ts",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@prefecthq/eslint-config": "1.0.
|
|
42
|
-
"@tailwindcss/line-clamp": "0.4.2",
|
|
41
|
+
"@prefecthq/eslint-config": "1.0.25",
|
|
43
42
|
"@types/lodash.camelcase": "4.3.7",
|
|
44
43
|
"@types/lodash.debounce": "4.0.7",
|
|
45
|
-
"@types/node": "^18.15.
|
|
44
|
+
"@types/node": "^18.15.11",
|
|
46
45
|
"@types/prismjs": "^1.26.0",
|
|
47
46
|
"@vitejs/plugin-vue": "4.1.0",
|
|
48
47
|
"auto-changelog": "^2.4.0",
|
|
49
48
|
"autoprefixer": "10.4.14",
|
|
50
|
-
"eslint": "8.
|
|
49
|
+
"eslint": "8.37.0",
|
|
51
50
|
"lodash.camelcase": "4.3.0",
|
|
52
51
|
"lodash.debounce": "4.0.8",
|
|
53
52
|
"postcss": "8.4.21",
|
|
54
|
-
"tailwindcss": "3.
|
|
53
|
+
"tailwindcss": "3.3.0",
|
|
55
54
|
"tsc-alias": "1.8.4",
|
|
56
55
|
"typescript": "^4.9.5",
|
|
57
56
|
"vite": "4.2.1",
|