@apexcura/ui-components 0.0.14-Beta92 → 0.0.14-Beta93
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 +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -742,9 +742,7 @@ var TableElement = (props) => {
|
|
|
742
742
|
},
|
|
743
743
|
...thead.map((col, ind) => ({
|
|
744
744
|
title: col.label,
|
|
745
|
-
dataIndex:
|
|
746
|
-
/* @__PURE__ */ import_react20.default.createElement(import_antd14.Tooltip, null, col.name);
|
|
747
|
-
},
|
|
745
|
+
dataIndex: col.name,
|
|
748
746
|
key: col.key,
|
|
749
747
|
render: () => {
|
|
750
748
|
/* @__PURE__ */ import_react20.default.createElement(import_antd14.Tooltip, null, col.render);
|
package/dist/index.mjs
CHANGED
|
@@ -681,9 +681,7 @@ var TableElement = (props) => {
|
|
|
681
681
|
},
|
|
682
682
|
...thead.map((col, ind) => ({
|
|
683
683
|
title: col.label,
|
|
684
|
-
dataIndex:
|
|
685
|
-
/* @__PURE__ */ React20.createElement(Tooltip, null, col.name);
|
|
686
|
-
},
|
|
684
|
+
dataIndex: col.name,
|
|
687
685
|
key: col.key,
|
|
688
686
|
render: () => {
|
|
689
687
|
/* @__PURE__ */ React20.createElement(Tooltip, null, col.render);
|