@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.
package/dist/index.d.mts CHANGED
@@ -1533,6 +1533,8 @@ type LoginFormTypes = {
1533
1533
  additionalButtons?: any;
1534
1534
  /** The allowed length of the password input field */
1535
1535
  passwordLength?: number;
1536
+ /** If true, the form is displayed without a card container styling.*/
1537
+ cardless?: boolean;
1536
1538
  };
1537
1539
  declare const LoginForm: FC<LoginFormTypes>;
1538
1540
 
@@ -1602,6 +1604,8 @@ type RegisterFormTypes = {
1602
1604
  form?: string;
1603
1605
  card?: string;
1604
1606
  };
1607
+ /** If true, the form is displayed without a card container styling.*/
1608
+ cardless?: boolean;
1605
1609
  };
1606
1610
  declare const RegisterForm: FC<RegisterFormTypes>;
1607
1611
 
package/dist/index.d.ts CHANGED
@@ -1533,6 +1533,8 @@ type LoginFormTypes = {
1533
1533
  additionalButtons?: any;
1534
1534
  /** The allowed length of the password input field */
1535
1535
  passwordLength?: number;
1536
+ /** If true, the form is displayed without a card container styling.*/
1537
+ cardless?: boolean;
1536
1538
  };
1537
1539
  declare const LoginForm: FC<LoginFormTypes>;
1538
1540
 
@@ -1602,6 +1604,8 @@ type RegisterFormTypes = {
1602
1604
  form?: string;
1603
1605
  card?: string;
1604
1606
  };
1607
+ /** If true, the form is displayed without a card container styling.*/
1608
+ cardless?: boolean;
1605
1609
  };
1606
1610
  declare const RegisterForm: FC<RegisterFormTypes>;
1607
1611