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