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.modern.js
CHANGED
@@ -200,7 +200,8 @@ var Accordion = function Accordion(props) {
|
|
200
200
|
var className = props.className,
|
201
201
|
_props$sections = props.sections,
|
202
202
|
sections = _props$sections === void 0 ? [] : _props$sections,
|
203
|
-
onCheck = props.onCheck
|
203
|
+
onCheck = props.onCheck,
|
204
|
+
children = props.children;
|
204
205
|
|
205
206
|
var _useState = useState([]),
|
206
207
|
openSections = _useState[0],
|
@@ -252,7 +253,7 @@ var Accordion = function Accordion(props) {
|
|
252
253
|
onCheck: function onCheck() {
|
253
254
|
return check(index);
|
254
255
|
}
|
255
|
-
}), section.children);
|
256
|
+
}), section.children, children);
|
256
257
|
}));
|
257
258
|
};
|
258
259
|
/**
|