ecabs-components 1.0.82 → 1.0.83

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/README.md CHANGED
@@ -33,3 +33,4 @@ v1.0.80 - Allow custom button options for `Confirm` and `Cancel` buttons on `Eca
33
33
  v1.0.81 - Fix font size of `EcabsSelect`.
34
34
  v1.0.82 - Improve appearance of disabled inputs.
35
35
  - Fix placeholder text of `EcabsSelect`.
36
+ v1.0.83 - Fix buttons height.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecabs-components",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^16.2.12",
6
6
  "@angular/common": "^16.2.12",
@@ -2,9 +2,10 @@
2
2
  @include fontSize($font-size-base);
3
3
 
4
4
  border: 0;
5
- min-width: calc-rem(111);
5
+ min-width: calc-rem(111px);
6
+ min-height: calc-rem(42px);
6
7
  width: fit-content;
7
- padding: calc-rem(8 24);
8
+ padding: calc-rem(8px 24px);
8
9
  font-weight: $font-weight-regular;
9
10
  line-height: $base-line-height;
10
11