@sikka/hawa 0.30.5-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/alert/index.js +1 -1
- package/dist/alert/index.js.map +1 -1
- package/dist/alert/index.mjs +1 -1
- package/dist/alert/index.mjs.map +1 -1
- package/dist/blocks/auth/index.d.mts +4 -0
- package/dist/blocks/auth/index.d.ts +4 -0
- package/dist/blocks/auth/index.js +336 -315
- package/dist/blocks/auth/index.mjs +336 -315
- package/dist/blocks/index.d.mts +4 -0
- package/dist/blocks/index.d.ts +4 -0
- package/dist/blocks/index.js +336 -315
- package/dist/blocks/index.mjs +336 -315
- package/dist/{chunk-N4O2A727.mjs → chunk-AZJHCUGR.mjs} +1 -1
- package/dist/elements/index.js +1 -1
- package/dist/elements/index.mjs +1 -1
- package/dist/fileDropzone/index.js +1 -1
- package/dist/fileDropzone/index.js.map +1 -1
- package/dist/fileDropzone/index.mjs +1 -1
- package/dist/fileDropzone/index.mjs.map +1 -1
- package/dist/index.css +0 -8
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +336 -315
- package/dist/index.mjs +336 -315
- package/package.json +1 -1
package/dist/blocks/index.d.mts
CHANGED
@@ -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
|
|
package/dist/blocks/index.d.ts
CHANGED
@@ -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
|
|