@apexcura/ui-components 0.0.9-Beta11 → 0.0.9-Beta12
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 -4
- package/dist/index.mjs +2 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -363,12 +363,10 @@ var import_react13 = __toESM(require("react"));
|
|
|
363
363
|
var import_antd11 = require("antd");
|
|
364
364
|
var AddMoreTable = (props) => {
|
|
365
365
|
const { thead } = props;
|
|
366
|
-
console.log(thead);
|
|
366
|
+
console.log("thead--------", thead);
|
|
367
367
|
return /* @__PURE__ */ import_react13.default.createElement(import_react13.default.Fragment, null, /* @__PURE__ */ import_react13.default.createElement(
|
|
368
368
|
import_antd11.Table,
|
|
369
|
-
|
|
370
|
-
expandable: { defaultExpandedRowKeys: ["0"] }
|
|
371
|
-
}
|
|
369
|
+
null
|
|
372
370
|
));
|
|
373
371
|
};
|
|
374
372
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -316,12 +316,10 @@ import React12 from "react";
|
|
|
316
316
|
import { Table } from "antd";
|
|
317
317
|
var AddMoreTable = (props) => {
|
|
318
318
|
const { thead } = props;
|
|
319
|
-
console.log(thead);
|
|
319
|
+
console.log("thead--------", thead);
|
|
320
320
|
return /* @__PURE__ */ React12.createElement(React12.Fragment, null, /* @__PURE__ */ React12.createElement(
|
|
321
321
|
Table,
|
|
322
|
-
|
|
323
|
-
expandable: { defaultExpandedRowKeys: ["0"] }
|
|
324
|
-
}
|
|
322
|
+
null
|
|
325
323
|
));
|
|
326
324
|
};
|
|
327
325
|
export {
|