@sikka/hawa 0.1.8 → 0.1.10
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/styles.css +3 -0
- package/es/blocks/AuthForms/SignInForm.d.ts +4 -0
- package/es/elements/InterfaceSettings.d.ts +9 -0
- package/es/elements/index.d.ts +1 -0
- package/es/index.es.js +2 -2
- package/lib/blocks/AuthForms/SignInForm.d.ts +4 -0
- package/lib/elements/InterfaceSettings.d.ts +9 -0
- package/lib/elements/index.d.ts +1 -0
- package/lib/index.js +3 -3
- package/package.json +1 -1
- package/src/blocks/AuthForms/SignInForm.tsx +164 -140
- package/src/elements/HawaAlert.tsx +1 -0
- package/src/elements/HawaRadio.tsx +3 -3
- package/src/elements/InterfaceSettings.tsx +70 -0
- package/src/elements/index.ts +1 -0
- package/src/styles.css +3 -0
package/dist/styles.css
CHANGED
|
@@ -3261,6 +3261,9 @@ body {
|
|
|
3261
3261
|
--tw-bg-opacity: 1;
|
|
3262
3262
|
background-color: rgb(187 247 208 / var(--tw-bg-opacity));
|
|
3263
3263
|
}
|
|
3264
|
+
:is(.dark .dark\:bg-primary) {
|
|
3265
|
+
background-color: hsl(var(--primary));
|
|
3266
|
+
}
|
|
3264
3267
|
:is(.dark .dark\:bg-red-200) {
|
|
3265
3268
|
--tw-bg-opacity: 1;
|
|
3266
3269
|
background-color: rgb(254 202 202 / var(--tw-bg-opacity));
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
export declare const SignInForm: FC<SignInFormTypes>;
|
|
3
3
|
type SignInFormTypes = {
|
|
4
|
+
handleLanguage?: () => void;
|
|
5
|
+
currentLanguage?: any;
|
|
6
|
+
handleColorMode?: () => void;
|
|
7
|
+
currentColorMode?: any;
|
|
4
8
|
direction?: "rtl" | "ltr";
|
|
5
9
|
showError?: any;
|
|
6
10
|
errorTitle?: string;
|
package/es/elements/index.d.ts
CHANGED