build(react): build26 from 45504a2b

This commit is contained in:
publish
2026-08-05 18:57:47 +02:00
commit 784a38389b
1955 changed files with 60543 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { PositioningBoundary, TooltipChangeDetails } from "@videojs/core/dom";
import { ReactNode } from "react";
import { TooltipProps } from "@videojs/core";
//#region src/ui/tooltip/tooltip-root.d.ts
interface TooltipRootProps extends TooltipProps {
/** Boundary used to constrain the popup size. */
boundary?: PositioningBoundary;
/** Called when the tooltip open state changes (fires immediately, before animations). */
onOpenChange?: (open: boolean, details: TooltipChangeDetails) => void;
/** Called after open/close animations complete. */
onOpenChangeComplete?: (open: boolean) => void;
children?: ReactNode;
}
declare function TooltipRoot({ open: controlledOpen, defaultOpen, onOpenChange: onOpenChangeProp, onOpenChangeComplete: onOpenChangeCompleteProp, delay, closeDelay, disableHoverablePopup, disabled, boundary, children, ...coreProps }: TooltipRootProps): ReactNode;
declare namespace TooltipRoot {
type Props = TooltipRootProps;
}
//#endregion
export { TooltipRoot, TooltipRootProps };
//# sourceMappingURL=tooltip-root.d.ts.map