@agility/plenum-ui 2.2.5 → 2.2.6

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/tailwind.css CHANGED
@@ -1940,8 +1940,8 @@ select {
1940
1940
  min-height: 0px !important;
1941
1941
  }
1942
1942
 
1943
- .min-h-\[38px\] {
1944
- min-height: 38px;
1943
+ .min-h-\[20px\] {
1944
+ min-height: 20px;
1945
1945
  }
1946
1946
 
1947
1947
  .w-1 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agility/plenum-ui",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -57,7 +57,7 @@ const Checkbox: FC<ICheckboxProps> = ({
57
57
  { "border-red-500 shadow-none": isError }
58
58
  );
59
59
  const wrapperStyles = cn(
60
- "relative flex items-center min-h-[38px]",
60
+ "relative flex items-center min-h-[20px]",
61
61
  { "opacity-50": isDisabled },
62
62
  { "rounded-sm border border-1 px-3 border-gray-200": hasBorder },
63
63
  { "py-3": hasBorder && message },