@sumaris-net/ngx-components 2.2.1-rc7 → 2.2.1-rc8
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 +1 -0
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.mjs +7 -8
- package/esm2020/src/app/shared/material/chips/material.chips.mjs +27 -21
- package/esm2020/src/app/shared/material/chips/testing/chips.test.mjs +10 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +42 -29
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +41 -29
- 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 +1 -1
- package/src/app/shared/material/chips/material.chips.d.ts +1 -1
- package/src/app/shared/material/chips/testing/chips.test.d.ts +1 -1
package/package.json
CHANGED
|
@@ -119,7 +119,7 @@ export declare class MatAutocompleteField implements OnInit, OnDestroy, InputEle
|
|
|
119
119
|
private getAutocompletePanel;
|
|
120
120
|
private getMatSelectPanel;
|
|
121
121
|
private markForCheck;
|
|
122
|
-
markAsLoading(): void;
|
|
122
|
+
protected markAsLoading(): void;
|
|
123
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatAutocompleteField, [null, { optional: true; }]>;
|
|
124
124
|
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"; "itemSize": "itemSize"; "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>;
|
|
125
125
|
}
|
|
@@ -108,7 +108,7 @@ export declare class MatChipsField implements OnInit, OnDestroy, InputElement, C
|
|
|
108
108
|
setDisabledState(isDisabled: boolean): void;
|
|
109
109
|
focus(): void;
|
|
110
110
|
filterInputTextFocusEvent(event: FocusEvent): boolean;
|
|
111
|
-
filterInputTextBlurEvent(event: FocusEvent): boolean;
|
|
111
|
+
protected filterInputTextBlurEvent(event: FocusEvent): boolean;
|
|
112
112
|
filterChipsFocusEvent(event: FocusEvent): void;
|
|
113
113
|
clearValue(event: Event): void;
|
|
114
114
|
_initAutocompleteInfiniteScroll(threshold?: string): void;
|
|
@@ -22,7 +22,7 @@ export declare class ChipsTestPage implements OnInit {
|
|
|
22
22
|
loadItems(): Promise<void>;
|
|
23
23
|
entityToString(item: any): string;
|
|
24
24
|
suggest(value: any, filter?: any): Promise<LoadResult<EntityTestClass>>;
|
|
25
|
-
doSubmit(
|
|
25
|
+
doSubmit(_: any): void;
|
|
26
26
|
equals(o1: EntityTestClass, o2: EntityTestClass): boolean;
|
|
27
27
|
stringify(value: any): string;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipsTestPage, never>;
|