nuxt-ui-elements 0.1.40 → 0.2.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/README.md +6 -191
- package/dist/module.json +1 -1
- package/dist/module.mjs +233 -3
- package/dist/runtime/components/DialogAlert.vue +1 -1
- package/dist/runtime/components/DialogConfirm.vue +1 -1
- package/dist/runtime/components/Flow.d.vue.ts +77 -0
- package/dist/runtime/components/Flow.vue +99 -0
- package/dist/runtime/components/Flow.vue.d.ts +77 -0
- package/dist/runtime/components/FlowHandle.d.vue.ts +22 -0
- package/dist/runtime/components/FlowHandle.vue +33 -0
- package/dist/runtime/components/FlowHandle.vue.d.ts +22 -0
- package/dist/runtime/components/FlowNode.d.vue.ts +26 -0
- package/dist/runtime/components/FlowNode.vue +39 -0
- package/dist/runtime/components/FlowNode.vue.d.ts +26 -0
- package/dist/runtime/components/ToggleGroup.vue +1 -1
- package/dist/runtime/components/flow/FlowBackground.d.vue.ts +21 -0
- package/dist/runtime/components/flow/FlowBackground.vue +39 -0
- package/dist/runtime/components/flow/FlowBackground.vue.d.ts +21 -0
- package/dist/runtime/components/flow/FlowControls.d.vue.ts +29 -0
- package/dist/runtime/components/flow/FlowControls.vue +37 -0
- package/dist/runtime/components/flow/FlowControls.vue.d.ts +29 -0
- package/dist/runtime/components/flow/FlowMiniMap.d.vue.ts +37 -0
- package/dist/runtime/components/flow/FlowMiniMap.vue +51 -0
- package/dist/runtime/components/flow/FlowMiniMap.vue.d.ts +37 -0
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/types/index.d.ts +6 -0
- package/dist/runtime/types/index.js +6 -0
- package/dist/runtime/utils/std.d.ts +1 -0
- package/dist/runtime/utils/std.js +1 -0
- package/package.json +26 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-ui-elements",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A collection of beautiful, animated UI components for Nuxt applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "https://github.com/genu/nuxt-ui-elements.git",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@internationalized/date": "3.
|
|
46
|
+
"@internationalized/date": "3.12.0",
|
|
47
47
|
"@nuxt/kit": "4.3.1",
|
|
48
48
|
"@sindresorhus/slugify": "3.0.0",
|
|
49
49
|
"plur": "6.0.0",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"tailwind-variants": "3.2.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@nuxt/devtools": "3.2.
|
|
55
|
-
"@nuxt/eslint-config": "1.15.
|
|
54
|
+
"@nuxt/devtools": "3.2.3",
|
|
55
|
+
"@nuxt/eslint-config": "1.15.2",
|
|
56
56
|
"@nuxt/module-builder": "1.0.2",
|
|
57
57
|
"@nuxt/schema": "4.3.1",
|
|
58
58
|
"@nuxt/test-utils": "4.0.0",
|
|
@@ -60,19 +60,37 @@
|
|
|
60
60
|
"@types/node": "latest",
|
|
61
61
|
"@vitest/coverage-v8": "4.0.18",
|
|
62
62
|
"better-sqlite3": "12.6.2",
|
|
63
|
-
"eslint": "10.0.
|
|
63
|
+
"eslint": "10.0.3",
|
|
64
64
|
"eslint-config-prettier": "10.1.8",
|
|
65
65
|
"eslint-plugin-prettier": "5.5.5",
|
|
66
66
|
"nuxt": "4.3.1",
|
|
67
67
|
"prettier": "3.8.1",
|
|
68
68
|
"typescript": "5.9.3",
|
|
69
69
|
"vitest": "4.0.18",
|
|
70
|
-
"vue-tsc": "3.2.
|
|
70
|
+
"vue-tsc": "3.2.5"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@nuxt/ui": "^4.0.0"
|
|
73
|
+
"@nuxt/ui": "^4.0.0",
|
|
74
|
+
"@vue-flow/core": "^1.48.0",
|
|
75
|
+
"@vue-flow/background": "^1.3.0",
|
|
76
|
+
"@vue-flow/controls": "^1.1.0",
|
|
77
|
+
"@vue-flow/minimap": "^1.5.0"
|
|
74
78
|
},
|
|
75
|
-
"
|
|
79
|
+
"peerDependenciesMeta": {
|
|
80
|
+
"@vue-flow/core": {
|
|
81
|
+
"optional": true
|
|
82
|
+
},
|
|
83
|
+
"@vue-flow/background": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"@vue-flow/controls": {
|
|
87
|
+
"optional": true
|
|
88
|
+
},
|
|
89
|
+
"@vue-flow/minimap": {
|
|
90
|
+
"optional": true
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
|
|
76
94
|
"pnpm": {
|
|
77
95
|
"onlyBuiltDependencies": [
|
|
78
96
|
"better-sqlite3"
|