acud 0.0.67 → 0.0.70

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.
Files changed (137) hide show
  1. package/dist/acud.css +250 -144
  2. package/dist/acud.css.map +1 -1
  3. package/dist/acud.js +1367 -1159
  4. package/dist/acud.js.map +1 -1
  5. package/dist/acud.min.css +1 -1
  6. package/dist/acud.min.css.map +1 -1
  7. package/dist/acud.min.js +8 -6
  8. package/dist/acud.min.js.map +1 -1
  9. package/es/button/button.d.ts +1 -0
  10. package/es/button/button.js +1 -0
  11. package/es/cascader/Cascader.js +2 -1
  12. package/es/cascader/MenuItem.js +7 -13
  13. package/es/cascader/Menus.d.ts +3 -2
  14. package/es/cascader/Menus.js +30 -24
  15. package/es/cascader/index.js +32 -11
  16. package/es/cascader/style/index.css +17 -68
  17. package/es/cascader/style/index.less +23 -31
  18. package/es/clear/index.d.ts +12 -0
  19. package/es/clear/index.js +41 -0
  20. package/es/clear/style/css.js +2 -0
  21. package/es/clear/style/index.css +63 -0
  22. package/es/clear/style/index.d.ts +2 -0
  23. package/es/clear/style/index.js +2 -0
  24. package/es/clear/style/index.less +18 -0
  25. package/es/date-picker/generatePicker/generateRangePicker.js +2 -2
  26. package/es/date-picker/generatePicker/generateSinglePicker.js +9 -7
  27. package/es/date-picker/src/PickerPanel.js +4 -1
  28. package/es/date-picker/src/utils/uiUtil.js +4 -4
  29. package/es/date-picker/style/index.css +106 -53
  30. package/es/date-picker/style/panel.less +83 -18
  31. package/es/dropdown/dropdown.js +2 -3
  32. package/es/dropdown/rc-dropdown/Dropdown.js +1 -0
  33. package/es/form/style/horizontal.less +3 -1
  34. package/es/form/style/index.css +2 -0
  35. package/es/index.d.ts +1 -0
  36. package/es/index.js +1 -0
  37. package/es/input-number/src/hooks/useLayoutEffect.d.ts +1 -1
  38. package/es/locale/en_US.js +2 -0
  39. package/es/locale/zh_CN.js +2 -0
  40. package/es/menu/menu.d.ts +2 -1
  41. package/es/modal/DialogBox.d.ts +1 -1
  42. package/es/progress/CircleProgress.js +2 -2
  43. package/es/progress/LineProgress.js +4 -2
  44. package/es/radio/Radio.d.ts +1 -0
  45. package/es/radio/Radio.js +3 -2
  46. package/es/radio/RadioButton.js +3 -2
  47. package/es/radio/RadioGroup.d.ts +1 -0
  48. package/es/radio/RadioGroup.js +4 -1
  49. package/es/radio/context.d.ts +1 -0
  50. package/es/style/themes/default/components/cascader.less +0 -4
  51. package/es/style/themes/default/components/clear.less +2 -0
  52. package/es/style/themes/default/components/datePicker.less +1 -0
  53. package/es/style/themes/default/components/index.less +1 -0
  54. package/es/switch/index.d.ts +2 -3
  55. package/es/switch/index.js +11 -3
  56. package/es/switch/interface.d.ts +4 -0
  57. package/es/switch/style/index.css +31 -0
  58. package/es/switch/style/index.less +33 -1
  59. package/es/toast/index.js +5 -6
  60. package/es/toast/style/index.css +1 -1
  61. package/es/toast/style/index.less +3 -3
  62. package/es/tooltip/index.js +1 -1
  63. package/es/transfer/SourceList.js +1 -0
  64. package/es/transfer/index.js +5 -5
  65. package/es/transfer/style/index.css +3 -0
  66. package/es/transfer/style/index.less +3 -0
  67. package/es/upload/Upload.js +4 -1
  68. package/es/upload/UploadList/ListItem.js +2 -2
  69. package/es/upload/UploadList/index.js +1 -1
  70. package/es/upload/style/index.css +25 -21
  71. package/es/upload/style/index.less +28 -21
  72. package/lib/button/button.d.ts +1 -0
  73. package/lib/button/button.js +1 -0
  74. package/lib/cascader/Cascader.js +2 -1
  75. package/lib/cascader/MenuItem.js +7 -13
  76. package/lib/cascader/Menus.d.ts +3 -2
  77. package/lib/cascader/Menus.js +31 -24
  78. package/lib/cascader/index.js +34 -12
  79. package/lib/cascader/style/index.css +17 -68
  80. package/lib/cascader/style/index.less +23 -31
  81. package/lib/clear/index.d.ts +12 -0
  82. package/lib/clear/index.js +55 -0
  83. package/lib/clear/style/css.js +5 -0
  84. package/lib/clear/style/index.css +63 -0
  85. package/lib/clear/style/index.d.ts +2 -0
  86. package/lib/clear/style/index.js +5 -0
  87. package/lib/clear/style/index.less +18 -0
  88. package/lib/date-picker/generatePicker/generateRangePicker.js +3 -3
  89. package/lib/date-picker/generatePicker/generateSinglePicker.js +10 -8
  90. package/lib/date-picker/src/PickerPanel.js +4 -1
  91. package/lib/date-picker/src/utils/uiUtil.js +4 -4
  92. package/lib/date-picker/style/index.css +106 -53
  93. package/lib/date-picker/style/panel.less +83 -18
  94. package/lib/dropdown/dropdown.js +2 -3
  95. package/lib/dropdown/rc-dropdown/Dropdown.js +1 -0
  96. package/lib/form/style/horizontal.less +3 -1
  97. package/lib/form/style/index.css +2 -0
  98. package/lib/index.d.ts +1 -0
  99. package/lib/index.js +8 -0
  100. package/lib/input-number/src/hooks/useLayoutEffect.d.ts +1 -1
  101. package/lib/locale/en_US.js +5 -0
  102. package/lib/locale/zh_CN.js +5 -0
  103. package/lib/menu/menu.d.ts +2 -1
  104. package/lib/modal/DialogBox.d.ts +1 -1
  105. package/lib/progress/CircleProgress.js +2 -2
  106. package/lib/progress/LineProgress.js +4 -2
  107. package/lib/radio/Radio.d.ts +1 -0
  108. package/lib/radio/Radio.js +3 -2
  109. package/lib/radio/RadioButton.js +3 -2
  110. package/lib/radio/RadioGroup.d.ts +1 -0
  111. package/lib/radio/RadioGroup.js +5 -1
  112. package/lib/radio/context.d.ts +1 -0
  113. package/lib/style/components.less +1 -0
  114. package/lib/style/themes/default/components/cascader.less +0 -4
  115. package/lib/style/themes/default/components/clear.less +2 -0
  116. package/lib/style/themes/default/components/datePicker.less +1 -0
  117. package/lib/style/themes/default/components/index.less +1 -0
  118. package/lib/switch/index.d.ts +2 -3
  119. package/lib/switch/index.js +12 -3
  120. package/lib/switch/interface.d.ts +4 -0
  121. package/lib/switch/style/index.css +31 -0
  122. package/lib/switch/style/index.less +33 -1
  123. package/lib/toast/index.js +5 -6
  124. package/lib/toast/style/index.css +1 -1
  125. package/lib/toast/style/index.less +3 -3
  126. package/lib/tooltip/index.js +1 -1
  127. package/lib/transfer/SourceList.js +1 -0
  128. package/lib/transfer/index.js +5 -5
  129. package/lib/transfer/style/index.css +3 -0
  130. package/lib/transfer/style/index.less +3 -0
  131. package/lib/upload/Upload.js +4 -1
  132. package/lib/upload/UploadList/ListItem.js +2 -2
  133. package/lib/upload/UploadList/index.js +1 -1
  134. package/lib/upload/style/index.css +25 -21
  135. package/lib/upload/style/index.less +28 -21
  136. package/package.json +2 -2
  137. package/CHANGELOG.md +0 -4
