@sikka/hawa 0.18.21-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 +6 -0
- package/dist/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +395 -395
- package/dist/index.mjs +375 -375
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -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
|
}
|
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
|
|
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
|
|