ngx-vector-components 5.111.0 → 5.113.0
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/CHANGELOG.md +12 -0
- package/esm2022/lib/components/fields/data-table/data-table.component.mjs +7 -2
- package/esm2022/lib/components/fields/dropdown-field/dropdown-field.component.mjs +86 -2
- package/esm2022/lib/components/fields/multiselect-field/multiselect-field.component.mjs +38 -8
- package/fesm2022/ngx-vector-components.mjs +128 -9
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/fields/dropdown-field/dropdown-field.component.d.ts +5 -0
- package/lib/components/fields/multiselect-field/multiselect-field.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -50,6 +50,11 @@ export declare class DropdownFieldComponent implements OnInit, OnDestroy {
|
|
|
50
50
|
private setControlValueFromSuggestions;
|
|
51
51
|
private handleSearchErrors;
|
|
52
52
|
private filterListByQuery;
|
|
53
|
+
formatDropdownValue(value: string): string;
|
|
54
|
+
private applyDynamicCpfCnpjMask;
|
|
55
|
+
private isCpfOrCnpj;
|
|
56
|
+
private isValidCpf;
|
|
57
|
+
private isValidCnpj;
|
|
53
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownFieldComponent, never>;
|
|
54
59
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownFieldComponent, "vector-dropdown-field", never, { "options": { "alias": "options"; "required": false; }; "isNgContent": { "alias": "isNgContent"; "required": false; }; "forceSelection": { "alias": "forceSelection"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "service": { "alias": "service"; "required": false; }; "paged": { "alias": "paged"; "required": false; }; "buttonAction": { "alias": "buttonAction"; "required": false; }; "dependencies": { "alias": "dependencies"; "required": false; }; "hiddenErrorMessage": { "alias": "hiddenErrorMessage"; "required": false; }; "dynamicFilters": { "alias": "dynamicFilters"; "required": false; }; "minLengthToService": { "alias": "minLengthToService"; "required": false; }; "initialLoad": { "alias": "initialLoad"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "limitScrollPage": { "alias": "limitScrollPage"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; }, { "onFocus": "onFocus"; "onChange": "onChange"; }, never, never, false, never>;
|
|
55
60
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, Renderer2 } from '@angular/core';
|
|
2
|
+
import { MultiSelectFilterEvent } from 'primeng/multiselect';
|
|
2
3
|
import { ListItem } from '../../../models';
|
|
3
4
|
import { BaseDropdown } from '../../../services';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
@@ -50,6 +51,7 @@ export declare class MultiselectFieldComponent {
|
|
|
50
51
|
get placeholder(): string;
|
|
51
52
|
get pagedSugestion(): ListItem[];
|
|
52
53
|
private _pagedSugestion;
|
|
54
|
+
private signalOptions;
|
|
53
55
|
constructor(renderer: Renderer2);
|
|
54
56
|
ngOnInit(): void;
|
|
55
57
|
fieldErrorLabel(): string;
|
|
@@ -60,6 +62,7 @@ export declare class MultiselectFieldComponent {
|
|
|
60
62
|
onOpenAutocompletePanel(): void;
|
|
61
63
|
onHideAutocompletePanel(): void;
|
|
62
64
|
search($event?: any, forceSearch?: boolean): void;
|
|
65
|
+
onFilterChange($event?: MultiSelectFilterEvent): void;
|
|
63
66
|
private pageResults;
|
|
64
67
|
private filterListByQuery;
|
|
65
68
|
private setControlValueFromSuggestions;
|