@sikka/hawa 0.0.226 → 0.0.228
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 +10 -1
- package/es/blocks/Pricing/PricingPlans.d.ts +8 -0
- package/es/elements/UserFeedback.d.ts +13 -0
- package/es/elements/index.d.ts +1 -1
- package/es/index.es.js +1 -1
- package/lib/blocks/Pricing/PricingPlans.d.ts +8 -0
- package/lib/elements/UserFeedback.d.ts +13 -0
- package/lib/elements/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/blocks/Pricing/PricingPlans.tsx +15 -18
- package/src/elements/InvoiceAccordion.tsx +4 -1
- package/src/elements/UserFeedback.tsx +59 -0
- package/src/elements/index.ts +1 -1
- package/src/styles.css +10 -1
- /package/es/{elements → blocks/Account}/HawaApiBox.d.ts +0 -0
- /package/lib/{elements → blocks/Account}/HawaApiBox.d.ts +0 -0
- /package/src/{elements → blocks/Account}/HawaApiBox.tsx +0 -0
package/dist/styles.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
! tailwindcss v3.3.
|
|
2
|
+
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
|
|
3
3
|
*//*
|
|
4
4
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
5
5
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
@@ -411,6 +411,9 @@ video {
|
|
|
411
411
|
--tw-pan-y: ;
|
|
412
412
|
--tw-pinch-zoom: ;
|
|
413
413
|
--tw-scroll-snap-strictness: proximity;
|
|
414
|
+
--tw-gradient-from-position: ;
|
|
415
|
+
--tw-gradient-via-position: ;
|
|
416
|
+
--tw-gradient-to-position: ;
|
|
414
417
|
--tw-ordinal: ;
|
|
415
418
|
--tw-slashed-zero: ;
|
|
416
419
|
--tw-numeric-figure: ;
|
|
@@ -458,6 +461,9 @@ video {
|
|
|
458
461
|
--tw-pan-y: ;
|
|
459
462
|
--tw-pinch-zoom: ;
|
|
460
463
|
--tw-scroll-snap-strictness: proximity;
|
|
464
|
+
--tw-gradient-from-position: ;
|
|
465
|
+
--tw-gradient-via-position: ;
|
|
466
|
+
--tw-gradient-to-position: ;
|
|
461
467
|
--tw-ordinal: ;
|
|
462
468
|
--tw-slashed-zero: ;
|
|
463
469
|
--tw-numeric-figure: ;
|
|
@@ -789,6 +795,9 @@ video {
|
|
|
789
795
|
.mt-6 {
|
|
790
796
|
margin-top: 1.5rem;
|
|
791
797
|
}
|
|
798
|
+
.mt-8 {
|
|
799
|
+
margin-top: 2rem;
|
|
800
|
+
}
|
|
792
801
|
.block {
|
|
793
802
|
display: block;
|
|
794
803
|
}
|
|
@@ -31,6 +31,14 @@ type PricingPlansTypes = {
|
|
|
31
31
|
}
|
|
32
32
|
];
|
|
33
33
|
onPlanClicked?: (e: any) => void;
|
|
34
|
+
currentCycle: {
|
|
35
|
+
label: string;
|
|
36
|
+
value: string;
|
|
37
|
+
};
|
|
38
|
+
currentCurrency: {
|
|
39
|
+
label: string;
|
|
40
|
+
value: string;
|
|
41
|
+
};
|
|
34
42
|
onCycleChange?: (e: any) => void;
|
|
35
43
|
onCurrencyChange?: (e: any) => void;
|
|
36
44
|
direction?: "rtl" | "ltr";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type ComponentTypes = {
|
|
3
|
+
title?: string;
|
|
4
|
+
question: string;
|
|
5
|
+
options?: [];
|
|
6
|
+
texts?: {
|
|
7
|
+
least: string;
|
|
8
|
+
most: string;
|
|
9
|
+
};
|
|
10
|
+
onOptionClicked?: (option: any) => void;
|
|
11
|
+
};
|
|
12
|
+
export declare const UserFeedback: React.FunctionComponent<ComponentTypes>;
|
|
13
|
+
export {};
|
package/es/elements/index.d.ts
CHANGED
|
@@ -29,8 +29,8 @@ export * from "./HawaDrawer";
|
|
|
29
29
|
export * from "./SubsectionList";
|
|
30
30
|
export * from "./UsageCard";
|
|
31
31
|
export * from "./InvoiceAccordion";
|
|
32
|
-
export * from "./HawaApiBox";
|
|
33
32
|
export * from "./HawaDatepicker";
|
|
33
|
+
export * from "./UserFeedback";
|
|
34
34
|
export * from "./HawaTextField";
|
|
35
35
|
export * from "./HawaCardInput";
|
|
36
36
|
export * from "./HawaPinInput";
|