@sikka/hawa 0.18.20-next → 0.18.22-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 +11 -2
- package/dist/index.d.mts +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.js +406 -398
- package/dist/index.mjs +386 -378
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -788,7 +788,7 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
788
788
|
}
|
|
789
789
|
.circle-car {
|
|
790
790
|
fill: none;
|
|
791
|
-
stroke: hsl(var(--primary));
|
|
791
|
+
/* stroke: hsl(var(--primary)); */
|
|
792
792
|
stroke-dasharray: 25, 75;
|
|
793
793
|
stroke-dashoffset: 0;
|
|
794
794
|
stroke-linecap: round;
|
|
@@ -796,7 +796,7 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
796
796
|
}
|
|
797
797
|
.circle-track {
|
|
798
798
|
fill: none;
|
|
799
|
-
stroke: hsl(var(--primary));
|
|
799
|
+
/* stroke: hsl(var(--primary)); */
|
|
800
800
|
opacity: 0.1;
|
|
801
801
|
transition: stroke 0.5s ease;
|
|
802
802
|
}
|
|
@@ -1412,6 +1412,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
1412
1412
|
.hawa-h-\[44px\] {
|
|
1413
1413
|
height: 44px;
|
|
1414
1414
|
}
|
|
1415
|
+
.hawa-h-\[48px\] {
|
|
1416
|
+
height: 48px;
|
|
1417
|
+
}
|
|
1415
1418
|
.hawa-h-\[72px\] {
|
|
1416
1419
|
height: 72px;
|
|
1417
1420
|
}
|
|
@@ -1465,6 +1468,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
1465
1468
|
.hawa-max-h-screen {
|
|
1466
1469
|
max-height: 100vh;
|
|
1467
1470
|
}
|
|
1471
|
+
.hawa-min-h-\[25px\] {
|
|
1472
|
+
min-height: 25px;
|
|
1473
|
+
}
|
|
1468
1474
|
.hawa-min-h-\[37\.75px\] {
|
|
1469
1475
|
min-height: 37.75px;
|
|
1470
1476
|
}
|
|
@@ -2499,6 +2505,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
2499
2505
|
.hawa-stroke-primary {
|
|
2500
2506
|
stroke: hsl(var(--primary));
|
|
2501
2507
|
}
|
|
2508
|
+
.hawa-stroke-primary-foreground {
|
|
2509
|
+
stroke: hsl(var(--primary-foreground));
|
|
2510
|
+
}
|
|
2502
2511
|
.hawa-stroke-primary\/20 {
|
|
2503
2512
|
stroke: hsl(var(--primary) / 0.2);
|
|
2504
2513
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -60,6 +60,10 @@ type PricingCardTypes = {
|
|
|
60
60
|
}[];
|
|
61
61
|
price: number;
|
|
62
62
|
discount?: string;
|
|
63
|
+
onPlanClicked?: () => void;
|
|
64
|
+
currentPlan?: boolean;
|
|
65
|
+
size: "small" | "medium" | "large";
|
|
66
|
+
isLoading?: boolean;
|
|
63
67
|
texts: {
|
|
64
68
|
title: string;
|
|
65
69
|
subtitle: string;
|
|
@@ -67,9 +71,6 @@ type PricingCardTypes = {
|
|
|
67
71
|
cycleText: string;
|
|
68
72
|
currencyText: string;
|
|
69
73
|
};
|
|
70
|
-
onPlanClicked?: () => void;
|
|
71
|
-
currentPlan?: boolean;
|
|
72
|
-
size: "small" | "medium" | "large";
|
|
73
74
|
};
|
|
74
75
|
declare const PricingCard: FC<PricingCardTypes>;
|
|
75
76
|
|
|
@@ -379,7 +380,7 @@ interface AvatarProps {
|
|
|
379
380
|
declare const Avatar: React__default.FC<AvatarProps>;
|
|
380
381
|
|
|
381
382
|
declare const buttonVariants: (props?: ({
|
|
382
|
-
variant?: "link" | "
|
|
383
|
+
variant?: "link" | "light" | "default" | "destructive" | "outline" | "secondary" | "ghost" | "combobox" | "neoBrutalism" | null | undefined;
|
|
383
384
|
size?: "xs" | "sm" | "lg" | "xl" | "default" | "heightless" | "icon" | "smallIcon" | null | undefined;
|
|
384
385
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
385
386
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -466,6 +467,7 @@ type LoadingTypes = {
|
|
|
466
467
|
/** Specifies the color of the loading component. By default it will inherit the value of <span className="inline-code">--primary</span> global CSS variable*/
|
|
467
468
|
color?: string;
|
|
468
469
|
className?: string;
|
|
470
|
+
themeMode?: "dark" | "light";
|
|
469
471
|
};
|
|
470
472
|
declare const Loading: FC<LoadingTypes>;
|
|
471
473
|
|
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,10 @@ type PricingCardTypes = {
|
|
|
60
60
|
}[];
|
|
61
61
|
price: number;
|
|
62
62
|
discount?: string;
|
|
63
|
+
onPlanClicked?: () => void;
|
|
64
|
+
currentPlan?: boolean;
|
|
65
|
+
size: "small" | "medium" | "large";
|
|
66
|
+
isLoading?: boolean;
|
|
63
67
|
texts: {
|
|
64
68
|
title: string;
|
|
65
69
|
subtitle: string;
|
|
@@ -67,9 +71,6 @@ type PricingCardTypes = {
|
|
|
67
71
|
cycleText: string;
|
|
68
72
|
currencyText: string;
|
|
69
73
|
};
|
|
70
|
-
onPlanClicked?: () => void;
|
|
71
|
-
currentPlan?: boolean;
|
|
72
|
-
size: "small" | "medium" | "large";
|
|
73
74
|
};
|
|
74
75
|
declare const PricingCard: FC<PricingCardTypes>;
|
|
75
76
|
|
|
@@ -379,7 +380,7 @@ interface AvatarProps {
|
|
|
379
380
|
declare const Avatar: React__default.FC<AvatarProps>;
|
|
380
381
|
|
|
381
382
|
declare const buttonVariants: (props?: ({
|
|
382
|
-
variant?: "link" | "
|
|
383
|
+
variant?: "link" | "light" | "default" | "destructive" | "outline" | "secondary" | "ghost" | "combobox" | "neoBrutalism" | null | undefined;
|
|
383
384
|
size?: "xs" | "sm" | "lg" | "xl" | "default" | "heightless" | "icon" | "smallIcon" | null | undefined;
|
|
384
385
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
385
386
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -466,6 +467,7 @@ type LoadingTypes = {
|
|
|
466
467
|
/** Specifies the color of the loading component. By default it will inherit the value of <span className="inline-code">--primary</span> global CSS variable*/
|
|
467
468
|
color?: string;
|
|
468
469
|
className?: string;
|
|
470
|
+
themeMode?: "dark" | "light";
|
|
469
471
|
};
|
|
470
472
|
declare const Loading: FC<LoadingTypes>;
|
|
471
473
|
|