package/dist/acud.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! acud v0.0.67 */
1
+ /*! acud v0.0.70 */
2
2
  /* color */
3
3
  /* 默认颜色 */
4
4
  /* 通用-icon */
@@ -9478,64 +9478,9 @@ a {
9478
9478
  .acud-cascader-picker-clear {
9479
9479
  position: absolute;
9480
9480
  top: 50%;
9481
- right: 32px;
9481
+ right: 30px;
9482
9482
  z-index: 2;
9483
- width: 12px;
9484
- height: 12px;
9485
- margin-top: -6px;
9486
- line-height: 12px;
9487
- cursor: pointer;
9488
- border-radius: 50%;
9489
- text-align: center;
9490
- transition: color 0.3s ease, opacity 0.15s ease;
9491
- }
9492
- .acud-cascader-picker-clear.acuicon {
9493
- display: flex;
9494
- color: #FFFFFF;
9495
- background-color: #D4D6D9;
9496
- border-color: transparent;
9497
- }
9498
- .acud-cascader-picker-clear.acuicon:hover {
9499
- color: #FFFFFF;
9500
- }
9501
- .acud-cascader-picker-clear.acuicon:focus,
9502
- .acud-cascader-picker-clear.acuicon:active {
9503
- color: #FFFFFF;
9504
- }
9505
- .acud-cascader-picker-clear.acuicon[disabled],
9506
- .acud-cascader-picker-clear.acuicon[disabled]:hover,
9507
- .acud-cascader-picker-clear.acuicon[disabled]:focus,
9508
- .acud-cascader-picker-clear.acuicon[disabled]:active {
9509
- color: #FFFFFF;
9510
- }
9511
- .acud-cascader-picker-clear.acuicon:hover {
9512
- background-color: #5C5F66;
9513
- }
9514
- .acud-cascader-picker-clear.acuicon:focus,
9515
- .acud-cascader-picker-clear.acuicon:active {
9516
- background-color: #303540;
9517
- }
9518
- .acud-cascader-picker-clear.acuicon[disabled],
9519
- .acud-cascader-picker-clear.acuicon[disabled]:hover,
9520
- .acud-cascader-picker-clear.acuicon[disabled]:focus,
9521
- .acud-cascader-picker-clear.acuicon[disabled]:active {
9522
- background-color: #F2F2F4;
9523
- }
9524
- .acud-cascader-picker-clear.acuicon:hover {
9525
- border-color: transparent;
9526
- }
9527
- .acud-cascader-picker-clear.acuicon:focus,
9528
- .acud-cascader-picker-clear.acuicon:active {
9529
- border-color: transparent;
9530
- }
9531
- .acud-cascader-picker-clear.acuicon[disabled],
9532
- .acud-cascader-picker-clear.acuicon[disabled]:hover,
9533
- .acud-cascader-picker-clear.acuicon[disabled]:focus,
9534
- .acud-cascader-picker-clear.acuicon[disabled]:active {
9535
- border-color: transparent;
9536
- }
9537
- .acud-cascader-picker-clear > svg {
9538
- transform: scale(0.6);
9483
+ margin-top: -8px;
9539
9484
  }
9540
9485
  .acud-cascader-picker-arrow {
9541
9486
  position: absolute;
@@ -9566,7 +9511,7 @@ a {
9566
9511
  color: #B8BABF;
9567
9512
  }
9568
9513
  .acud-cascader-picker-arrow-expand {
9569
- transform: rotate(-180deg);
9514
+ transform: rotate(180deg);
9570
9515
  }
9571
9516
  .acud-cascader-picker-arrow > svg {
9572
9517
  width: 16px;
@@ -9714,7 +9659,9 @@ a {
9714
9659
  color: #151B26;
9715
9660
  background-color: #FFFFFF;
9716
9661
  border-color: transparent;
9717
- padding: 0 8px 0 12px;
9662
+ display: flex;
9663
+ justify-content: space-between;
9664
+ padding: 0 12px;
9718
9665
  height: 32px;
9719
9666
  line-height: 32px;
9720
9667
  cursor: pointer;
@@ -9762,17 +9709,18 @@ a {
9762
9709
  border-color: transparent;
9763
9710
  }
9764
9711
  .acud-cascader-menu-item-content {
9765
- width: calc(100% - 3 * 4px);
9712
+ display: flex;
9766
9713
  overflow: hidden;
9767
9714
  text-overflow: ellipsis;
9768
9715
  }
9769
- .acud-cascader-menu-item-checkbox {
9716
+ .acud-cascader-menu-item-checkbox.acud-checkbox-wrapper {
9770
9717
  vertical-align: middle;
9718
+ margin-right: 8px;
9771
9719
  }
9772
- .acud-cascader-menu-item-checkbox .acud-checkbox {
9720
+ .acud-cascader-menu-item-checkbox.acud-checkbox-wrapper .acud-checkbox {
9773
9721
  top: 0;
9774
9722
  }
9775
- .acud-cascader-menu-item-checkbox .acud-checkbox + span {
9723
+ .acud-cascader-menu-item-label {
9776
9724
  overflow: hidden;
9777
9725
  text-overflow: ellipsis;
9778
9726
  }
@@ -9794,15 +9742,11 @@ a {
9794
9742
  }
9795
9743
  .acud-cascader-menu-item-expand {
9796
9744
  position: relative;
9745
+ padding-right: 8px;
9797
9746
  }
9798
9747
  .acud-cascader-menu-item-expand .acud-cascader-menu-item-expand-icon,
9799
9748
  .acud-cascader-menu-item-loading-icon {
9800
9749
  color: #84868C;
9801
- position: absolute;
9802
- right: 8px;
9803
- top: 50%;
9804
- transform: translateY(-50%);
9805
- line-height: 0;
9806
9750
  }
9807
9751
  .acud-cascader-menu-item-expand .acud-cascader-menu-item-expand-icon:hover,
9808
9752
  .acud-cascader-menu-item-loading-icon:hover {
@@ -9827,6 +9771,11 @@ a {
9827
9771
  .acud-cascader-menu-item .acud-cascader-menu-item-keyword {
9828
9772
  color: #2468F2;
9829
9773
  }
9774
+ .acud-cascader-tag-tooltip.acud-tooltip,
9775
+ .acud-cascader-picker-label-tooltip.acud-tooltip,
9776
+ .acud-cascader-menu-item-tooltip.acud-tooltip {
9777
+ max-width: initial;
9778
+ }
9830
9779
 
9831
9780
  /* color */
9832
9781
  /* 默认颜色 */
@@ -11244,6 +11193,70 @@ a {
11244
11193
  z-index: 1;
11245
11194
  }
11246
11195
 
11196
+ /* color */
11197
+ /* 默认颜色 */
11198
+ /* 通用-icon */
11199
+ /* 标签 */
11200
+ /* 默认颜色 */
11201
+ /* 其他颜色 */
11202
+ /* 通用 */
11203
+ /* 水平 */
11204
+ /* 垂直 */
11205
+ /* 序号水平 */
11206
+ /* 序号垂直 */
11207
+ .acud-clear.acudicon {
11208
+ color: #FFFFFF;
11209
+ background-color: #D4D6D9;
11210
+ border-color: transparent;
11211
+ padding: 2px;
11212
+ background-clip: content-box;
11213
+ border-radius: 50%;
11214
+ font-size: 12px;
11215
+ transition: color 0.3s ease, opacity 0.15s ease;
11216
+ }
11217
+ .acud-clear.acudicon:hover {
11218
+ color: #FFFFFF;
11219
+ }
11220
+ .acud-clear.acudicon:focus,
11221
+ .acud-clear.acudicon:active {
11222
+ color: #FFFFFF;
11223
+ }
11224
+ .acud-clear.acudicon[disabled],
11225
+ .acud-clear.acudicon[disabled]:hover,
11226
+ .acud-clear.acudicon[disabled]:focus,
11227
+ .acud-clear.acudicon[disabled]:active {
11228
+ color: #FFFFFF;
11229
+ }
11230
+ .acud-clear.acudicon:hover {
11231
+ background-color: #5C5F66;
11232
+ }
11233
+ .acud-clear.acudicon:focus,
11234
+ .acud-clear.acudicon:active {
11235
+ background-color: #303540;
11236
+ }
11237
+ .acud-clear.acudicon[disabled],
11238
+ .acud-clear.acudicon[disabled]:hover,
11239
+ .acud-clear.acudicon[disabled]:focus,
11240
+ .acud-clear.acudicon[disabled]:active {
11241
+ background-color: #F2F2F4;
11242
+ }
11243
+ .acud-clear.acudicon:hover {
11244
+ border-color: transparent;
11245
+ }
11246
+ .acud-clear.acudicon:focus,
11247
+ .acud-clear.acudicon:active {
11248
+ border-color: transparent;
11249
+ }
11250
+ .acud-clear.acudicon[disabled],
11251
+ .acud-clear.acudicon[disabled]:hover,
11252
+ .acud-clear.acudicon[disabled]:focus,
11253
+ .acud-clear.acudicon[disabled]:active {
11254
+ border-color: transparent;
11255
+ }
11256
+ .acud-clear.acudicon > svg {
11257
+ transform: scale(0.66666);
11258
+ }
11259
+
11247
11260
  /* color */
11248
11261
  /* 默认颜色 */
11249
11262
  /* 通用-icon */
@@ -11978,12 +11991,23 @@ a {
11978
11991
  color: #151B26;
11979
11992
  }
11980
11993
  .acud-picker-panel-header > li {
11994
+ color: #151B26;
11981
11995
  margin-right: 24px;
11982
11996
  display: inline-block;
11983
11997
  cursor: pointer;
11984
11998
  }
11985
- .acud-picker-panel.acud-picker-panel-has-range .acud-picker-date-panel .acud-picker-content td:not(.acud-picker-cell-range-hover-start):not(.acud-picker-cell-range-hover-end):not(.acud-picker-cell-range-start):not(.acud-picker-cell-range-end):not(.acud-picker-cell-today):hover {
11986
- background-color: #F7F7F9 !important;
11999
+ .acud-picker-panel-header > li:hover {
12000
+ color: #2468F2;
12001
+ }
12002
+ .acud-picker-panel-header > li:focus,
12003
+ .acud-picker-panel-header > li:active {
12004
+ color: #144BCC;
12005
+ }
12006
+ .acud-picker-panel-header > li[disabled],
12007
+ .acud-picker-panel-header > li[disabled]:hover,
12008
+ .acud-picker-panel-header > li[disabled]:focus,
12009
+ .acud-picker-panel-header > li[disabled]:active {
12010
+ color: #B8BABF;
11987
12011
  }
11988
12012
  .acud-picker-panel.acud-picker-panel-has-range .acud-picker-date-panel .acud-picker-content td:not(.acud-picker-cell-range-hover-start):not(.acud-picker-cell-range-hover-end):not(.acud-picker-cell-range-start):not(.acud-picker-cell-range-end):not(.acud-picker-cell-today):hover .acud-picker-cell-inner {
11989
12013
  background-color: #F7F7F9 !important;
@@ -12001,20 +12025,27 @@ a {
12001
12025
  width: 240px;
12002
12026
  }
12003
12027
  .acud-picker-month-panel .acud-picker-cell-in-range:not(:first-child)::before,
12004
- .acud-picker-month-panel .acud-picker-cell-range-hover:not(:first-child)::before {
12028
+ .acud-picker-year-panel .acud-picker-cell-in-range:not(:first-child)::before,
12029
+ .acud-picker-month-panel .acud-picker-cell-range-hover:not(:first-child)::before,
12030
+ .acud-picker-year-panel .acud-picker-cell-range-hover:not(:first-child)::before {
12005
12031
  width: 12px;
12006
12032
  left: -12px;
12007
12033
  background: #E6F0FF;
12008
12034
  }
12009
- .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-end:hover,
12010
- .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-start:hover {
12035
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-end:hover .acud-picker-cell-inner,
12036
+ .acud-picker-year-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-end:hover .acud-picker-cell-inner,
12037
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-start:hover .acud-picker-cell-inner,
12038
+ .acud-picker-year-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-start:hover .acud-picker-cell-inner {
12011
12039
  background-color: #D4E5FF;
12012
12040
  }
12013
- .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:hover,
12014
- .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:hover {
12041
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:not(.acud-picker-cell-in-range):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-end):not(.acud-picker-cell-range-start):hover .acud-picker-cell-inner,
12042
+ .acud-picker-year-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:not(.acud-picker-cell-in-range):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-end):not(.acud-picker-cell-range-start):hover .acud-picker-cell-inner,
12043
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:not(.acud-picker-cell-in-range):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-end):not(.acud-picker-cell-range-start):hover .acud-picker-cell-inner,
12044
+ .acud-picker-year-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:not(.acud-picker-cell-in-range):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-end):not(.acud-picker-cell-range-start):hover .acud-picker-cell-inner {
12015
12045
  background: #E6F0FF;
12016
12046
  }
12017
- .acud-picker-month-panel .acud-picker-cell-disabled:not(:first-child)::before {
12047
+ .acud-picker-month-panel .acud-picker-cell-disabled:not(:first-child)::before,
12048
+ .acud-picker-year-panel .acud-picker-cell-disabled:not(:first-child)::before {
12018
12049
  left: -12px;
12019
12050
  }
12020
12051
  .acud-picker-header {
@@ -12088,8 +12119,23 @@ a {
12088
12119
  color: #B8BABF;
12089
12120
  }
12090
12121
  .acud-picker-header-view button {
12122
+ font-size: 12px;
12091
12123
  color: inherit;
12092
- font-weight: inherit;
12124
+ font-weight: 400;
12125
+ color: #151B26;
12126
+ }
12127
+ .acud-picker-header-view button:hover {
12128
+ color: #2468F2;
12129
+ }
12130
+ .acud-picker-header-view button:focus,
12131
+ .acud-picker-header-view button:active {
12132
+ color: #144BCC;
12133
+ }
12134
+ .acud-picker-header-view button[disabled],
12135
+ .acud-picker-header-view button[disabled]:hover,
12136
+ .acud-picker-header-view button[disabled]:focus,
12137
+ .acud-picker-header-view button[disabled]:active {
12138
+ color: #B8BABF;
12093
12139
  }
12094
12140
  .acud-picker-header-view button:not(:first-child) {
12095
12141
  margin-left: 8px;
@@ -12201,36 +12247,6 @@ a {
12201
12247
  font-weight: 400;
12202
12248
  font-size: 12px;
12203
12249
  }
12204
- .acud-picker-content td {
12205
- background-color: #FFFFFF;
12206
- border-color: transparent;
12207
- }
12208
- .acud-picker-content td:hover {
12209
- background-color: #F7F7F9;
12210
- }
12211
- .acud-picker-content td:focus,
12212
- .acud-picker-content td:active {
12213
- background-color: #2468F2;
12214
- }
12215
- .acud-picker-content td[disabled],
12216
- .acud-picker-content td[disabled]:hover,
12217
- .acud-picker-content td[disabled]:focus,
12218
- .acud-picker-content td[disabled]:active {
12219
- background-color: #FFFFFF;
12220
- }
12221
- .acud-picker-content td:hover {
12222
- border-color: transparent;
12223
- }
12224
- .acud-picker-content td:focus,
12225
- .acud-picker-content td:active {
12226
- border-color: transparent;
12227
- }
12228
- .acud-picker-content td[disabled],
12229
- .acud-picker-content td[disabled]:hover,
12230
- .acud-picker-content td[disabled]:focus,
12231
- .acud-picker-content td[disabled]:active {
12232
- border-color: transparent;
12233
- }
12234
12250
  .acud-picker-cell {
12235
12251
  cursor: pointer;
12236
12252
  color: #B8BABF;
@@ -12277,10 +12293,10 @@ a {
12277
12293
  content: '';
12278
12294
  border-radius: 2px;
12279
12295
  }
12280
- .acud-picker-cell-today:not(.acud-picker-cell-in-range):not(.acud-picker-cell-range-hover):not(.acud-picker-cell-range-end):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start) {
12296
+ .acud-picker-cell-today:not(.acud-picker-cell-in-range):not(.acud-picker-cell-range-hover):not(.acud-picker-cell-range-end):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-disabled) {
12281
12297
  background-color: transparent !important;
12282
12298
  }
12283
- .acud-picker-cell-today:not(.acud-picker-cell-in-range):not(.acud-picker-cell-range-hover):not(.acud-picker-cell-range-end):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start) .acud-picker-cell-inner {
12299
+ .acud-picker-cell-today:not(.acud-picker-cell-in-range):not(.acud-picker-cell-range-hover):not(.acud-picker-cell-range-end):not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-disabled) .acud-picker-cell-inner {
12284
12300
  background-color: transparent !important;
12285
12301
  }
12286
12302
  .acud-picker-cell-in-view.acud-picker-cell-in-range,
@@ -12325,6 +12341,9 @@ a {
12325
12341
  .acud-picker-cell-in-view.acud-picker-cell-range-end:not(.acud-picker-cell-range-end-single)::before {
12326
12342
  background: #E6F0FF;
12327
12343
  }
12344
+ .acud-picker-cell-in-view.acud-picker-cell-range-start.acud-picker-cell-range-end::before {
12345
+ background: transparent;
12346
+ }
12328
12347
  .acud-picker-cell-in-view.acud-picker-cell-range-start.acud-picker-cell-range-end.acud-picker-cell-selected::before,
12329
12348
  .acud-picker-cell-in-view.acud-picker-cell-range-start.acud-picker-cell-range-hover-start.acud-picker-cell-range-hover-end::before {
12330
12349
  background: transparent !important;
@@ -12365,6 +12384,9 @@ a {
12365
12384
  right: 0;
12366
12385
  left: 0;
12367
12386
  }
12387
+ .acud-picker-date-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover:not(:first-child)::before {
12388
+ left: -9px;
12389
+ }
12368
12390
  .acud-picker-cell-range-hover.acud-picker-cell-range-start::after {
12369
12391
  right: 50%;
12370
12392
  }
@@ -12415,9 +12437,6 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
12415
12437
  .acud-picker-quarter-panel .acud-picker-content {
12416
12438
  height: 56px;
12417
12439
  }
12418
- .acud-picker-date-panel .acud-picker-content td:hover {
12419
- border-radius: 2px;
12420
- }
12421
12440
  .acud-picker-date-panel tr .acud-picker-cell:first-child::before {
12422
12441
  display: none;
12423
12442
  }
@@ -12436,8 +12455,8 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
12436
12455
  justify-content: space-between;
12437
12456
  width: 216px;
12438
12457
  }
12439
- .acud-picker-date-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:hover,
12440
- .acud-picker-date-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:hover {
12458
+ .acud-picker-date-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):hover .acud-picker-cell-inner,
12459
+ .acud-picker-date-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:not(.acud-picker-cell-range-start):hover .acud-picker-cell-inner {
12441
12460
  background-color: #E6F0FF;
12442
12461
  }
12443
12462
  .acud-picker-footer {
@@ -12447,6 +12466,9 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
12447
12466
  min-width: 100%;
12448
12467
  text-align: center;
12449
12468
  border-top: 1px solid #E8E9EB;
12469
+ font-size: 12px;
12470
+ line-height: 24px;
12471
+ cursor: pointer;
12450
12472
  }
12451
12473
  .acud-picker-footer-extra {
12452
12474
  padding: 0 8px;
@@ -12458,8 +12480,20 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
12458
12480
  .acud-picker-today-btn.acud-picker-today-btn-disabled {
12459
12481
  cursor: not-allowed;
12460
12482
  }
12461
- .acud-picker-decade-panel .acud-picker-cell-inner {
12462
- padding: 0 6px;
12483
+ .acud-picker-decade-panel tr {
12484
+ display: block;
12485
+ margin: 12px 0;
12486
+ }
12487
+ .acud-picker-decade-panel tr td {
12488
+ display: inline-block;
12489
+ margin-right: 12px;
12490
+ width: 79px;
12491
+ }
12492
+ .acud-picker-decade-panel tr td:last-child {
12493
+ margin-right: 0;
12494
+ }
12495
+ .acud-picker-decade-panel tr .acud-picker-cell-inner {
12496
+ width: 100%;
12463
12497
  }
12464
12498
  .acud-picker-decade-panel .acud-picker-cell::before {
12465
12499
  display: none;
@@ -12480,7 +12514,6 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
12480
12514
  .acud-picker-month-panel tr td {
12481
12515
  display: inline-block;
12482
12516
  margin-right: 12px;
12483
- border-radius: 2px;
12484
12517
  }
12485
12518
  .acud-picker-year-panel tr td:last-child,
12486
12519
  .acud-picker-quarter-panel tr td:last-child,
@@ -12518,6 +12551,13 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
12518
12551
  .acud-picker-panels .acud-picker-date-panel {
12519
12552
  width: 234px;
12520
12553
  }
12554
+ .acud-picker-panels .acud-picker-decade-panel {
12555
+ width: 285px;
12556
+ }
12557
+ .acud-picker-panels .acud-picker-decade-panel .acud-picker-header,
12558
+ .acud-picker-panels .acud-picker-decade-panel .acud-picker-body {
12559
+ padding-right: 12px !important;
12560
+ }
12521
12561
  .acud-picker-week-panel .acud-picker-body {
12522
12562
  padding: 12px 8px;
12523
12563
  }
@@ -12535,20 +12575,46 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
12535
12575
  }
12536
12576
  .acud-picker-date-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range:first-child,
12537
12577
  .acud-picker-month-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range:first-child,
12578
+ .acud-picker-year-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range:first-child,
12538
12579
  .acud-picker-date-panel tr td.acud-picker-cell-range-hover:first-child,
12539
- .acud-picker-month-panel tr td.acud-picker-cell-range-hover:first-child {
12580
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover:first-child,
12581
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover:first-child {
12540
12582
  border-radius: 2px 0 0 2px;
12541
12583
  }
12542
12584
  .acud-picker-date-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range:last-child,
12543
12585
  .acud-picker-month-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range:last-child,
12586
+ .acud-picker-year-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range:last-child,
12544
12587
  .acud-picker-date-panel tr td.acud-picker-cell-range-hover:last-child,
12545
- .acud-picker-month-panel tr td.acud-picker-cell-range-hover:last-child {
12588
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover:last-child,
12589
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover:last-child {
12546
12590
  border-radius: 0 2px 2px 0;
12547
12591
  }
12548
- .acud-picker-date-panel tr td.acud-picker-cell-range-hover-end,
12549
- .acud-picker-month-panel tr td.acud-picker-cell-range-hover-end {
12592
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range) .acud-picker-cell-inner,
12593
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range) .acud-picker-cell-inner,
12594
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range) .acud-picker-cell-inner {
12550
12595
  border-radius: 0 2px 2px 0;
12551
12596
  }
12597
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range):first-child .acud-picker-cell-inner,
12598
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range):first-child .acud-picker-cell-inner,
12599
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range):first-child .acud-picker-cell-inner,
12600
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range).acud-picker-cell-selected .acud-picker-cell-inner,
12601
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range).acud-picker-cell-selected .acud-picker-cell-inner,
12602
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range).acud-picker-cell-selected .acud-picker-cell-inner {
12603
+ border-radius: 2px;
12604
+ }
12605
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range) .acud-picker-cell-inner,
12606
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range) .acud-picker-cell-inner,
12607
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range) .acud-picker-cell-inner {
12608
+ border-radius: 2px 0 0 2px;
12609
+ }
12610
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range):last-child .acud-picker-cell-inner,
12611
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range):last-child .acud-picker-cell-inner,
12612
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range):last-child .acud-picker-cell-inner,
12613
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range).acud-picker-cell-selected .acud-picker-cell-inner,
12614
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range).acud-picker-cell-selected .acud-picker-cell-inner,
12615
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover-start:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-in-range).acud-picker-cell-selected .acud-picker-cell-inner {
12616
+ border-radius: 2px;
12617
+ }
12552
12618
  .acud-picker-date-panel .acud-picker-body {
12553
12619
  padding: 12px;
12554
12620
  }
