@sikka/hawa 0.1.27 → 0.1.29

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
@@ -887,6 +887,9 @@ video {
887
887
  .mb-5 {
888
888
  margin-bottom: 1.25rem;
889
889
  }
890
+ .mb-6 {
891
+ margin-bottom: 1.5rem;
892
+ }
890
893
  .ml-0 {
891
894
  margin-left: 0px;
892
895
  }
@@ -959,6 +962,9 @@ video {
959
962
  .mt-1\.5 {
960
963
  margin-top: 0.375rem;
961
964
  }
965
+ .mt-10 {
966
+ margin-top: 2.5rem;
967
+ }
962
968
  .mt-14 {
963
969
  margin-top: 3.5rem;
964
970
  }
@@ -1235,6 +1241,9 @@ video {
1235
1241
  .w-\[190px\] {
1236
1242
  width: 190px;
1237
1243
  }
1244
+ .w-\[1px\] {
1245
+ width: 1px;
1246
+ }
1238
1247
  .w-\[25px\] {
1239
1248
  width: 25px;
1240
1249
  }
@@ -1548,9 +1557,6 @@ video {
1548
1557
  .gap-8 {
1549
1558
  gap: 2rem;
1550
1559
  }
1551
- .gap-9 {
1552
- gap: 2.25rem;
1553
- }
1554
1560
  .gap-\[2px\] {
1555
1561
  gap: 2px;
1556
1562
  }
@@ -1859,6 +1865,9 @@ video {
1859
1865
  .border-b-primary {
1860
1866
  border-bottom-color: hsl(var(--primary));
1861
1867
  }
1868
+ .border-opacity-25 {
1869
+ --tw-border-opacity: 0.25;
1870
+ }
1862
1871
  .bg-background {
1863
1872
  background-color: hsl(var(--background));
1864
1873
  }
@@ -1890,6 +1899,9 @@ video {
1890
1899
  --tw-bg-opacity: 1;
1891
1900
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
1892
1901
  }
1902
+ .bg-border {
1903
+ background-color: hsl(var(--border));
1904
+ }
1893
1905
  .bg-buttonPrimary-500 {
1894
1906
  background-color: hsl(var(--button-primary-500));
1895
1907
  }
@@ -2111,6 +2123,10 @@ video {
2111
2123
  .p-\[5px\] {
2112
2124
  padding: 5px;
2113
2125
  }
2126
+ .px-0 {
2127
+ padding-left: 0px;
2128
+ padding-right: 0px;
2129
+ }
2114
2130
  .px-1 {
2115
2131
  padding-left: 0.25rem;
2116
2132
  padding-right: 0.25rem;
@@ -3149,6 +3165,9 @@ body {
3149
3165
  .disabled\:pointer-events-none:disabled {
3150
3166
  pointer-events: none;
3151
3167
  }
3168
+ .disabled\:cursor-default:disabled {
3169
+ cursor: default;
3170
+ }
3152
3171
  .disabled\:cursor-not-allowed:disabled {
3153
3172
  cursor: not-allowed;
3154
3173
  }
@@ -3156,6 +3175,9 @@ body {
3156
3175
  --tw-bg-opacity: 1;
3157
3176
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
3158
3177
  }
3178
+ .disabled\:opacity-100:disabled {
3179
+ opacity: 1;
3180
+ }
3159
3181
  .disabled\:opacity-50:disabled {
3160
3182
  opacity: 0.5;
3161
3183
  }
@@ -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,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";