chore(): sync with main for beta 5 release

This commit is contained in:
Liam DeBeasi
2021-09-01 10:14:58 -04:00
13 changed files with 219 additions and 11 deletions

View File

@ -44,7 +44,7 @@ export interface AlertInputAttributes extends JSXBase.InputHTMLAttributes<HTMLIn
export interface AlertButton {
text: string;
role?: string;
role?: 'cancel' | 'destructive' | string;
cssClass?: string | string[];
id?: string;
handler?: (value: any) => boolean | void | {[key: string]: any};