trotl-table 1.0.82 → 1.0.83

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/Table.esm.js CHANGED
@@ -10525,9 +10525,9 @@ function TableInner({
10525
10525
 
10526
10526
  // Custom column type (editable in-table)
10527
10527
  if (col && col.type === "custom") {
10528
- const customComp = col["modal-comp"];
10529
- if (customComp) {
10530
- return /*#__PURE__*/React__default.createElement("customComp", {
10528
+ const CustomComp = col["modal-comp"];
10529
+ if (CustomComp) {
10530
+ return /*#__PURE__*/React__default.createElement(CustomComp, {
10531
10531
  value: v
10532
10532
  });
10533
10533
  }