acud 0.0.65 → 0.0.66
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/dist/acud.css +76 -39
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +458 -205
- package/dist/acud.js.map +1 -1
- package/dist/acud.min.css +1 -1
- package/dist/acud.min.css.map +1 -1
- package/dist/acud.min.js +10 -4
- package/dist/acud.min.js.map +1 -1
- package/es/breadcrumb/BreadcrumbItem.d.ts +1 -1
- package/es/breadcrumb/BreadcrumbItem.js +16 -4
- package/es/dialog-box/style/index.css +4 -4
- package/es/dropdown/dropdown-button.js +7 -1
- package/es/dropdown/style/index.css +2 -1
- package/es/dropdown/style/index.less +2 -1
- package/es/modal/Modal.d.ts +5 -0
- package/es/modal/Modal.js +6 -4
- package/es/modal/style/index.css +24 -14
- package/es/modal/style/index.less +18 -6
- package/es/modal/style/mixin.less +2 -2
- package/es/progress/style/common.less +5 -3
- package/es/progress/style/index.css +2 -1
- package/es/radio/index.d.ts +3 -0
- package/es/style/themes/dark/components/modal.less +14 -9
- package/es/style/themes/default/components/modal.less +14 -14
- package/es/time-picker/style/index.css +1 -0
- package/es/time-picker/style/index.less +1 -0
- package/es/transfer/{dataSource.d.ts → DataSource.d.ts} +1 -1
- package/es/transfer/{dataSource.js → DataSource.js} +37 -6
- package/{lib/transfer/sourceList.d.ts → es/transfer/SourceList.d.ts} +2 -2
- package/es/transfer/{sourceList.js → SourceList.js} +0 -0
- package/es/transfer/{target.d.ts → Target.d.ts} +1 -1
- package/es/transfer/{target.js → Target.js} +60 -4
- package/{lib/transfer/targetList.d.ts → es/transfer/TargetList.d.ts} +2 -2
- package/es/transfer/{targetList.js → TargetList.js} +0 -0
- package/es/transfer/index.d.ts +3 -0
- package/es/transfer/index.js +9 -4
- package/es/transfer/style/css.js +3 -1
- package/es/transfer/style/index.css +25 -5
- package/es/transfer/style/index.d.ts +1 -0
- package/es/transfer/style/index.js +3 -1
- package/es/transfer/style/index.less +30 -5
- package/es/upload/UploadList/ListItem.js +7 -2
- package/es/upload/UploadList/index.js +4 -7
- package/es/upload/style/index.css +17 -13
- package/es/upload/style/index.less +25 -20
- package/es/upload/utils.js +1 -1
- package/lib/breadcrumb/BreadcrumbItem.d.ts +1 -1
- package/lib/breadcrumb/BreadcrumbItem.js +21 -8
- package/lib/dialog-box/style/index.css +4 -4
- package/lib/dropdown/dropdown-button.js +7 -1
- package/lib/dropdown/style/index.css +2 -1
- package/lib/dropdown/style/index.less +2 -1
- package/lib/modal/Modal.d.ts +5 -0
- package/lib/modal/Modal.js +6 -4
- package/lib/modal/style/index.css +24 -14
- package/lib/modal/style/index.less +18 -6
- package/lib/modal/style/mixin.less +2 -2
- package/lib/progress/style/common.less +5 -3
- package/lib/progress/style/index.css +2 -1
- package/lib/radio/index.d.ts +3 -0
- package/lib/style/themes/dark/components/modal.less +14 -9
- package/lib/style/themes/default/components/modal.less +14 -14
- package/lib/time-picker/style/index.css +1 -0
- package/lib/time-picker/style/index.less +1 -0
- package/lib/transfer/{dataSource.d.ts → DataSource.d.ts} +1 -1
- package/lib/transfer/{dataSource.js → DataSource.js} +38 -6
- package/{es/transfer/sourceList.d.ts → lib/transfer/SourceList.d.ts} +2 -2
- package/lib/transfer/{sourceList.js → SourceList.js} +0 -0
- package/lib/transfer/{target.d.ts → Target.d.ts} +1 -1
- package/lib/transfer/{target.js → Target.js} +63 -5
- package/{es/transfer/targetList.d.ts → lib/transfer/TargetList.d.ts} +2 -2
- package/lib/transfer/{targetList.js → TargetList.js} +0 -0
- package/lib/transfer/index.d.ts +3 -0
- package/lib/transfer/index.js +11 -7
- package/lib/transfer/style/css.js +3 -1
- package/lib/transfer/style/index.css +25 -5
- package/lib/transfer/style/index.d.ts +1 -0
- package/lib/transfer/style/index.js +3 -1
- package/lib/transfer/style/index.less +30 -5
- package/lib/upload/UploadList/ListItem.js +7 -2
- package/lib/upload/UploadList/index.js +4 -7
- package/lib/upload/style/index.css +17 -13
- package/lib/upload/style/index.less +25 -20
- package/lib/upload/utils.js +1 -1
- package/package.json +1 -1
package/dist/acud.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! acud v0.0.
|
|
1
|
+
/*! acud v0.0.66 */
|
|
2
2
|
/* color */
|
|
3
3
|
/* 默认颜色 */
|
|
4
4
|
/* 通用-icon */
|
|
@@ -13090,19 +13090,19 @@ _:-ms-fullscreen .acud-picker-range-wrapper .acud-picker-year-panel .acud-picker
|
|
|
13090
13090
|
}
|
|
13091
13091
|
.acud-dialogbox-sm {
|
|
13092
13092
|
width: 520px;
|
|
13093
|
-
max-height:
|
|
13093
|
+
max-height: 560px;
|
|
13094
13094
|
}
|
|
13095
13095
|
.acud-dialogbox-md {
|
|
13096
13096
|
width: 800px;
|
|
13097
|
-
max-height:
|
|
13097
|
+
max-height: 560px;
|
|
13098
13098
|
}
|
|
13099
13099
|
.acud-dialogbox-lg {
|
|
13100
13100
|
width: 1120px;
|
|
13101
|
-
max-height:
|
|
13101
|
+
max-height: 560px;
|
|
13102
13102
|
}
|
|
13103
13103
|
.acud-dialogbox-xl {
|
|
13104
13104
|
width: 1200px;
|
|
13105
|
-
max-height:
|
|
13105
|
+
max-height: 560px;
|
|
13106
13106
|
}
|
|
13107
13107
|
.acud-dialogbox-content {
|
|
13108
13108
|
position: relative;
|
|
@@ -13578,9 +13578,10 @@ _:-ms-fullscreen .acud-picker-range-wrapper .acud-picker-year-panel .acud-picker
|
|
|
13578
13578
|
margin-top: -8px;
|
|
13579
13579
|
font-size: 12px;
|
|
13580
13580
|
line-height: 16px;
|
|
13581
|
+
transition: transform 0.48s;
|
|
13581
13582
|
}
|
|
13582
13583
|
.acud-dropdown-trigger-arrow-expand {
|
|
13583
|
-
transform: rotate(
|
|
13584
|
+
transform: rotate(180deg);
|
|
13584
13585
|
}
|
|
13585
13586
|
.acud-dropdown-trigger-arrow > svg {
|
|
13586
13587
|
width: 16px;
|
|
@@ -16632,25 +16633,25 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16632
16633
|
-webkit-overflow-scrolling: touch;
|
|
16633
16634
|
z-index: 1000;
|
|
16634
16635
|
}
|
|
16635
|
-
.acud-modal-sm {
|
|
16636
|
+
.acud-modal-sm > .acud-modal-content {
|
|
16636
16637
|
width: 520px;
|
|
16637
|
-
height: 240px;
|
|
16638
|
-
max-height:
|
|
16638
|
+
min-height: 240px;
|
|
16639
|
+
max-height: 560px;
|
|
16639
16640
|
}
|
|
16640
|
-
.acud-modal-md {
|
|
16641
|
+
.acud-modal-md > .acud-modal-content {
|
|
16641
16642
|
width: 800px;
|
|
16642
|
-
height: 400px;
|
|
16643
|
-
max-height:
|
|
16643
|
+
min-height: 400px;
|
|
16644
|
+
max-height: 560px;
|
|
16644
16645
|
}
|
|
16645
|
-
.acud-modal-lg {
|
|
16646
|
+
.acud-modal-lg > .acud-modal-content {
|
|
16646
16647
|
width: 1120px;
|
|
16647
|
-
height: 480px;
|
|
16648
|
-
max-height:
|
|
16648
|
+
min-height: 480px;
|
|
16649
|
+
max-height: 560px;
|
|
16649
16650
|
}
|
|
16650
|
-
.acud-modal-xl {
|
|
16651
|
+
.acud-modal-xl > .acud-modal-content {
|
|
16651
16652
|
width: 1200px;
|
|
16652
|
-
height: 480px;
|
|
16653
|
-
max-height:
|
|
16653
|
+
min-height: 480px;
|
|
16654
|
+
max-height: 560px;
|
|
16654
16655
|
}
|
|
16655
16656
|
.acud-modal-content {
|
|
16656
16657
|
position: relative;
|
|
@@ -16703,6 +16704,7 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16703
16704
|
.acud-modal-title {
|
|
16704
16705
|
font-size: 14px;
|
|
16705
16706
|
line-height: 22px;
|
|
16707
|
+
padding-right: 12px;
|
|
16706
16708
|
word-wrap: break-word;
|
|
16707
16709
|
}
|
|
16708
16710
|
.acud-modal-body {
|
|
@@ -16742,12 +16744,21 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16742
16744
|
align-items: center;
|
|
16743
16745
|
padding-top: 2px;
|
|
16744
16746
|
}
|
|
16745
|
-
.acud-modal-dialogbox
|
|
16746
|
-
|
|
16747
|
+
.acud-modal-dialogbox-title {
|
|
16748
|
+
overflow: hidden;
|
|
16749
|
+
padding-right: 12px;
|
|
16747
16750
|
}
|
|
16748
16751
|
.acud-modal-dialogbox-content {
|
|
16752
|
+
width: 400px;
|
|
16749
16753
|
padding-left: 32px;
|
|
16750
16754
|
}
|
|
16755
|
+
.acud-modal-dialogbox .acud-modal-title .acudicon {
|
|
16756
|
+
font-size: 20px;
|
|
16757
|
+
}
|
|
16758
|
+
.acud-modal-dialogbox > .acud-modal-content {
|
|
16759
|
+
width: 400px;
|
|
16760
|
+
min-height: 184px;
|
|
16761
|
+
}
|
|
16751
16762
|
.acud-modal-dialogbox-warning .acud-modal-dialogbox-icon {
|
|
16752
16763
|
color: #FF9326;
|
|
16753
16764
|
}
|
|
@@ -17798,7 +17809,8 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
17798
17809
|
.acud-progress-success .acud-progress-label-icon {
|
|
17799
17810
|
font-size: 0;
|
|
17800
17811
|
}
|
|
17801
|
-
.acud-progress-label-hidden .acud-progress-label
|
|
17812
|
+
.acud-progress-label-hidden .acud-progress-label.acud-progress-label-outer,
|
|
17813
|
+
.acud-progress-label-hidden .acud-progress-label.acud-progress-label-inner {
|
|
17802
17814
|
display: none;
|
|
17803
17815
|
}
|
|
17804
17816
|
.acud-progress-line {
|
|
@@ -22468,6 +22480,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
22468
22480
|
text-align: left;
|
|
22469
22481
|
color: #2468F2;
|
|
22470
22482
|
cursor: pointer;
|
|
22483
|
+
margin-top: 0;
|
|
22471
22484
|
}
|
|
22472
22485
|
.acud-time-panel-wrap .acud-picker-decade-panel .acud-picker-cell-inner {
|
|
22473
22486
|
padding: 0 6px;
|
|
@@ -23926,8 +23939,10 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
23926
23939
|
border-radius: 4px 4px 0 0;
|
|
23927
23940
|
line-height: 21px;
|
|
23928
23941
|
}
|
|
23942
|
+
.acud-transfer-datasource-header-checkall {
|
|
23943
|
+
margin-right: 12px;
|
|
23944
|
+
}
|
|
23929
23945
|
.acud-transfer-datasource-label {
|
|
23930
|
-
margin-left: 12px;
|
|
23931
23946
|
color: #151B26;
|
|
23932
23947
|
font-size: 12px;
|
|
23933
23948
|
font-weight: #FFECD4;
|
|
@@ -24032,8 +24047,8 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24032
24047
|
padding-left: 60px;
|
|
24033
24048
|
}
|
|
24034
24049
|
.acud-transfer-datasource-search {
|
|
24035
|
-
height:
|
|
24036
|
-
|
|
24050
|
+
height: 40px;
|
|
24051
|
+
padding: 8px 12px;
|
|
24037
24052
|
width: auto;
|
|
24038
24053
|
flex-shrink: 0;
|
|
24039
24054
|
}
|
|
@@ -24210,10 +24225,10 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24210
24225
|
padding-left: 56px;
|
|
24211
24226
|
}
|
|
24212
24227
|
.acud-transfer-target-search {
|
|
24213
|
-
|
|
24228
|
+
padding: 8px 12px;
|
|
24214
24229
|
width: auto;
|
|
24215
24230
|
flex-shrink: 0;
|
|
24216
|
-
height:
|
|
24231
|
+
height: 40px;
|
|
24217
24232
|
}
|
|
24218
24233
|
.acud-transfer-target-nodata {
|
|
24219
24234
|
display: flex;
|
|
@@ -24229,6 +24244,24 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24229
24244
|
.acud-transfer .acud-input input {
|
|
24230
24245
|
font-size: 12px;
|
|
24231
24246
|
}
|
|
24247
|
+
.acud-transfer.acud-transfer-table .acud-transfer-datasource,
|
|
24248
|
+
.acud-transfer.acud-transfer-table .acud-transfer-target {
|
|
24249
|
+
height: 360px;
|
|
24250
|
+
}
|
|
24251
|
+
.acud-transfer.acud-transfer-table .acud-transfer-datasource-search,
|
|
24252
|
+
.acud-transfer.acud-transfer-table .acud-transfer-target-search {
|
|
24253
|
+
background-color: #F7F7F9;
|
|
24254
|
+
border-top: 1px solid #fff;
|
|
24255
|
+
}
|
|
24256
|
+
.acud-transfer.acud-transfer-table table {
|
|
24257
|
+
border-top: 1px solid #fff;
|
|
24258
|
+
}
|
|
24259
|
+
.acud-transfer.acud-transfer-table table thead tr th:nth-last-child(2) {
|
|
24260
|
+
border-right: none;
|
|
24261
|
+
}
|
|
24262
|
+
.acud-transfer.acud-transfer-table .acud-transfer-table-box {
|
|
24263
|
+
overflow: auto;
|
|
24264
|
+
}
|
|
24232
24265
|
|
|
24233
24266
|
/* color */
|
|
24234
24267
|
/* 默认颜色 */
|
|
@@ -24275,6 +24308,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24275
24308
|
border-style: solid;
|
|
24276
24309
|
cursor: pointer;
|
|
24277
24310
|
transition: border-color 0.3s;
|
|
24311
|
+
overflow: hidden;
|
|
24278
24312
|
color: #5C5F66;
|
|
24279
24313
|
background-color: #FFFFFF;
|
|
24280
24314
|
border-color: #E8E9EB;
|
|
@@ -24347,15 +24381,12 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24347
24381
|
height: 100%;
|
|
24348
24382
|
text-align: center;
|
|
24349
24383
|
border: 1px dashed #d9d9d9;
|
|
24350
|
-
border-radius:
|
|
24384
|
+
border-radius: 6px;
|
|
24351
24385
|
cursor: pointer;
|
|
24352
24386
|
transition: border-color 0.3s;
|
|
24353
24387
|
}
|
|
24354
|
-
.acud-upload.acud-upload-drag .acud-upload {
|
|
24355
|
-
padding: 16px 0;
|
|
24356
|
-
}
|
|
24357
24388
|
.acud-upload.acud-upload-drag.acud-upload-drag-hover:not(.acud-upload-disabled) {
|
|
24358
|
-
border-color:
|
|
24389
|
+
border-color: #144BCC;
|
|
24359
24390
|
}
|
|
24360
24391
|
.acud-upload.acud-upload-drag.acud-upload-disabled {
|
|
24361
24392
|
background: #fafafa;
|
|
@@ -24532,10 +24563,6 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24532
24563
|
color: #B8BABF;
|
|
24533
24564
|
}
|
|
24534
24565
|
.acud-upload-list-item .acuicon-outlined-close {
|
|
24535
|
-
position: absolute;
|
|
24536
|
-
top: 4px;
|
|
24537
|
-
right: 4px;
|
|
24538
|
-
color: #B8BABF;
|
|
24539
24566
|
font-size: 10px;
|
|
24540
24567
|
line-height: 0;
|
|
24541
24568
|
cursor: pointer;
|
|
@@ -24551,6 +24578,19 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24551
24578
|
.acud-upload-list-item:hover .acuicon-outlined-close {
|
|
24552
24579
|
opacity: 1;
|
|
24553
24580
|
}
|
|
24581
|
+
.acud-upload-list-item .acuicon-outlined-cloud-download {
|
|
24582
|
+
transition: all 0.3s;
|
|
24583
|
+
opacity: 0;
|
|
24584
|
+
}
|
|
24585
|
+
.acud-upload-list-item:hover .acuicon-outlined-cloud-download {
|
|
24586
|
+
opacity: 1;
|
|
24587
|
+
}
|
|
24588
|
+
.acud-upload-list-item-card-actions-btn {
|
|
24589
|
+
margin-right: 6px;
|
|
24590
|
+
}
|
|
24591
|
+
.acud-upload-list-item-card-actions-btn:last-child {
|
|
24592
|
+
margin-right: 0;
|
|
24593
|
+
}
|
|
24554
24594
|
.acud-upload-list-item:hover .acud-upload-list-item-card-actions-btn {
|
|
24555
24595
|
opacity: 1;
|
|
24556
24596
|
}
|
|
@@ -24560,12 +24600,9 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24560
24600
|
.acud-upload-list-item-error .acud-upload-list-item-info .acud-upload-text-icon .acuicon:hover {
|
|
24561
24601
|
color: #F33E3E;
|
|
24562
24602
|
}
|
|
24563
|
-
.acud-upload-list-item-error .acud-upload-list-item-card-actions .
|
|
24603
|
+
.acud-upload-list-item-error .acud-upload-list-item-card-actions .acud-upload-text-icon {
|
|
24564
24604
|
color: #F33E3E;
|
|
24565
24605
|
}
|
|
24566
|
-
.acud-upload-list-item-error .acud-upload-list-item-card-actions-btn {
|
|
24567
|
-
opacity: 1;
|
|
24568
|
-
}
|
|
24569
24606
|
.acud-upload-list-item-progress {
|
|
24570
24607
|
position: absolute;
|
|
24571
24608
|
bottom: -12px;
|