@apexcura/ui-components 0.0.14-Beta7 → 0.0.14-Beta8
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 +6 -8
- package/dist/index.mjs +7 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -667,14 +667,12 @@ var TableElement = (props) => {
|
|
|
667
667
|
dataIndex: "#",
|
|
668
668
|
key: "#"
|
|
669
669
|
},
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
// ),
|
|
677
|
-
// },
|
|
670
|
+
{
|
|
671
|
+
title: "View",
|
|
672
|
+
dataIndex: "View",
|
|
673
|
+
key: "View",
|
|
674
|
+
render: (_, record) => /* @__PURE__ */ import_react20.default.createElement(import_antd14.Button, null, "View")
|
|
675
|
+
},
|
|
678
676
|
...thead.map((col, ind) => ({
|
|
679
677
|
title: col.label,
|
|
680
678
|
dataIndex: col.name,
|
package/dist/index.mjs
CHANGED
|
@@ -536,7 +536,7 @@ var Navbar = (props) => {
|
|
|
536
536
|
|
|
537
537
|
// src/Components/TableElement.tsx
|
|
538
538
|
import React20, { useState as useState5 } from "react";
|
|
539
|
-
import { Table as Table2 } from "antd";
|
|
539
|
+
import { Button as Button3, Table as Table2 } from "antd";
|
|
540
540
|
|
|
541
541
|
// src/Components/Model.tsx
|
|
542
542
|
import React19 from "react";
|
|
@@ -610,14 +610,12 @@ var TableElement = (props) => {
|
|
|
610
610
|
dataIndex: "#",
|
|
611
611
|
key: "#"
|
|
612
612
|
},
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
// ),
|
|
620
|
-
// },
|
|
613
|
+
{
|
|
614
|
+
title: "View",
|
|
615
|
+
dataIndex: "View",
|
|
616
|
+
key: "View",
|
|
617
|
+
render: (_, record) => /* @__PURE__ */ React20.createElement(Button3, null, "View")
|
|
618
|
+
},
|
|
621
619
|
...thead.map((col, ind) => ({
|
|
622
620
|
title: col.label,
|
|
623
621
|
dataIndex: col.name,
|