@sumaris-net/ngx-components 1.19.13 → 1.19.15-rc1

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": "1.19.13",
4
+ "version": "1.19.15-rc1",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -1,4 +1,6 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  export declare class NumberFormatPipe implements PipeTransform {
3
- transform(val: number, numberFormatOptions?: Intl.NumberFormatOptions): string | Promise<string>;
3
+ transform(val: number, opts?: Intl.NumberFormatOptions & {
4
+ fixedDecimals?: number;
5
+ }): string | Promise<string>;
4
6
  }
@@ -444,8 +444,8 @@
444
444
  "FIELD_MIN_COMPACT": "Min {{min}}",
445
445
  "FIELD_MAX": "Valeur maximale autorisée: {{max}}",
446
446
  "FIELD_MAX_COMPACT": "Max {{max}}",
447
- "FIELD_MAXIMUM_DECIMALS": "Trop de décimales (max: {{maxDecimals}})",
448
- "FIELD_MAXIMUM_DECIMALS_COMPACT": "Nb décimale > {{maxDecimals}}",
447
+ "FIELD_MAXIMUM_DECIMALS": "Trop de décimales (max: {{max}})",
448
+ "FIELD_MAXIMUM_DECIMALS_COMPACT": "Nb décimale > {{max}}",
449
449
  "FIELD_INVALID": "Valeur non valide",
450
450
  "FIELD_NOT_VALID_INTEGER": "Valeur entière attendue",
451
451
  "FIELD_NOT_VALID_EMAIL": "Adresse email invalide",
@@ -1065,16 +1065,23 @@ mat-button-toggle.mat-button-toggle-checked.mat-button-toggle-disabled {
1065
1065
  color: white;
1066
1066
  }
1067
1067
 
1068
- // --- mat-tab-group component
1068
+ // --------------------------------------------------
1069
+ // Material tab group
1070
+ // --------------------------------------------------
1071
+
1072
+ // --- Allow to hide headers
1069
1073
  mat-tab-group.mat-tab-group-header-hidden .mat-tab-header {
1070
- display: none !important;
1074
+ display: none;
1071
1075
  }
1076
+
1077
+ // --- Allow to hide header's pagination
1072
1078
  mat-tab-group.mat-tab-group-header-pagination-hidden .mat-tab-header-pagination {
1073
- display: none !important;
1079
+ display: none;
1074
1080
  }
1075
1081
 
1082
+ // --- Allow to hide disabled headers
1076
1083
  mat-tab-group.mat-tab-disabled-hidden .mat-tab-disabled {
1077
- display: none !important;
1084
+ display: none;
1078
1085
  }
1079
1086
 
1080
1087
  // --------------------------------------------------