@sfxcode/formkit-primevue 2.3.2 → 2.3.4
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 +1 -2
- package/dist/components/FormKitDataEdit.vue +58 -0
- package/dist/components/FormKitDataView.vue +45 -0
- package/dist/components/FormKitDebug.vue +25 -0
- package/dist/components/PrimeInputText.vue +6 -38
- package/dist/components/PrimeOutputBoolean.vue +29 -0
- package/dist/components/PrimeOutputDate.vue +40 -0
- package/dist/components/PrimeOutputDuration.vue +22 -0
- package/dist/components/PrimeOutputLink.vue +28 -0
- package/dist/components/PrimeOutputList.vue +29 -0
- package/dist/components/PrimeOutputNumber.vue +40 -0
- package/dist/components/PrimeOutputText.vue +23 -0
- package/dist/components/index.d.ts +4 -1
- package/dist/components/index.js +21 -0
- package/dist/components/index.mjs +6 -0
- package/dist/composables/index.d.ts +4 -1
- package/dist/composables/index.js +22 -1
- package/dist/composables/index.mjs +7 -1
- package/dist/composables/useFormKitIcon.d.ts +5 -0
- package/dist/composables/useFormKitIcon.js +24 -0
- package/dist/composables/useFormKitIcon.mjs +15 -0
- package/dist/composables/useFormKitOutput.d.ts +3 -0
- package/dist/composables/useFormKitOutput.js +15 -0
- package/dist/composables/useFormKitOutput.mjs +7 -0
- package/dist/composables/useOutputDuration.d.ts +4 -0
- package/dist/composables/useOutputDuration.js +40 -0
- package/dist/composables/useOutputDuration.mjs +37 -0
- package/dist/definitions/index.d.ts +32 -47
- package/dist/definitions/index.js +35 -118
- package/dist/definitions/index.mjs +43 -436
- package/dist/definitions/input.d.ts +49 -0
- package/dist/definitions/input.js +125 -0
- package/dist/definitions/input.mjs +461 -0
- package/dist/definitions/output.d.ts +8 -0
- package/dist/definitions/output.js +36 -0
- package/dist/definitions/output.mjs +29 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +26 -1
- package/dist/index.mjs +7 -2
- package/dist/sass/formkit-primevue.scss +25 -0
- package/dist/style.css +1 -1
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sfxcode/formkit-primevue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.3.
|
|
4
|
+
"version": "2.3.4",
|
|
5
5
|
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Tom",
|
|
@@ -92,16 +92,17 @@
|
|
|
92
92
|
"@formkit/i18n": "^1.6.5",
|
|
93
93
|
"@formkit/vue": "^1.6.5",
|
|
94
94
|
"primeicons": "^7.0.0",
|
|
95
|
-
"primevue": "4.0.1"
|
|
95
|
+
"primevue": "4.0.1",
|
|
96
|
+
"vue-i18n": "9.13.1"
|
|
96
97
|
},
|
|
97
98
|
"devDependencies": {
|
|
98
99
|
"@antfu/eslint-config": "2.23.2",
|
|
99
100
|
"@formkit/core": "^1.6.5",
|
|
100
101
|
"@primevue/themes": "4.0.1",
|
|
101
|
-
"@types/node": "^20.14.
|
|
102
|
+
"@types/node": "^20.14.12",
|
|
102
103
|
"@unocss/preset-icons": "0.61.5",
|
|
103
104
|
"@unocss/preset-uno": "0.61.5",
|
|
104
|
-
"@vitejs/plugin-vue": "^5.0
|
|
105
|
+
"@vitejs/plugin-vue": "^5.1.0",
|
|
105
106
|
"@vitest/coverage-v8": "^2.0.4",
|
|
106
107
|
"@vitest/ui": "^2.0.4",
|
|
107
108
|
"@vue/compiler-sfc": "^3.4.33",
|
|
@@ -120,12 +121,12 @@
|
|
|
120
121
|
"json-editor-vue": "^0.15.1",
|
|
121
122
|
"mkdist": "^1.5.4",
|
|
122
123
|
"quill": "^2.0.2",
|
|
123
|
-
"sass": "^1.
|
|
124
|
+
"sass": "^1.77.8",
|
|
124
125
|
"tslib": "^2.6.3",
|
|
125
|
-
"typescript": "^5.5.
|
|
126
|
+
"typescript": "^5.5.4",
|
|
126
127
|
"unbuild": "2.0.0",
|
|
127
128
|
"unocss": "0.61.5",
|
|
128
|
-
"unplugin-auto-import": "^0.18.
|
|
129
|
+
"unplugin-auto-import": "^0.18.1",
|
|
129
130
|
"unplugin-vue-components": "^0.27.3",
|
|
130
131
|
"vanilla-jsoneditor": "^0.23.7",
|
|
131
132
|
"vite": "^5.3.4",
|
|
@@ -136,7 +137,7 @@
|
|
|
136
137
|
"vitepress": "1.3.1",
|
|
137
138
|
"vitest": "^2.0.4",
|
|
138
139
|
"vue": "^3.4.33",
|
|
139
|
-
"vue-demi": "^0.14.
|
|
140
|
+
"vue-demi": "^0.14.9",
|
|
140
141
|
"vue-router": "^4.4.0",
|
|
141
142
|
"vue-tsc": "^2.0.28"
|
|
142
143
|
}
|