@sikka/hawa 0.1.11 → 0.1.13

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
@@ -1171,6 +1171,9 @@ video {
1171
1171
  .w-3 {
1172
1172
  width: 0.75rem;
1173
1173
  }
1174
+ .w-3\/4 {
1175
+ width: 75%;
1176
+ }
1174
1177
  .w-32 {
1175
1178
  width: 8rem;
1176
1179
  }
@@ -1942,6 +1945,9 @@ video {
1942
1945
  .bg-primary\/20 {
1943
1946
  background-color: hsl(var(--primary) / 0.2);
1944
1947
  }
1948
+ .bg-primary\/5 {
1949
+ background-color: hsl(var(--primary) / 0.05);
1950
+ }
1945
1951
  .bg-red-100 {
1946
1952
  --tw-bg-opacity: 1;
1947
1953
  background-color: rgb(254 226 226 / var(--tw-bg-opacity));
@@ -2649,6 +2655,53 @@ video {
2649
2655
  scrollbar-width: none; /* Firefox */
2650
2656
  }
2651
2657
  @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;700&display=swap");
2658
+ /*
2659
+ @layer base {
2660
+ :root {
2661
+ --background: 0 0% 100%;
2662
+ --foreground: 240 10% 3.9%;
2663
+ --card: 0 0% 100%;
2664
+ --card-foreground: 240 10% 3.9%;
2665
+ --popover: 0 0% 100%;
2666
+ --popover-foreground: 240 10% 3.9%;
2667
+ --primary: 346.8 77.2% 49.8%;
2668
+ --primary-foreground: 355.7 100% 97.3%;
2669
+ --secondary: 240 4.8% 95.9%;
2670
+ --secondary-foreground: 240 5.9% 10%;
2671
+ --muted: 240 4.8% 95.9%;
2672
+ --muted-foreground: 240 3.8% 46.1%;
2673
+ --accent: 240 4.8% 95.9%;
2674
+ --accent-foreground: 240 5.9% 10%;
2675
+ --destructive: 0 84.2% 60.2%;
2676
+ --destructive-foreground: 0 0% 98%;
2677
+ --border: 240 5.9% 90%;
2678
+ --input: 240 5.9% 90%;
2679
+ --ring: 346.8 77.2% 49.8%;
2680
+ --radius: 1rem;
2681
+ }
2682
+
2683
+ .dark {
2684
+ --background: 20 14.3% 4.1%;
2685
+ --foreground: 0 0% 95%;
2686
+ --card: 24 9.8% 10%;
2687
+ --card-foreground: 0 0% 95%;
2688
+ --popover: 0 0% 9%;
2689
+ --popover-foreground: 0 0% 95%;
2690
+ --primary: 346.8 77.2% 49.8%;
2691
+ --primary-foreground: 355.7 100% 97.3%;
2692
+ --secondary: 240 3.7% 15.9%;
2693
+ --secondary-foreground: 0 0% 98%;
2694
+ --muted: 0 0% 15%;
2695
+ --muted-foreground: 240 5% 64.9%;
2696
+ --accent: 12 6.5% 15.1%;
2697
+ --accent-foreground: 0 0% 98%;
2698
+ --destructive: 0 62.8% 30.6%;
2699
+ --destructive-foreground: 0 85.7% 97.3%;
2700
+ --border: 240 3.7% 15.9%;
2701
+ --input: 240 3.7% 15.9%;
2702
+ --ring: 346.8 77.2% 49.8%;
2703
+ }
2704
+ } */
2652
2705
  body {
2653
2706
  font-family: "IBM Plex Sans Arabic", sans-serif;
2654
2707
  }
@@ -2851,6 +2904,9 @@ body {
2851
2904
  .hover\:bg-primary-foreground:hover {
2852
2905
  background-color: hsl(var(--primary-foreground));
2853
2906
  }
2907
+ .hover\:bg-primary\/10:hover {
2908
+ background-color: hsl(var(--primary) / 0.1);
2909
+ }
2854
2910
  .hover\:bg-primary\/90:hover {
2855
2911
  background-color: hsl(var(--primary) / 0.9);
2856
2912
  }
@@ -3280,6 +3336,9 @@ body {
3280
3336
  :is(.dark .dark\:bg-primary) {
3281
3337
  background-color: hsl(var(--primary));
3282
3338
  }
3339
+ :is(.dark .dark\:bg-primary\/5) {
3340
+ background-color: hsl(var(--primary) / 0.05);
3341
+ }
3283
3342
  :is(.dark .dark\:bg-red-200) {
3284
3343
  --tw-bg-opacity: 1;
3285
3344
  background-color: rgb(254 202 202 / var(--tw-bg-opacity));
@@ -3388,6 +3447,9 @@ body {
3388
3447
  :is(.dark .dark\:hover\:bg-layoutPrimary-700:hover) {
3389
3448
  background-color: var(--layout-primary-700);
3390
3449
  }
3450
+ :is(.dark .dark\:hover\:bg-primary\/10:hover) {
3451
+ background-color: hsl(var(--primary) / 0.1);
3452
+ }
3391
3453
  :is(.dark .dark\:hover\:text-blue-500:hover) {
3392
3454
  --tw-text-opacity: 1;
3393
3455
  color: rgb(59 130 246 / var(--tw-text-opacity));
@@ -1,8 +1,8 @@
1
1
  import { FC } from "react";
2
2
  type TypographyTypes = {
3
- handleLanguage: () => void;
3
+ handleLanguage: (e: any) => void;
4
4
  currentLanguage: any;
5
- handleColorMode: () => void;
5
+ handleColorMode: (e: any) => void;
6
6
  currentColorMode: any;
7
7
  };
8
8
  export declare const InterfaceSettings: FC<TypographyTypes>;
@@ -55,4 +55,5 @@ export * from "./Label";
55
55
  export * from "./Input";
56
56
  export * from "./Tooltip";
57
57
  export * from "./Card";
58
+ export * from "./Skeleton";
58
59
  export * from "./InterfaceSettings";