@teselagen/ui 0.10.6 → 0.10.7
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/index.cjs.js +1 -3
- package/index.es.js +1 -3
- package/package.json +1 -1
- package/src/DataTable/DraggableColumnOptions.js +1 -3
package/index.cjs.js
CHANGED
|
@@ -34674,11 +34674,9 @@ const DraggableColumnOption = /* @__PURE__ */ __name(({
|
|
|
34674
34674
|
), subFrag && /* @__PURE__ */ React$1.createElement(
|
|
34675
34675
|
InfoHelper,
|
|
34676
34676
|
{
|
|
34677
|
-
icon: "warning-sign",
|
|
34678
|
-
intent: "warning",
|
|
34679
34677
|
style: { marginLeft: 5 }
|
|
34680
34678
|
},
|
|
34681
|
-
"Viewing this column may cause the table to load slower"
|
|
34679
|
+
"Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance."
|
|
34682
34680
|
))
|
|
34683
34681
|
}
|
|
34684
34682
|
)
|
package/index.es.js
CHANGED
|
@@ -34656,11 +34656,9 @@ const DraggableColumnOption = /* @__PURE__ */ __name(({
|
|
|
34656
34656
|
), subFrag && /* @__PURE__ */ React__default.createElement(
|
|
34657
34657
|
InfoHelper,
|
|
34658
34658
|
{
|
|
34659
|
-
icon: "warning-sign",
|
|
34660
|
-
intent: "warning",
|
|
34661
34659
|
style: { marginLeft: 5 }
|
|
34662
34660
|
},
|
|
34663
|
-
"Viewing this column may cause the table to load slower"
|
|
34661
|
+
"Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance."
|
|
34664
34662
|
))
|
|
34665
34663
|
}
|
|
34666
34664
|
)
|
package/package.json
CHANGED
|
@@ -70,11 +70,9 @@ const DraggableColumnOption = ({
|
|
|
70
70
|
)}
|
|
71
71
|
{subFrag && (
|
|
72
72
|
<InfoHelper
|
|
73
|
-
icon="warning-sign"
|
|
74
|
-
intent="warning"
|
|
75
73
|
style={{ marginLeft: 5 }}
|
|
76
74
|
>
|
|
77
|
-
Viewing this column may cause the table to load slower
|
|
75
|
+
Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance.
|
|
78
76
|
</InfoHelper>
|
|
79
77
|
)}
|
|
80
78
|
</span>
|