@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.
@@ -86,6 +86,8 @@ type LoginFormTypes = {
86
86
  additionalButtons?: any;
87
87
  /** The allowed length of the password input field */
88
88
  passwordLength?: number;
89
+ /** If true, the form is displayed without a card container styling.*/
90
+ cardless?: boolean;
89
91
  };
90
92
  declare const LoginForm: FC<LoginFormTypes>;
91
93
 
@@ -155,6 +157,8 @@ type RegisterFormTypes = {
155
157
  form?: string;
156
158
  card?: string;
157
159
  };
160
+ /** If true, the form is displayed without a card container styling.*/
161
+ cardless?: boolean;
158
162
  };
159
163
  declare const RegisterForm: FC<RegisterFormTypes>;
160
164
 
@@ -86,6 +86,8 @@ type LoginFormTypes = {
86
86
  additionalButtons?: any;
87
87
  /** The allowed length of the password input field */
88
88
  passwordLength?: number;
89
+ /** If true, the form is displayed without a card container styling.*/
90
+ cardless?: boolean;
89
91
  };
90
92
  declare const LoginForm: FC<LoginFormTypes>;
91
93
 
@@ -155,6 +157,8 @@ type RegisterFormTypes = {
155
157
  form?: string;
156
158
  card?: string;
157
159
  };
160
+ /** If true, the form is displayed without a card container styling.*/
161
+ cardless?: boolean;
158
162
  };
159
163
  declare const RegisterForm: FC<RegisterFormTypes>;
160
164