@sikka/hawa 0.30.6-next → 0.30.7-next

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,6 +83,8 @@ type LoginFormTypes = {
83
83
  additionalButtons?: any;
84
84
  /** The allowed length of the password input field */
85
85
  passwordLength?: number;
86
+ /** If true, the form is displayed without a card container styling.*/
87
+ cardless?: boolean;
86
88
  };
87
89
  declare const LoginForm: FC<LoginFormTypes>;
88
90
 
@@ -164,6 +166,8 @@ type RegisterFormTypes = {
164
166
  form?: string;
165
167
  card?: string;
166
168
  };
169
+ /** If true, the form is displayed without a card container styling.*/
170
+ cardless?: boolean;
167
171
  };
168
172
  declare const RegisterForm: FC<RegisterFormTypes>;
169
173
 
@@ -83,6 +83,8 @@ type LoginFormTypes = {
83
83
  additionalButtons?: any;
84
84
  /** The allowed length of the password input field */
85
85
  passwordLength?: number;
86
+ /** If true, the form is displayed without a card container styling.*/
87
+ cardless?: boolean;
86
88
  };
87
89
  declare const LoginForm: FC<LoginFormTypes>;
88
90
 
@@ -164,6 +166,8 @@ type RegisterFormTypes = {
164
166
  form?: string;
165
167
  card?: string;
166
168
  };
169
+ /** If true, the form is displayed without a card container styling.*/
170
+ cardless?: boolean;
167
171
  };
168
172
  declare const RegisterForm: FC<RegisterFormTypes>;
169
173