@dyedurham/search-and-file-widget 1.6.18 → 1.6.19
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/dnd-filing-shell.js +7 -1
- package/package.json +1 -1
package/dnd-filing-shell.js
CHANGED
|
@@ -87408,7 +87408,12 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87408
87408
|
continue;
|
|
87409
87409
|
const email = ("EmailAddress" in payload ? payload.EmailAddress : "") ?? "";
|
|
87410
87410
|
const ceasedRoles = "CeasedAppointedRoles" in payload && Array.isArray(payload.CeasedAppointedRoles) ? payload.CeasedAppointedRoles.map((role) => `${role.PositionFullName} - ${role.CeasedDate} (Appointed ${role.AppointedDate})`) : void 0;
|
|
87411
|
-
|
|
87411
|
+
const name = [
|
|
87412
|
+
toTitleCase(payload.PersonName.FirstName ?? ""),
|
|
87413
|
+
toTitleCase(payload.PersonName.MiddleName ?? ""),
|
|
87414
|
+
toTitleCase(payload.PersonName.LastName ?? "")
|
|
87415
|
+
].filter(Boolean).join(" ");
|
|
87416
|
+
personsMap.set(fullName(payload), __spreadProps(__spreadValues({}, deltaData), { email, ceasedRoles, position: payload.OfficerPositionName, fullName: name }));
|
|
87412
87417
|
}
|
|
87413
87418
|
};
|
|
87414
87419
|
populatePersonsMap(initialAdministrators);
|
|
@@ -87420,6 +87425,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87420
87425
|
"src/app/helpers/initial-return-payload.helper.ts"() {
|
|
87421
87426
|
init_address_utils();
|
|
87422
87427
|
init_transform_utils();
|
|
87428
|
+
init_common_utils();
|
|
87423
87429
|
}
|
|
87424
87430
|
});
|
|
87425
87431
|
|