@apexcura/ui-components 0.0.12-Beta95 → 0.0.12-Beta96
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
|
@@ -613,6 +613,8 @@ var import_react19 = __toESM(require("react"));
|
|
|
613
613
|
var import_antd14 = require("antd");
|
|
614
614
|
var TableElement = (props) => {
|
|
615
615
|
const { thead, tbody } = props;
|
|
616
|
+
console.log("thead-----", thead);
|
|
617
|
+
console.log("tbody------", tbody);
|
|
616
618
|
return /* @__PURE__ */ import_react19.default.createElement(import_antd14.Table, { columns: thead, dataSource: tbody });
|
|
617
619
|
};
|
|
618
620
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -563,6 +563,8 @@ import React18 from "react";
|
|
|
563
563
|
import { Table as Table2 } from "antd";
|
|
564
564
|
var TableElement = (props) => {
|
|
565
565
|
const { thead, tbody } = props;
|
|
566
|
+
console.log("thead-----", thead);
|
|
567
|
+
console.log("tbody------", tbody);
|
|
566
568
|
return /* @__PURE__ */ React18.createElement(Table2, { columns: thead, dataSource: tbody });
|
|
567
569
|
};
|
|
568
570
|
export {
|