@apexcura/ui-components 0.0.14-Beta3 → 0.0.14-Beta5
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 -0
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -667,6 +667,12 @@ var TableElement = (props) => {
|
|
|
667
667
|
dataIndex: "#",
|
|
668
668
|
key: "#"
|
|
669
669
|
},
|
|
670
|
+
{
|
|
671
|
+
title: "View",
|
|
672
|
+
dataIndex: "View",
|
|
673
|
+
key: "View",
|
|
674
|
+
render: (_, record) => /* @__PURE__ */ import_react20.default.createElement(import_antd14.Button, null, "View")
|
|
675
|
+
},
|
|
670
676
|
...thead.map((col, ind) => ({
|
|
671
677
|
title: col.label,
|
|
672
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,6 +610,12 @@ var TableElement = (props) => {
|
|
|
610
610
|
dataIndex: "#",
|
|
611
611
|
key: "#"
|
|
612
612
|
},
|
|
613
|
+
{
|
|
614
|
+
title: "View",
|
|
615
|
+
dataIndex: "View",
|
|
616
|
+
key: "View",
|
|
617
|
+
render: (_, record) => /* @__PURE__ */ React20.createElement(Button3, null, "View")
|
|
618
|
+
},
|
|
613
619
|
...thead.map((col, ind) => ({
|
|
614
620
|
title: col.label,
|
|
615
621
|
dataIndex: col.name,
|