@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
11 lines • 541 B
TypeScript
import React from 'react';
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;
}
export declare const Status: ({ ariaLive, role, ariaRelevant, expireMilliseconds, announcementText, ariaAtomic, }: StatusProps) => React.JSX.Element;
//# sourceMappingURL=Status.d.ts.map