@apexcura/ui-components 0.0.14-Beta93 → 0.0.14-Beta95
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 +1 -3
- package/dist/index.mjs +2 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -744,9 +744,7 @@ var TableElement = (props) => {
|
|
|
744
744
|
title: col.label,
|
|
745
745
|
dataIndex: col.name,
|
|
746
746
|
key: col.key,
|
|
747
|
-
render:
|
|
748
|
-
/* @__PURE__ */ import_react20.default.createElement(import_antd14.Tooltip, null, col.render);
|
|
749
|
-
},
|
|
747
|
+
render: col.render,
|
|
750
748
|
sorter: {
|
|
751
749
|
compare: (a, b) => {
|
|
752
750
|
if (typeof a[col.key] === "number" && typeof a[col.key] === "number") {
|
package/dist/index.mjs
CHANGED
|
@@ -606,7 +606,7 @@ var Navbar = (props) => {
|
|
|
606
606
|
|
|
607
607
|
// src/Components/TableElement.tsx
|
|
608
608
|
import React20, { useState as useState6 } from "react";
|
|
609
|
-
import { Table as Table2
|
|
609
|
+
import { Table as Table2 } from "antd";
|
|
610
610
|
|
|
611
611
|
// src/Components/Model.tsx
|
|
612
612
|
import React19 from "react";
|
|
@@ -683,9 +683,7 @@ var TableElement = (props) => {
|
|
|
683
683
|
title: col.label,
|
|
684
684
|
dataIndex: col.name,
|
|
685
685
|
key: col.key,
|
|
686
|
-
render:
|
|
687
|
-
/* @__PURE__ */ React20.createElement(Tooltip, null, col.render);
|
|
688
|
-
},
|
|
686
|
+
render: col.render,
|
|
689
687
|
sorter: {
|
|
690
688
|
compare: (a, b) => {
|
|
691
689
|
if (typeof a[col.key] === "number" && typeof a[col.key] === "number") {
|