@sumaris-net/ngx-components 1.3.10 → 1.3.11

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.3.10",
4
+ "version": "1.3.11",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -44,8 +44,8 @@ export declare function removeEnd(value: string, end: string): string;
44
44
  export declare function changeCaseToUnderscore(value: string): string;
45
45
  export declare function removeDiacritics(text: string): string;
46
46
  export declare function suggestFromArray<T = any>(items: T[], value: any, opts?: {
47
- offset?: 0;
48
- size?: 0;
47
+ offset?: number;
48
+ size?: number;
49
49
  searchAttribute?: string;
50
50
  searchAttributes?: string[];
51
51
  excludedIds?: number[];
@@ -22,6 +22,7 @@ export declare interface MatAutocompleteFieldConfig<T = any, F = any> {
22
22
  mobile?: boolean;
23
23
  debounceTime?: number;
24
24
  suggestLengthThreshold?: number;
25
+ highlightAccent?: boolean;
25
26
  }
26
27
  export declare interface MatAutocompleteFieldAddOptions<T = any, F = any> extends Partial<MatAutocompleteFieldConfig<T, F>> {
27
28
  service?: SuggestService<T, F>;