@sumaris-net/ngx-components 2.7.3-rc60 → 2.7.3-rc61

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "2.7.3-rc60",
4
+ "version": "2.7.3-rc61",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -2,7 +2,7 @@
2
2
  "name": "ngx-sumaris-components",
3
3
  "short_name": "ngx-sumaris-components",
4
4
  "manifest_version": 1,
5
- "version": "2.7.3-rc60",
5
+ "version": "2.7.3-rc61",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{
@@ -158,7 +158,8 @@ form.form-container {
158
158
  .computed .mat-mdc-form-field .mat-mdc-input-element:disabled,
159
159
  .mat-mdc-form-field .computed .mat-mdc-input-element:disabled,
160
160
  .mat-mdc-form-field.computed .mat-mdc-input-element:disabled {
161
- color: var(--ion-color-primary-tint) !important;
161
+ --mdc-filled-text-field-input-text-color: #{$app-form-color-computed} !important;
162
+ color: var(--mdc-filled-text-field-input-text-color);
162
163
  font-style: italic;
163
164
  }
164
165
 
@@ -4,6 +4,7 @@ $app-toolbar-height: 60px !default; // = $mat-toolbar-height-mobile + 4 (progres
4
4
 
5
5
  $app-form-color: rgba(0, 0, 0, 0.87) !default;
6
6
  $app-form-color-disabled: rgba(0, 0, 0, 0.55) !default;
7
+ $app-form-color-computed: $primary !default;
7
8
 
8
9
  $app-table-header-height: 44px !default;
9
10
  $app-table-cell-horizontal-padding: 8px !default;
@@ -209,7 +209,8 @@
209
209
  .mat-mdc-cell.calculated mat-form-field,
210
210
  .mat-mdc-cell-calculated,
211
211
  .mat-cell-calculated {
212
- color: var(--ion-color-primary-tint);
212
+ --mdc-filled-text-field-input-text-color: #{$app-form-color-computed} !important;
213
+ color: var(--mdc-filled-text-field-input-text-color);
213
214
  font-style: italic;
214
215
  }
215
216
  }