@sikka/hawa 0.1.3 → 0.1.4

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
@@ -405,7 +405,7 @@ video {
405
405
  --border: 240 5.9% 90%;
406
406
  --input: 240 5.9% 90%;
407
407
  --ring: 240 5% 64.9%;
408
- --radius: 0rem;
408
+ --radius: 0.5rem;
409
409
  --radius-inner: calc(var(--radius) - calc(var(--radius) / 3));
410
410
 
411
411
  --layout-primary-700: #b7aff7;
@@ -1908,6 +1908,9 @@ video {
1908
1908
  --tw-bg-opacity: 1;
1909
1909
  background-color: rgb(251 146 60 / var(--tw-bg-opacity));
1910
1910
  }
1911
+ .bg-popover {
1912
+ background-color: hsl(var(--popover));
1913
+ }
1911
1914
  .bg-primary {
1912
1915
  background-color: hsl(var(--primary));
1913
1916
  }
@@ -2372,6 +2375,9 @@ video {
2372
2375
  --tw-text-opacity: 1;
2373
2376
  color: rgb(23 23 23 / var(--tw-text-opacity));
2374
2377
  }
2378
+ .text-popover-foreground {
2379
+ color: hsl(var(--popover-foreground));
2380
+ }
2375
2381
  .text-primary {
2376
2382
  color: hsl(var(--primary));
2377
2383
  }
@@ -2586,6 +2592,12 @@ video {
2586
2592
  .fade-in {
2587
2593
  --tw-enter-opacity: 0;
2588
2594
  }
2595
+ .fade-in-0 {
2596
+ --tw-enter-opacity: 0;
2597
+ }
2598
+ .zoom-in-95 {
2599
+ --tw-enter-scale: .95;
2600
+ }
2589
2601
  .duration-1000 {
2590
2602
  animation-duration: 1000ms;
2591
2603
  }
@@ -3077,6 +3089,33 @@ body {
3077
3089
  --tw-text-opacity: 1;
3078
3090
  color: hsl(250 43.0% 48.0% / var(--tw-text-opacity));
3079
3091
  }
3092
+ .data-\[state\=closed\]\:animate-out[data-state=closed] {
3093
+ animation-name: exit;
3094
+ animation-duration: 150ms;
3095
+ --tw-exit-opacity: initial;
3096
+ --tw-exit-scale: initial;
3097
+ --tw-exit-rotate: initial;
3098
+ --tw-exit-translate-x: initial;
3099
+ --tw-exit-translate-y: initial;
3100
+ }
3101
+ .data-\[state\=closed\]\:fade-out-0[data-state=closed] {
3102
+ --tw-exit-opacity: 0;
3103
+ }
3104
+ .data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
3105
+ --tw-exit-scale: .95;
3106
+ }
3107
+ .data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
3108
+ --tw-enter-translate-y: -0.5rem;
3109
+ }
3110
+ .data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
3111
+ --tw-enter-translate-x: 0.5rem;
3112
+ }
3113
+ .data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
3114
+ --tw-enter-translate-x: -0.5rem;
3115
+ }
3116
+ .data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
3117
+ --tw-enter-translate-y: 0.5rem;
3118
+ }
3080
3119
  .group[data-disabled] .group-data-\[disabled\]\:text-mauve-8 {
3081
3120
  --tw-text-opacity: 1;
3082
3121
  color: hsl(249 10.4% 75.5% / var(--tw-text-opacity));
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ type TooltipTypes = {
3
+ side?: "top" | "right" | "bottom" | "left";
4
+ children?: any;
5
+ content?: any;
6
+ open?: any;
7
+ defaultOpen?: any;
8
+ onOpenChange?: any;
9
+ delayDuration?: any;
10
+ };
11
+ export declare const Tooltip: React.FunctionComponent<TooltipTypes>;
12
+ export {};