@inntechcorp/it-design 2.1.55 → 2.1.56

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.
@@ -1,4 +1,4 @@
1
- import { MutableRefObject } from "react";
1
+ import { RefObject } from "react";
2
2
  /**
3
3
  *
4
4
  * document objesine event listener ekler ve ref dışarısında
@@ -8,5 +8,5 @@ import { MutableRefObject } from "react";
8
8
  * @param handler
9
9
  *
10
10
  */
11
- declare const useOnClickOutside: (ref: MutableRefObject<HTMLDivElement | null>, handler: (event: PointerEvent) => void) => void;
11
+ declare const useOnClickOutside: (ref: RefObject<HTMLDivElement | null>, handler: (event: PointerEvent) => void) => void;
12
12
  export default useOnClickOutside;