@sumaris-net/ngx-components 18.8.19 → 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/doc/changelog.md +3 -3
- package/esm2022/src/app/shared/functions.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +31 -31
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/functions.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
- package/src/theme/_mixins.scss +2 -1
- package/src/theme/_ngx-components.globals.scss +2 -1
package/package.json
CHANGED
|
@@ -184,4 +184,4 @@ export declare function interpolateString(message: string, interpolateParams: Re
|
|
|
184
184
|
*
|
|
185
185
|
* @publicApi
|
|
186
186
|
*/
|
|
187
|
-
export declare function
|
|
187
|
+
export declare function numberOrNilAttribute(value: unknown, fallbackValue?: number): number | undefined | null;
|
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": "18.8.
|
|
5
|
+
"version": "18.8.21",
|
|
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
|
@@ -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-
|
|
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-
|
|
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
|
|