@sikka/hawa 0.0.179 → 0.0.181

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
@@ -653,9 +653,6 @@ video {
653
653
  .left-2 {
654
654
  left: 0.5rem;
655
655
  }
656
- .bottom-2 {
657
- bottom: 0.5rem;
658
- }
659
656
  .right-32 {
660
657
  right: 8rem;
661
658
  }
@@ -704,10 +701,6 @@ video {
704
701
  margin-left: 0.25rem;
705
702
  margin-right: 0.25rem;
706
703
  }
707
- .my-1 {
708
- margin-top: 0.25rem;
709
- margin-bottom: 0.25rem;
710
- }
711
704
  .my-7 {
712
705
  margin-top: 1.75rem;
713
706
  margin-bottom: 1.75rem;
@@ -724,6 +717,10 @@ video {
724
717
  margin-top: 1rem;
725
718
  margin-bottom: 1rem;
726
719
  }
720
+ .my-1 {
721
+ margin-top: 0.25rem;
722
+ margin-bottom: 0.25rem;
723
+ }
727
724
  .ml-auto {
728
725
  margin-left: auto;
729
726
  }
@@ -787,8 +784,8 @@ video {
787
784
  .ml-40 {
788
785
  margin-left: 10rem;
789
786
  }
790
- .mt-12 {
791
- margin-top: 3rem;
787
+ .mt-14 {
788
+ margin-top: 3.5rem;
792
789
  }
793
790
  .mb-8 {
794
791
  margin-bottom: 2rem;
@@ -896,9 +893,6 @@ video {
896
893
  .h-\[calc\(100\%-3\.5rem\)\] {
897
894
  height: calc(100% - 3.5rem);
898
895
  }
899
- .h-12 {
900
- height: 3rem;
901
- }
902
896
  .h-9 {
903
897
  height: 2.25rem;
904
898
  }
@@ -1071,6 +1065,10 @@ video {
1071
1065
  --tw-rotate: 90deg;
1072
1066
  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));
1073
1067
  }
1068
+ .rotate-0 {
1069
+ --tw-rotate: 0deg;
1070
+ 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));
1071
+ }
1074
1072
  .transform {
1075
1073
  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));
1076
1074
  }
@@ -1271,9 +1269,13 @@ video {
1271
1269
  border-top-left-radius: 0px;
1272
1270
  border-bottom-left-radius: 0px;
1273
1271
  }
1274
- .rounded-r-lg {
1275
- border-top-right-radius: 0.5rem;
1276
- border-bottom-right-radius: 0.5rem;
1272
+ .rounded-r {
1273
+ border-top-right-radius: var(--border-radius);
1274
+ border-bottom-right-radius: var(--border-radius);
1275
+ }
1276
+ .rounded-l {
1277
+ border-top-left-radius: var(--border-radius);
1278
+ border-bottom-left-radius: var(--border-radius);
1277
1279
  }
1278
1280
  .rounded-tr-none {
1279
1281
  border-top-right-radius: 0px;
@@ -1506,10 +1508,6 @@ video {
1506
1508
  --tw-bg-opacity: 1;
1507
1509
  background-color: rgb(34 197 94 / var(--tw-bg-opacity));
1508
1510
  }
1509
- .bg-blue-300 {
1510
- --tw-bg-opacity: 1;
1511
- background-color: rgb(147 197 253 / var(--tw-bg-opacity));
1512
- }
1513
1511
  .bg-layoutPrimary-300 {
1514
1512
  background-color: var(--layout-primary-300);
1515
1513
  }
@@ -13,6 +13,7 @@ type TableTypes = {
13
13
  size?: "normal" | "small";
14
14
  highlightFirst?: boolean;
15
15
  customColor?: string;
16
+ clickable?: boolean;
16
17
  };
17
18
  export declare const HawaTable: React.FunctionComponent<TableTypes>;
18
19
  export {};
@@ -6,6 +6,7 @@ type TabsTypes = {
6
6
  contents?: any;
7
7
  orientation?: "horizontal" | "vertical";
8
8
  direction?: "rtl" | "ltr";
9
+ marginBetween?: any;
9
10
  };
10
11
  export declare const HawaTabs: React.FunctionComponent<TabsTypes>;
11
12
  export {};