@apexcura/ui-components 0.0.11-Beta260 → 0.0.11-Beta261
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.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -669,6 +669,7 @@ var TableElement = (props) => {
|
|
|
669
669
|
const { thead, tbody } = props;
|
|
670
670
|
const [selectedRecord, setSelectedRecord] = (0, import_react21.useState)({});
|
|
671
671
|
const [model, setModel] = (0, import_react21.useState)(false);
|
|
672
|
+
console.log(tbody);
|
|
672
673
|
const handleChange = (record) => {
|
|
673
674
|
if (props.onChange) {
|
|
674
675
|
props.onChange(record);
|
package/dist/index.mjs
CHANGED
|
@@ -617,6 +617,7 @@ var TableElement = (props) => {
|
|
|
617
617
|
const { thead, tbody } = props;
|
|
618
618
|
const [selectedRecord, setSelectedRecord] = useState5({});
|
|
619
619
|
const [model, setModel] = useState5(false);
|
|
620
|
+
console.log(tbody);
|
|
620
621
|
const handleChange = (record) => {
|
|
621
622
|
if (props.onChange) {
|
|
622
623
|
props.onChange(record);
|