@vunk/form 1.1.70 → 1.1.72
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/components/download-plus/index.css +74 -0
- package/components/download-plus/index.d.ts +4 -0
- package/components/download-plus/index.js +384 -0
- package/components/download-plus/src/api.d.ts +13 -0
- package/components/download-plus/src/api.js +1 -0
- package/components/download-plus/src/const.d.ts +9 -0
- package/components/download-plus/src/const.js +1 -0
- package/components/download-plus/src/ctx.d.ts +83 -0
- package/components/download-plus/src/ctx.js +1 -0
- package/components/download-plus/src/index.css +1 -0
- package/components/download-plus/src/index.vue.d.ts +198 -0
- package/components/download-plus/src/types.d.ts +17 -0
- package/components/download-plus/src/types.js +1 -0
- package/components/upload-plus/index.css +2 -0
- package/components/upload-plus/index.js +41 -10
- package/components/upload-plus/src/api.d.ts +1 -0
- package/components/upload-plus/src/api.js +6 -6
- package/components/upload-plus/src/ctx.d.ts +17 -1
- package/components/upload-plus/src/ctx.js +1 -1
- package/components/upload-plus/src/index.vue.d.ts +4 -3
- package/index.css +79 -0
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -57,6 +57,81 @@
|
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
|
|
60
|
+
|
|
61
|
+
.vkf-download-plus{
|
|
62
|
+
--vkf-download-plus-height: 34px;
|
|
63
|
+
}
|
|
64
|
+
.vkf-download-plus-label{
|
|
65
|
+
position: relative;
|
|
66
|
+
}
|
|
67
|
+
.vkf-download-plus-cube-x,
|
|
68
|
+
.vkf-download-plus-msg-x
|
|
69
|
+
{
|
|
70
|
+
position: absolute;
|
|
71
|
+
top: 0;
|
|
72
|
+
left: 0;
|
|
73
|
+
bottom: 0;
|
|
74
|
+
right: 0;
|
|
75
|
+
}
|
|
76
|
+
.vkf-download-plus-msg-x{
|
|
77
|
+
display: flex;
|
|
78
|
+
align-items: center;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
color: var(--el-color-success);
|
|
81
|
+
background: var(--el-bg-color);
|
|
82
|
+
animation-name: hide; /* 指定使用hide关键帧动画 */
|
|
83
|
+
animation-duration: 1s; /* 动画持续时间为2秒 */
|
|
84
|
+
animation-delay: 1s; /* 延迟2秒后开始动画 */
|
|
85
|
+
animation-fill-mode: forwards; /* 动画结束后保持最后一帧的状态 */
|
|
86
|
+
}
|
|
87
|
+
.vkf-download-plus-msg{
|
|
88
|
+
margin-left: 2px;
|
|
89
|
+
}
|
|
90
|
+
.vkf-download-plus-cube {
|
|
91
|
+
float: left;
|
|
92
|
+
height: 100%;
|
|
93
|
+
}
|
|
94
|
+
.vkf-download-plus-cube.error {
|
|
95
|
+
background: var(--el-color-danger);
|
|
96
|
+
}
|
|
97
|
+
.vkf-download-plus-cube .success{
|
|
98
|
+
background: var(--el-color-success);
|
|
99
|
+
}
|
|
100
|
+
.vkf-download-plus-cube .uploading{
|
|
101
|
+
background: var(--el-color-primary);
|
|
102
|
+
}
|
|
103
|
+
.vkf-download-plus-cube .error{
|
|
104
|
+
background: var(--el-color-danger);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.vkf-download-plus-btng >.el-button:first-child{
|
|
108
|
+
border-radius: 0;
|
|
109
|
+
}
|
|
110
|
+
.vkf-download-plus-btng >.el-button{
|
|
111
|
+
height: var(--vkf-download-plus-height);
|
|
112
|
+
}
|
|
113
|
+
.vkf-download-plus-main{
|
|
114
|
+
display: flex;
|
|
115
|
+
align-items: center;
|
|
116
|
+
border: var(--el-border);
|
|
117
|
+
border-radius: var(--el-border-radius-base);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.vkf-download-plus-label .el-input{
|
|
121
|
+
--el-input-border-color: transparent;
|
|
122
|
+
--el-input-focus-border-color: transparent;
|
|
123
|
+
--el-input-hover-border-color: transparent;
|
|
124
|
+
}
|
|
125
|
+
.vkf-download-plus-label .el-input.is-success .el-icon{
|
|
126
|
+
color: var(--el-color-success);
|
|
127
|
+
}
|
|
128
|
+
.vkf-download-plus-label .el-input.is-error .el-icon{
|
|
129
|
+
color: var(--el-color-danger);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
60
135
|
.el-button.vkf-esri-input-geojson__upload{
|
|
61
136
|
border-color: transparent;
|
|
62
137
|
background-color: transparent;
|
|
@@ -404,6 +479,8 @@
|
|
|
404
479
|
.vkf-upload-plus-label .el-input{
|
|
405
480
|
pointer-events: none;
|
|
406
481
|
--el-input-border-color: transparent;
|
|
482
|
+
--el-input-focus-border-color: transparent;
|
|
483
|
+
--el-input-hover-border-color: transparent;
|
|
407
484
|
}
|
|
408
485
|
.vkf-upload-plus-label .el-input.is-success .el-icon{
|
|
409
486
|
color: var(--el-color-success);
|
|
@@ -503,6 +580,8 @@
|
|
|
503
580
|
|
|
504
581
|
|
|
505
582
|
|
|
583
|
+
|
|
584
|
+
|
|
506
585
|
|
|
507
586
|
|
|
508
587
|
|