@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 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;
@@ -0,0 +1,9 @@
1
+ import { FC } from "react";
2
+ type TypographyTypes = {
3
+ handleLanguage: () => void;
4
+ currentLanguage: any;
5
+ handleColorMode: () => void;
6
+ currentColorMode: any;
7
+ };
8
+ export declare const InterfaceSettings: FC<TypographyTypes>;
9
+ export {};
@@ -55,3 +55,4 @@ export * from "./Label";
55
55
  export * from "./Input";
56
56
  export * from "./Tooltip";
57
57
  export * from "./Card";
58
+ export * from "./InterfaceSettings";