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.modern.js
CHANGED
@@ -664,6 +664,7 @@ var List = function List(props) {
|
|
664
664
|
var _props$items = props.items,
|
665
665
|
items = _props$items === void 0 ? [] : _props$items,
|
666
666
|
children = props.children,
|
667
|
+
selected = props.selected,
|
667
668
|
onSelect = props.onSelect,
|
668
669
|
groupBy = props.groupBy;
|
669
670
|
|
@@ -679,6 +680,7 @@ var List = function List(props) {
|
|
679
680
|
return /*#__PURE__*/React.createElement(ListItem, {
|
680
681
|
key: item.id,
|
681
682
|
item: item,
|
683
|
+
selected: selected,
|
682
684
|
onSelect: select
|
683
685
|
});
|
684
686
|
})), children);
|