@sumaris-net/ngx-components 4.0.0-rc11 → 4.0.0-rc13
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/esm2022/src/app/admin/users/users.mjs +3 -3
- package/esm2022/src/app/core/table/async-table.class.mjs +7 -2
- package/fesm2022/sumaris-net.ngx-components.mjs +8 -3
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/theme/_ngx-components.table.scss +14 -15
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ export interface InputElement extends FocusableElement {
|
|
|
16
16
|
}
|
|
17
17
|
export declare function isInputElement(object: any): object is InputElement;
|
|
18
18
|
export declare function asInputElement(object: ElementRef): InputElement | undefined;
|
|
19
|
-
export declare function tabindexComparator(a: InputElement, b: InputElement):
|
|
19
|
+
export declare function tabindexComparator(a: InputElement, b: InputElement): 1 | 0 | -1;
|
|
20
20
|
export interface CanGainFocusOptions {
|
|
21
21
|
minTabindex?: number;
|
|
22
22
|
maxTabindex?: number;
|
|
@@ -351,25 +351,24 @@
|
|
|
351
351
|
// Suffix
|
|
352
352
|
.mat-mdc-form-field-icon-suffix {
|
|
353
353
|
white-space: nowrap;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
// Specific icon button styles
|
|
357
|
-
.mat-mdc-icon-button {
|
|
358
|
-
width: 24px;
|
|
359
|
-
height: 24px;
|
|
360
|
-
padding: 2px 0 0 0;
|
|
361
354
|
|
|
362
|
-
|
|
363
|
-
$font-size: calculateRem(18px);
|
|
364
|
-
font-size: $font-size;
|
|
365
|
-
line-height: 1.125;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
.mat-mdc-button-touch-target {
|
|
355
|
+
.mat-mdc-icon-button {
|
|
369
356
|
width: 24px;
|
|
357
|
+
height: 24px;
|
|
358
|
+
padding: 2px 0 0 0;
|
|
359
|
+
|
|
360
|
+
ion-icon, .mat-icon {
|
|
361
|
+
$font-size: calculateRem(18px);
|
|
362
|
+
font-size: $font-size;
|
|
363
|
+
line-height: 1.125;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.mat-mdc-button-touch-target {
|
|
367
|
+
width: 24px;
|
|
368
|
+
}
|
|
370
369
|
}
|
|
371
|
-
}
|
|
372
370
|
|
|
371
|
+
}
|
|
373
372
|
|
|
374
373
|
// Specific behavior for chips
|
|
375
374
|
&.mat-mdc-form-field-type-mat-chip-grid {
|