@sumaris-net/ngx-components 18.8.20 → 18.8.21

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": "18.8.20",
4
+ "version": "18.8.21",
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": "18.8.20",
5
+ "version": "18.8.21",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{
@@ -147,7 +147,8 @@
147
147
  --app-form-color-disabled: #{$app-form-color-disabled};
148
148
  --app-form-color-computed: #{$app-form-color-computed};
149
149
  --app-form-field-background-color: #{$app-form-field-background-color};
150
- --app-form-field-background-color-shade: #{$app-form-color-background-color-shade};
150
+ --app-form-field-background-color-rgb: #{$app-form-field-background-color-rgb};
151
+ --app-form-field-background-color-shade: #{$app-form-field-background-color-shade};
151
152
  --app-form-field-focus-background-color: #{$app-form-field-focus-background-color};
152
153
  --app-form-field-disabled-background-color: #{$app-form-field-disabled-background-color};
153
154
  --app-form-field-label-color: #{$app-form-field-label-color};
@@ -21,7 +21,8 @@ $app-form-field-disabled-label-color: rgba(#{$text-color-rgb}, 0.38) !default;
21
21
 
22
22
  // Form's field background
23
23
  $app-form-field-background-color: #f5f5f5 !default; // Field background
24
- $app-form-color-background-color-shade: #b9b9b9 !default; // Darker color (e.g. for toggle slide bar - see settings field 'dark mode')
24
+ $app-form-field-background-color-rgb: 245, 245, 245 !default; // Field background (RGB)
25
+ $app-form-field-background-color-shade: #b9b9b9 !default; // Darker color (e.g. for toggle slide bar - see settings field 'dark mode')
25
26
  $app-form-field-focus-background-color: transparent !default; // Focused field background
26
27
  $app-form-field-disabled-background-color: #fafafa !default;
27
28