ngx-vector-components 5.112.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 +6 -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/fesm2022/ngx-vector-components.mjs +91 -2
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/fields/dropdown-field/dropdown-field.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare class BadgeComponent implements OnInit {
|
|
|
9
9
|
tooltip?: string;
|
|
10
10
|
constructor();
|
|
11
11
|
ngOnInit(): void;
|
|
12
|
-
getStatusColor(): "
|
|
12
|
+
getStatusColor(): "badge-warning" | "badge-success" | "badge-error" | "badge-info" | "";
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
14
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "vector-badge", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "customBackgroundColor": { "alias": "customBackgroundColor"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
15
|
}
|
|
@@ -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
|
}
|