@apexcura/ui-components 0.0.14-Beta143 → 0.0.14-Beta145
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 +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -770,10 +770,10 @@ var TableElement = (props) => {
|
|
|
770
770
|
if (props.view) {
|
|
771
771
|
columns.push({
|
|
772
772
|
title: "View",
|
|
773
|
-
dataIndex:
|
|
773
|
+
dataIndex: "View",
|
|
774
774
|
key: "View",
|
|
775
775
|
render: (_, record) => {
|
|
776
|
-
props.view
|
|
776
|
+
props.view ? /* @__PURE__ */ import_react20.default.createElement(
|
|
777
777
|
"a",
|
|
778
778
|
{
|
|
779
779
|
onClick: () => {
|
|
@@ -782,8 +782,8 @@ var TableElement = (props) => {
|
|
|
782
782
|
setModel(true);
|
|
783
783
|
}
|
|
784
784
|
},
|
|
785
|
-
|
|
786
|
-
);
|
|
785
|
+
/* @__PURE__ */ import_react20.default.createElement(import_icons4.EyeOutlined, null)
|
|
786
|
+
) : "";
|
|
787
787
|
}
|
|
788
788
|
});
|
|
789
789
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -704,10 +704,10 @@ var TableElement = (props) => {
|
|
|
704
704
|
if (props.view) {
|
|
705
705
|
columns.push({
|
|
706
706
|
title: "View",
|
|
707
|
-
dataIndex:
|
|
707
|
+
dataIndex: "View",
|
|
708
708
|
key: "View",
|
|
709
709
|
render: (_, record) => {
|
|
710
|
-
props.view
|
|
710
|
+
props.view ? /* @__PURE__ */ React20.createElement(
|
|
711
711
|
"a",
|
|
712
712
|
{
|
|
713
713
|
onClick: () => {
|
|
@@ -716,8 +716,8 @@ var TableElement = (props) => {
|
|
|
716
716
|
setModel(true);
|
|
717
717
|
}
|
|
718
718
|
},
|
|
719
|
-
|
|
720
|
-
);
|
|
719
|
+
/* @__PURE__ */ React20.createElement(EyeOutlined, null)
|
|
720
|
+
) : "";
|
|
721
721
|
}
|
|
722
722
|
});
|
|
723
723
|
}
|