UNPKG

@workday/canvas-kit-labs-react

Version:

Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functi

16 lines 999 B
/** * @deprecated ⚠️ `StatusProps` in Labs has been deprecated and will be removed in a future major version. Please use [`Combobox` in Main](https://workday.github.io/canvas-kit/?path=/docs/features-combobox--docs) instead. */ export interface StatusProps { ariaLive?: 'polite' | 'assertive' | 'off'; role?: 'log' | 'status' | 'alert' | 'progressbar' | 'marquee' | 'timer'; ariaRelevant?: 'additions' | 'additions text' | 'all' | 'removals' | 'text'; ariaAtomic?: boolean; expireMilliseconds?: number; announcementText?: string; } /** * @deprecated ⚠️ `Status` in Labs has been deprecated and will be removed in a future major version. Please use [`Combobox` in Main](https://workday.github.io/canvas-kit/?path=/docs/features-combobox--docs) instead. */ export declare const Status: ({ ariaLive, role, ariaRelevant, expireMilliseconds, announcementText, ariaAtomic, }: StatusProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Status.d.ts.map