@alicloud/console-components-search 0.2.27 → 0.2.30
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/config/components-with-style.tsx +2 -2
- package/demos/demo1.demo.tsx +1 -1
- package/dist/index.css +11 -2
- package/dist/index.js +4344 -5303
- package/doc-dist/0.js +1 -1923
- package/doc-dist/1.js +2083 -16
- package/doc-dist/10.js +1 -1
- package/doc-dist/11.js +1 -1
- package/doc-dist/12.js +1 -1
- package/doc-dist/13.js +1 -1
- package/doc-dist/14.js +1 -1
- package/doc-dist/15.js +1 -1
- package/doc-dist/16.js +1 -1
- package/doc-dist/17.js +6 -0
- package/doc-dist/2.js +27 -0
- package/doc-dist/4.js +84 -1
- package/doc-dist/5.js +1 -8
- package/doc-dist/6.js +8 -1
- package/doc-dist/{6.css → 7.css} +0 -0
- package/doc-dist/7.js +1 -1
- package/doc-dist/{6.os.css → 7.os.css} +0 -0
- package/doc-dist/8.js +1 -1
- package/doc-dist/9.js +1 -1
- package/doc-dist/deps/main.css +1 -1
- package/doc-dist/deps/main.js +27 -26
- package/doc-dist/deps/main.os.css +1 -1
- package/doc-dist/index.css +1 -1
- package/doc-dist/index.js +4 -4
- package/doc-dist/index.os.css +1 -1
- package/doc-dist/log-deps-build.log +8 -3
- package/es/ComplexSearch/InputPrefix.js +1 -2
- package/es/ComplexSearch/index.js +26 -21
- package/es/search.js +5 -3
- package/es/searchTagList/PureTag.js +1 -2
- package/es/searchTagList/index.js +2 -2
- package/es/style.js +8 -12
- package/es/types/IRcSearchOptions.type.js +0 -1
- package/es/types/IRcSearchProps.type.js +0 -1
- package/es/types/IRcSearchTagItemProps.type.js +0 -1
- package/es/types/IRcSearchTagListProps.type.js +0 -1
- package/lib/ComplexSearch/InputPrefix.d.ts +1 -0
- package/lib/ComplexSearch/InputPrefix.js +1 -3
- package/lib/ComplexSearch/index.d.ts +2 -2
- package/lib/ComplexSearch/index.js +25 -24
- package/lib/constants.js +1 -1
- package/lib/index.js +10 -10
- package/lib/search.js +5 -3
- package/lib/searchTagList/PureTag.js +1 -3
- package/lib/searchTagList/index.js +2 -2
- package/lib/style.js +9 -13
- package/lib/types/IRcSearchOptions.type.js +1 -5
- package/lib/types/IRcSearchProps.type.js +1 -5
- package/lib/types/IRcSearchTagItemProps.type.js +1 -5
- package/lib/types/IRcSearchTagListProps.type.js +1 -5
- package/lib/utils.js +1 -1
- package/package.json +1 -1
- package/doc-dist/3.js +0 -104
package/demos/demo1.demo.tsx
CHANGED
package/dist/index.css
CHANGED
|
@@ -32,8 +32,17 @@ body .rc-search-auto-complete [class*='select-menu-empty'] {
|
|
|
32
32
|
.rc-search-taglist:not(.isWind) {
|
|
33
33
|
margin-top: -4px;
|
|
34
34
|
}
|
|
35
|
-
.rc-search-taglist:not(.isWind).
|
|
36
|
-
|
|
35
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag {
|
|
36
|
+
font-weight: 600;
|
|
37
|
+
}
|
|
38
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag [class*='-icon-close']::before {
|
|
39
|
+
content: var(--icon-content-delete-filling) !important;
|
|
40
|
+
}
|
|
41
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag [class*='icon-close']:hover {
|
|
42
|
+
color: #181818 !important;
|
|
43
|
+
}
|
|
44
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag:hover [class*='-icon-close']::before {
|
|
45
|
+
color: #181818 !important;
|
|
37
46
|
}
|
|
38
47
|
.rc-search-taglist .search-tags-tag.search-tags-tag {
|
|
39
48
|
margin-top: 4px;
|