ngx-vector-components 5.118.0 → 5.119.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/models/profile.model.mjs +4 -1
- package/fesm2022/ngx-vector-components.mjs +3 -0
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/fields/data-table/data-table.component.d.ts +2 -2
- package/lib/components/fields/text-field/text-field.component.d.ts +1 -1
- package/lib/models/profile.model.d.ts +4 -1
- 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
|
}
|
|
@@ -33,7 +33,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
addNameColumnExpand: string;
|
|
34
34
|
expandable: boolean;
|
|
35
35
|
expansionTemplate: TemplateRef<any> | null;
|
|
36
|
-
set selectionMode(_selectionMode: "
|
|
36
|
+
set selectionMode(_selectionMode: "single" | "multiple" | null);
|
|
37
37
|
selectionType: 'checkbox' | 'radiobutton' | null;
|
|
38
38
|
set height(_height: string);
|
|
39
39
|
showLimitBalance: boolean;
|
|
@@ -61,7 +61,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
61
61
|
get balance(): (itemAccount?: any) => number | string;
|
|
62
62
|
get tabs(): ListItem[];
|
|
63
63
|
get height(): string;
|
|
64
|
-
get selectionMode(): "
|
|
64
|
+
get selectionMode(): "single" | "multiple" | null;
|
|
65
65
|
private _selectionMode;
|
|
66
66
|
private _height;
|
|
67
67
|
private _tabs;
|
|
@@ -36,7 +36,7 @@ export declare class TextFieldComponent implements OnInit, OnDestroy {
|
|
|
36
36
|
isPasswordVisible: boolean;
|
|
37
37
|
validateOnly: boolean;
|
|
38
38
|
get placeholder(): string;
|
|
39
|
-
get keyfilter(): RegExp | "
|
|
39
|
+
get keyfilter(): RegExp | "int" | "pint" | "alphanum" | "money";
|
|
40
40
|
get control(): any;
|
|
41
41
|
get showPasswordIcon(): "fas fa-eye" | "fas fa-eye-slash";
|
|
42
42
|
documentTypes: ListItem[];
|
|
@@ -554,5 +554,8 @@ export declare enum ProfileModuleActionType {
|
|
|
554
554
|
SHOW_IRREGULARITY = "Show Irregularity",
|
|
555
555
|
LOG_DISCHARGE_PAYMENT = "Log Quitacao",
|
|
556
556
|
EDIT_ISS = "Editar ISS",
|
|
557
|
-
EDIT_ICMS = "Editar ICMS"
|
|
557
|
+
EDIT_ICMS = "Editar ICMS",
|
|
558
|
+
CREATE_ICMS_PARAMS = "Create Icms Param",
|
|
559
|
+
EDIT_ICMS_PARAMS = "Edit Icms Param",
|
|
560
|
+
SHOW_ICMS_PARAMS = "Show Icms Param"
|
|
558
561
|
}
|