@idsoftsource/initial-process 3.2.0 → 3.2.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/index.d.ts
CHANGED
|
@@ -1118,22 +1118,31 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
1118
1118
|
currentUserRoles: any;
|
|
1119
1119
|
userViewRoles: ({
|
|
1120
1120
|
name: string;
|
|
1121
|
+
subtitle: string;
|
|
1121
1122
|
value: string;
|
|
1122
1123
|
img: string;
|
|
1123
1124
|
selected: boolean;
|
|
1124
1125
|
code: null;
|
|
1125
1126
|
id: string;
|
|
1126
1127
|
roleId: string;
|
|
1128
|
+
tooltip: string;
|
|
1129
|
+
details: string;
|
|
1127
1130
|
} | {
|
|
1128
1131
|
name: string;
|
|
1132
|
+
subtitle: string;
|
|
1129
1133
|
value: string;
|
|
1130
1134
|
img: string;
|
|
1131
1135
|
selected: boolean;
|
|
1132
1136
|
code: ProviderType;
|
|
1133
1137
|
id: string;
|
|
1134
1138
|
roleId: string;
|
|
1139
|
+
tooltip: string;
|
|
1140
|
+
details: string;
|
|
1135
1141
|
})[];
|
|
1136
1142
|
onCredentialingBack(): void;
|
|
1143
|
+
infoPopupRole: any;
|
|
1144
|
+
openInfoPopup(event: Event, role: any): void;
|
|
1145
|
+
closeInfoPopup(): void;
|
|
1137
1146
|
selectedUserRole(role: any): void;
|
|
1138
1147
|
privacyAndTerms: PrivacyAndTerms;
|
|
1139
1148
|
setPrivacyAndTerms(appType: string): void;
|