@sikka/hawa 0.13.10-next → 0.13.12-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/index.css CHANGED
@@ -804,12 +804,12 @@ input[type="number"]::-webkit-inner-spin-button,
804
804
  .hawa-top-\[60\%\] {
805
805
  top: 60%;
806
806
  }
807
+ .hawa-top-\[60px\] {
808
+ top: 60px;
809
+ }
807
810
  .hawa-top-\[72px\] {
808
811
  top: 72px;
809
812
  }
810
- .hawa-top-\[88px\] {
811
- top: 88px;
812
- }
813
813
  .hawa-top-full {
814
814
  top: 100%;
815
815
  }
@@ -2754,6 +2754,18 @@ body {
2754
2754
  box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1),
2755
2755
  0 4px 6px -2px rgba(255, 255, 255, 0.05);
2756
2756
  }
2757
+ .selection\:hawa-p-0 *::-moz-selection {
2758
+ padding: 0px;
2759
+ }
2760
+ .selection\:hawa-p-0 *::selection {
2761
+ padding: 0px;
2762
+ }
2763
+ .selection\:hawa-p-0::-moz-selection {
2764
+ padding: 0px;
2765
+ }
2766
+ .selection\:hawa-p-0::selection {
2767
+ padding: 0px;
2768
+ }
2757
2769
  .placeholder\:hawa-text-muted-foreground::-moz-placeholder {
2758
2770
  color: hsl(var(--muted-foreground));
2759
2771
  }
@@ -2857,10 +2869,6 @@ body {
2857
2869
  --tw-bg-opacity: 1;
2858
2870
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
2859
2871
  }
2860
- .hover\:hawa-bg-gray-950:hover {
2861
- --tw-bg-opacity: 1;
2862
- background-color: rgb(3 7 18 / var(--tw-bg-opacity));
2863
- }
2864
2872
  .hover\:hawa-bg-green-300:hover {
2865
2873
  --tw-bg-opacity: 1;
2866
2874
  background-color: rgb(134 239 172 / var(--tw-bg-opacity));
@@ -2903,6 +2911,10 @@ body {
2903
2911
  .hover\:hawa-text-accent-foreground:hover {
2904
2912
  color: hsl(var(--accent-foreground));
2905
2913
  }
2914
+ .hover\:hawa-text-black:hover {
2915
+ --tw-text-opacity: 1;
2916
+ color: rgb(0 0 0 / var(--tw-text-opacity));
2917
+ }
2906
2918
  .hover\:hawa-text-foreground:hover {
2907
2919
  color: hsl(var(--foreground));
2908
2920
  }
@@ -3255,6 +3267,9 @@ body {
3255
3267
  .data-\[disabled\]\:hawa-opacity-50[data-disabled] {
3256
3268
  opacity: 0.5;
3257
3269
  }
3270
+ .data-\[state\=closed\]\:hawa-opacity-0[data-state=closed] {
3271
+ opacity: 0;
3272
+ }
3258
3273
  .data-\[state\=active\]\:hawa-shadow-sm[data-state=active] {
3259
3274
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
3260
3275
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
@@ -3755,6 +3770,14 @@ body {
3755
3770
  position: absolute;
3756
3771
  }
3757
3772
 
3773
+ .md\:hawa-flex {
3774
+ display: flex;
3775
+ }
3776
+
3777
+ .md\:hawa-hidden {
3778
+ display: none;
3779
+ }
3780
+
3758
3781
  .md\:hawa-w-\[var\(--radix-navigation-menu-viewport-width\)\] {
3759
3782
  width: var(--radix-navigation-menu-viewport-width);
3760
3783
  }
package/dist/index.d.mts CHANGED
@@ -911,6 +911,8 @@ type NavbarType = {
911
911
  logo?: any;
912
912
  buttons?: any;
913
913
  menuItems?: NavigationMenuItem[];
914
+ handleLogoClick?: () => void;
915
+ backgroundColor?: string;
914
916
  };
915
917
  declare const Navbar: React__default.FC<NavbarType>;
916
918
 
package/dist/index.d.ts CHANGED
@@ -911,6 +911,8 @@ type NavbarType = {
911
911
  logo?: any;
912
912
  buttons?: any;
913
913
  menuItems?: NavigationMenuItem[];
914
+ handleLogoClick?: () => void;
915
+ backgroundColor?: string;
914
916
  };
915
917
  declare const Navbar: React__default.FC<NavbarType>;
916
918