acud 0.0.69 → 0.0.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/dist/acud.css +58 -3
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +1444 -1281
- 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 +9 -6
- package/dist/acud.min.js.map +1 -1
- package/es/cascader/index.js +7 -6
- package/es/date-picker/generatePicker/generateSinglePicker.js +7 -5
- package/es/date-picker/src/PickerPanel.js +0 -1
- package/es/date-picker/src/RangePicker.js +0 -1
- package/es/input/AutoComplete.d.ts +12 -0
- package/es/input/AutoComplete.js +53 -0
- package/es/input/TextArea.d.ts +1 -1
- package/es/input/TextArea.js +4 -4
- package/es/input/index.d.ts +2 -0
- package/es/input/index.js +2 -0
- package/es/input/style/index.css +56 -1
- package/es/input/style/index.less +66 -1
- package/es/input-number/src/hooks/useFrame.d.ts +1 -1
- package/es/input-number/src/hooks/useLayoutEffect.d.ts +1 -1
- package/es/locale/en_US.js +2 -0
- package/es/locale/zh_CN.js +2 -0
- package/es/select/index.d.ts +1 -1
- package/es/toast/index.js +2 -2
- package/es/upload/Upload.js +2 -0
- package/es/upload/UploadList/ListItem.d.ts +1 -0
- package/es/upload/UploadList/ListItem.js +3 -1
- package/es/upload/UploadList/index.js +6 -2
- package/es/upload/interface.d.ts +2 -0
- package/es/upload/style/index.css +1 -1
- package/es/upload/style/index.less +1 -1
- package/es/virtual-list/List.js +0 -7
- package/lib/cascader/index.js +7 -6
- package/lib/date-picker/generatePicker/generateSinglePicker.js +7 -5
- package/lib/date-picker/src/PickerPanel.js +0 -1
- package/lib/date-picker/src/RangePicker.js +0 -1
- package/lib/input/AutoComplete.d.ts +12 -0
- package/lib/input/AutoComplete.js +72 -0
- package/lib/input/TextArea.d.ts +1 -1
- package/lib/input/TextArea.js +4 -2
- package/lib/input/index.d.ts +2 -0
- package/lib/input/index.js +3 -0
- package/lib/input/style/index.css +56 -1
- package/lib/input/style/index.less +66 -1
- package/lib/input-number/src/hooks/useFrame.d.ts +1 -1
- package/lib/input-number/src/hooks/useLayoutEffect.d.ts +1 -1
- package/lib/locale/en_US.js +5 -0
- package/lib/locale/zh_CN.js +5 -0
- package/lib/select/index.d.ts +1 -1
- package/lib/toast/index.js +2 -2
- package/lib/upload/Upload.js +2 -0
- package/lib/upload/UploadList/ListItem.d.ts +1 -0
- package/lib/upload/UploadList/ListItem.js +3 -1
- package/lib/upload/UploadList/index.js +6 -2
- package/lib/upload/interface.d.ts +2 -0
- package/lib/upload/style/index.css +1 -1
- package/lib/upload/style/index.less +1 -1
- package/lib/virtual-list/List.js +0 -7
- package/package.json +1 -1
- package/CHANGELOG.md +0 -4
package/dist/acud.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! acud v0.0.
|
|
1
|
+
/*! acud v0.0.72 */
|
|
2
2
|
/* color */
|
|
3
3
|
/* 默认颜色 */
|
|
4
4
|
/* 通用-icon */
|
|
@@ -10543,7 +10543,6 @@ a {
|
|
|
10543
10543
|
padding-top: 6px;
|
|
10544
10544
|
padding-right: 24px;
|
|
10545
10545
|
padding-bottom: 24px;
|
|
10546
|
-
min-height: 100px;
|
|
10547
10546
|
border-radius: 4px;
|
|
10548
10547
|
font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "Helvetica Neue", Helvetica, "PingFang SC", Roboto, 'Arial', 'microsoft yahei ui', "Microsoft YaHei", SimSun, sans-serif;
|
|
10549
10548
|
color: #151B26;
|
|
@@ -10723,6 +10722,9 @@ a {
|
|
|
10723
10722
|
top: 2px;
|
|
10724
10723
|
right: 12px;
|
|
10725
10724
|
cursor: pointer;
|
|
10725
|
+
display: flex;
|
|
10726
|
+
align-items: center;
|
|
10727
|
+
bottom: 2px;
|
|
10726
10728
|
}
|
|
10727
10729
|
.acud-input-password-outer-icon .acuicon svg {
|
|
10728
10730
|
fill: #84868C;
|
|
@@ -10745,6 +10747,59 @@ a {
|
|
|
10745
10747
|
.acud-input-select-tags .acud-select-clear {
|
|
10746
10748
|
right: 12px;
|
|
10747
10749
|
}
|
|
10750
|
+
.acud-select-auto-complete .acud-select-selector {
|
|
10751
|
+
width: 100%;
|
|
10752
|
+
display: flex;
|
|
10753
|
+
cursor: text;
|
|
10754
|
+
position: relative;
|
|
10755
|
+
}
|
|
10756
|
+
.acud-select-auto-complete {
|
|
10757
|
+
width: 100%;
|
|
10758
|
+
display: block;
|
|
10759
|
+
}
|
|
10760
|
+
.acud-select-auto-complete:not(.acud-select-customize-input) .acud-select-selector {
|
|
10761
|
+
position: relative;
|
|
10762
|
+
background-color: #fff;
|
|
10763
|
+
border-radius: 2px;
|
|
10764
|
+
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
10765
|
+
}
|
|
10766
|
+
.acud-select-auto-complete:not(.acud-select-customize-input) .acud-select-selector .acud-select-selection-search .acud-select-selection-search-input {
|
|
10767
|
+
cursor: auto;
|
|
10768
|
+
margin: 0;
|
|
10769
|
+
padding: 0;
|
|
10770
|
+
background: 0 0;
|
|
10771
|
+
border: none;
|
|
10772
|
+
outline: none;
|
|
10773
|
+
-webkit-appearance: none;
|
|
10774
|
+
-moz-appearance: none;
|
|
10775
|
+
appearance: none;
|
|
10776
|
+
}
|
|
10777
|
+
.acud-select-auto-complete .acud-select-selector {
|
|
10778
|
+
width: 100%;
|
|
10779
|
+
display: flex;
|
|
10780
|
+
cursor: text;
|
|
10781
|
+
position: relative;
|
|
10782
|
+
}
|
|
10783
|
+
.acud-select-auto-complete .acud-select-selector .acud-select-selection-search {
|
|
10784
|
+
position: absolute;
|
|
10785
|
+
inset: 0 12px;
|
|
10786
|
+
z-index: 2;
|
|
10787
|
+
}
|
|
10788
|
+
.acud-select-auto-complete .acud-select-selector .acud-select-selection-search .acud-select-selection-search-input {
|
|
10789
|
+
width: 100%;
|
|
10790
|
+
}
|
|
10791
|
+
.acud-select-auto-complete .acud-select-selector .acud-select-selection-placeholder {
|
|
10792
|
+
flex: 1;
|
|
10793
|
+
transition: none;
|
|
10794
|
+
pointer-events: none;
|
|
10795
|
+
overflow: hidden;
|
|
10796
|
+
color: #bfbfbf;
|
|
10797
|
+
white-space: nowrap;
|
|
10798
|
+
text-overflow: ellipsis;
|
|
10799
|
+
padding-left: 12px;
|
|
10800
|
+
padding-right: 12px;
|
|
10801
|
+
z-index: 1;
|
|
10802
|
+
}
|
|
10748
10803
|
|
|
10749
10804
|
/* color */
|
|
10750
10805
|
/* 默认颜色 */
|
|
@@ -24741,7 +24796,7 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
24741
24796
|
position: relative;
|
|
24742
24797
|
height: 66px;
|
|
24743
24798
|
padding: 0;
|
|
24744
|
-
border: 1px
|
|
24799
|
+
border: 1px solid #d9d9d9;
|
|
24745
24800
|
border-radius: 0px;
|
|
24746
24801
|
}
|
|
24747
24802
|
.acud-upload-list-picture .acud-upload-list-item:hover,
|