y-admin-ui 6.1.5 → 6.1.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "y-admin-ui",
3
- "version": "6.1.5",
3
+ "version": "6.1.8",
4
4
  "description": "y-admin-ui 基于Element-plus二次封装基础组件文档",
5
5
  "author": "yaochengjian",
6
6
  "license": "MIT",
@@ -30,6 +30,7 @@
30
30
  "@element-plus/icons-vue": "^2.0.10",
31
31
  "@rollup/plugin-replace": "^5.0.5",
32
32
  "@rollup/plugin-terser": "^0.4.4",
33
+ "@tailwindcss/postcss": "^4.1.17",
33
34
  "@types/node": "18.7.18",
34
35
  "@types/nprogress": "^0.2.0",
35
36
  "@types/path-browserify": "^1.0.0",
@@ -39,6 +40,7 @@
39
40
  "@vitejs/plugin-vue-jsx": "^2.0.1",
40
41
  "@vue/shared": "^3.3.13",
41
42
  "@vueuse/core": "^9.13.0",
43
+ "autoprefixer": "^10.4.20",
42
44
  "axios": "^1.1.2",
43
45
  "chalk": "^5.2.0",
44
46
  "consola": "^3.1.0",
@@ -57,8 +59,9 @@
57
59
  "npm-run-all": "^4.1.5",
58
60
  "nprogress": "^0.2.0",
59
61
  "path-browserify": "^1.0.1",
60
- "pinia": "^2.0.23",
62
+ "pinia": "^2.3.1",
61
63
  "pinia-plugin-persistedstate": "^2.3.0",
64
+ "postcss": "^8.4.49",
62
65
  "prettier": "^2.7.1",
63
66
  "prismjs": "^1.29.0",
64
67
  "rollup-plugin-copy": "^3.5.0",
@@ -66,6 +69,7 @@
66
69
  "sass": "^1.55.0",
67
70
  "sass-loader": "^13.1.0",
68
71
  "sortablejs": "^1.15.0",
72
+ "tailwindcss": "^3.4.17",
69
73
  "typescript": "^4.6.4",
70
74
  "unocss": "^0.51.13",
71
75
  "unplugin-auto-import": "^0.11.2",
@@ -92,4 +96,4 @@
92
96
  "封装组件",
93
97
  "components"
94
98
  ]
95
- }
99
+ }
@@ -0,0 +1,6 @@
1
+ /** 声明文件,*.vue 后缀的文件交给 vue 模块来处理 */
2
+ declare module '*.vue' {
3
+ import type { DefineComponent } from 'vue';
4
+ const component: DefineComponent<{}, {}, any>;
5
+ export default component;
6
+ }