@point-hub/papp 0.0.119 → 0.0.121
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 +7 -0
- package/dist/components/base-choosen.vue.d.ts +7 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3015 -3055
- package/dist/index.umd.cjs +6 -6
- package/package.json +16 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@point-hub/papp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.121",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"./index.css": "./dist/index.css"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
|
-
"dev": "run-s clean-dist build:lib && run-p
|
|
25
|
+
"dev": "run-s clean-dist build:lib && run-p build:watch docs:dev",
|
|
26
26
|
"dev:src": "vite dev",
|
|
27
|
-
"dev:lib": "vite build --watch",
|
|
28
27
|
"build": "run-s clean-dist build:lib docs:build",
|
|
29
28
|
"build:lib": "vite build",
|
|
29
|
+
"build:watch": "vite build && chokidar 'src/**/*' -c 'vite build'",
|
|
30
30
|
"test": "vitest",
|
|
31
31
|
"test:e2e": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress run --e2e'",
|
|
32
32
|
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"@headlessui/vue": "^1.7.23",
|
|
43
43
|
"@point-hub/js-utils": "^0.0.6",
|
|
44
44
|
"@point-hub/preset-papp-icon": "^0.0.3",
|
|
45
|
+
"@unocss/vite": "^66.3.2",
|
|
45
46
|
"@vueuse/components": "^13.4.0",
|
|
46
47
|
"@vueuse/core": "^13.4.0",
|
|
47
48
|
"cleave.js": "^1.6.0",
|
|
@@ -56,36 +57,37 @@
|
|
|
56
57
|
"vue": "^3.5.14"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
|
-
"@badeball/cypress-cucumber-preprocessor": "^22.
|
|
60
|
+
"@badeball/cypress-cucumber-preprocessor": "^22.2.0",
|
|
60
61
|
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.5",
|
|
61
62
|
"@tsconfig/node20": "^20.1.6",
|
|
62
63
|
"@types/cleave.js": "^1.4.12",
|
|
63
64
|
"@types/jsdom": "^21.1.7",
|
|
64
|
-
"@types/node": "^24.0.
|
|
65
|
+
"@types/node": "^24.0.8",
|
|
65
66
|
"@types/uuid": "^10.0.0",
|
|
66
|
-
"@unocss/preset-web-fonts": "^
|
|
67
|
-
"@unocss/reset": "^
|
|
68
|
-
"@unocss/transformer-directives": "^
|
|
69
|
-
"@vitejs/plugin-vue": "^
|
|
70
|
-
"@vitest/eslint-plugin": "^1.
|
|
67
|
+
"@unocss/preset-web-fonts": "^66.3.2",
|
|
68
|
+
"@unocss/reset": "^66.3.2",
|
|
69
|
+
"@unocss/transformer-directives": "^66.3.2",
|
|
70
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
71
|
+
"@vitest/eslint-plugin": "^1.3.3",
|
|
71
72
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
72
73
|
"@vue/eslint-config-typescript": "^14.5.1",
|
|
73
74
|
"@vue/test-utils": "^2.4.6",
|
|
74
75
|
"@vue/tsconfig": "^0.7.0",
|
|
75
76
|
"ajv": "^8.17.1",
|
|
77
|
+
"chokidar-cli": "^3.0.0",
|
|
76
78
|
"cypress-file-upload": "^5.0.8",
|
|
77
|
-
"eslint": "9.
|
|
79
|
+
"eslint": "9.30.0",
|
|
78
80
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
79
81
|
"eslint-plugin-vue": "^10.2.0",
|
|
80
82
|
"jsdom": "^26.1.0",
|
|
81
83
|
"npm-run-all2": "^8.0.4",
|
|
82
84
|
"postcss": "^8.5.6",
|
|
83
|
-
"prettier": "^3.6.
|
|
85
|
+
"prettier": "^3.6.2",
|
|
84
86
|
"rimraf": "^6.0.1",
|
|
85
87
|
"start-server-and-test": "^2.0.12",
|
|
86
88
|
"typescript": "5.8.3",
|
|
87
|
-
"unocss": "^
|
|
88
|
-
"vite": "^
|
|
89
|
+
"unocss": "^66.3.2",
|
|
90
|
+
"vite": "^7.0.0",
|
|
89
91
|
"vite-plugin-dts": "4.5.4",
|
|
90
92
|
"vitepress": "1.6.3",
|
|
91
93
|
"vitest": "^3.2.4",
|