@sumaris-net/ngx-components 2.4.18 → 2.4.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 +3 -0
- package/esm2020/src/app/core/table/table.class.mjs +13 -5
- package/esm2020/src/app/core/table/testing/table.testing.mjs +1 -1
- package/esm2020/src/app/shared/form/field.component.mjs +1 -1
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.mjs +62 -56
- package/esm2020/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +1 -1
- package/fesm2015/sumaris-net.ngx-components.mjs +77 -63
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +76 -62
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +16 -17
package/package.json
CHANGED
|
@@ -19,6 +19,21 @@ export declare class MatAutocompleteField implements OnInit, AfterViewInit, OnDe
|
|
|
19
19
|
private formGroupDir;
|
|
20
20
|
private _onChangeCallback;
|
|
21
21
|
private _onTouchedCallback;
|
|
22
|
+
private _onFetchMoreCallback;
|
|
23
|
+
private _implicitValue;
|
|
24
|
+
private _subscription;
|
|
25
|
+
private _itemsSubscription;
|
|
26
|
+
private _openedSubscription;
|
|
27
|
+
private _$filter;
|
|
28
|
+
private _itemCount;
|
|
29
|
+
private _reload$;
|
|
30
|
+
protected _readonly: boolean;
|
|
31
|
+
protected _tabindex: number;
|
|
32
|
+
protected _$inputItems: BehaviorSubject<any[]>;
|
|
33
|
+
protected _$filteredItems: BehaviorSubject<any[]>;
|
|
34
|
+
protected _displayValue: string;
|
|
35
|
+
protected _moreItemsCount: number;
|
|
36
|
+
protected _fetchMore$: EventEmitter<Event>;
|
|
22
37
|
equals: EqualsFn;
|
|
23
38
|
logPrefix: string;
|
|
24
39
|
formControl: UntypedFormControl;
|
|
@@ -46,7 +61,6 @@ export declare class MatAutocompleteField implements OnInit, AfterViewInit, OnDe
|
|
|
46
61
|
panelWidth: string;
|
|
47
62
|
matAutocompletePosition: 'auto' | 'above' | 'below';
|
|
48
63
|
multiple: boolean;
|
|
49
|
-
itemSize: string;
|
|
50
64
|
fetchMoreThreshold: string;
|
|
51
65
|
suggestLengthThreshold: number;
|
|
52
66
|
showLoadingSpinner: boolean;
|
|
@@ -64,21 +78,6 @@ export declare class MatAutocompleteField implements OnInit, AfterViewInit, OnDe
|
|
|
64
78
|
matInputText: ElementRef;
|
|
65
79
|
autocomplete: MatAutocomplete;
|
|
66
80
|
autocompleteTrigger: MatAutocompleteTrigger;
|
|
67
|
-
_readonly: boolean;
|
|
68
|
-
_tabindex: number;
|
|
69
|
-
$inputItems: BehaviorSubject<any[]>;
|
|
70
|
-
$filteredItems: BehaviorSubject<any[]>;
|
|
71
|
-
displayValue: string;
|
|
72
|
-
_moreItemsCount: number;
|
|
73
|
-
_fetchMore$: EventEmitter<Event>;
|
|
74
|
-
private _onFetchMoreCallback;
|
|
75
|
-
private _implicitValue;
|
|
76
|
-
private _subscription;
|
|
77
|
-
private _itemsSubscription;
|
|
78
|
-
private _openedSubscription;
|
|
79
|
-
private _$filter;
|
|
80
|
-
private _itemCount;
|
|
81
|
-
private _reload$;
|
|
82
81
|
constructor(cd: ChangeDetectorRef, modalController: ModalController, renderer: Renderer2, document: Document, viewRef: ViewRef, formGroupDir: FormGroupDirective);
|
|
83
82
|
get itemCount(): number;
|
|
84
83
|
get canFetchMore(): boolean;
|
|
@@ -135,5 +134,5 @@ export declare class MatAutocompleteField implements OnInit, AfterViewInit, OnDe
|
|
|
135
134
|
*/
|
|
136
135
|
private _fixSearchbarOverlay;
|
|
137
136
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatAutocompleteField, [null, null, null, null, null, { optional: true; }]>;
|
|
138
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatAutocompleteField, "mat-autocomplete-field", never, { "equals": "equals"; "logPrefix": "logPrefix"; "formControl": "formControl"; "formControlName": "formControlName"; "floatLabel": "floatLabel"; "appearance": "appearance"; "placeholder": "placeholder"; "suggestFn": "suggestFn"; "required": "required"; "mobile": "mobile"; "clearable": "clearable"; "debounceTime": "debounceTime"; "displayWith": "displayWith"; "displayAttributes": "displayAttributes"; "displayColumnSizes": "displayColumnSizes"; "displayColumnNames": "displayColumnNames"; "highlightAccent": "highlightAccent"; "showAllOnFocus": "showAllOnFocus"; "showPanelOnFocus": "showPanelOnFocus"; "autofocus": "autofocus"; "config": "config"; "i18nPrefix": "i18nPrefix"; "noResultMessage": "noResultMessage"; "classList": "class"; "panelWidth": "panelWidth"; "matAutocompletePosition": "matAutocompletePosition"; "multiple": "multiple"; "
|
|
137
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatAutocompleteField, "mat-autocomplete-field", never, { "equals": "equals"; "logPrefix": "logPrefix"; "formControl": "formControl"; "formControlName": "formControlName"; "floatLabel": "floatLabel"; "appearance": "appearance"; "placeholder": "placeholder"; "suggestFn": "suggestFn"; "required": "required"; "mobile": "mobile"; "clearable": "clearable"; "debounceTime": "debounceTime"; "displayWith": "displayWith"; "displayAttributes": "displayAttributes"; "displayColumnSizes": "displayColumnSizes"; "displayColumnNames": "displayColumnNames"; "highlightAccent": "highlightAccent"; "showAllOnFocus": "showAllOnFocus"; "showPanelOnFocus": "showPanelOnFocus"; "autofocus": "autofocus"; "config": "config"; "i18nPrefix": "i18nPrefix"; "noResultMessage": "noResultMessage"; "classList": "class"; "panelWidth": "panelWidth"; "matAutocompletePosition": "matAutocompletePosition"; "multiple": "multiple"; "fetchMoreThreshold": "fetchMoreThreshold"; "suggestLengthThreshold": "suggestLengthThreshold"; "showLoadingSpinner": "showLoadingSpinner"; "debug": "debug"; "showSearchBar": "showSearchBar"; "stickySearchBar": "stickySearchBar"; "filter": "filter"; "readonly": "readonly"; "tabindex": "tabindex"; "items": "items"; }, { "clicked": "click"; "blurred": "blur"; "focused": "focus"; "dropButtonClick": "dropButtonClick"; "keydownEscape": "keydown.escape"; "keyupEnter": "keyup.enter"; }, never, ["[matError]", "[matAfter]", "[matPrefix]", "[matSuffix]"], false>;
|
|
139
138
|
}
|