@sikka/hawa 0.0.206 → 0.0.207

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.
@@ -1,7 +1,6 @@
1
1
  import React from "react";
2
2
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
3
3
  variant?: "contained" | "outlined";
4
- buttonID?: any;
5
4
  tooltipDirection?: "rtl" | "ltr";
6
5
  color?: "default" | "primary" | "secondary";
7
6
  width?: "full" | "normal" | "half";
@@ -5,6 +5,7 @@ type CopyRightsTypes = {
5
5
  version?: string;
6
6
  credits?: string;
7
7
  logoURL?: string;
8
+ onLogoClicked?: any;
8
9
  };
9
10
  export declare const HawaCopyrights: React.FunctionComponent<CopyRightsTypes>;
10
11
  export {};
@@ -8,6 +8,7 @@ type PricingCardTypes = {
8
8
  title: string;
9
9
  price: number;
10
10
  texts: {
11
+ subtitle: string;
11
12
  buttonText: string;
12
13
  cycleText: string;
13
14
  currencyText: string;
@@ -3,11 +3,11 @@ type TabsTypes = {
3
3
  options?: any;
4
4
  onChangeTab?: any;
5
5
  defaultValue?: any;
6
- contents?: any;
7
6
  orientation?: "horizontal" | "vertical";
8
7
  direction?: "rtl" | "ltr";
9
8
  marginBetween?: any;
10
9
  width?: "full" | "normal";
10
+ pill?: boolean;
11
11
  };
12
12
  export declare const HawaTabs: React.FunctionComponent<TabsTypes>;
13
13
  export {};
@@ -4,7 +4,6 @@ type THawaToolTip = {
4
4
  content?: string;
5
5
  btnHovered?: any;
6
6
  buttonRef?: any;
7
- buttonID?: any;
8
7
  direction?: "rtl" | "ltr";
9
8
  size?: "normal" | "small" | "large";
10
9
  position?: "left-top" | "left-bottom" | "right-top" | "right-bottom" | "top-right" | "top-left" | "bottom-right" | "bottom-left";