z-vue-design 0.0.18 → 0.0.19
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/package.json +2 -1
- package/dist/favicon.ico +0 -0
- package/dist/styles/z-vue-design.css +0 -1
- package/dist/z-vue-design.es.js +0 -5133
- package/dist/z-vue-design.umd.js +0 -99
package/README.en.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# z-vue-design
|
|
2
|
+
|
|
3
|
+
#### Description
|
|
4
|
+
{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**}
|
|
5
|
+
|
|
6
|
+
#### Software Architecture
|
|
7
|
+
Software architecture description
|
|
8
|
+
|
|
9
|
+
#### Installation
|
|
10
|
+
|
|
11
|
+
1. xxxx
|
|
12
|
+
2. xxxx
|
|
13
|
+
3. xxxx
|
|
14
|
+
|
|
15
|
+
#### Instructions
|
|
16
|
+
|
|
17
|
+
1. xxxx
|
|
18
|
+
2. xxxx
|
|
19
|
+
3. xxxx
|
|
20
|
+
|
|
21
|
+
#### Contribution
|
|
22
|
+
|
|
23
|
+
1. Fork the repository
|
|
24
|
+
2. Create Feat_xxx branch
|
|
25
|
+
3. Commit your code
|
|
26
|
+
4. Create Pull Request
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
#### Gitee Feature
|
|
30
|
+
|
|
31
|
+
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
|
|
32
|
+
2. Gitee blog [blog.gitee.com](https://blog.gitee.com)
|
|
33
|
+
3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore)
|
|
34
|
+
4. The most valuable open source project [GVP](https://gitee.com/gvp)
|
|
35
|
+
5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help)
|
|
36
|
+
6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "z-vue-design",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"main": "./dist/z-vue-design.umd.js",
|
|
5
5
|
"module": "./dist/z-vue-design.es.js",
|
|
6
6
|
"style": "./dist/styles/z-vue-design.css",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"ant-design-vue": "^4.2.6",
|
|
28
28
|
"axios": "^1.8.0",
|
|
29
29
|
"babel-plugin-import": "^1.13.8",
|
|
30
|
+
"dayjs": "^1.11.13",
|
|
30
31
|
"echarts": "^5.6.0",
|
|
31
32
|
"node-sass": "^9.0.0",
|
|
32
33
|
"pinia": "^3.0.1",
|
package/dist/favicon.ico
DELETED
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
:root[z-theme=bright]{--global-main-bg: rgb(18, 35, 69);--global-secondary-bg: rgba(0, 98, 210, .4);--global-card: rgb(18, 35, 69);--global-card-secondary: .5px solid rgba(255, 255, 255, .15);--global-warning: #FFB800;--global-success: #00FF00;--global-error: #FF0000;--global-info: #00BFFF;--global-chart-1: #00F0FF`;--global-chart-2: #FF4D00`;--global-chart-3: #00FFA3`;--global-chart-4: #9A4DFF`;--global-chart-5: #FFD700`;--global-chart-6: #FF6BFF`;--global-main-title: rgba(255, 255, 255, .9);--global-card-title: rgba(255, 255, 255, .85);--global-focus-text: #eac52d`;--global-text-main: rgba(255, 255, 255, .8);--global-text-secondary: #ccc;--global-text-warning: #d34c4c}:root[z-theme=dark]{--global-main-bg: rgb(17, 18, 23);--global-secondary-bg: rgba(17, 18, 23, .6);--global-card: rgb(24, 27, 31);--global-card-secondary: .5px solid rgba(255, 255, 255, .15);--global-warning: #FFB800;--global-success: #00FF00;--global-error: #FF0000;--global-info: #00BFFF;--global-chart-1: #00F0FF`;--global-chart-2: #FF4D00`;--global-chart-3: #00FFA3`;--global-chart-4: #9A4DFF`;--global-chart-5: #FFD700`;--global-chart-6: #FF6BFF`;--global-main-title: #eac52d;--global-card-title: #eac52d;--global-focus-text: #eac52d`;--global-text-main: #eac52d;--global-text-secondary: rgba(255, 255, 255, .85);--global-text-warning: #d34c4c}.z-button{display:inline-block;padding:.5rem 1rem;font-size:1rem;border:none;background-color:var(--main-bg);border-radius:.25rem;cursor:pointer;transition:all .3s ease}.z-button:disabled{background-color:#6c757d;cursor:not-allowed}
|