@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.
package/dist/styles.css CHANGED
@@ -693,10 +693,6 @@ video {
693
693
  margin-top: 1rem;
694
694
  margin-bottom: 1rem;
695
695
  }
696
- .my-7 {
697
- margin-top: 1.75rem;
698
- margin-bottom: 1.75rem;
699
- }
700
696
  .-mb-px {
701
697
  margin-bottom: -1px;
702
698
  }
@@ -808,9 +804,6 @@ video {
808
804
  .grid {
809
805
  display: grid;
810
806
  }
811
- .contents {
812
- display: contents;
813
- }
814
807
  .hidden {
815
808
  display: none;
816
809
  }
@@ -983,6 +976,10 @@ video {
983
976
  .min-w-\[24px\] {
984
977
  min-width: 24px;
985
978
  }
979
+ .min-w-fit {
980
+ min-width: -moz-fit-content;
981
+ min-width: fit-content;
982
+ }
986
983
  .min-w-full {
987
984
  min-width: 100%;
988
985
  }
@@ -1427,10 +1424,6 @@ video {
1427
1424
  --tw-border-opacity: 1;
1428
1425
  border-top-color: rgb(255 255 255 / var(--tw-border-opacity));
1429
1426
  }
1430
- .bg-\[\#c92424\] {
1431
- --tw-bg-opacity: 1;
1432
- background-color: rgb(201 36 36 / var(--tw-bg-opacity));
1433
- }
1434
1427
  .bg-blue-100 {
1435
1428
  --tw-bg-opacity: 1;
1436
1429
  background-color: rgb(219 234 254 / var(--tw-bg-opacity));
@@ -1485,6 +1478,10 @@ video {
1485
1478
  --tw-bg-opacity: 1;
1486
1479
  background-color: rgb(220 252 231 / var(--tw-bg-opacity));
1487
1480
  }
1481
+ .bg-green-400 {
1482
+ --tw-bg-opacity: 1;
1483
+ background-color: rgb(74 222 128 / var(--tw-bg-opacity));
1484
+ }
1488
1485
  .bg-green-500 {
1489
1486
  --tw-bg-opacity: 1;
1490
1487
  background-color: rgb(34 197 94 / var(--tw-bg-opacity));
@@ -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";