@codemonster-ru/vueforge 0.8.0 → 0.10.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 +81 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.ts.mjs +979 -679
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/modal.test.d.ts +1 -0
- package/dist/package/components/__tests__/tooltip.test.d.ts +1 -0
- package/dist/package/components/modal.vue.d.ts +55 -0
- package/dist/package/components/tooltip.vue.d.ts +35 -0
- package/dist/package/config/theme-core.d.ts +42 -0
- package/dist/package/themes/default/components/modal.d.ts +29 -0
- package/dist/package/themes/default/components/tooltip.d.ts +13 -0
- package/dist/package/themes/default/index.d.ts +40 -0
- package/package.json +11 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemonster-ru/vueforge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Open source UI components for Vue.js.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kirill Kolesnikov",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"dev": "vite dev --force --mode development",
|
|
48
48
|
"build": "vite build --mode production",
|
|
49
|
-
"lint": "eslint . --ext .ts,.vue",
|
|
49
|
+
"lint": "node --import tsx ./node_modules/eslint/bin/eslint.js . --ext .ts,.vue --config eslint.config.ts",
|
|
50
50
|
"typecheck": "vue-tsc --noEmit",
|
|
51
51
|
"test": "vitest run"
|
|
52
52
|
},
|
|
@@ -57,22 +57,26 @@
|
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/node": "^20.14.10",
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
61
61
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
62
|
-
"@vue/eslint-config-typescript": "^
|
|
63
|
-
"
|
|
62
|
+
"@vue/eslint-config-typescript": "^14.6.0",
|
|
63
|
+
"@vue/test-utils": "^2.4.6",
|
|
64
|
+
"eslint": "^9.39.2",
|
|
64
65
|
"eslint-config-prettier": "^9.1.0",
|
|
65
66
|
"eslint-plugin-prettier": "^5.1.3",
|
|
66
67
|
"eslint-plugin-vue": "^9.27.0",
|
|
68
|
+
"jiti": "^2.4.2",
|
|
69
|
+
"jsdom": "^24.0.0",
|
|
67
70
|
"pinia": "^2.2.4",
|
|
68
71
|
"prettier": "^3.3.2",
|
|
69
72
|
"sass": "^1.77.8",
|
|
73
|
+
"tsx": "^4.20.5",
|
|
70
74
|
"typescript": "^5.5.3",
|
|
71
75
|
"vite": "^6.0.11",
|
|
72
76
|
"vite-plugin-dts": "^4.5.0",
|
|
77
|
+
"vitest": "^4.0.18",
|
|
73
78
|
"vue": "^3.4.31",
|
|
74
|
-
"vue-tsc": "^2.0.21"
|
|
75
|
-
"vitest": "^1.6.0"
|
|
79
|
+
"vue-tsc": "^2.0.21"
|
|
76
80
|
},
|
|
77
81
|
"dependencies": {
|
|
78
82
|
"@codemonster-ru/floater.js": "^1.0.8"
|