labsense-ui-kit 1.2.20 → 1.2.21

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.
@@ -3,6 +3,7 @@ interface UseModalProps {
3
3
  maxWidth?: string;
4
4
  }
5
5
  declare const useCustomModal: ({ maxWidth }: UseModalProps) => {
6
+ isOpen: boolean;
6
7
  setIsOpen: React.Dispatch<React.SetStateAction<boolean>>;
7
8
  createModal: (content: React.ReactNode) => React.JSX.Element;
8
9
  };
package/dist/index.js CHANGED
@@ -3767,6 +3767,7 @@ var useCustomModal = function useCustomModal(_ref4) {
3767
3767
  }, content);
3768
3768
  };
3769
3769
  return {
3770
+ isOpen: isOpen,
3770
3771
  setIsOpen: setIsOpen,
3771
3772
  createModal: createModal
3772
3773
  };