ywana-core8 0.0.710 → 0.0.711
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.cjs +1 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +8 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +1 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +1 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain2/CollectionList.js +1 -1
- package/src/html/list.css +8 -0
- package/src/html/list.js +1 -1
package/dist/index.cjs
CHANGED
@@ -718,7 +718,7 @@ var GroupedList = function GroupedList(props) {
|
|
718
718
|
return groups;
|
719
719
|
}, []);
|
720
720
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
721
|
-
className: "list"
|
721
|
+
className: "list grouped"
|
722
722
|
}, groups.map(function (group) {
|
723
723
|
return /*#__PURE__*/React__default["default"].createElement(React.Fragment, {
|
724
724
|
key: group.name
|
@@ -10354,7 +10354,6 @@ var CollectionList = function CollectionList(props) {
|
|
10354
10354
|
icon: "search",
|
10355
10355
|
size: "small"
|
10356
10356
|
}), /*#__PURE__*/React__default["default"].createElement(TextField, {
|
10357
|
-
placeholder: "Search",
|
10358
10357
|
onChange: changeSearch,
|
10359
10358
|
outlined: true
|
10360
10359
|
})) : null);
|