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