@flatbiz/antd 4.0.18 → 4.0.20
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/cjs/index.css +45 -34
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +115 -18
- package/package.json +1 -1
package/cjs/index.css
CHANGED
|
@@ -65,6 +65,10 @@ ul {
|
|
|
65
65
|
pointer-events: initial !important;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
+
.check-list-checked {
|
|
69
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
70
|
+
}
|
|
71
|
+
|
|
68
72
|
.v-css-hover:hover {
|
|
69
73
|
position: relative;
|
|
70
74
|
}
|
|
@@ -303,6 +307,47 @@ ul {
|
|
|
303
307
|
justify-content: space-between;
|
|
304
308
|
}
|
|
305
309
|
|
|
310
|
+
.icon-wrapper {
|
|
311
|
+
cursor: pointer;
|
|
312
|
+
display: flex;
|
|
313
|
+
align-items: center;
|
|
314
|
+
padding: 6px;
|
|
315
|
+
border-radius: 6px;
|
|
316
|
+
margin: 0 -6px;
|
|
317
|
+
}
|
|
318
|
+
.icon-wrapper:hover {
|
|
319
|
+
transform: scale(1.1);
|
|
320
|
+
transition: all ease-in 0.1s;
|
|
321
|
+
position: relative;
|
|
322
|
+
background-color: rgba(0, 0, 0, 0.06);
|
|
323
|
+
}
|
|
324
|
+
.icon-wrapper .anticon + .icon-wrapper-text {
|
|
325
|
+
margin-left: 3px;
|
|
326
|
+
}
|
|
327
|
+
.icon-wrapper-small {
|
|
328
|
+
font-size: 14px;
|
|
329
|
+
padding: 3px;
|
|
330
|
+
margin: 0 -3px;
|
|
331
|
+
border-radius: 3px;
|
|
332
|
+
}
|
|
333
|
+
.icon-wrapper-middle {
|
|
334
|
+
font-size: 16px;
|
|
335
|
+
}
|
|
336
|
+
.icon-wrapper-large {
|
|
337
|
+
font-size: 20px;
|
|
338
|
+
}
|
|
339
|
+
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor {
|
|
340
|
+
padding: 0;
|
|
341
|
+
margin: 0;
|
|
342
|
+
}
|
|
343
|
+
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor:hover {
|
|
344
|
+
background-color: transparent;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.editable-field-full > .ant-space-item:nth-child(1) {
|
|
348
|
+
flex: 1;
|
|
349
|
+
}
|
|
350
|
+
|
|
306
351
|
.v-selector-item-icon {
|
|
307
352
|
margin-right: 5px;
|
|
308
353
|
}
|
|
@@ -384,40 +429,6 @@ ul {
|
|
|
384
429
|
align-items: flex-start;
|
|
385
430
|
}
|
|
386
431
|
|
|
387
|
-
.icon-wrapper {
|
|
388
|
-
cursor: pointer;
|
|
389
|
-
display: flex;
|
|
390
|
-
align-items: center;
|
|
391
|
-
padding: 6px;
|
|
392
|
-
border-radius: 6px;
|
|
393
|
-
margin: 0 -6px;
|
|
394
|
-
}
|
|
395
|
-
.icon-wrapper:hover {
|
|
396
|
-
transform: scale(1.1);
|
|
397
|
-
transition: all ease-in 0.1s;
|
|
398
|
-
position: relative;
|
|
399
|
-
background-color: rgba(0, 0, 0, 0.06);
|
|
400
|
-
}
|
|
401
|
-
.icon-wrapper .anticon + .icon-wrapper-text {
|
|
402
|
-
margin-left: 3px;
|
|
403
|
-
}
|
|
404
|
-
.icon-wrapper-small {
|
|
405
|
-
font-size: 14px;
|
|
406
|
-
}
|
|
407
|
-
.icon-wrapper-middle {
|
|
408
|
-
font-size: 16px;
|
|
409
|
-
}
|
|
410
|
-
.icon-wrapper-large {
|
|
411
|
-
font-size: 20px;
|
|
412
|
-
}
|
|
413
|
-
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor {
|
|
414
|
-
padding: 0;
|
|
415
|
-
margin: 0;
|
|
416
|
-
}
|
|
417
|
-
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor:hover {
|
|
418
|
-
background-color: transparent;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
432
|
.v-label-value-layout .ant-descriptions-item-label {
|
|
422
433
|
width: var(--v-label-value-layout-lWidth);
|
|
423
434
|
color: rgba(0, 0, 0, 0.45);
|