@omniumretail/component-library 1.3.15 → 1.3.17

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.
@@ -25051,20 +25051,24 @@ const ResponsiveTable = (props) => {
25051
25051
  );
25052
25052
  const isSelected2 = cellIndex2 !== -1;
25053
25053
  if (isDisabled) {
25054
- return /* @__PURE__ */ jsx(
25055
- "div",
25056
- {
25057
- style: {
25058
- backgroundColor: "#e8e8e8",
25059
- cursor: "not-allowed",
25060
- textAlign: "center",
25061
- color: "#999",
25062
- padding: "8px",
25063
- border: "1px solid #d9d9d9"
25064
- },
25065
- children: "-"
25066
- }
25067
- );
25054
+ if (originalCellContent2?.type === "I") {
25055
+ return /* @__PURE__ */ jsx(Tag, { color: originalCellContent2.color, style: { margin: -4, cursor: "not-allowed" }, children: originalCellContent2.type });
25056
+ } else {
25057
+ return /* @__PURE__ */ jsx(
25058
+ "div",
25059
+ {
25060
+ style: {
25061
+ backgroundColor: "#e8e8e8",
25062
+ cursor: "not-allowed",
25063
+ textAlign: "center",
25064
+ color: "#999",
25065
+ padding: "8px",
25066
+ border: "1px solid #d9d9d9"
25067
+ },
25068
+ children: "-"
25069
+ }
25070
+ );
25071
+ }
25068
25072
  }
25069
25073
  if (isSelectable2) {
25070
25074
  const cellContent = (() => {