@omniumretail/component-library 1.3.16 → 1.3.18

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.
@@ -25052,15 +25052,7 @@ const ResponsiveTable = (props) => {
25052
25052
  const isSelected2 = cellIndex2 !== -1;
25053
25053
  if (isDisabled) {
25054
25054
  if (originalCellContent2?.type === "I") {
25055
- return /* @__PURE__ */ jsx(
25056
- "div",
25057
- {
25058
- style: {
25059
- cursor: "not-allowed"
25060
- },
25061
- children: "I"
25062
- }
25063
- );
25055
+ return /* @__PURE__ */ jsx(Tag, { color: originalCellContent2.color, style: { margin: -4, cursor: "not-allowed" }, children: originalCellContent2.type });
25064
25056
  } else {
25065
25057
  return /* @__PURE__ */ jsx(
25066
25058
  "div",
@@ -25083,7 +25075,7 @@ const ResponsiveTable = (props) => {
25083
25075
  if (isSelected2) {
25084
25076
  const selectedCell = selectedCells[cellIndex2];
25085
25077
  const cellColor = selectedCell?.value?.color || selectedCellColor;
25086
- return /* @__PURE__ */ jsx(Tag, { color: cellColor, style: { margin: -4 }, children: "X" });
25078
+ return /* @__PURE__ */ jsx(Tag, { color: cellColor, style: { margin: -4 }, children: originalCellContent2.type });
25087
25079
  }
25088
25080
  if (originalCellContent2) {
25089
25081
  return /* @__PURE__ */ jsx(Tag, { color: originalCellContent2.color, style: { margin: -4 }, children: originalCellContent2.type });