@omniumretail/component-library 1.3.26 → 1.3.28

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.
@@ -24860,7 +24860,8 @@ const ResponsiveTable = (props) => {
24860
24860
  renderSelectedCell,
24861
24861
  useOrderedCellSelection = true,
24862
24862
  initialSelectedCells,
24863
- selectedCellColor
24863
+ selectedCellColor,
24864
+ disableCellSelection
24864
24865
  } = props;
24865
24866
  const [customFilters, setCustomFilters] = useState([]);
24866
24867
  const [customColumns, setCustomColumns] = useState([]);
@@ -24888,7 +24889,7 @@ const ResponsiveTable = (props) => {
24888
24889
  secondCell: { ...defaultCellStyle.secondCell, ...cellSelectionStyle?.secondCell }
24889
24890
  };
24890
24891
  const handleCellClick = (record, columnKey, value) => {
24891
- if (!enableCellSelection || !selectableColumns?.includes(columnKey)) return;
24892
+ if (!enableCellSelection || !selectableColumns?.includes(columnKey) || disableCellSelection) return;
24892
24893
  const isAlreadySelected = selectedCells.some(
24893
24894
  (cell) => cell.rowKey === record[rowKeyValue] && cell.columnKey === columnKey
24894
24895
  );
@@ -25055,7 +25056,7 @@ const ResponsiveTable = (props) => {
25055
25056
  );
25056
25057
  const isSelected2 = cellIndex2 !== -1;
25057
25058
  if (isDisabled) {
25058
- if (originalCellContent2?.type === "I" || isReadonly || originalCellContent2?.type === "L") {
25059
+ if (originalCellContent2?.type === "I" || isReadonly || originalCellContent2?.type === "L" || disableCellSelection) {
25059
25060
  return /* @__PURE__ */ jsx(Tag, { color: originalCellContent2.color, style: { margin: -4, cursor: "not-allowed" }, children: originalCellContent2.type });
25060
25061
  } else {
25061
25062
  return /* @__PURE__ */ jsx(
@@ -25093,6 +25094,7 @@ const ResponsiveTable = (props) => {
25093
25094
  {
25094
25095
  onClick: (e) => {
25095
25096
  e.stopPropagation();
25097
+ if (disableCellSelection) return;
25096
25098
  if (isSelected2 && selectedCells[cellIndex2]?.value?.type === "L") {
25097
25099
  return;
25098
25100
  }
@@ -26442,7 +26444,8 @@ const Header = ({
26442
26444
  applicationOptions,
26443
26445
  onProfileClick,
26444
26446
  onHomeClick,
26445
- showSupport = false
26447
+ showSupport = false,
26448
+ onSupportModalOpen
26446
26449
  }) => {
26447
26450
  const [isMenuOpen, setIsMenuOpen] = useState(false);
26448
26451
  const [activeDropdown, setActiveDropdown] = useState(null);
@@ -26478,6 +26481,9 @@ const Header = ({
26478
26481
  }
26479
26482
  };
26480
26483
  const onSupport = () => {
26484
+ if (onSupportModalOpen) {
26485
+ onSupportModalOpen();
26486
+ }
26481
26487
  setIsSupportModalVisible(true);
26482
26488
  setIsMenuOpen(false);
26483
26489
  };