iptdevs-design-system 3.2.2 → 3.2.4
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/esm2020/lib/components/forms/update-user-form/update-user-form.component.mjs +77 -9
- package/fesm2015/iptdevs-design-system.mjs +77 -8
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +76 -8
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/components/forms/update-user-form/update-user-form.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -34,6 +34,8 @@ export declare class updateUserFormComponent implements OnInit, OnChanges, OnDes
|
|
|
34
34
|
stratums: any[];
|
|
35
35
|
showConfirmDialog: boolean;
|
|
36
36
|
userRoleCommercial: boolean;
|
|
37
|
+
canEditRole: boolean;
|
|
38
|
+
roles: any[];
|
|
37
39
|
private initialFormValue;
|
|
38
40
|
private idTypeSubscription?;
|
|
39
41
|
private pendingInit;
|
|
@@ -49,6 +51,7 @@ export declare class updateUserFormComponent implements OnInit, OnChanges, OnDes
|
|
|
49
51
|
ngOnDestroy(): void;
|
|
50
52
|
private initConfirmForm;
|
|
51
53
|
private setJustifyOptions;
|
|
54
|
+
private setRoles;
|
|
52
55
|
getParameters(): void;
|
|
53
56
|
setParameters(): void;
|
|
54
57
|
private initializeForm;
|
|
@@ -75,6 +78,7 @@ export declare class updateUserFormComponent implements OnInit, OnChanges, OnDes
|
|
|
75
78
|
getCity(state: any): void;
|
|
76
79
|
selectCity(city: any): void;
|
|
77
80
|
selectReason(reason: any): void;
|
|
81
|
+
selectRole(role: any): void;
|
|
78
82
|
hasFormChanged(): boolean;
|
|
79
83
|
showConfirmSectionHandler(): void;
|
|
80
84
|
sendUpdateRequest(): void;
|