zhytech-ui 1.0.35 → 1.0.37
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 +19 -7
- package/dist/src/components/dynamicForm/components/base/date/index.d.ts +102 -0
- package/dist/src/components/dynamicForm/components/base/date/propsEditor.vue.d.ts +2 -0
- package/dist/src/components/dynamicForm/components/base/date/renderer.vue.d.ts +113 -0
- package/dist/src/components/dynamicForm/components/base/hooks/useDatetimeType.d.ts +15 -0
- package/dist/src/components/dynamicForm/components/base/index.d.ts +4 -1
- package/dist/src/components/dynamicForm/components/base/inputNumber/index.d.ts +107 -0
- package/dist/src/components/dynamicForm/components/base/inputNumber/propsEditor.vue.d.ts +2 -0
- package/dist/src/components/dynamicForm/components/base/inputNumber/renderer.vue.d.ts +113 -0
- package/dist/src/components/dynamicForm/components/base/time/index.d.ts +102 -0
- package/dist/src/components/dynamicForm/components/base/time/propsEditor.vue.d.ts +2 -0
- package/dist/src/components/dynamicForm/components/base/time/renderer.vue.d.ts +113 -0
- package/dist/src/components/dynamicForm/formRenderer.vue.d.ts +8 -2
- package/dist/src/components/dynamicForm/types/abnormalCheckView.d.ts +18 -0
- package/dist/src/components/dynamicForm/types/componentAttribute/base/datetimeAttribute.d.ts +54 -0
- package/dist/src/components/dynamicForm/types/componentAttribute/base/inputNumberAttribute.d.ts +27 -0
- package/dist/src/components/dynamicForm/types/componentAttribute/baseAttribute.d.ts +16 -0
- package/dist/src/components/dynamicForm/types/componentAttribute/index.d.ts +3 -1
- package/dist/src/components/dynamicForm/types/datetimeTypeView.d.ts +26 -0
- package/dist/src/components/dynamicForm/types/relevanceConditionView.d.ts +21 -0
- package/dist/src/types/enum.d.ts +61 -0
- package/dist/src/utils/dayjs.d.ts +129 -0
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +6208 -4416
- package/dist/zhytech-ui.umd.js +4 -4
- package/package.json +76 -74
package/package.json
CHANGED
|
@@ -1,74 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "zhytech-ui",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"private": false,
|
|
5
|
-
"scripts": {
|
|
6
|
-
"dev": "vite --force",
|
|
7
|
-
"build": "vite build",
|
|
8
|
-
"preview": "vite preview",
|
|
9
|
-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
10
|
-
"format": "prettier --write src/"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
"ui",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@vue/
|
|
59
|
-
"eslint": "^
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"sass": "
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "zhytech-ui",
|
|
3
|
+
"version": "1.0.37",
|
|
4
|
+
"private": false,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite --force",
|
|
7
|
+
"build": "vite build",
|
|
8
|
+
"preview": "vite preview",
|
|
9
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
10
|
+
"format": "prettier --write src/",
|
|
11
|
+
"test": "npm run build && yalc push"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"description": "基于Vue3 + ElementPlus + TypeScript封装的组件库",
|
|
17
|
+
"author": "SJZ",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"zhytech-ui",
|
|
20
|
+
"ui",
|
|
21
|
+
"form",
|
|
22
|
+
"vue"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"main": "./dist/zhytech-ui.umd.js",
|
|
26
|
+
"module": "./dist/zhytech-ui.es.js",
|
|
27
|
+
"types": "./dist/src/index.d.ts",
|
|
28
|
+
"style": "./dist/style.css",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"import": "./dist/zhytech-ui.es.js",
|
|
32
|
+
"require": "./dist/zhytech-ui.umd.js"
|
|
33
|
+
},
|
|
34
|
+
"./dist/style.css": "./dist/style.css"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"registry": "https://registry.npmjs.org/"
|
|
38
|
+
},
|
|
39
|
+
"volta": {
|
|
40
|
+
"node": "18.16.0"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@vueuse/core": "^10.4.1",
|
|
44
|
+
"autoprefixer": "^10.4.14",
|
|
45
|
+
"dayjs": "^1.11.13",
|
|
46
|
+
"element-plus": "2.6.1",
|
|
47
|
+
"postcss-loader": "^7.3.3",
|
|
48
|
+
"postcss-pxtorem": "^6.0.0",
|
|
49
|
+
"sortablejs": "^1.15.0",
|
|
50
|
+
"vue": "3.4.0",
|
|
51
|
+
"vue-router": "^4.2.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@rushstack/eslint-patch": "^1.2.0",
|
|
55
|
+
"@tsconfig/node18": "^2.0.1",
|
|
56
|
+
"@types/node": "^18.16.8",
|
|
57
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
58
|
+
"@vue/eslint-config-prettier": "^7.1.0",
|
|
59
|
+
"@vue/eslint-config-typescript": "^11.0.3",
|
|
60
|
+
"@vue/tsconfig": "^0.4.0",
|
|
61
|
+
"eslint": "^8.39.0",
|
|
62
|
+
"eslint-plugin-vue": "^9.11.0",
|
|
63
|
+
"node-sass": "8.0.0",
|
|
64
|
+
"prettier": "^2.8.8",
|
|
65
|
+
"sass": "1.77.0",
|
|
66
|
+
"sass-loader": "^13.3.1",
|
|
67
|
+
"style-loader": "^3.3.3",
|
|
68
|
+
"terser": "^5.18.0",
|
|
69
|
+
"typescript": "~5.0.4",
|
|
70
|
+
"unplugin-auto-import": "^0.16.4",
|
|
71
|
+
"unplugin-vue-components": "^0.25.1",
|
|
72
|
+
"vite": "^4.3.5",
|
|
73
|
+
"vite-plugin-dts": "^4.0.3",
|
|
74
|
+
"vue-tsc": "^1.6.4"
|
|
75
|
+
}
|
|
76
|
+
}
|