@omniumretail/component-library 1.3.53 → 1.3.54

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.
@@ -25301,6 +25301,9 @@ const ResponsiveTable = (props) => {
25301
25301
  const selectedCell = selectedCells[cellIndex];
25302
25302
  const cellColor = selectedCell?.value?.color || selectedCellColor;
25303
25303
  const cellType = selectedCell?.value?.type || "X";
25304
+ if (originalCellContent?.secondaryType) {
25305
+ return /* @__PURE__ */ jsx(Tag, { color: originalCellContent.secondaryColor, style: { margin: -4, cursor: "not-allowed" }, children: originalCellContent.secondaryType });
25306
+ }
25304
25307
  return /* @__PURE__ */ jsx(
25305
25308
  Tag,
25306
25309
  {
@@ -25310,6 +25313,9 @@ const ResponsiveTable = (props) => {
25310
25313
  }
25311
25314
  );
25312
25315
  }
25316
+ if (originalCellContent?.secondaryType) {
25317
+ return /* @__PURE__ */ jsx(Tag, { color: originalCellContent.secondaryColor, style: { margin: -4, cursor: "not-allowed" }, children: originalCellContent.secondaryType });
25318
+ }
25313
25319
  if (originalCellContent?.type) {
25314
25320
  return /* @__PURE__ */ jsx(Tag, { color: originalCellContent.color, style: { margin: -4, cursor: "pointer" }, children: originalCellContent.type });
25315
25321
  }