foucui 2.1.0 → 2.2.1
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/FouBanner/index.vue.d.ts +53 -0
- package/dist/components/FouDropdown/index.vue.d.ts +4 -3
- package/dist/components/FouTable/useScrollSync.d.ts +2 -2
- package/dist/foucui.css +1 -1
- package/dist/foucui.js +7776 -7572
- package/dist/foucui.umd.cjs +15 -15
- package/dist/index.d.ts +2 -1
- package/package.json +95 -95
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { App } from 'vue';
|
|
|
2
2
|
import { FOU_LOADING_EFFECTS, fouLoading } from './components/FouLoading';
|
|
3
3
|
import { fouMsg } from './components/FouMsg';
|
|
4
4
|
import { fouNotify } from './components/FouNotification';
|
|
5
|
-
export declare const version = "2.
|
|
5
|
+
export declare const version = "2.2.0";
|
|
6
6
|
export { fouMsg, fouNotify, fouLoading };
|
|
7
7
|
/** FouCanvasKit:证件 / 桌签 / Banner 统一画布 */
|
|
8
8
|
export { FouCanvasEditor, FouCanvasRenderer, FouCanvasDataModulesPanel, mergeTemplateText, mergeBadgeText, flattenBadgeForMerge, flattenDeskLabelForMerge, mapRowToContext, resolveDataModules, cloneBuiltinModules, createCustomModule, sampleContextFromModules, listInsertableFields, createBannerDoc, createBadgeDoc, buildCanvasHtml, downloadCanvasHtml, downloadElementPng, downloadElementPdf, BADGE_PLACEHOLDER_KEYS, BADGE_PLACEHOLDER_LABELS, BUILTIN_DATA_MODULES, LEGACY_FLAT_KEY_MAP, } from './components/FouCanvasKit';
|
|
@@ -27,6 +27,7 @@ export { default as FouPageMain } from './components/FouPageMain/index.vue';
|
|
|
27
27
|
export { default as FouPasswordStrength } from './components/FouPasswordStrength/index.vue';
|
|
28
28
|
export { default as FouSearchBar } from './components/FouSearchBar/index.vue';
|
|
29
29
|
export { default as FouSearchInput } from './components/FouSearchInput/index.vue';
|
|
30
|
+
export { default as FouBanner } from './components/FouBanner/index.vue';
|
|
30
31
|
export { default as FouTrend } from './components/FouTrend/index.vue';
|
|
31
32
|
export { default as FouCode } from './components/FouCode/index.vue';
|
|
32
33
|
export { default as FouCombobox } from './components/FouCombobox/index.vue';
|
package/package.json
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "foucui",
|
|
3
|
-
"version": "2.1
|
|
4
|
-
"description": "FouCui Vue3 组件库(组件前缀 Fou/fou-;含 FouCanvasKit)",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/foucui.umd.cjs",
|
|
7
|
-
"module": "./dist/foucui.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/foucui.js",
|
|
13
|
-
"require": "./dist/foucui.umd.cjs"
|
|
14
|
-
},
|
|
15
|
-
"./dist/foucui.css": "./dist/foucui.css",
|
|
16
|
-
"./dist/fou.css": "./dist/foucui.css",
|
|
17
|
-
"./dist/qiuye.css": "./dist/foucui.css",
|
|
18
|
-
"./dist/fouui-vue.css": "./dist/foucui.css",
|
|
19
|
-
"./dist/qiuui-vue.css": "./dist/foucui.css",
|
|
20
|
-
"./package.json": "./package.json"
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
"dist"
|
|
24
|
-
],
|
|
25
|
-
"sideEffects": [
|
|
26
|
-
"**/*.css"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "vite build",
|
|
30
|
-
"prepublishOnly": "npm run build"
|
|
31
|
-
},
|
|
32
|
-
"peerDependencies": {
|
|
33
|
-
"@vueuse/core": ">=10.0.0",
|
|
34
|
-
"vue": ">=3.3.0",
|
|
35
|
-
"vue-router": ">=4.0.0"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@iconify-json/ant-design": "^1.2.5",
|
|
39
|
-
"@iconify-json/bi": "^1.2.2",
|
|
40
|
-
"@iconify-json/carbon": "^1.2.8",
|
|
41
|
-
"@iconify-json/ep": "^1.2.2",
|
|
42
|
-
"@iconify-json/flagpack": "^1.2.1",
|
|
43
|
-
"@iconify-json/icon-park": "^1.2.2",
|
|
44
|
-
"@iconify-json/icon-park-outline": "^1.2.2",
|
|
45
|
-
"@iconify-json/logos": "^1.2.4",
|
|
46
|
-
"@iconify-json/lucide": "^1.2.45",
|
|
47
|
-
"@iconify-json/mdi": "^1.2.3",
|
|
48
|
-
"@iconify-json/ph": "^1.2.2",
|
|
49
|
-
"@iconify-json/ri": "^1.2.5",
|
|
50
|
-
"@iconify-json/tabler": "^1.2.17",
|
|
51
|
-
"@iconify/vue": "^4.1.2",
|
|
52
|
-
"@vueuse/head": "^2.0.0",
|
|
53
|
-
"axios": "^1.6.0",
|
|
54
|
-
"china-division": "^2.7.0",
|
|
55
|
-
"dayjs": "^1.11.10",
|
|
56
|
-
"html2canvas": "^1.4.1",
|
|
57
|
-
"jspdf": "^2.5.1",
|
|
58
|
-
"lodash-es": "^4.17.21",
|
|
59
|
-
"lunar-javascript": "^1.6.6",
|
|
60
|
-
"mitt": "^3.0.1",
|
|
61
|
-
"nprogress": "^0.2.0",
|
|
62
|
-
"remixicon": "^4.5.0",
|
|
63
|
-
"sortablejs": "^1.15.2",
|
|
64
|
-
"vue-draggable-plus": "^0.6.0",
|
|
65
|
-
"xlsx": "^0.18.5"
|
|
66
|
-
},
|
|
67
|
-
"devDependencies": {
|
|
68
|
-
"@iconify/types": "^2.0.0",
|
|
69
|
-
"@vitejs/plugin-vue": "^5.0.0",
|
|
70
|
-
"@vitejs/plugin-vue-jsx": "^4.0.0",
|
|
71
|
-
"@vueuse/core": "^10.7.0",
|
|
72
|
-
"sass": "^1.70.0",
|
|
73
|
-
"unplugin-auto-import": "^0.18.0",
|
|
74
|
-
"unplugin-vue-components": "^0.27.0",
|
|
75
|
-
"vite": "^6.0.0",
|
|
76
|
-
"vite-plugin-dts": "4.5.4",
|
|
77
|
-
"vite-plugin-svg-icons": "^2.0.1",
|
|
78
|
-
"vue": "^3.4.0",
|
|
79
|
-
"vue-router": "^4.3.0"
|
|
80
|
-
},
|
|
81
|
-
"author": "qiuye <yjk150@qq.com>",
|
|
82
|
-
"license": "MIT",
|
|
83
|
-
"keywords": [
|
|
84
|
-
"vue3",
|
|
85
|
-
"foucui",
|
|
86
|
-
"qiuye",
|
|
87
|
-
"fouui",
|
|
88
|
-
"canvas",
|
|
89
|
-
"badge"
|
|
90
|
-
],
|
|
91
|
-
"publishConfig": {
|
|
92
|
-
"access": "public",
|
|
93
|
-
"registry": "https://registry.npmjs.org/"
|
|
94
|
-
}
|
|
95
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "foucui",
|
|
3
|
+
"version": "2.2.1",
|
|
4
|
+
"description": "FouCui Vue3 组件库(组件前缀 Fou/fou-;含 FouCanvasKit)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/foucui.umd.cjs",
|
|
7
|
+
"module": "./dist/foucui.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/foucui.js",
|
|
13
|
+
"require": "./dist/foucui.umd.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./dist/foucui.css": "./dist/foucui.css",
|
|
16
|
+
"./dist/fou.css": "./dist/foucui.css",
|
|
17
|
+
"./dist/qiuye.css": "./dist/foucui.css",
|
|
18
|
+
"./dist/fouui-vue.css": "./dist/foucui.css",
|
|
19
|
+
"./dist/qiuui-vue.css": "./dist/foucui.css",
|
|
20
|
+
"./package.json": "./package.json"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": [
|
|
26
|
+
"**/*.css"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "vite build",
|
|
30
|
+
"prepublishOnly": "npm run build"
|
|
31
|
+
},
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"@vueuse/core": ">=10.0.0",
|
|
34
|
+
"vue": ">=3.3.0",
|
|
35
|
+
"vue-router": ">=4.0.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@iconify-json/ant-design": "^1.2.5",
|
|
39
|
+
"@iconify-json/bi": "^1.2.2",
|
|
40
|
+
"@iconify-json/carbon": "^1.2.8",
|
|
41
|
+
"@iconify-json/ep": "^1.2.2",
|
|
42
|
+
"@iconify-json/flagpack": "^1.2.1",
|
|
43
|
+
"@iconify-json/icon-park": "^1.2.2",
|
|
44
|
+
"@iconify-json/icon-park-outline": "^1.2.2",
|
|
45
|
+
"@iconify-json/logos": "^1.2.4",
|
|
46
|
+
"@iconify-json/lucide": "^1.2.45",
|
|
47
|
+
"@iconify-json/mdi": "^1.2.3",
|
|
48
|
+
"@iconify-json/ph": "^1.2.2",
|
|
49
|
+
"@iconify-json/ri": "^1.2.5",
|
|
50
|
+
"@iconify-json/tabler": "^1.2.17",
|
|
51
|
+
"@iconify/vue": "^4.1.2",
|
|
52
|
+
"@vueuse/head": "^2.0.0",
|
|
53
|
+
"axios": "^1.6.0",
|
|
54
|
+
"china-division": "^2.7.0",
|
|
55
|
+
"dayjs": "^1.11.10",
|
|
56
|
+
"html2canvas": "^1.4.1",
|
|
57
|
+
"jspdf": "^2.5.1",
|
|
58
|
+
"lodash-es": "^4.17.21",
|
|
59
|
+
"lunar-javascript": "^1.6.6",
|
|
60
|
+
"mitt": "^3.0.1",
|
|
61
|
+
"nprogress": "^0.2.0",
|
|
62
|
+
"remixicon": "^4.5.0",
|
|
63
|
+
"sortablejs": "^1.15.2",
|
|
64
|
+
"vue-draggable-plus": "^0.6.0",
|
|
65
|
+
"xlsx": "^0.18.5"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@iconify/types": "^2.0.0",
|
|
69
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
70
|
+
"@vitejs/plugin-vue-jsx": "^4.0.0",
|
|
71
|
+
"@vueuse/core": "^10.7.0",
|
|
72
|
+
"sass": "^1.70.0",
|
|
73
|
+
"unplugin-auto-import": "^0.18.0",
|
|
74
|
+
"unplugin-vue-components": "^0.27.0",
|
|
75
|
+
"vite": "^6.0.0",
|
|
76
|
+
"vite-plugin-dts": "4.5.4",
|
|
77
|
+
"vite-plugin-svg-icons": "^2.0.1",
|
|
78
|
+
"vue": "^3.4.0",
|
|
79
|
+
"vue-router": "^4.3.0"
|
|
80
|
+
},
|
|
81
|
+
"author": "qiuye <yjk150@qq.com>",
|
|
82
|
+
"license": "MIT",
|
|
83
|
+
"keywords": [
|
|
84
|
+
"vue3",
|
|
85
|
+
"foucui",
|
|
86
|
+
"qiuye",
|
|
87
|
+
"fouui",
|
|
88
|
+
"canvas",
|
|
89
|
+
"badge"
|
|
90
|
+
],
|
|
91
|
+
"publishConfig": {
|
|
92
|
+
"access": "public",
|
|
93
|
+
"registry": "https://registry.npmjs.org/"
|
|
94
|
+
}
|
|
95
|
+
}
|