@alicloud/console-components-search 0.2.21 → 0.2.22
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/index.css +4 -0
- package/dist/index.js +11 -12
- package/doc-dist/deps/main.css +1 -1
- package/doc-dist/deps/main.js +1 -1
- package/doc-dist/deps/main.os.css +1 -1
- package/doc-dist/log-deps-build.log +1 -1
- package/es/searchTagList/index.js +2 -2
- package/es/style.js +1 -1
- package/lib/searchTagList/index.js +2 -2
- package/lib/style.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
html body .xconsole-rcsearch-multi-pop.xconsole-rcsearch-multi-pop>ul{padding:8px}html body .xconsole-rcsearch-multi-pop .next-select-menu-item{padding-left:0!important}html body .xconsole-rcsearch-multi-pop .next-select-menu-item .next-menu-icon-selected{display:none}html body .xconsole-rcsearch-multi-pop .next-menu-group-label{padding-left:0}html body .xconsole-rc-search-popup{margin-top:4px}html body .rc-search-prefix{--menu-padding-horizontal:24px}html body .rc-search.isWind{--console-rc-search-label-color:#f7f7f7;--console-rc-search-label-hover-color:#ebebeb}html body .rc-search.isWidget{--console-rc-search-close-btn-top:2px;--console-rc-search-close-btn-left:-3px;--icon-content-delete-filling:"\\E6A2"}html body .rc-search-auto-complete [class*=select-menu-empty]{display:none}html .rc-search-taglist:not(.isWind).rc-search-taglist:not(.isWind) [class*=-icon-close]:before{content:var(--icon-content-close)!important}html .rc-search-taglist .search-tags-tag.search-tags-tag{font-weight:400;color:var(--color-text1-9,#333)!important}html .rc-search-taglist .search-tags-tag.search-tags-tag .search-tags-tag-label{font-weight:500;color:var(--color-text1-6,grey);margin-right:8px}html .rc-search-taglist .search-tags-tag.search-tags-tag[class*=tag-closable]>[class*=tag-close-btn]{margin-left:12px}html .rc-search-taglist .search-tags-tag.search-tags-tag [class*=icon-close]:hover{color:grey!important}html .rc-search-taglist .search-tags-tag:not(:last-child){margin-right:8px}html .rc-search-taglist .search-tags-tag_empty{color:var(--color-text1-6,grey)}html .rc-search-taglist .search-tags-tag-dot.rc-search-taglist .search-tags-tag-dot [class*=-badge-dot]{right:4px;top:0}
|
|
1
|
+
html body .xconsole-rcsearch-multi-pop.xconsole-rcsearch-multi-pop>ul{padding:8px}html body .xconsole-rcsearch-multi-pop .next-select-menu-item{padding-left:0!important}html body .xconsole-rcsearch-multi-pop .next-select-menu-item .next-menu-icon-selected{display:none}html body .xconsole-rcsearch-multi-pop .next-menu-group-label{padding-left:0}html body .xconsole-rc-search-popup{margin-top:4px}html body .rc-search-prefix{--menu-padding-horizontal:24px}html body .rc-search.isWind{--console-rc-search-label-color:#f7f7f7;--console-rc-search-label-hover-color:#ebebeb}html body .rc-search.isWidget{--console-rc-search-close-btn-top:2px;--console-rc-search-close-btn-left:-3px;--icon-content-delete-filling:"\\E6A2"}html body .rc-search-auto-complete [class*=select-menu-empty]{display:none}html .rc-search-taglist:not(.isWind){margin-top:-8px}html .rc-search-taglist:not(.isWind).rc-search-taglist:not(.isWind) [class*=-icon-close]:before{content:var(--icon-content-close)!important}html .rc-search-taglist .search-tags-tag.search-tags-tag{margin-top:8px;font-weight:400;color:var(--color-text1-9,#333)!important}html .rc-search-taglist .search-tags-tag.search-tags-tag .search-tags-tag-label{font-weight:500;color:var(--color-text1-6,grey);margin-right:8px}html .rc-search-taglist .search-tags-tag.search-tags-tag[class*=tag-closable]>[class*=tag-close-btn]{margin-left:12px}html .rc-search-taglist .search-tags-tag.search-tags-tag [class*=icon-close]:hover{color:grey!important}html .rc-search-taglist .search-tags-tag:not(:last-child){margin-right:8px}html .rc-search-taglist .search-tags-tag_empty{color:var(--color-text1-6,grey)}html .rc-search-taglist .search-tags-tag-dot.rc-search-taglist .search-tags-tag-dot [class*=-badge-dot]{right:4px;top:0}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
开始构建微应用external依赖...
|
|
2
2
|
BreezrPluginStyledComponentsIsolation The plugin will trying to use the package's name as isolation id of styled-components. This behavior usually occurred on dev mode. And if you were received this warning on publish mode then you should to set `options.styledComponentStyleSheetId` implicitly.
|
|
3
3
|
ℹ Compiling Webpack
|
|
4
|
-
✔ Webpack: Compiled successfully in 12.
|
|
4
|
+
✔ Webpack: Compiled successfully in 12.23s
|
|
5
5
|
WARN asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
|
|
6
6
|
This can impact web performance.
|
|
7
7
|
Assets:
|
|
@@ -117,7 +117,7 @@ var SearchTagList = function SearchTagList(props) {
|
|
|
117
117
|
prefix: prefix,
|
|
118
118
|
className: classNames(baseTagListClassName, className, isWindClass),
|
|
119
119
|
style: style
|
|
120
|
-
},
|
|
120
|
+
}, processDataSource.map(function (tagItem) {
|
|
121
121
|
if (isTagLikeDataStructure(tagItem.value)) {
|
|
122
122
|
return renderTags(tagItem);
|
|
123
123
|
}
|
|
@@ -137,7 +137,7 @@ var SearchTagList = function SearchTagList(props) {
|
|
|
137
137
|
}), processDataSource.length > 0 && /*#__PURE__*/React.createElement("a", {
|
|
138
138
|
className: "remove-btn",
|
|
139
139
|
onClick: onRemoveAllFilter
|
|
140
|
-
}, message.clearFilter))
|
|
140
|
+
}, message.clearFilter));
|
|
141
141
|
};
|
|
142
142
|
|
|
143
143
|
export default ConfigProvider.config(SearchTagList);
|
package/es/style.js
CHANGED
|
@@ -15,5 +15,5 @@ var MultiBtnWarp = styled.div.withConfig({
|
|
|
15
15
|
})(["padding:\"0 4px\";text-align:\"center\";.pri-btn{margin-right:8px;width:auto;min-width:auto;padding:3px 12px;}.cancel-btn{padding:3px 12px;width:auto;min-width:auto;}", "btn", "small:not(.isOnlyIcon):not(", "btn-text){min-width:auto;}"], prefix, prefix, prefix);
|
|
16
16
|
var TagListWrap = styled.div.withConfig({
|
|
17
17
|
componentId: "sc-1afc1cn-3"
|
|
18
|
-
})(["", "tag-medium", "tag-closable > ", "tag-close-btn{margin-left:8px;padding-right:6px;}", "tag-medium", "tag-closable > ", "tag-body{max-width:calc(100% - 8px - 8px - var(--tag-size-m-padding-lr,8px));}", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon:before,", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon ", "icon-remote{font-size:16px;}&& [class*='-icon-close']::before{color:#808080;font-size:12px !important;}.remove-btn{
|
|
18
|
+
})(["", "tag-medium", "tag-closable > ", "tag-close-btn{margin-left:8px;padding-right:6px;}", "tag-medium", "tag-closable > ", "tag-body{max-width:calc(100% - 8px - 8px - var(--tag-size-m-padding-lr,8px));}", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon:before,", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon ", "icon-remote{font-size:16px;}&& [class*='-icon-close']::before{color:#808080;font-size:12px !important;}.remove-btn{line-height:24px;margin-top:8px;display:inline-block;vertical-align:middle;cursor:pointer;}"], prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix);
|
|
19
19
|
export { SearchWarp, MultiBtnWarp, TagListWrap, MenuContentWrap };
|
|
@@ -136,7 +136,7 @@ var SearchTagList = function SearchTagList(props) {
|
|
|
136
136
|
prefix: prefix,
|
|
137
137
|
className: (0, _classnames.default)(_constants.baseTagListClassName, className, isWindClass),
|
|
138
138
|
style: style
|
|
139
|
-
},
|
|
139
|
+
}, processDataSource.map(function (tagItem) {
|
|
140
140
|
if (isTagLikeDataStructure(tagItem.value)) {
|
|
141
141
|
return renderTags(tagItem);
|
|
142
142
|
}
|
|
@@ -156,7 +156,7 @@ var SearchTagList = function SearchTagList(props) {
|
|
|
156
156
|
}), processDataSource.length > 0 && /*#__PURE__*/_react.default.createElement("a", {
|
|
157
157
|
className: "remove-btn",
|
|
158
158
|
onClick: onRemoveAllFilter
|
|
159
|
-
}, _message.default.clearFilter))
|
|
159
|
+
}, _message.default.clearFilter));
|
|
160
160
|
};
|
|
161
161
|
|
|
162
162
|
var _default = _consoleComponents.ConfigProvider.config(SearchTagList);
|
package/lib/style.js
CHANGED
|
@@ -33,6 +33,6 @@ exports.MultiBtnWarp = MultiBtnWarp;
|
|
|
33
33
|
|
|
34
34
|
var TagListWrap = _styledComponents.default.div.withConfig({
|
|
35
35
|
componentId: "sc-1afc1cn-3"
|
|
36
|
-
})(["", "tag-medium", "tag-closable > ", "tag-close-btn{margin-left:8px;padding-right:6px;}", "tag-medium", "tag-closable > ", "tag-body{max-width:calc(100% - 8px - 8px - var(--tag-size-m-padding-lr,8px));}", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon:before,", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon ", "icon-remote{font-size:16px;}&& [class*='-icon-close']::before{color:#808080;font-size:12px !important;}.remove-btn{
|
|
36
|
+
})(["", "tag-medium", "tag-closable > ", "tag-close-btn{margin-left:8px;padding-right:6px;}", "tag-medium", "tag-closable > ", "tag-body{max-width:calc(100% - 8px - 8px - var(--tag-size-m-padding-lr,8px));}", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon:before,", "tag-medium", "tag-closable > ", "tag-close-btn ", "icon ", "icon-remote{font-size:16px;}&& [class*='-icon-close']::before{color:#808080;font-size:12px !important;}.remove-btn{line-height:24px;margin-top:8px;display:inline-block;vertical-align:middle;cursor:pointer;}"], prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix, prefix);
|
|
37
37
|
|
|
38
38
|
exports.TagListWrap = TagListWrap;
|