chore(): resolve merge conflicts for beta

This commit is contained in:
Liam DeBeasi
2021-09-15 12:02:43 -04:00
46 changed files with 440 additions and 47 deletions

View File

@ -13,6 +13,7 @@ export interface AlertOptions {
backdropDismiss?: boolean;
translucent?: boolean;
animated?: boolean;
htmlAttributes?: AlertAttributes;
mode?: Mode;
keyboardClose?: boolean;
@ -22,6 +23,8 @@ export interface AlertOptions {
leaveAnimation?: AnimationBuilder;
}
export interface AlertAttributes extends JSXBase.HTMLAttributes<HTMLElement> {}
export interface AlertInput {
type?: TextFieldTypes | 'checkbox' | 'radio' | 'textarea';
name?: string;