Update API report after batch migration

Signed-off-by: Johan Persson <johanopersson@gmail.com>
This commit is contained in:
Johan Persson
2026-02-24 17:53:05 +01:00
parent 2503843d6e
commit 055d96e455
+15 -5
View File
@@ -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<ComponentProps<'div'>, 'className'>,
VisuallyHiddenOwnProps {}
```