ywana-core8 0.0.587 → 0.0.590
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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +2 -2
package/dist/index.cjs
CHANGED
@@ -208,7 +208,8 @@ var Accordion = function Accordion(props) {
|
|
208
208
|
var className = props.className,
|
209
209
|
_props$sections = props.sections,
|
210
210
|
sections = _props$sections === void 0 ? [] : _props$sections,
|
211
|
-
onCheck = props.onCheck
|
211
|
+
onCheck = props.onCheck,
|
212
|
+
children = props.children;
|
212
213
|
|
213
214
|
var _useState = React.useState([]),
|
214
215
|
openSections = _useState[0],
|
@@ -260,7 +261,7 @@ var Accordion = function Accordion(props) {
|
|
260
261
|
onCheck: function onCheck() {
|
261
262
|
return check(index);
|
262
263
|
}
|
263
|
-
}), section.children);
|
264
|
+
}), section.children, children);
|
264
265
|
}));
|
265
266
|
};
|
266
267
|
/**
|