chore(client): fix type error due to React integration

This commit is contained in:
Elian Doran
2025-08-27 11:59:07 +03:00
parent 3e213699e0
commit ed320e4e24
2 changed files with 24 additions and 2 deletions

View File

@@ -504,6 +504,24 @@ export function useTooltip(elRef: RefObject<HTMLElement>, config: Partial<Toolti
return { showTooltip, hideTooltip };
}
/**
* Similar to {@link useTooltip}, but doesn't expose methods to imperatively hide or show the tooltip.
*
* @param elRef the element to bind the tooltip to.
* @param config optionally, the tooltip configuration.
*/
export function useStaticTooltip(elRef: RefObject<HTMLElement>, config?: Partial<Tooltip.Options>) {
useEffect(() => {
if (!elRef?.current) return;
const $el = $(elRef.current);
$el.tooltip(config);
return () => {
$el.tooltip("dispose");
}
}, [ elRef, config ]);
}
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
export function useLegacyImperativeHandlers(handlers: Record<string, Function>) {
const parentComponent = useContext(ParentComponent);