@sikka/hawa 0.1.26 → 0.1.28

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
@@ -1235,6 +1235,9 @@ video {
1235
1235
  .w-\[190px\] {
1236
1236
  width: 190px;
1237
1237
  }
1238
+ .w-\[1px\] {
1239
+ width: 1px;
1240
+ }
1238
1241
  .w-\[25px\] {
1239
1242
  width: 25px;
1240
1243
  }
@@ -1548,9 +1551,6 @@ video {
1548
1551
  .gap-8 {
1549
1552
  gap: 2rem;
1550
1553
  }
1551
- .gap-9 {
1552
- gap: 2.25rem;
1553
- }
1554
1554
  .gap-\[2px\] {
1555
1555
  gap: 2px;
1556
1556
  }
@@ -1859,6 +1859,9 @@ video {
1859
1859
  .border-b-primary {
1860
1860
  border-bottom-color: hsl(var(--primary));
1861
1861
  }
1862
+ .border-opacity-25 {
1863
+ --tw-border-opacity: 0.25;
1864
+ }
1862
1865
  .bg-background {
1863
1866
  background-color: hsl(var(--background));
1864
1867
  }
@@ -1890,6 +1893,9 @@ video {
1890
1893
  --tw-bg-opacity: 1;
1891
1894
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
1892
1895
  }
1896
+ .bg-border {
1897
+ background-color: hsl(var(--border));
1898
+ }
1893
1899
  .bg-buttonPrimary-500 {
1894
1900
  background-color: hsl(var(--button-primary-500));
1895
1901
  }
@@ -2111,6 +2117,10 @@ video {
2111
2117
  .p-\[5px\] {
2112
2118
  padding: 5px;
2113
2119
  }
2120
+ .px-0 {
2121
+ padding-left: 0px;
2122
+ padding-right: 0px;
2123
+ }
2114
2124
  .px-1 {
2115
2125
  padding-left: 0.25rem;
2116
2126
  padding-right: 0.25rem;
@@ -3149,6 +3159,9 @@ body {
3149
3159
  .disabled\:pointer-events-none:disabled {
3150
3160
  pointer-events: none;
3151
3161
  }
3162
+ .disabled\:cursor-default:disabled {
3163
+ cursor: default;
3164
+ }
3152
3165
  .disabled\:cursor-not-allowed:disabled {
3153
3166
  cursor: not-allowed;
3154
3167
  }
@@ -3156,6 +3169,9 @@ body {
3156
3169
  --tw-bg-opacity: 1;
3157
3170
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
3158
3171
  }
3172
+ .disabled\:opacity-100:disabled {
3173
+ opacity: 1;
3174
+ }
3159
3175
  .disabled\:opacity-50:disabled {
3160
3176
  opacity: 0.5;
3161
3177
  }
@@ -1,5 +1,6 @@
1
1
  import * as React from "react";
2
2
  export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ preview?: boolean;
3
4
  }
4
5
  declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
5
6
  export { Input };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import * as SeparatorPrimitive from "@radix-ui/react-separator";
3
+ declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
4
+ export { Separator };
@@ -1,6 +1,8 @@
1
1
  import * as React from "react";
2
2
  import * as TabsPrimitive from "@radix-ui/react-tabs";
3
- declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
3
+ declare const Tabs: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
4
+ orientation?: "vertical" | "horizontal";
5
+ } & React.RefAttributes<HTMLDivElement>>;
4
6
  declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
5
7
  declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
6
8
  declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -1,5 +1,6 @@
1
1
  import * as React from "react";
2
2
  export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
3
+ label?: string;
3
4
  }
4
5
  declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
5
6
  export { Textarea };
@@ -60,3 +60,5 @@ export * from "./InterfaceSettings";
60
60
  export * from "./DropdownMenu";
61
61
  export * from "./Popover";
62
62
  export * from "./Tabs";
63
+ export * from "./Textarea";
64
+ export * from "./Separator";