@sumaris-net/ngx-components 2.11.6 → 2.11.7
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
package/src/assets/manifest.json
CHANGED
|
@@ -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.11.
|
|
5
|
+
"version": "2.11.7",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
package/src/theme/_mixins.scss
CHANGED
|
@@ -138,6 +138,7 @@
|
|
|
138
138
|
--app-form-color-disabled: #{$app-form-color-disabled};
|
|
139
139
|
--app-form-color-computed: #{$app-form-color-computed};
|
|
140
140
|
--app-form-field-background-color: #{$app-form-field-background-color};
|
|
141
|
+
--app-form-field-focus-background-color: #{$app-form-field-focus-background-color};
|
|
141
142
|
--app-form-field-background-color-shade: #{$app-form-color-background-color-shade};
|
|
142
143
|
--app-form-field-disabled-background-color: #{$app-form-field-disabled-background-color};
|
|
143
144
|
--app-form-field-label-color: #{$app-form-field-label-color};
|
|
@@ -170,7 +171,7 @@
|
|
|
170
171
|
--ion-background-color-rgb: #{$text-color-rgb-value};
|
|
171
172
|
--ion-text-color: #{$background-color-value};
|
|
172
173
|
--ion-text-color-rgb: #{$background-color-rgb-value};
|
|
173
|
-
|
|
174
|
+
--app-form-color: #{$background-color-value};
|
|
174
175
|
--app-form-color-rgb: #{$background-color-rgb-value};
|
|
175
176
|
|
|
176
177
|
// Step colors
|
|
@@ -3,9 +3,10 @@ $app-menu-width: 300px !default;
|
|
|
3
3
|
$app-toolbar-height: 60px !default; // = $mat-toolbar-height-mobile + 4 (progress bar);
|
|
4
4
|
|
|
5
5
|
$app-table-header-height: 44px !default;
|
|
6
|
-
$app-table-cell-horizontal-padding: 8px !default;
|
|
7
6
|
$app-table-row-height: 48px !default;
|
|
8
7
|
$app-table-row-max-height: 52px !default;
|
|
8
|
+
$app-table-cell-horizontal-padding: 8px !default;
|
|
9
|
+
$app-table-cell-focus-background-color: transparent !default;
|
|
9
10
|
|
|
10
11
|
$app-paginator-height: 34px !default;
|
|
11
12
|
$app-form-buttons-bar-height: 56px !default;
|
|
@@ -13,7 +14,8 @@ $app-form-color: #{$text-color} !default;
|
|
|
13
14
|
$app-form-color-rgb: #{$text-color-rgb} !default;
|
|
14
15
|
$app-form-color-disabled: rgba(#{$text-color-rgb}, 0.55) !default;
|
|
15
16
|
$app-form-color-computed: var(--ion-color-primary-tint) !default;
|
|
16
|
-
$app-form-field-background-color: #f5f5f5 !default; //
|
|
17
|
+
$app-form-field-background-color: #f5f5f5 !default; // Field background
|
|
18
|
+
$app-form-field-focus-background-color: transparent !default; // Focused field background
|
|
17
19
|
$app-form-color-background-color-shade: #b9b9b9 !default;
|
|
18
20
|
$app-form-field-disabled-background-color: #fafafa !default;
|
|
19
21
|
$app-form-field-label-color: rgba(#{$text-color-rgb}, 0.6) !default;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
--mdc-typography-body1-letter-spacing: normal;
|
|
37
37
|
|
|
38
38
|
--mat-form-field-container-text-tracking: normal;
|
|
39
|
-
--mat-form-field-state-layer-color:
|
|
39
|
+
--mat-form-field-state-layer-color: #{$app-table-cell-focus-background-color};
|
|
40
40
|
--mat-form-field-subscript-text-size: 10px;
|
|
41
41
|
--mdc-checkbox-state-layer-size: 20px;
|
|
42
42
|
--mdc-radio-state-layer-size: 20px;
|