@@ -13884,6 +13950,8 @@ li.acud-dropdown-menu-submenu-active:hover,
13884
13950
  .acud-form-horizontal .acud-form-item-label {
13885
13951
  flex-grow: 0;
13886
13952
  line-height: 1.6667;
13953
+ padding-left: calc(.5em + 4px);
13954
+ box-sizing: content-box;
13887
13955
  }
13888
13956
  .acud-form-horizontal .acud-form-item-label:not([class*=' acud-col-']) {
13889
13957
  margin-right: 16px;
@@ -20613,6 +20681,34 @@ span.acud-radio-button {
20613
20681
  .acud-switch-checked[disabled]:after {
20614
20682
  background-color: #FFFFFF;
20615
20683
  }
20684
+ .acud-switch-checked[disabled].acud-switch-loading .acud-switch-loading-icon {
20685
+ color: #D4E5FF;
20686
+ }
20687
+ .acud-switch-checked.acud-switch-loading .acud-switch-loading-icon {
20688
+ color: #2468F2;
20689
+ left: initial;
20690
+ right: 2px;
20691
+ }
20692
+ .acud-switch-loading {
20693
+ cursor: no-drop;
20694
+ }
20695
+ .acud-switch-loading:after {
20696
+ cursor: no-drop;
20697
+ -webkit-animation-name: none;
20698
+ animation-name: none;
20699
+ }
20700
+ .acud-switch-loading:hover:after {
20701
+ width: 16px;
20702
+ -webkit-animation-name: none;
20703
+ animation-name: none;
20704
+ }
20705
+ .acud-switch-loading .acud-switch-loading-icon {
20706
+ position: absolute;
20707
+ top: 1px;
20708
+ z-index: 99;
20709
+ color: #D4D6D9;
20710
+ left: 2px;
20711
+ }
20616
20712
  .acud-switch-disabled {
20617
20713
  cursor: no-drop;
20618
20714
  }
@@ -20627,6 +20723,9 @@ span.acud-radio-button {
20627
20723
  -webkit-animation-name: none;
20628
20724
  animation-name: none;
20629
20725
  }
20726
+ .acud-switch-disabled .acud-switch-loading-icon {
20727
+ color: #F2F2F4;
20728
+ }
20630
20729
  .acud-switch-label {
20631
20730
  display: inline-block;
20632
20731
  padding-left: 10px;
@@ -23757,7 +23856,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
23757
23856
  }
23758
23857
  .acud-notification-notice-with-icon .acud-notification-notice-message {
23759
23858
  margin: 0 calc(8px + 4px * 4) 0 calc(8px + 18px);
23760
- font-size: 16px;
23859
+ font-size: 14px;
23761
23860
  }
23762
23861
  .acud-notification-notice-with-icon .acud-notification-notice-description {
23763
23862
  margin: 0 calc(8px + 4px * 4) 0 calc(8px + 18px);
@@ -24065,6 +24164,9 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24065
24164
  .acud-transfer-datasource-item-group-option {
24066
24165
  padding-left: 60px;
24067
24166
  }
24167
+ .acud-transfer-datasource-item-checkbox {
24168
+ height: 16px;
24169
+ }
24068
24170
  .acud-transfer-datasource-search {
24069
24171
  height: 40px;
24070
24172
  padding: 8px 12px;
@@ -24407,6 +24509,12 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24407
24509
  .acud-upload.acud-upload-drag.acud-upload-drag-hover:not(.acud-upload-disabled) {
24408
24510
  border-color: #144BCC;
24409
24511
  }
24512
+ .acud-upload.acud-upload-drag.acud-upload-drag-click:not(.acud-upload-disabled) {
24513
+ border-color: #144BCC;
24514
+ }
24515
+ .acud-upload.acud-upload-drag.acud-upload-drag-click:not(.acud-upload-disabled):hover {
24516
+ border-color: #144BCC;
24517
+ }
24410
24518
  .acud-upload.acud-upload-drag.acud-upload-disabled {
24411
24519
  background: #fafafa;
24412
24520
  cursor: not-allowed;
@@ -24476,9 +24584,9 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24476
24584
  }
24477
24585
  .acud-upload-list-item {
24478
24586
  position: relative;
24479
- height: 24px;
24480
- margin-top: 8px;
24481
24587
  font-size: 12px;
24588
+ transition: background-color 0.3s;
24589
+ overflow-y: hidden;
24482
24590
  }
24483
24591
  .acud-upload-list-item-name {
24484
24592
  display: inline-block;
@@ -24505,7 +24613,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24505
24613
  }
24506
24614
  .acud-upload-list-item-card-actions {
24507
24615
  position: absolute;
24508
- right: 0;
24616
+ right: 4px;
24509
24617
  }
24510
24618
  .acud-upload-list-item-card-actions-btn {
24511
24619
  opacity: 0;
@@ -24541,9 +24649,8 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24541
24649
  color: #B8BABF;
24542
24650
  }
24543
24651
  .acud-upload-list-item-info {
24544
- height: 100%;
24652
+ height: 24px;
24545
24653
  padding: 0 2px;
24546
- transition: background-color 0.3s;
24547
24654
  border-radius: 2px;
24548
24655
  }
24549
24656
  .acud-upload-list-item-info > span {
@@ -24591,7 +24698,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24591
24698
  .acud-upload-list-item .acuicon-outlined-close:hover {
24592
24699
  color: #151B26;
24593
24700
  }
24594
- .acud-upload-list-item:hover .acud-upload-list-item-info {
24701
+ .acud-upload-list-item:hover {
24595
24702
  background-color: #F7F7F9;
24596
24703
  }
24597
24704
  .acud-upload-list-item:hover .acuicon-outlined-close {
@@ -24623,10 +24730,9 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24623
24730
  color: #F33E3E;
24624
24731
  }
24625
24732
  .acud-upload-list-item-progress {
24626
- position: absolute;
24627
- bottom: -12px;
24628
24733
  width: 100%;
24629
24734
  padding-left: 4px;
24735
+ padding-right: 4px;
24630
24736
  font-size: 12px;
24631
24737
  line-height: 0;
24632
24738
  }
@@ -24716,13 +24822,6 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24716
24822
  .acud-upload-list-picture-card .acud-upload-list-item-uploading .acud-upload-list-item-name {
24717
24823
  margin-bottom: 12px;
24718
24824
  }
24719
- .acud-upload-list-picture .acud-upload-list-item-progress,
24720
- .acud-upload-list-picture-card .acud-upload-list-item-progress {
24721
- bottom: 14px;
24722
- width: calc(100% - 24px);
24723
- margin-top: 0;
24724
- padding-left: 56px;
24725
- }
24726
24825
  .acud-upload-list-picture .acuicon-outlined-close,
24727
24826
  .acud-upload-list-picture-card .acuicon-outlined-close {
24728
24827
  position: absolute;
@@ -24775,7 +24874,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24775
24874
  opacity: 0;
24776
24875
  transition: all 0.3s;
24777
24876
  }
24778
- .acud-upload-list-picture-card .acud-upload-list-item-actions .acuicon-outlined-refresh,
24877
+ .acud-upload-list-picture-card .acud-upload-list-item-actions .acuicon-outlined-button-upload,
24779
24878
  .acud-upload-list-picture-card .acud-upload-list-item-actions .acuicon-outlined-eye,
24780
24879
  .acud-upload-list-picture-card .acud-upload-list-item-actions .acuicon-outlined-download,
24781
24880
  .acud-upload-list-picture-card .acud-upload-list-item-actions .acuicon-outlined-delete {
@@ -24803,8 +24902,8 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24803
24902
  display: block;
24804
24903
  width: 100%;
24805
24904
  height: 100%;
24806
- -o-object-fit: contain;
24807
- object-fit: contain;
24905
+ -o-object-fit: cover;
24906
+ object-fit: cover;
24808
24907
  }
24809
24908
  .acud-upload-list-picture-card .acud-upload-list-item-name {
24810
24909
  display: none;
@@ -24831,6 +24930,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24831
24930
  line-height: 140px;
24832
24931
  }
24833
24932
  .acud-upload-list-picture-card .acud-upload-list-item-progress {
24933
+ position: absolute;
24834
24934
  top: 44px;
24835
24935
  padding-left: 8px;
24836
24936
  padding-right: 8px;
@@ -24867,9 +24967,15 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
24867
24967
  margin: 0;
24868
24968
  padding: 0 8px 0 4px;
24869
24969
  }
24870
- .acud-upload-list-text .acud-upload-list-item-card-actions,
24871
- .acud-upload-list-picture .acud-upload-list-item-card-actions {
24872
- position: static;
24970
+ .acud-upload-list-text-container {
24971
+ margin-bottom: 4px;
24972
+ }
24973
+ .acud-upload-list-text-container:first-child {
24974
+ margin-top: 8px;
24975
+ }
24976
+ .acud-upload-list-text .acud-upload-list-item-progress {
24977
+ margin-top: 4px;
24978
+ margin-bottom: 2px;
24873
24979
  }
24874
24980
  .acud-upload-list .acud-upload-animate-inline-appear,
24875
24981
  .acud-upload-list .acud-upload-animate-inline-enter,