foucui 2.3.1 → 2.3.3
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 +44 -44
- package/dist/foucui.css +1 -1
- package/dist/foucui.js +8324 -7113
- package/dist/foucui.umd.cjs +15 -8
- package/dist/index.d.ts +1 -1
- package/package.json +6 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { App } from 'vue';
|
|
|
2
2
|
import { FOU_LOADING_EFFECTS, FouLoadingSpinner, fouLoading, vFouLoading } from './components/FouLoading';
|
|
3
3
|
import { fouMsg } from './components/FouMsg';
|
|
4
4
|
import { fouNotify } from './components/FouNotification';
|
|
5
|
-
export declare const version = "2.3.
|
|
5
|
+
export declare const version = "2.3.3";
|
|
6
6
|
export { fouMsg, fouNotify, fouLoading, vFouLoading };
|
|
7
7
|
export { vFouInfiniteScroll } from './components/FouInfiniteScroll';
|
|
8
8
|
/** FouCanvasKit:证件 / 桌签 / Banner 统一画布 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "foucui",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "FouCui Vue3 组件库(组件前缀 Fou/fou-;含 FouCanvasKit)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/foucui.umd.cjs",
|
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "vite build",
|
|
30
|
+
"docs:dev": "vite --config docs/vite.config.ts",
|
|
31
|
+
"docs:build": "vite build --config docs/vite.config.ts",
|
|
30
32
|
"prepublishOnly": "npm run build"
|
|
31
33
|
},
|
|
32
34
|
"peerDependencies": {
|
|
@@ -59,6 +61,7 @@
|
|
|
59
61
|
"lunar-javascript": "^1.7.7",
|
|
60
62
|
"mitt": "^3.0.1",
|
|
61
63
|
"nprogress": "^0.2.0",
|
|
64
|
+
"qrcode": "^1.5.4",
|
|
62
65
|
"remixicon": "^4.9.1",
|
|
63
66
|
"sortablejs": "^1.15.7",
|
|
64
67
|
"vue-draggable-plus": "^0.6.1",
|
|
@@ -67,11 +70,13 @@
|
|
|
67
70
|
"devDependencies": {
|
|
68
71
|
"@iconify/types": "^2.0.0",
|
|
69
72
|
"@types/node": "^22.13.0",
|
|
73
|
+
"@types/qrcode": "^1.5.6",
|
|
70
74
|
"@typescript/typescript6": "^6.0.2",
|
|
71
75
|
"@vitejs/plugin-vue": "^6.0.8",
|
|
72
76
|
"@vitejs/plugin-vue-jsx": "^5.1.6",
|
|
73
77
|
"@vueuse/core": "^14.4.0",
|
|
74
78
|
"fast-glob": "^3.3.3",
|
|
79
|
+
"pinia": "^3.0.4",
|
|
75
80
|
"sass": "^1.103.0",
|
|
76
81
|
"typescript": "5.9.3",
|
|
77
82
|
"unplugin-auto-import": "^21.1.0",
|
|
@@ -79,7 +84,6 @@
|
|
|
79
84
|
"vite": "^8.2.1",
|
|
80
85
|
"vite-plugin-dts": "5.0.3",
|
|
81
86
|
"vite-plugin-svg-icons": "^2.0.1",
|
|
82
|
-
"pinia": "^3.0.4",
|
|
83
87
|
"vue": "^3.5.41",
|
|
84
88
|
"vue-router": "^5.2.0"
|
|
85
89
|
},
|