ywana-core8 0.0.734 → 0.0.735
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 +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/list.js +1 -1
package/dist/index.cjs
CHANGED
@@ -672,6 +672,7 @@ var List = function List(props) {
|
|
672
672
|
var _props$items = props.items,
|
673
673
|
items = _props$items === void 0 ? [] : _props$items,
|
674
674
|
children = props.children,
|
675
|
+
selected = props.selected,
|
675
676
|
onSelect = props.onSelect,
|
676
677
|
groupBy = props.groupBy;
|
677
678
|
|
@@ -687,6 +688,7 @@ var List = function List(props) {
|
|
687
688
|
return /*#__PURE__*/React__default["default"].createElement(ListItem, {
|
688
689
|
key: item.id,
|
689
690
|
item: item,
|
691
|
+
selected: selected,
|
690
692
|
onSelect: select
|
691
693
|
});
|
692
694
|
})), children);
|