@sumaris-net/ngx-components 2.3.7-rc3 → 2.3.7-rc5
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/doc/changelog.md
CHANGED
|
@@ -510,3 +510,7 @@ Observables: function `waitFor()`, `waitForTrue()`, `watForFalse()`, `firstNotNi
|
|
|
510
510
|
|
|
511
511
|
# 2.2.8
|
|
512
512
|
- [fix] Table actions column: add CSS variable to set column width, min-width and max-width
|
|
513
|
+
|
|
514
|
+
# 2.3.7
|
|
515
|
+
- [fix] Mat form field: use inherit font size (do not force font-size, in the theme)
|
|
516
|
+
- [fix] MatDateShort: fix behaviour for Angular 14
|
package/package.json
CHANGED
|
@@ -158,24 +158,25 @@ form.form-container {
|
|
|
158
158
|
mat-icon[matPrefix],
|
|
159
159
|
.mat-form-field-prefix ion-icon,
|
|
160
160
|
.mat-form-field-prefix .mat-icon {
|
|
161
|
-
$font-size: calculateRem(
|
|
161
|
+
$font-size: calculateRem(24px);
|
|
162
162
|
font-size: $font-size;
|
|
163
|
-
line-height:
|
|
163
|
+
line-height: 1.125;
|
|
164
164
|
height: $font-size;
|
|
165
|
+
width: $font-size;
|
|
165
166
|
margin-left: 5px;
|
|
166
167
|
margin-right: 5px;
|
|
167
|
-
margin-bottom: calc(1rem - $font-size);
|
|
168
|
+
margin-bottom: calc(calc(1rem - $font-size) / 2);
|
|
168
169
|
}
|
|
169
170
|
|
|
170
171
|
ion-icon[matSuffix],
|
|
171
172
|
mat-icon[matSuffix],
|
|
172
173
|
.mat-form-field-suffix ion-icon,
|
|
173
174
|
.mat-form-field-suffix .mat-icon {
|
|
174
|
-
//width: 0.8em !important;
|
|
175
175
|
|
|
176
176
|
&.large {
|
|
177
|
-
font-size:
|
|
178
|
-
|
|
177
|
+
$font-size: calculateRem(24px);
|
|
178
|
+
font-size: $font-size;
|
|
179
|
+
line-height: $font-size;
|
|
179
180
|
}
|
|
180
181
|
}
|
|
181
182
|
|