From 055d96e45546799a3011f20446d94fba89d8817f Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Tue, 24 Feb 2026 17:53:05 +0100 Subject: [PATCH] Update API report after batch migration Signed-off-by: Johan Persson --- packages/ui/report.api.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/packages/ui/report.api.md b/packages/ui/report.api.md index 9b48c8cff6..58effa5f28 100644 --- a/packages/ui/report.api.md +++ b/packages/ui/report.api.md @@ -9,7 +9,7 @@ import type { CheckboxProps as CheckboxProps_2 } from 'react-aria-components'; import { ColumnProps as ColumnProps_2 } from 'react-aria-components'; import type { ColumnSize } from '@react-types/table'; import type { ColumnStaticSize } from '@react-types/table'; -import { ComponentProps } from 'react'; +import type { ComponentProps } from 'react'; import type { ComponentPropsWithRef } from 'react'; import type { CSSProperties } from 'react'; import { DetailedHTMLProps } from 'react'; @@ -2472,14 +2472,24 @@ export const VisuallyHidden: (props: VisuallyHiddenProps) => JSX_2.Element; // @public export const VisuallyHiddenDefinition: { + readonly styles: { + readonly [key: string]: string; + }; readonly classNames: { readonly root: 'bui-VisuallyHidden'; }; + readonly propDefs: { + readonly className: {}; + }; +}; + +// @public (undocumented) +export type VisuallyHiddenOwnProps = { + className?: string; }; // @public -export interface VisuallyHiddenProps extends ComponentProps<'div'> { - // (undocumented) - children?: React.ReactNode; -} +export interface VisuallyHiddenProps + extends Omit, 'className'>, + VisuallyHiddenOwnProps {} ```