lew-ui 2.7.6 → 2.7.7
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/LICENSE +21 -21
- package/dist/components/input-table/src/FormModal.vue.d.ts +1 -2
- package/dist/components/input-table/src/LewInputTable.vue.d.ts +9 -8
- package/dist/components/table/src/LewTable.vue.d.ts +2 -2
- package/dist/components/upload/src/LewUpload.vue.d.ts +13 -0
- package/dist/components/upload/src/props.d.ts +6 -4
- package/dist/index.css +1 -1
- package/dist/index.js +235 -211
- package/dist/index.umd.cjs +2 -2
- package/dist/locals/zh.d.ts +7 -0
- package/package.json +12 -3
package/dist/locals/zh.d.ts
CHANGED
|
@@ -97,6 +97,13 @@ declare const _default: {
|
|
|
97
97
|
accept: string;
|
|
98
98
|
limit: string;
|
|
99
99
|
maxFileSize: string;
|
|
100
|
+
pending: string;
|
|
101
|
+
success: string;
|
|
102
|
+
fail: string;
|
|
103
|
+
uploading: string;
|
|
104
|
+
complete: string;
|
|
105
|
+
wrong_type: string;
|
|
106
|
+
wrong_size: string;
|
|
100
107
|
};
|
|
101
108
|
pagination: {
|
|
102
109
|
pageSize: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lew-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.7",
|
|
5
5
|
"description": "A Component Library for Vue3.js.",
|
|
6
6
|
"author": "lewkamtao",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,6 +33,10 @@
|
|
|
33
33
|
"build:tsdown": "tsdown",
|
|
34
34
|
"build:docs": "vue-tsc --noEmit && vite build --mode docs",
|
|
35
35
|
"build:lib": "vue-tsc --noEmit && vite build --mode lib",
|
|
36
|
+
"analyze": "vite build --mode analyze",
|
|
37
|
+
"format": "pnpm lint:fix && pnpm lint:css:fix",
|
|
38
|
+
"lint:css": "stylelint \"lib/**/*.{css,scss}\"",
|
|
39
|
+
"lint:css:fix": "stylelint \"lib/**/*.{css,scss}\" --fix",
|
|
36
40
|
"lint": "eslint",
|
|
37
41
|
"lint:fix": "eslint --fix",
|
|
38
42
|
"test": "vitest",
|
|
@@ -52,6 +56,7 @@
|
|
|
52
56
|
"lodash-es": "^4.17.21",
|
|
53
57
|
"lucide-vue-next": "^0.471.0",
|
|
54
58
|
"rollup-plugin-scss": "^4.0.1",
|
|
59
|
+
"stylelint-config-recommended": "^16.0.0",
|
|
55
60
|
"tippy.js": "^6.3.7",
|
|
56
61
|
"vue-i18n": "^11.1.0",
|
|
57
62
|
"vue-router": "^4.0.13",
|
|
@@ -63,8 +68,13 @@
|
|
|
63
68
|
"@antfu/eslint-config": "^4.17.0",
|
|
64
69
|
"@types/node": "^22.16.0",
|
|
65
70
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
66
|
-
"eslint": "^9.
|
|
71
|
+
"eslint": "^9.31.0",
|
|
72
|
+
"eslint-plugin-format": "^1.0.1",
|
|
73
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
67
74
|
"sass": "^1.89.2",
|
|
75
|
+
"stylelint": "16.2.1",
|
|
76
|
+
"stylelint-config-rational-order": "0.1.2",
|
|
77
|
+
"stylelint-order": "^7.0.0",
|
|
68
78
|
"tsdown": "^0.12.9",
|
|
69
79
|
"tsx": "^4.20.3",
|
|
70
80
|
"typescript": "^5.8.3",
|
|
@@ -75,7 +85,6 @@
|
|
|
75
85
|
"vite-plugin-dts": "^4.5.4",
|
|
76
86
|
"vite-plugin-style-import": "^2.0.0",
|
|
77
87
|
"vite-plugin-zip-pack": "^1.2.3",
|
|
78
|
-
"vitest": "^3.2.4",
|
|
79
88
|
"vue": "^3.5.17",
|
|
80
89
|
"vue-tsc": "^3.0.1"
|
|
81
90
|
}
|