@sumaris-net/ngx-components 18.2.6 → 18.2.8
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 +3 -1
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +1 -1
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +4 -2
- package/esm2022/src/app/shared/services/entity-service.class.mjs +1 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +3 -1
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/material/autocomplete/material.autocomplete.config.d.ts +4 -0
- package/src/app/shared/services/entity-service.class.d.ts +2 -2
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -25,6 +25,10 @@ export declare interface MatAutocompleteFieldConfig<T = any, F = any> {
|
|
|
25
25
|
* Should select input content (desktop only)
|
|
26
26
|
*/
|
|
27
27
|
selectInputContentOnFocus?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Add a delay (ms) before trying to select input content (desktop only)
|
|
30
|
+
*/
|
|
31
|
+
selectInputContentOnFocusDelay?: number;
|
|
28
32
|
/**
|
|
29
33
|
* Class to apply to the `div.mat-mdc-select-panel`
|
|
30
34
|
*/
|
|
@@ -27,7 +27,7 @@ export declare interface SuggestService<T, F> {
|
|
|
27
27
|
export declare interface EntityServiceLoadOptions<E = any> {
|
|
28
28
|
fetchPolicy?: FetchPolicy;
|
|
29
29
|
trash?: boolean;
|
|
30
|
-
toEntity?: boolean | ((source: any) => E);
|
|
30
|
+
toEntity?: boolean | ((source: any, opts?: any) => E);
|
|
31
31
|
query?: any;
|
|
32
32
|
variables?: any;
|
|
33
33
|
[key: string]: any;
|
|
@@ -35,7 +35,7 @@ export declare interface EntityServiceLoadOptions<E = any> {
|
|
|
35
35
|
export declare interface EntityServiceWatchOptions<T = any> {
|
|
36
36
|
fetchPolicy?: WatchQueryFetchPolicy;
|
|
37
37
|
trash?: boolean;
|
|
38
|
-
toEntity?: boolean | ((source: any) => T);
|
|
38
|
+
toEntity?: boolean | ((source: any, opts?: any) => T);
|
|
39
39
|
query?: any;
|
|
40
40
|
variables?: any;
|
|
41
41
|
[key: string]: any;
|
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.2.
|
|
5
|
+
"version": "18.2.8",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|