@point-hub/papp 0.0.87 → 0.0.88
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/components/base-autocomplete.vue.d.ts +2 -7
- package/dist/components/base-checkbox.vue.d.ts +84 -32
- package/dist/components/base-choosen.vue.d.ts +2 -7
- package/dist/components/base-file-upload.vue.d.ts +84 -34
- package/dist/components/base-input-mask.vue.d.ts +90 -32
- package/dist/components/base-input-number.vue.d.ts +96 -39
- package/dist/components/base-input.vue.d.ts +106 -35
- package/dist/components/base-radio.vue.d.ts +78 -29
- package/dist/components/base-range.vue.d.ts +62 -28
- package/dist/components/base-select.vue.d.ts +86 -32
- package/dist/components/base-switch.vue.d.ts +90 -32
- package/dist/components/base-textarea.vue.d.ts +102 -32
- package/dist/{style.css → index.css} +1 -1
- package/dist/index.js +3609 -3498
- package/dist/index.umd.cjs +7 -7
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@point-hub/papp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.88",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"default": "./dist/index.umd.cjs"
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
|
-
"./
|
|
22
|
+
"./index.css": "./dist/index.css"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"dev": "run-s clean-dist build:lib && run-p dev:lib docs:dev",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"@headlessui/vue": "^1.7.23",
|
|
41
41
|
"@point-hub/js-utils": "^0.0.5",
|
|
42
42
|
"@point-hub/preset-papp-icon": "^0.0.2",
|
|
43
|
-
"@vueuse/components": "^
|
|
44
|
-
"@vueuse/core": "^
|
|
43
|
+
"@vueuse/components": "^12.0.0",
|
|
44
|
+
"@vueuse/core": "^12.0.0",
|
|
45
45
|
"cleave.js": "^1.6.0",
|
|
46
46
|
"date-fns": "^4.1.0",
|
|
47
47
|
"pinia": "^2.2.6",
|
|
@@ -55,32 +55,32 @@
|
|
|
55
55
|
"@tsconfig/node20": "^20.1.4",
|
|
56
56
|
"@types/cleave.js": "^1.4.12",
|
|
57
57
|
"@types/jsdom": "^21.1.7",
|
|
58
|
-
"@types/node": "^22.
|
|
58
|
+
"@types/node": "^22.10.0",
|
|
59
59
|
"@types/uuid": "^10.0.0",
|
|
60
60
|
"@unocss/preset-web-fonts": "^0.60.4",
|
|
61
61
|
"@unocss/reset": "^0.60.4",
|
|
62
62
|
"@unocss/transformer-directives": "^0.60.4",
|
|
63
|
-
"@vitejs/plugin-vue": "^5.2.
|
|
64
|
-
"@vitest/eslint-plugin": "^1.1.
|
|
63
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
64
|
+
"@vitest/eslint-plugin": "^1.1.11",
|
|
65
65
|
"@vue/eslint-config-prettier": "^10.1.0",
|
|
66
|
-
"@vue/eslint-config-typescript": "^14.1.
|
|
66
|
+
"@vue/eslint-config-typescript": "^14.1.4",
|
|
67
67
|
"@vue/test-utils": "^2.4.6",
|
|
68
68
|
"@vue/tsconfig": "^0.6.0",
|
|
69
69
|
"ajv": "^8.17.1",
|
|
70
|
-
"eslint": "
|
|
70
|
+
"eslint": "9.14.0",
|
|
71
71
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
72
72
|
"eslint-plugin-vue": "^9.31.0",
|
|
73
73
|
"jsdom": "^25.0.1",
|
|
74
74
|
"npm-run-all2": "^7.0.1",
|
|
75
75
|
"postcss": "^8.4.49",
|
|
76
|
-
"prettier": "^3.
|
|
76
|
+
"prettier": "^3.4.1",
|
|
77
77
|
"rimraf": "^6.0.1",
|
|
78
|
-
"typescript": "
|
|
78
|
+
"typescript": "5.7.2",
|
|
79
79
|
"unocss": "^0.60.4",
|
|
80
|
-
"vite": "^
|
|
80
|
+
"vite": "^6.0.1",
|
|
81
81
|
"vite-plugin-dts": "3.7.3",
|
|
82
82
|
"vitepress": "1.5.0",
|
|
83
|
-
"vitest": "^2.1.
|
|
83
|
+
"vitest": "^2.1.6",
|
|
84
84
|
"vue-tsc": "^2.1.10"
|
|
85
85
|
},
|
|
86
86
|
"repository": {
|