@hmcts/ccd-case-ui-toolkit 7.0.31 → 7.0.33-node-store-caseworkers
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/shared/components/case-editor/services/case-worker.service.mjs +3 -3
- package/esm2020/lib/shared/components/palette/yes-no/read-yes-no-field.component.mjs +3 -3
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs +4 -4
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs +4 -4
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -8145,9 +8145,9 @@ class CaseworkerService {
|
|
|
8145
8145
|
this.errorService = errorService;
|
|
8146
8146
|
}
|
|
8147
8147
|
getCaseworkers(serviceId) {
|
|
8148
|
-
const url = `${this.appConfig.getWorkAllocationApiUrl()}/
|
|
8148
|
+
const url = `${this.appConfig.getWorkAllocationApiUrl()}/caseworker/getUsersByServiceName`;
|
|
8149
8149
|
return this.http
|
|
8150
|
-
.post(url, {
|
|
8150
|
+
.post(url, { services: [serviceId] })
|
|
8151
8151
|
.pipe(catchError(error => {
|
|
8152
8152
|
this.errorService.setError(error);
|
|
8153
8153
|
return throwError(error);
|
|
@@ -20439,13 +20439,13 @@ ReadYesNoFieldComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Rea
|
|
|
20439
20439
|
i0.ɵɵelementEnd();
|
|
20440
20440
|
} if (rf & 2) {
|
|
20441
20441
|
i0.ɵɵadvance(1);
|
|
20442
|
-
i0.ɵɵtextInterpolate(ctx.formattedValue ? i0.ɵɵpipeBind3(2, 1, ctx.
|
|
20442
|
+
i0.ɵɵtextInterpolate(ctx.formattedValue ? i0.ɵɵpipeBind3(2, 1, ctx.formattedValue, null, ctx.formattedValue) : null);
|
|
20443
20443
|
} }, dependencies: [i1.RpxTranslatePipe], encapsulation: 2 });
|
|
20444
20444
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadYesNoFieldComponent, [{
|
|
20445
20445
|
type: Component,
|
|
20446
20446
|
args: [{
|
|
20447
20447
|
selector: 'ccd-read-yes-no-field',
|
|
20448
|
-
template: `<span class="text-16">{{formattedValue ? (
|
|
20448
|
+
template: `<span class="text-16">{{formattedValue ? (formattedValue | rpxTranslate : null : formattedValue) : null}}</span>`
|
|
20449
20449
|
}]
|
|
20450
20450
|
}], function () { return [{ type: YesNoService }]; }, null); })();
|
|
20451
20451
|
|