@omniumretail/component-library 1.3.59 → 1.3.60

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.
@@ -25283,7 +25283,7 @@ const ResponsiveTable = (props) => {
25283
25283
  const selectedCell = selectedCells[cellIndex];
25284
25284
  const cellColor = selectedCell?.value?.color || selectedCellColor;
25285
25285
  const cellType = selectedCell?.value?.type || "X";
25286
- if (cellType === "X" || cellType === "R" || cellType === "A") {
25286
+ if (cellType === "X" || cellType === "R" || cellType === "A" || cellType === "L") {
25287
25287
  return /* @__PURE__ */ jsx(
25288
25288
  Tag,
25289
25289
  {
@@ -25311,7 +25311,7 @@ const ResponsiveTable = (props) => {
25311
25311
  onClick: (e) => {
25312
25312
  e.stopPropagation();
25313
25313
  if (disableCellSelection) return;
25314
- if (!templateEditMode && !calendarMode && isSelected && selectedCells[cellIndex]?.value?.type === "L" && selectedCells[cellIndex]?.value?.type === "I") {
25314
+ if (!templateEditMode && !calendarMode && isSelected && (selectedCells[cellIndex]?.value?.type === "L" || selectedCells[cellIndex]?.value?.type === "I")) {
25315
25315
  return;
25316
25316
  }
25317
25317
  handleCellClick(record, key);