syntec3-0-ui-components 1.0.0
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.en.md +36 -0
- package/README.md +5 -0
- package/dist/S3_0UC_main.csv +4 -0
- package/dist/S3_0UC_sub.csv +2 -0
- package/dist/globalVariableS3_0UC.json +1 -0
- package/dist/i18n/en-us.es.js +6264 -0
- package/dist/i18n/en-us.es.js.map +1 -0
- package/dist/i18n/errorCodes.es.js +827 -0
- package/dist/i18n/errorCodes.es.js.map +1 -0
- package/dist/i18n/zh-cn.es.js +6273 -0
- package/dist/i18n/zh-cn.es.js.map +1 -0
- package/dist/i18n/zh-tw.es.js +6264 -0
- package/dist/i18n/zh-tw.es.js.map +1 -0
- package/dist/i18n.es.js +570 -0
- package/dist/i18n.es.js.map +1 -0
- package/dist/style.css +1 -0
- package/dist/syntec3-0-ui-components.es.js +29864 -0
- package/dist/syntec3-0-ui-components.es.js.map +1 -0
- package/dist/syntec3-0-ui-components.umd.js +23 -0
- package/dist/syntec3-0-ui-components.umd.js.map +1 -0
- package/dist/vite.svg +1 -0
- package/dist/web.config +17 -0
- package/package.json +147 -0
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/dist/web.config
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<configuration>
|
|
3
|
+
<system.webServer>
|
|
4
|
+
<rewrite>
|
|
5
|
+
<rules>
|
|
6
|
+
<rule name="s3_0uc">
|
|
7
|
+
<match url=".*" />
|
|
8
|
+
<conditions>
|
|
9
|
+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
|
|
10
|
+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
|
|
11
|
+
</conditions>
|
|
12
|
+
<action type="Rewrite" url="/S3_0UC/" />
|
|
13
|
+
</rule>
|
|
14
|
+
</rules>
|
|
15
|
+
</rewrite>
|
|
16
|
+
</system.webServer>
|
|
17
|
+
</configuration>
|
package/package.json
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "syntec3-0-ui-components",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "xdkj基于Vue 3 和 Element Plus 等的页面组件集合",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "./dist/syntec3-0-ui-components.umd.js",
|
|
8
|
+
"module": "./dist/syntec3-0-ui-components.es.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/syntec3-0-ui-components.es.js",
|
|
12
|
+
"require": "./dist/syntec3-0-ui-components.umd.js"
|
|
13
|
+
},
|
|
14
|
+
"./style.css": "./dist/style.css",
|
|
15
|
+
"./i18n": {
|
|
16
|
+
"import": "./dist/i18n.es.js",
|
|
17
|
+
"require": "./dist/i18n.umd.js"
|
|
18
|
+
},
|
|
19
|
+
"./i18n/zh-cn": "./dist/i18n/zh-cn.es.js",
|
|
20
|
+
"./i18n/zh-tw": "./dist/i18n/zh-tw.es.js",
|
|
21
|
+
"./i18n/en-us": "./dist/i18n/en-us.es.js",
|
|
22
|
+
"./i18n/errorCodes": "./dist/i18n/errorCodes.es.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"keywords": [
|
|
28
|
+
"vue",
|
|
29
|
+
"vue3",
|
|
30
|
+
"components",
|
|
31
|
+
"element-plus",
|
|
32
|
+
"ui-components"
|
|
33
|
+
],
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
36
|
+
"element-plus": "2.10.6",
|
|
37
|
+
"vue": "^3.5.11",
|
|
38
|
+
"vue-draggable-plus": "^0.5.4",
|
|
39
|
+
"vue-i18n": "^10.0.3"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "node getLocale.mjs && vite",
|
|
43
|
+
"build": "vite build",
|
|
44
|
+
"build:lib": "npm run build:lib:main && npm run build:lib:i18n",
|
|
45
|
+
"build:lib:main": "vite build --config vite.config.lib.main.js",
|
|
46
|
+
"build:lib:i18n": "vite build --config vite.config.lib.i18n.js",
|
|
47
|
+
"preview": "vite preview",
|
|
48
|
+
"release:z": "standard-version --release-as patch",
|
|
49
|
+
"release:y": "standard-version --release-as minor",
|
|
50
|
+
"release:x": "standard-version --release-as major",
|
|
51
|
+
"publish:z注释-忽略": "// 自定义发布命令:先更新补丁版,再发布,// 补丁版本(x.y.z → x.y.(z+1))",
|
|
52
|
+
"publish:z": "npm run release:z && git push --tags && npm publish",
|
|
53
|
+
"publish:y注释-忽略": "// 可选:分别定义小版本/大版本发布命令,// 次版本(x.y.z → x.(y+1).0)",
|
|
54
|
+
"publish:y": "npm run release:y && git push --tags && npm publish",
|
|
55
|
+
"publish:x注释-忽略": "// 可选:分别定义小版本/大版本发布命令,// 主版本(x.y.z → (x+1).0.0)",
|
|
56
|
+
"publish:x": "npm run release:x && git push --tags && npm publish"
|
|
57
|
+
},
|
|
58
|
+
"lint-staged": {
|
|
59
|
+
"*.{js,jsx,ts,tsx}": [
|
|
60
|
+
"prettier --write",
|
|
61
|
+
"eslint --fix"
|
|
62
|
+
],
|
|
63
|
+
"*.vue": [
|
|
64
|
+
"prettier --write",
|
|
65
|
+
"eslint --fix",
|
|
66
|
+
"stylelint --fix"
|
|
67
|
+
],
|
|
68
|
+
"*.{html,sass,scss,less}": [
|
|
69
|
+
"prettier --write",
|
|
70
|
+
"stylelint --fix"
|
|
71
|
+
],
|
|
72
|
+
"package.json": [
|
|
73
|
+
"prettier --write"
|
|
74
|
+
],
|
|
75
|
+
"*.md": [
|
|
76
|
+
"prettier --write"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"big.js": "^7.0.1",
|
|
81
|
+
"crypto-js": "^4.2.0",
|
|
82
|
+
"i": "^0.3.7",
|
|
83
|
+
"jspdf": "^2.5.2",
|
|
84
|
+
"jspdf-autotable": "^3.8.4",
|
|
85
|
+
"mathjs": "^15.1.0",
|
|
86
|
+
"mitt": "^3.0.1",
|
|
87
|
+
"p-queue": "^8.1.0",
|
|
88
|
+
"qiankun": "^2.10.16",
|
|
89
|
+
"qrcode": "^1.5.4",
|
|
90
|
+
"sass": "^1.80.5",
|
|
91
|
+
"scss": "^0.2.4",
|
|
92
|
+
"utif": "^3.1.0",
|
|
93
|
+
"uuid": "^11.0.5",
|
|
94
|
+
"vite-plugin-eslint": "^1.8.1",
|
|
95
|
+
"vite-plugin-qiankun": "^1.0.15",
|
|
96
|
+
"vue": "^3.5.11",
|
|
97
|
+
"element-plus": "2.10.6",
|
|
98
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
99
|
+
"vue-i18n": "^10.0.3",
|
|
100
|
+
"vue-router": "^4.4.5",
|
|
101
|
+
"vuex": "^4.0.2",
|
|
102
|
+
"axios": "^1.7.7",
|
|
103
|
+
"dayjs": "^1.11.13",
|
|
104
|
+
"lodash": "^4.17.21",
|
|
105
|
+
"vue-draggable-plus": "^0.5.4",
|
|
106
|
+
"@fullcalendar/core": "^6.1.15",
|
|
107
|
+
"@fullcalendar/daygrid": "^6.1.15",
|
|
108
|
+
"@fullcalendar/interaction": "^6.1.15",
|
|
109
|
+
"@fullcalendar/list": "^6.1.15",
|
|
110
|
+
"@fullcalendar/resource-timeline": "^6.1.15",
|
|
111
|
+
"@fullcalendar/timegrid": "^6.1.15",
|
|
112
|
+
"@fullcalendar/vue3": "^6.1.15",
|
|
113
|
+
"@mdi/font": "^7.4.47",
|
|
114
|
+
"xlsx": "^0.18.5",
|
|
115
|
+
"xlsx-style": "^0.8.13"
|
|
116
|
+
},
|
|
117
|
+
"devDependencies": {
|
|
118
|
+
"@babel/eslint-parser": "^7.25.9",
|
|
119
|
+
"@eslint/js": "^8.54.0",
|
|
120
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
121
|
+
"@semantic-release/exec": "^6.0.3",
|
|
122
|
+
"@semantic-release/git": "^10.0.1",
|
|
123
|
+
"@semantic-release/gitlab": "^13.2.1",
|
|
124
|
+
"@semantic-release/npm": "^12.0.1",
|
|
125
|
+
"@tsconfig/node20": "^20.1.4",
|
|
126
|
+
"@types/node": "^20.16.11",
|
|
127
|
+
"@vitejs/plugin-vue": "^5.1.4",
|
|
128
|
+
"@vue/tsconfig": "^0.5.1",
|
|
129
|
+
"eslint": "^8.54.0",
|
|
130
|
+
"eslint-config-prettier": "^9.0.0",
|
|
131
|
+
"eslint-define-config": "^2.0.0",
|
|
132
|
+
"eslint-plugin-prettier": "^5.0.1",
|
|
133
|
+
"eslint-plugin-vue": "^9.18.1",
|
|
134
|
+
"npm-run-all2": "^6.2.3",
|
|
135
|
+
"prettier": "^3.1.0",
|
|
136
|
+
"sass": "^1.80.5",
|
|
137
|
+
"sass-embedded": "^1.80.4",
|
|
138
|
+
"sass-loader": "^16.0.2",
|
|
139
|
+
"semantic-release": "^24.1.1",
|
|
140
|
+
"typescript": "~5.5.4",
|
|
141
|
+
"vite": "^5.4.14",
|
|
142
|
+
"vite-plugin-html": "^3.2.2",
|
|
143
|
+
"vite-plugin-top-level-await": "^1.4.4",
|
|
144
|
+
"vue-eslint-parser": "^9.3.2",
|
|
145
|
+
"vue-tsc": "^2.1.6"
|
|
146
|
+
}
|
|
147
|
+
}
|