ecabs-components 1.1.89 → 1.1.90

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecabs-components",
3
- "version": "1.1.89",
3
+ "version": "1.1.90",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^16.2.12",
6
6
  "@angular/common": "^16.2.12",
@@ -27,6 +27,11 @@
27
27
  }
28
28
  }
29
29
 
30
+ .mat-mdc-select-value,
31
+ .mat-mdc-select-placeholder {
32
+ line-height: calc-rem(24px);
33
+ }
34
+
30
35
  .mat-mdc-select-placeholder {
31
36
  @include fontSize($font-size-md);
32
37
  }
@@ -82,6 +87,14 @@
82
87
  }
83
88
  }
84
89
 
90
+ .ng-value,
91
+ .ng-placeholder {
92
+ // Fixed line-height so the placeholder (14px) and the selected value
93
+ // (16px) occupy the same line box; otherwise the unitless 1.5
94
+ // line-height makes the field grow once a value is selected.
95
+ line-height: calc-rem(24px);
96
+ }
97
+
85
98
  &.ng-select-disabled > .ng-select-container {
86
99
  background-color: var(--color-white-opacity-05);
87
100
  border-color: var(--color-gray-300);