@idsoftsource/initial-process 3.2.0 → 3.2.2

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
@@ -707,7 +707,8 @@ declare enum RequestedStatus {
707
707
  Rejected = 3,
708
708
  Resubmitted = 4,
709
709
  Approved = 5,
710
- Canceled = 6
710
+ Canceled = 6,
711
+ SaveasDraft = 7
711
712
  }
712
713
 
713
714
  interface UserSkillSetModel extends MasterModel {
@@ -1118,22 +1119,31 @@ declare class InitialProcessComponent implements OnInit {
1118
1119
  currentUserRoles: any;
1119
1120
  userViewRoles: ({
1120
1121
  name: string;
1122
+ subtitle: string;
1121
1123
  value: string;
1122
1124
  img: string;
1123
1125
  selected: boolean;
1124
1126
  code: null;
1125
1127
  id: string;
1126
1128
  roleId: string;
1129
+ tooltip: string;
1130
+ details: string;
1127
1131
  } | {
1128
1132
  name: string;
1133
+ subtitle: string;
1129
1134
  value: string;
1130
1135
  img: string;
1131
1136
  selected: boolean;
1132
1137
  code: ProviderType;
1133
1138
  id: string;
1134
1139
  roleId: string;
1140
+ tooltip: string;
1141
+ details: string;
1135
1142
  })[];
1136
1143
  onCredentialingBack(): void;
1144
+ infoPopupRole: any;
1145
+ openInfoPopup(event: Event, role: any): void;
1146
+ closeInfoPopup(): void;
1137
1147
  selectedUserRole(role: any): void;
1138
1148
  privacyAndTerms: PrivacyAndTerms;
1139
1149
  setPrivacyAndTerms(appType: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",