Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add union type SVGElement in eligible hooks #648

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/heavy-beans-nail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"usehooks-ts": patch
---

add SVGElement union type in hooks that handles with DOMElements
2 changes: 1 addition & 1 deletion packages/usehooks-ts/src/useHover/useHover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { useEventListener } from '../useEventListener'
* // Access the isHovered variable to determine if the button is being hovered over.
* ```
*/
export function useHover<T extends HTMLElement = HTMLElement>(
export function useHover<T extends HTMLElement | SVGElement = HTMLElement>(
elementRef: RefObject<T>,
): boolean {
const [value, setValue] = useState<boolean>(false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ type EventType =
* });
* ```
*/
export function useOnClickOutside<T extends HTMLElement = HTMLElement>(
export function useOnClickOutside<
T extends HTMLElement | SVGElement = HTMLElement,
>(
ref: RefObject<T> | RefObject<T>[],
handler: (event: MouseEvent | TouchEvent | FocusEvent) => void,
eventType: EventType = 'mousedown',
Expand Down
10 changes: 6 additions & 4 deletions packages/usehooks-ts/src/useResizeObserver/useResizeObserver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ type Size = {
}

/** The options for the ResizeObserver. */
type UseResizeObserverOptions<T extends HTMLElement = HTMLElement> = {
type UseResizeObserverOptions<
T extends HTMLElement | SVGElement = HTMLElement,
> = {
/** The ref of the element to observe. */
ref: RefObject<T>
/**
Expand Down Expand Up @@ -51,9 +53,9 @@ const initialSize: Size = {
* <div ref={myRef}>Hello, world!</div>
* ```
*/
export function useResizeObserver<T extends HTMLElement = HTMLElement>(
options: UseResizeObserverOptions<T>,
): Size {
export function useResizeObserver<
T extends HTMLElement | SVGElement = HTMLElement,
>(options: UseResizeObserverOptions<T>): Size {
const { ref, box = 'content-box' } = options
const [{ width, height }, setSize] = useState<Size>(initialSize)
const isMounted = useIsMounted()
Expand Down