ngx-vector-components 5.109.1 → 5.109.3
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 +15 -0
- package/esm2022/lib/components/crud-history/crud-history.component.mjs +20 -3
- package/esm2022/lib/components/fields/multiselect-field/multiselect-field.component.mjs +2 -2
- package/esm2022/lib/models/crud-history.model.mjs +1 -1
- package/esm2022/lib/models/profile.model.mjs +3 -1
- package/fesm2022/ngx-vector-components.mjs +23 -4
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/crud-history/crud-history.component.d.ts +4 -1
- package/lib/models/crud-history.model.d.ts +1 -0
- package/lib/models/profile.model.d.ts +2 -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
|
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { CrudHistory } from '../../models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class CrudHistoryComponent {
|
|
5
5
|
crudHistory?: CrudHistory<any>;
|
|
6
6
|
onClick: EventEmitter<any>;
|
|
7
|
+
modifierNameLabel: string;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
7
9
|
getHistoryBadgeBackgroundColor(crudHistoryEventType?: string): string;
|
|
8
10
|
getHistoryBadgeColor(crudHistoryEventType?: string): string;
|
|
9
11
|
getHistoryBadgeLabel(crudHistoryEventType?: string): string;
|
|
12
|
+
getModifierNameLabel(crudHistory?: CrudHistory<any>): string;
|
|
10
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHistoryComponent, never>;
|
|
11
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<CrudHistoryComponent, "vector-crud-history", never, { "crudHistory": { "alias": "crudHistory"; "required": false; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
12
15
|
}
|
|
@@ -520,6 +520,8 @@ export declare enum ProfileModuleActionType {
|
|
|
520
520
|
LOCATION_SCHEDULE_INTEGRATION_EDIT = "Location Schedule Integration Edit",
|
|
521
521
|
LIST_TOLL_CARD = "List Toll Card",
|
|
522
522
|
LINK_TOLL_CARD = "Link Toll Card",
|
|
523
|
+
SHOW_TRIP_VECTOR_PAY = "Exibir Par\u00E2metros Viagem",
|
|
524
|
+
EDIT_TRIP_VECTOR_PAY = "Editar Par\u00E2metros Viagem",
|
|
523
525
|
N2_APPROVAL_HISTORICAL_LINKAGE_LOT = "N2 Approval Historical Linkage Lot",
|
|
524
526
|
N1_APPROVAL_HISTORICAL_LINKAGE_LOT = "N1 Approval Historical Linkage Lot",
|
|
525
527
|
SHOW_SHIPPER_LOTCADENCECONFIGURATION = "Show ShipperLotCadenceConfiguration",
|