@sikka/hawa 0.19.15-next → 0.19.18-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 +7 -0
- package/dist/index.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +417 -339
- package/dist/index.mjs +588 -510
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -980,6 +980,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
980
980
|
top: 0px;
|
|
981
981
|
bottom: 0px;
|
|
982
982
|
}
|
|
983
|
+
.-hawa-left-\[1px\] {
|
|
984
|
+
left: -1px;
|
|
985
|
+
}
|
|
983
986
|
.hawa--left-1 {
|
|
984
987
|
left: -0.25rem;
|
|
985
988
|
}
|
|
@@ -1727,6 +1730,10 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
1727
1730
|
--tw-translate-y: -0.5rem;
|
|
1728
1731
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1729
1732
|
}
|
|
1733
|
+
.-hawa-translate-y-full {
|
|
1734
|
+
--tw-translate-y: -100%;
|
|
1735
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1736
|
+
}
|
|
1730
1737
|
.hawa--translate-x-0 {
|
|
1731
1738
|
--tw-translate-x: -0px;
|
|
1732
1739
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
package/dist/index.d.mts
CHANGED
|
@@ -61,11 +61,14 @@ type PricingCardProps = {
|
|
|
61
61
|
hint?: string;
|
|
62
62
|
hintSide?: any;
|
|
63
63
|
}[];
|
|
64
|
+
endButton?: boolean;
|
|
64
65
|
price: number;
|
|
66
|
+
oldPrice: number;
|
|
65
67
|
id?: string;
|
|
66
68
|
discount?: string;
|
|
67
69
|
onPlanClicked?: () => void;
|
|
68
70
|
currentPlan?: boolean;
|
|
71
|
+
recommended?: boolean;
|
|
69
72
|
size?: "small" | "medium" | "large";
|
|
70
73
|
isLoading?: boolean;
|
|
71
74
|
texts: {
|
|
@@ -74,6 +77,7 @@ type PricingCardProps = {
|
|
|
74
77
|
buttonText: string;
|
|
75
78
|
cycleText: string;
|
|
76
79
|
currencyText: string;
|
|
80
|
+
recommended?: string;
|
|
77
81
|
};
|
|
78
82
|
};
|
|
79
83
|
declare const PricingCard: FC<PricingCardProps>;
|
|
@@ -243,10 +247,15 @@ type CheckBoxTypes = {
|
|
|
243
247
|
label?: any;
|
|
244
248
|
sublabel?: any;
|
|
245
249
|
helperText?: string;
|
|
250
|
+
size?: "xs" | "sm" | "default" | "md" | "lg" | "xl";
|
|
251
|
+
radius?: RadiusType;
|
|
246
252
|
};
|
|
247
253
|
type CheckboxProps = CheckBoxTypes & React$1.ComponentProps<typeof CheckboxElement>;
|
|
248
254
|
declare const Checkbox: React$1.FC<CheckboxProps>;
|
|
249
|
-
declare const CheckboxElement: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> &
|
|
255
|
+
declare const CheckboxElement: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
256
|
+
size?: "xs" | "sm" | "lg" | "xl" | "default" | "md" | undefined;
|
|
257
|
+
radius?: RadiusType | undefined;
|
|
258
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
250
259
|
|
|
251
260
|
type RadioOptionsTypes = {
|
|
252
261
|
value: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -61,11 +61,14 @@ type PricingCardProps = {
|
|
|
61
61
|
hint?: string;
|
|
62
62
|
hintSide?: any;
|
|
63
63
|
}[];
|
|
64
|
+
endButton?: boolean;
|
|
64
65
|
price: number;
|
|
66
|
+
oldPrice: number;
|
|
65
67
|
id?: string;
|
|
66
68
|
discount?: string;
|
|
67
69
|
onPlanClicked?: () => void;
|
|
68
70
|
currentPlan?: boolean;
|
|
71
|
+
recommended?: boolean;
|
|
69
72
|
size?: "small" | "medium" | "large";
|
|
70
73
|
isLoading?: boolean;
|
|
71
74
|
texts: {
|
|
@@ -74,6 +77,7 @@ type PricingCardProps = {
|
|
|
74
77
|
buttonText: string;
|
|
75
78
|
cycleText: string;
|
|
76
79
|
currencyText: string;
|
|
80
|
+
recommended?: string;
|
|
77
81
|
};
|
|
78
82
|
};
|
|
79
83
|
declare const PricingCard: FC<PricingCardProps>;
|
|
@@ -243,10 +247,15 @@ type CheckBoxTypes = {
|
|
|
243
247
|
label?: any;
|
|
244
248
|
sublabel?: any;
|
|
245
249
|
helperText?: string;
|
|
250
|
+
size?: "xs" | "sm" | "default" | "md" | "lg" | "xl";
|
|
251
|
+
radius?: RadiusType;
|
|
246
252
|
};
|
|
247
253
|
type CheckboxProps = CheckBoxTypes & React$1.ComponentProps<typeof CheckboxElement>;
|
|
248
254
|
declare const Checkbox: React$1.FC<CheckboxProps>;
|
|
249
|
-
declare const CheckboxElement: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> &
|
|
255
|
+
declare const CheckboxElement: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
256
|
+
size?: "xs" | "sm" | "lg" | "xl" | "default" | "md" | undefined;
|
|
257
|
+
radius?: RadiusType | undefined;
|
|
258
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
250
259
|
|
|
251
260
|
type RadioOptionsTypes = {
|
|
252
261
|
value: any;
|