cloud-ide-core 2.0.96 → 2.0.98
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/fesm2022/cloud-ide-core.mjs +23 -22
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -15384,28 +15384,29 @@ class CideCoreUserCreateComponent {
|
|
|
15384
15384
|
}
|
|
15385
15385
|
}
|
|
15386
15386
|
resetForm() {
|
|
15387
|
-
// Clear contact addresses FormArray
|
|
15388
|
-
while (this.contactAddressesFormArray.length !== 0) {
|
|
15389
|
-
|
|
15390
|
-
}
|
|
15391
|
-
// Clear documents FormArray
|
|
15392
|
-
while (this.documentsFormArray.length !== 0) {
|
|
15393
|
-
|
|
15394
|
-
}
|
|
15395
|
-
// Clear family details FormArray
|
|
15396
|
-
while (this.familyDetailsFormArray.length !== 0) {
|
|
15397
|
-
|
|
15398
|
-
}
|
|
15399
|
-
// Clear entity mapping FormArray
|
|
15400
|
-
while (this.entityMappingsFormArray.length !== 0) {
|
|
15401
|
-
|
|
15402
|
-
}
|
|
15403
|
-
this.userMasterForm.reset();
|
|
15404
|
-
this.contactAddresses.set([]);
|
|
15405
|
-
this.documents.set([]);
|
|
15406
|
-
this.familyDetails.set([]);
|
|
15407
|
-
this.entityMappings.set([]);
|
|
15408
|
-
this.menuRightsMap.set({});
|
|
15387
|
+
// // Clear contact addresses FormArray
|
|
15388
|
+
// while (this.contactAddressesFormArray.length !== 0) {
|
|
15389
|
+
// this.contactAddressesFormArray.removeAt(0);
|
|
15390
|
+
// }
|
|
15391
|
+
// // Clear documents FormArray
|
|
15392
|
+
// while (this.documentsFormArray.length !== 0) {
|
|
15393
|
+
// this.documentsFormArray.removeAt(0);
|
|
15394
|
+
// }
|
|
15395
|
+
// // Clear family details FormArray
|
|
15396
|
+
// while (this.familyDetailsFormArray.length !== 0) {
|
|
15397
|
+
// this.familyDetailsFormArray.removeAt(0);
|
|
15398
|
+
// }
|
|
15399
|
+
// // Clear entity mapping FormArray
|
|
15400
|
+
// while (this.entityMappingsFormArray.length !== 0) {
|
|
15401
|
+
// this.entityMappingsFormArray.removeAt(0);
|
|
15402
|
+
// }
|
|
15403
|
+
// this.userMasterForm.reset();
|
|
15404
|
+
// this.contactAddresses.set([]);
|
|
15405
|
+
// this.documents.set([]);
|
|
15406
|
+
// this.familyDetails.set([]);
|
|
15407
|
+
// this.entityMappings.set([]);
|
|
15408
|
+
// this.menuRightsMap.set({});
|
|
15409
|
+
console.log(this.userMasterForm, "userMasterFormuserMasterForm");
|
|
15409
15410
|
}
|
|
15410
15411
|
/**
|
|
15411
15412
|
* Go back to user list
|