@sikka/hawa 0.30.6-next → 0.30.8-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/blocks/auth/index.d.mts +4 -0
- package/dist/blocks/auth/index.d.ts +4 -0
- package/dist/blocks/auth/index.js +335 -314
- package/dist/blocks/auth/index.mjs +335 -314
- package/dist/blocks/index.d.mts +4 -0
- package/dist/blocks/index.d.ts +4 -0
- package/dist/blocks/index.js +335 -314
- package/dist/blocks/index.mjs +335 -314
- package/dist/index.css +9 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +335 -314
- package/dist/index.mjs +335 -314
- package/package.json +1 -1
@@ -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
|
|