@sumaris-net/ngx-components 18.3.18 → 18.3.19

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 CHANGED
@@ -1050,7 +1050,10 @@ enh: Environment: add useHash property to configure Angular router to use hash U
1050
1050
  - enh(AppFormUtils) Add `disableAndClearControl()` that can disable then clear the control
1051
1051
 
1052
1052
  # 12.3.17
1053
- - fix(mat-chip-field): fix issue sumaris-app#844
1053
+ - fix(mat-chip-field) fix issue sumaris-app#844
1054
1054
 
1055
1055
  # 12.3.18
1056
- - fix(mat-*-field): Avoid to display 'false' as input placeholder, when floatLabel="never"
1056
+ - fix(mat-*-field) Avoid to display 'false' as input placeholder, when floatLabel="never"
1057
+
1058
+ # 12.3.19
1059
+ - fix(mat-latlong-field) Fix height in theme.scss (Need to remove one extra pixel, because of the sign that use a mat-select)
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": "18.3.18",
4
+ "version": "18.3.19",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -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): 1 | -1 | 0;
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;
@@ -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.3.18",
5
+ "version": "18.3.19",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{
@@ -34,10 +34,9 @@
34
34
  --mat-tab-header-label-text-tracking: 0.0178571429em;
35
35
  }
36
36
 
37
- // Drop down arrow of the mat-select (e.g. used in autocomplete - mobile)
37
+ // Fix height of the mat-latlong-field, otherwise there is one more pixel (because of the sign that use a mat-select)
38
38
  .mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper {
39
- // FIXME: should be removed - not need anymore to fix arrow position ?
40
- //transform: translateY(0px) !important;
39
+ height: auto;
41
40
  }
42
41
 
43
42
  // Allow to hidden the down arrow of the mat-select (e.g. used in autocomplete - desktop + multiple )