@sikka/hawa 0.0.221 → 0.0.222

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
@@ -989,6 +989,9 @@ video {
989
989
  .max-w-2xs {
990
990
  max-width: 250px;
991
991
  }
992
+ .max-w-\[200px\] {
993
+ max-width: 200px;
994
+ }
992
995
  .max-w-fit {
993
996
  max-width: -moz-fit-content;
994
997
  max-width: fit-content;
@@ -1077,9 +1080,6 @@ video {
1077
1080
  .grid-cols-2 {
1078
1081
  grid-template-columns: repeat(2, minmax(0, 1fr));
1079
1082
  }
1080
- .grid-cols-3 {
1081
- grid-template-columns: repeat(3, minmax(0, 1fr));
1082
- }
1083
1083
  .grid-cols-4 {
1084
1084
  grid-template-columns: repeat(4, minmax(0, 1fr));
1085
1085
  }
@@ -1889,12 +1889,18 @@ video {
1889
1889
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
1890
1890
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1891
1891
  }
1892
+ .outline {
1893
+ outline-style: solid;
1894
+ }
1892
1895
  .outline-1 {
1893
1896
  outline-width: 1px;
1894
1897
  }
1895
1898
  .outline-black {
1896
1899
  outline-color: #000;
1897
1900
  }
1901
+ .outline-gray-300 {
1902
+ outline-color: #d1d5db;
1903
+ }
1898
1904
  .ring-1 {
1899
1905
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1900
1906
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
@@ -1918,6 +1924,9 @@ video {
1918
1924
  .ring-offset-2 {
1919
1925
  --tw-ring-offset-width: 2px;
1920
1926
  }
1927
+ .filter {
1928
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1929
+ }
1921
1930
  .transition {
1922
1931
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
1923
1932
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
@@ -13,7 +13,7 @@ type SelectTypes = {
13
13
  helperText?: any;
14
14
  onInputChange?: any;
15
15
  native?: any;
16
- fullWidth?: any;
16
+ width?: "full" | "small";
17
17
  value?: any;
18
18
  children?: any;
19
19
  getOptionLabel?: any;
@@ -4,6 +4,7 @@ type StatTypes = {
4
4
  number?: string;
5
5
  helperText?: string;
6
6
  variant?: "plain" | "contained" | "outlined";
7
+ width?: "full" | "min" | "normal";
7
8
  isLoading?: boolean;
8
9
  handleClick?: () => void;
9
10
  };
@@ -16,6 +16,7 @@ type TableTypes = {
16
16
  noData?: any;
17
17
  items?: string;
18
18
  page?: string;
19
+ filter?: string;
19
20
  };
20
21
  bordersWidth?: string;
21
22
  onActionClicked?: any;