@vunk/form 2.13.0 → 2.13.1
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/form-item/index.cjs +138 -143
- package/components/form-item/index.css +13 -16
- package/components/form-item/index.mjs +140 -145
- package/components/form-item/src/core.vue.d.ts +1847 -0
- package/components/form-item/src/index.vue.d.ts +4 -745
- package/components/form-item/src/types.d.ts +1 -0
- package/index.css +13 -16
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -220,15 +220,6 @@
|
|
|
220
220
|
margin: 0;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
-
.vkf-form-item.is-information{
|
|
224
|
-
margin-bottom: 0;
|
|
225
|
-
}
|
|
226
|
-
.vkf-form-item--inline{
|
|
227
|
-
display: inline-flex;
|
|
228
|
-
}
|
|
229
|
-
.vkf-form-item__tip {
|
|
230
|
-
color: var(--el-text-color-secondary);
|
|
231
|
-
}
|
|
232
223
|
.vkf-form-item-label-tip-button:hover .el-icon {
|
|
233
224
|
color: var(--el-color-primary);
|
|
234
225
|
}
|
|
@@ -239,22 +230,28 @@
|
|
|
239
230
|
margin-left: 4px;
|
|
240
231
|
padding: 4px;
|
|
241
232
|
}
|
|
242
|
-
.vkf-form-item.
|
|
243
|
-
display: none;
|
|
244
|
-
}
|
|
245
|
-
.vkf-form-item.has-label-actions > .el-form-item__label {
|
|
233
|
+
.el-form-item--label-top.vkf-form-item.has-label-actions > .el-form-item__label {
|
|
246
234
|
width: 100%;
|
|
247
235
|
padding-right: 0;
|
|
248
236
|
}
|
|
249
|
-
.
|
|
237
|
+
.vkf-form-item__tip {
|
|
238
|
+
color: var(--el-text-color-secondary);
|
|
239
|
+
}
|
|
240
|
+
.vkf-form-item-label__actions {
|
|
250
241
|
float: right;
|
|
251
242
|
align-items: center;
|
|
252
|
-
display:
|
|
243
|
+
display: inline-flex;
|
|
253
244
|
height: 1.8em;
|
|
254
245
|
}
|
|
255
|
-
.
|
|
246
|
+
.vkf-form-item.is-information{
|
|
247
|
+
margin-bottom: 0;
|
|
248
|
+
}
|
|
249
|
+
.vkf-form-item--inline{
|
|
256
250
|
display: inline-flex;
|
|
257
251
|
}
|
|
252
|
+
.vkf-form-item.is-empty-label .el-form-item__label:before{
|
|
253
|
+
display: none;
|
|
254
|
+
}
|
|
258
255
|
|
|
259
256
|
.vkf-information-tag__tag{
|
|
260
257
|
cursor: pointer;
|