@sikka/hawa 0.0.208 → 0.0.209

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 CHANGED
@@ -1539,6 +1539,9 @@ video {
1539
1539
  .p-0 {
1540
1540
  padding: 0px;
1541
1541
  }
1542
+ .p-0\.5 {
1543
+ padding: 0.125rem;
1544
+ }
1542
1545
  .p-1 {
1543
1546
  padding: 0.25rem;
1544
1547
  }
@@ -18,7 +18,21 @@ type PricingPlansTypes = {
18
18
  size: "small" | "medium" | "large";
19
19
  }
20
20
  ];
21
- lang: any;
21
+ currencies: [
22
+ {
23
+ label: string;
24
+ value: string;
25
+ }
26
+ ];
27
+ billingCycles: [
28
+ {
29
+ label: string;
30
+ value: string;
31
+ }
32
+ ];
33
+ onCycleChange?: (e: any) => void;
34
+ onCurrencyChange?: (e: any) => void;
35
+ direction?: "rtl" | "ltr";
22
36
  };
23
37
  export declare const PricingPlans: React.FunctionComponent<PricingPlansTypes>;
24
38
  export {};
@@ -13,6 +13,7 @@ type PricingCardTypes = {
13
13
  cycleText: string;
14
14
  currencyText: string;
15
15
  };
16
+ currentPlan?: boolean;
16
17
  size: "small" | "medium" | "large";
17
18
  };
18
19
  export declare const HawaPricingCard: React.FunctionComponent<PricingCardTypes>;