@sumaris-net/ngx-components 18.6.66 → 18.6.67
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
|
@@ -17,7 +17,7 @@ export interface InputElement extends FocusableElement {
|
|
|
17
17
|
}
|
|
18
18
|
export declare function isInputElement(object: any): object is InputElement;
|
|
19
19
|
export declare function asInputElement<T = any>(object: ElementRef<T>): InputElement | undefined;
|
|
20
|
-
export declare function tabindexComparator(a: InputElement, b: InputElement):
|
|
20
|
+
export declare function tabindexComparator(a: InputElement, b: InputElement): 0 | 1 | -1;
|
|
21
21
|
export interface CanGainFocusOptions {
|
|
22
22
|
minTabindex?: number;
|
|
23
23
|
maxTabindex?: number;
|
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.6.
|
|
5
|
+
"version": "18.6.67",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
package/src/theme/_material.scss
CHANGED
|
@@ -209,6 +209,8 @@ mat-icon[slot] {
|
|
|
209
209
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
|
|
212
|
+
// Mat dialog (e.g. timepicker)
|
|
213
|
+
.mat-mdc-dialog-container {
|
|
213
214
|
--mdc-dialog-container-color: var(--ion-background-color);
|
|
215
|
+
--mdc-dialog-supporting-text-color: var(--ion-text-color);
|
|
214
216
|
}
|
package/src/theme/_mixins.scss
CHANGED
|
@@ -188,8 +188,6 @@
|
|
|
188
188
|
--app-form-color-rgb: #{$background-color-rgb-value};
|
|
189
189
|
--app-form-field-focus-background-color: rgba(#{$background-color-rgb-value}, 0.87);
|
|
190
190
|
|
|
191
|
-
//--mdc-dialog-container-color: var(--ion-background-color);
|
|
192
|
-
|
|
193
191
|
// Step colors
|
|
194
192
|
--ion-color-step-50: #{$text-color-step-50};
|
|
195
193
|
--ion-color-step-100: #{$text-color-step-100};
|
|
@@ -751,9 +751,15 @@ mat-calendar {
|
|
|
751
751
|
--mat-toolbar-container-background-color: var(--ion-color-accent);
|
|
752
752
|
--mat-toolbar-container-text-color: var(--ion-color-accent-contrast);
|
|
753
753
|
}
|
|
754
|
-
button.mat-mdc-mini-fab
|
|
755
|
-
|
|
756
|
-
|
|
754
|
+
button.mat-mdc-mini-fab {
|
|
755
|
+
&.mat-unthemed {
|
|
756
|
+
--mat-fab-small-foreground-color: var(--ion-text-color);
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
&.mat-accent {
|
|
760
|
+
--mdc-fab-small-container-color: var(--ion-color-accent);
|
|
761
|
+
--mat-fab-small-foreground-color: var(--ion-color-accent-contrast);
|
|
762
|
+
}
|
|
757
763
|
}
|
|
758
764
|
}
|
|
759
765
|
}
|