@apexcura/ui-components 0.0.11-Beta5 → 0.0.11-Beta7
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 +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -363,6 +363,8 @@ var import_react13 = __toESM(require("react"));
|
|
|
363
363
|
var import_antd11 = require("antd");
|
|
364
364
|
var AddMoreTable = (props) => {
|
|
365
365
|
const { thead, tbody } = props;
|
|
366
|
+
console.log("-----------tbody", tbody);
|
|
367
|
+
console.log("..........thead", thead);
|
|
366
368
|
const [tableData, setTableData] = (0, import_react13.useState)({});
|
|
367
369
|
const onHandleChange = (name, value) => {
|
|
368
370
|
setTableData((prev) => ({ ...prev, [name]: value }));
|
package/dist/index.mjs
CHANGED
|
@@ -316,6 +316,8 @@ import React12, { useState as useState3 } from "react";
|
|
|
316
316
|
import { Table } from "antd";
|
|
317
317
|
var AddMoreTable = (props) => {
|
|
318
318
|
const { thead, tbody } = props;
|
|
319
|
+
console.log("-----------tbody", tbody);
|
|
320
|
+
console.log("..........thead", thead);
|
|
319
321
|
const [tableData, setTableData] = useState3({});
|
|
320
322
|
const onHandleChange = (name, value) => {
|
|
321
323
|
setTableData((prev) => ({ ...prev, [name]: value }));
|