@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 +19 -3
- package/es/elements/Input.d.ts +1 -0
- package/es/elements/Separator.d.ts +4 -0
- package/es/elements/Tabs.d.ts +3 -1
- package/es/elements/Textarea.d.ts +1 -0
- package/es/elements/index.d.ts +2 -0
- package/es/index.es.js +3 -3
- package/lib/elements/Input.d.ts +1 -0
- package/lib/elements/Separator.d.ts +4 -0
- package/lib/elements/Tabs.d.ts +3 -1
- package/lib/elements/Textarea.d.ts +1 -0
- package/lib/elements/index.d.ts +2 -0
- package/lib/index.js +3 -3
- package/package.json +2 -1
- package/src/blocks/Pricing/ComparingPlans.tsx +8 -14
- package/src/blocks/Pricing/PricingPlans.tsx +5 -5
- package/src/elements/HawaTabs.tsx +31 -33
- package/src/elements/HawaTextField.tsx +26 -84
- package/src/elements/Input.tsx +8 -3
- package/src/elements/Separator.tsx +29 -0
- package/src/elements/Tabs.tsx +64 -20
- package/src/elements/Textarea.tsx +16 -10
- package/src/elements/index.ts +2 -0
- package/src/styles.css +19 -3
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
|
}
|
package/es/elements/Input.d.ts
CHANGED
|
@@ -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 };
|
package/es/elements/Tabs.d.ts
CHANGED
|
@@ -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 };
|