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.umd.js
CHANGED
@@ -666,6 +666,7 @@
|
|
666
666
|
var _props$items = props.items,
|
667
667
|
items = _props$items === void 0 ? [] : _props$items,
|
668
668
|
children = props.children,
|
669
|
+
selected = props.selected,
|
669
670
|
onSelect = props.onSelect,
|
670
671
|
groupBy = props.groupBy;
|
671
672
|
|
@@ -681,6 +682,7 @@
|
|
681
682
|
return /*#__PURE__*/React__default["default"].createElement(ListItem, {
|
682
683
|
key: item.id,
|
683
684
|
item: item,
|
685
|
+
selected: selected,
|
684
686
|
onSelect: select
|
685
687
|
});
|
686
688
|
})), children);
|