@omniumretail/component-library 1.3.51 → 1.3.53

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.
@@ -25234,7 +25234,7 @@ const ResponsiveTable = (props) => {
25234
25234
  Tag,
25235
25235
  {
25236
25236
  color: originalCellContent.secondaryColor,
25237
- style: { margin: -4, cursor: "not-allowed" },
25237
+ style: { margin: -4, cursor: "pointer" },
25238
25238
  children: originalCellContent.secondaryType
25239
25239
  }
25240
25240
  );
@@ -25285,6 +25285,16 @@ const ResponsiveTable = (props) => {
25285
25285
  }
25286
25286
  );
25287
25287
  }
25288
+ if (originalCellContent?.type) {
25289
+ return /* @__PURE__ */ jsx(
25290
+ Tag,
25291
+ {
25292
+ color: originalCellContent.color,
25293
+ style: { margin: -4, cursor: "pointer" },
25294
+ children: originalCellContent.type
25295
+ }
25296
+ );
25297
+ }
25288
25298
  return null;
25289
25299
  }
25290
25300
  if (isSelected) {