UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

28 lines 997 B
/// <reference types="react" /> import { BaseComponentProps } from '../internal/base-component'; export interface LiveRegionProps extends BaseComponentProps { /** * Whether the announcements should be made using assertive aria-live. * Assertive announcements interrupt the user's action, so they should only * be used when absolutely necessary. */ assertive?: boolean; /** * The tag name to use for the wrapper around the `children` slot. */ tagName?: LiveRegionProps.TagName; /** * Determines whether to visually hide the contents of the `children` slot. */ hidden?: boolean; /** * Use the rendered content as the source for the announcement text. When the * text content inside this slot changes, it will be re-announced to * assistive technologies. */ children?: React.ReactNode; } export declare namespace LiveRegionProps { type TagName = 'span' | 'div'; } //# sourceMappingURL=interfaces.d.ts.map