ngx-vector-components 5.147.0 → 5.148.1
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 +11 -1
- package/esm2022/lib/components/fields/checkbox-field/checkbox-field.component.mjs +12 -3
- package/esm2022/lib/models/profile.model.mjs +3 -1
- package/fesm2022/ngx-vector-components.mjs +13 -2
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/fields/checkbox-field/checkbox-field.component.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(): "badge-warning" | "badge-success" | "badge-error" | "badge-info"
|
|
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
|
}
|
|
@@ -14,6 +14,7 @@ export declare class CheckboxFieldComponent implements OnInit {
|
|
|
14
14
|
valueChange: EventEmitter<boolean>;
|
|
15
15
|
constructor();
|
|
16
16
|
ngOnInit(): void;
|
|
17
|
+
toggleValue(): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxFieldComponent, never>;
|
|
18
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFieldComponent, "vector-checkbox-field", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "value": { "alias": "value"; "required": false; }; "groupName": { "alias": "groupName"; "required": false; }; "options": { "alias": "options"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
19
20
|
}
|
|
@@ -576,6 +576,8 @@ export declare enum ProfileModuleActionType {
|
|
|
576
576
|
SAVE_NFSAP_DOCUMENTS = "Save NFSap Documents",
|
|
577
577
|
SHOW_LOT_PARAMETER_SHIPPER = "Show Lot Parameter Shipper",
|
|
578
578
|
SAVE_LOT_PARAMETER_SHIPPER = "Save Lot Parameter Shipper",
|
|
579
|
+
SHOW_CARGO_PARAMETER_SHIPPER = "Show Cargo Parameter Shipper",
|
|
580
|
+
SAVE_CARGO_PARAMETER_SHIPPER = "Save Cargo Parameter Shipper",
|
|
579
581
|
SHOW_GENERAL_PARAMETERS = "Show General Parameters",
|
|
580
582
|
SHOW_DISTRIBUTION_OF_VACANCIES = "Show Distribution Of Vacancies",
|
|
581
583
|
SHOW_SCHEDULE_SCHEDULING_MANAGEMENT = "Show Schedule Scheduling Management",
|