acud 0.0.71 → 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 +54 -2
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +1331 -1188
- 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/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 +53 -1
- package/es/input/style/index.less +63 -1
- package/es/input-number/src/hooks/useFrame.d.ts +1 -1
- package/es/select/index.d.ts +1 -1
- package/es/virtual-list/List.js +0 -7
- 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 +53 -1
- package/lib/input/style/index.less +63 -1
- package/lib/input-number/src/hooks/useFrame.d.ts +1 -1
- package/lib/select/index.d.ts +1 -1
- package/lib/virtual-list/List.js +0 -7
- package/package.json +1 -1
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;
|
|
@@ -10748,6 +10747,59 @@ a {
|
|
|
10748
10747
|
.acud-input-select-tags .acud-select-clear {
|
|
10749
10748
|
right: 12px;
|
|
10750
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
|
+
}
|
|
10751
10803
|
|
|
10752
10804
|
/* color */
|
|
10753
10805
|
/* 默认颜色 */
|