@hmcts/ccd-case-ui-toolkit 6.16.0-query-management-raise-query-function-v4 → 6.16.0-query-management-respond-backlink-text
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/bundles/hmcts-ccd-case-ui-toolkit.umd.js +86 -234
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
- package/esm2015/lib/shared/components/palette/palette.module.js +11 -8
- package/esm2015/lib/shared/components/palette/query-management/components/index.js +1 -2
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.js +64 -81
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.js +21 -19
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +87 -225
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +29 -30
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/query-management/components/index.d.ts +0 -1
- package/lib/shared/components/palette/query-management/components/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.js +0 -125
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts +0 -20
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts.map +0 -1
|
@@ -18156,126 +18156,6 @@ QueryListComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryListComponent, se
|
|
|
18156
18156
|
type: Output
|
|
18157
18157
|
}] }); })();
|
|
18158
18158
|
|
|
18159
|
-
class QueryWriteDateInputComponent {
|
|
18160
|
-
constructor() {
|
|
18161
|
-
this.disabled = false;
|
|
18162
|
-
}
|
|
18163
|
-
writeValue(date) {
|
|
18164
|
-
if (date instanceof Date && !isNaN(date.getTime())) {
|
|
18165
|
-
this.day = date.getDate();
|
|
18166
|
-
this.month = date.getMonth() + 1; // Months are zero-based
|
|
18167
|
-
this.year = date.getFullYear();
|
|
18168
|
-
}
|
|
18169
|
-
else {
|
|
18170
|
-
this.day = null;
|
|
18171
|
-
this.month = null;
|
|
18172
|
-
this.year = null;
|
|
18173
|
-
}
|
|
18174
|
-
}
|
|
18175
|
-
registerOnChange(fn) {
|
|
18176
|
-
this.onChange = fn;
|
|
18177
|
-
}
|
|
18178
|
-
registerOnTouched(fn) {
|
|
18179
|
-
this.onTouched = fn;
|
|
18180
|
-
}
|
|
18181
|
-
setDisabledState(isDisabled) {
|
|
18182
|
-
this.disabled = isDisabled;
|
|
18183
|
-
}
|
|
18184
|
-
updateDate() {
|
|
18185
|
-
const updatedValue = this.onChange && this.isValidDateInput() ?
|
|
18186
|
-
new Date(this.year, this.month - 1, this.day)
|
|
18187
|
-
: null;
|
|
18188
|
-
this.onChange(updatedValue);
|
|
18189
|
-
this.onTouched();
|
|
18190
|
-
}
|
|
18191
|
-
isValidDateInput() {
|
|
18192
|
-
const isValidDay = this.day >= 1 && this.day <= 31;
|
|
18193
|
-
const isValidMonth = this.month >= 1 && this.month <= 12;
|
|
18194
|
-
const isValidYear = this.year >= 0;
|
|
18195
|
-
return isValidDay && isValidMonth && isValidYear;
|
|
18196
|
-
}
|
|
18197
|
-
}
|
|
18198
|
-
QueryWriteDateInputComponent.ɵfac = function QueryWriteDateInputComponent_Factory(t) { return new (t || QueryWriteDateInputComponent)(); };
|
|
18199
|
-
QueryWriteDateInputComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteDateInputComponent, selectors: [["ccd-query-write-date-input"]], inputs: { formControlName: "formControlName" }, features: [i0.ɵɵProvidersFeature([
|
|
18200
|
-
{
|
|
18201
|
-
provide: NG_VALUE_ACCESSOR,
|
|
18202
|
-
useExisting: forwardRef(() => QueryWriteDateInputComponent),
|
|
18203
|
-
multi: true
|
|
18204
|
-
}
|
|
18205
|
-
])], decls: 19, vars: 24, consts: [[1, "govuk-date-input", 3, "id"], [1, "govuk-date-input__item"], [1, "govuk-form-group"], [1, "govuk-label", "govuk-date-input__label", 3, "for"], ["type", "text", "inputmode", "numeric", 1, "govuk-input", "govuk-date-input__input", "govuk-input--width-2", 3, "id", "name", "ngModel", "disabled", "ngModelChange", "input"], ["id", "formControlName + '-year'", "type", "text", "inputmode", "numeric", 1, "govuk-input", "govuk-date-input__input", "govuk-input--width-4", 3, "name", "ngModel", "disabled", "ngModelChange", "input"]], template: function QueryWriteDateInputComponent_Template(rf, ctx) { if (rf & 1) {
|
|
18206
|
-
i0.ɵɵelementStart(0, "div", 0);
|
|
18207
|
-
i0.ɵɵelementStart(1, "div", 1);
|
|
18208
|
-
i0.ɵɵelementStart(2, "div", 2);
|
|
18209
|
-
i0.ɵɵelementStart(3, "label", 3);
|
|
18210
|
-
i0.ɵɵtext(4);
|
|
18211
|
-
i0.ɵɵpipe(5, "rpxTranslate");
|
|
18212
|
-
i0.ɵɵelementEnd();
|
|
18213
|
-
i0.ɵɵelementStart(6, "input", 4);
|
|
18214
|
-
i0.ɵɵlistener("ngModelChange", function QueryWriteDateInputComponent_Template_input_ngModelChange_6_listener($event) { return ctx.day = $event; })("input", function QueryWriteDateInputComponent_Template_input_input_6_listener() { return ctx.updateDate(); });
|
|
18215
|
-
i0.ɵɵelementEnd();
|
|
18216
|
-
i0.ɵɵelementEnd();
|
|
18217
|
-
i0.ɵɵelementEnd();
|
|
18218
|
-
i0.ɵɵelementStart(7, "div", 1);
|
|
18219
|
-
i0.ɵɵelementStart(8, "div", 2);
|
|
18220
|
-
i0.ɵɵelementStart(9, "label", 3);
|
|
18221
|
-
i0.ɵɵtext(10);
|
|
18222
|
-
i0.ɵɵpipe(11, "rpxTranslate");
|
|
18223
|
-
i0.ɵɵelementEnd();
|
|
18224
|
-
i0.ɵɵelementStart(12, "input", 4);
|
|
18225
|
-
i0.ɵɵlistener("ngModelChange", function QueryWriteDateInputComponent_Template_input_ngModelChange_12_listener($event) { return ctx.month = $event; })("input", function QueryWriteDateInputComponent_Template_input_input_12_listener() { return ctx.updateDate(); });
|
|
18226
|
-
i0.ɵɵelementEnd();
|
|
18227
|
-
i0.ɵɵelementEnd();
|
|
18228
|
-
i0.ɵɵelementEnd();
|
|
18229
|
-
i0.ɵɵelementStart(13, "div", 1);
|
|
18230
|
-
i0.ɵɵelementStart(14, "div", 2);
|
|
18231
|
-
i0.ɵɵelementStart(15, "label", 3);
|
|
18232
|
-
i0.ɵɵtext(16);
|
|
18233
|
-
i0.ɵɵpipe(17, "rpxTranslate");
|
|
18234
|
-
i0.ɵɵelementEnd();
|
|
18235
|
-
i0.ɵɵelementStart(18, "input", 5);
|
|
18236
|
-
i0.ɵɵlistener("ngModelChange", function QueryWriteDateInputComponent_Template_input_ngModelChange_18_listener($event) { return ctx.year = $event; })("input", function QueryWriteDateInputComponent_Template_input_input_18_listener() { return ctx.updateDate(); });
|
|
18237
|
-
i0.ɵɵelementEnd();
|
|
18238
|
-
i0.ɵɵelementEnd();
|
|
18239
|
-
i0.ɵɵelementEnd();
|
|
18240
|
-
i0.ɵɵelementEnd();
|
|
18241
|
-
} if (rf & 2) {
|
|
18242
|
-
i0.ɵɵproperty("id", ctx.formControlName);
|
|
18243
|
-
i0.ɵɵadvance(3);
|
|
18244
|
-
i0.ɵɵproperty("for", ctx.formControlName + "-day");
|
|
18245
|
-
i0.ɵɵadvance(1);
|
|
18246
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 18, "Day"), " ");
|
|
18247
|
-
i0.ɵɵadvance(2);
|
|
18248
|
-
i0.ɵɵproperty("id", ctx.formControlName + "-day")("name", ctx.formControlName + "-day")("ngModel", ctx.day)("disabled", ctx.disabled);
|
|
18249
|
-
i0.ɵɵadvance(3);
|
|
18250
|
-
i0.ɵɵproperty("for", ctx.formControlName + "-month");
|
|
18251
|
-
i0.ɵɵadvance(1);
|
|
18252
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(11, 20, "Month"), " ");
|
|
18253
|
-
i0.ɵɵadvance(2);
|
|
18254
|
-
i0.ɵɵproperty("id", ctx.formControlName + "-month")("name", ctx.formControlName + "-month")("ngModel", ctx.month)("disabled", ctx.disabled);
|
|
18255
|
-
i0.ɵɵadvance(3);
|
|
18256
|
-
i0.ɵɵproperty("for", ctx.formControlName + "-year");
|
|
18257
|
-
i0.ɵɵadvance(1);
|
|
18258
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(17, 22, "Year"), " ");
|
|
18259
|
-
i0.ɵɵadvance(2);
|
|
18260
|
-
i0.ɵɵproperty("name", ctx.formControlName + "-year")("ngModel", ctx.year)("disabled", ctx.disabled);
|
|
18261
|
-
} }, directives: [i3.DefaultValueAccessor, i3.NgControlStatus, i3.NgModel], pipes: [i1.RpxTranslatePipe], encapsulation: 2 });
|
|
18262
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(QueryWriteDateInputComponent, [{
|
|
18263
|
-
type: Component,
|
|
18264
|
-
args: [{
|
|
18265
|
-
selector: 'ccd-query-write-date-input',
|
|
18266
|
-
templateUrl: './query-write-date-input.component.html',
|
|
18267
|
-
providers: [
|
|
18268
|
-
{
|
|
18269
|
-
provide: NG_VALUE_ACCESSOR,
|
|
18270
|
-
useExisting: forwardRef(() => QueryWriteDateInputComponent),
|
|
18271
|
-
multi: true
|
|
18272
|
-
}
|
|
18273
|
-
]
|
|
18274
|
-
}]
|
|
18275
|
-
}], null, { formControlName: [{
|
|
18276
|
-
type: Input
|
|
18277
|
-
}] }); })();
|
|
18278
|
-
|
|
18279
18159
|
class QueryWriteAddDocumentsComponent {
|
|
18280
18160
|
constructor() {
|
|
18281
18161
|
this.documentFormGroup = new FormGroup({});
|
|
@@ -18337,7 +18217,7 @@ QueryWriteAddDocumentsComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWrit
|
|
|
18337
18217
|
type: Output
|
|
18338
18218
|
}] }); })();
|
|
18339
18219
|
|
|
18340
|
-
function
|
|
18220
|
+
function QueryWriteRaiseQueryComponent_p_22_Template(rf, ctx) { if (rf & 1) {
|
|
18341
18221
|
i0.ɵɵelementStart(0, "p", 27);
|
|
18342
18222
|
i0.ɵɵelementStart(1, "span", 28);
|
|
18343
18223
|
i0.ɵɵtext(2);
|
|
@@ -18352,7 +18232,7 @@ function QueryWriteRaiseQueryComponent_p_21_Template(rf, ctx) { if (rf & 1) {
|
|
|
18352
18232
|
i0.ɵɵadvance(2);
|
|
18353
18233
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a message"), " ");
|
|
18354
18234
|
} }
|
|
18355
|
-
function
|
|
18235
|
+
function QueryWriteRaiseQueryComponent_p_32_Template(rf, ctx) { if (rf & 1) {
|
|
18356
18236
|
i0.ɵɵelementStart(0, "p", 29);
|
|
18357
18237
|
i0.ɵɵelementStart(1, "span", 28);
|
|
18358
18238
|
i0.ɵɵtext(2);
|
|
@@ -18367,7 +18247,7 @@ function QueryWriteRaiseQueryComponent_p_31_Template(rf, ctx) { if (rf & 1) {
|
|
|
18367
18247
|
i0.ɵɵadvance(2);
|
|
18368
18248
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a subject"), " ");
|
|
18369
18249
|
} }
|
|
18370
|
-
function
|
|
18250
|
+
function QueryWriteRaiseQueryComponent_p_42_Template(rf, ctx) { if (rf & 1) {
|
|
18371
18251
|
i0.ɵɵelementStart(0, "p", 30);
|
|
18372
18252
|
i0.ɵɵelementStart(1, "span", 28);
|
|
18373
18253
|
i0.ɵɵtext(2);
|
|
@@ -18382,26 +18262,10 @@ function QueryWriteRaiseQueryComponent_p_41_Template(rf, ctx) { if (rf & 1) {
|
|
|
18382
18262
|
i0.ɵɵadvance(2);
|
|
18383
18263
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a query body"), " ");
|
|
18384
18264
|
} }
|
|
18385
|
-
function QueryWriteRaiseQueryComponent_ng_container_61_Template(rf, ctx) { if (rf & 1) {
|
|
18386
|
-
i0.ɵɵelementContainerStart(0);
|
|
18387
|
-
i0.ɵɵelementStart(1, "div", 31);
|
|
18388
|
-
i0.ɵɵelementStart(2, "fieldset", 32);
|
|
18389
|
-
i0.ɵɵelementStart(3, "label", 33);
|
|
18390
|
-
i0.ɵɵtext(4);
|
|
18391
|
-
i0.ɵɵpipe(5, "rpxTranslate");
|
|
18392
|
-
i0.ɵɵelementEnd();
|
|
18393
|
-
i0.ɵɵelement(6, "ccd-query-write-date-input", 34);
|
|
18394
|
-
i0.ɵɵelementEnd();
|
|
18395
|
-
i0.ɵɵelementEnd();
|
|
18396
|
-
i0.ɵɵelementContainerEnd();
|
|
18397
|
-
} if (rf & 2) {
|
|
18398
|
-
i0.ɵɵadvance(4);
|
|
18399
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 1, "Hearing Date"), " ");
|
|
18400
|
-
} }
|
|
18401
18265
|
class QueryWriteRaiseQueryComponent {
|
|
18402
18266
|
}
|
|
18403
18267
|
QueryWriteRaiseQueryComponent.ɵfac = function QueryWriteRaiseQueryComponent_Factory(t) { return new (t || QueryWriteRaiseQueryComponent)(); };
|
|
18404
|
-
QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 62, vars:
|
|
18268
|
+
QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 62, vars: 60, consts: [[1, "govuk-!-margin-bottom-6"], [1, "govuk-caption-l"], [1, "govuk-heading-l", "govuk-!-margin-bottom-4"], [1, "govuk-!-margin-bottom-4"], [3, "formGroup"], [1, "govuk-form-group"], [1, "govuk-label-wrapper"], ["for", "query-raise-fullName", 1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["id", "query-raise-fullName-hint", 1, "govuk-hint"], ["id", "query-raise-fullName-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-raise-fullName", "name", "query-raise-fullName", "type", "text", 1, "govuk-input", 3, "formControlName"], ["for", "query-raise-subject", 1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["id", "query-raise-subject-hint", 1, "govuk-hint"], ["id", "query-raise-subject-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-raise-subject", "name", "query-raise-subject", "type", "text", 1, "govuk-input", 3, "formControlName"], ["for", "query-raise-body", 1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["id", "query-raise-body-hint", 1, "govuk-hint"], ["id", "query-raise-body-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-raise-body", "name", "query-body", "rows", "5", "aria-describedby", "query-body-hint query-body-error", 1, "govuk-textarea", 3, "formControlName"], [1, "govuk-fieldset"], [1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["data-module", "govuk-radios", 1, "govuk-radios", "govuk-radios--inline"], [1, "govuk-radios__item"], ["id", "query-raise-isHearingRelated-yes", "name", "query-raise-isHearingRelated-yes", "type", "radio", 1, "govuk-radios__input", 3, "checked", "value"], ["for", "query-raise-isHearingRelated-yes", 1, "govuk-label", "govuk-radios__label"], ["id", "query-raise-isHearingRelated-no", "name", "query-raise-isHearingRelated-no", "type", "radio", 1, "govuk-radios__input", 3, "checked", "value"], ["for", "query-raise-isHearingRelated-no", 1, "govuk-label", "govuk-radios__label"], ["id", "query-raise-fullName-error", 1, "govuk-error-message"], [1, "govuk-visually-hidden"], ["id", "query-raise-subject-error", 1, "govuk-error-message"], ["id", "query-raise-body-error", 1, "govuk-error-message"]], template: function QueryWriteRaiseQueryComponent_Template(rf, ctx) { if (rf & 1) {
|
|
18405
18269
|
i0.ɵɵelementStart(0, "div");
|
|
18406
18270
|
i0.ɵɵelementStart(1, "div", 0);
|
|
18407
18271
|
i0.ɵɵelementStart(2, "div", 1);
|
|
@@ -18418,77 +18282,78 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18418
18282
|
i0.ɵɵelementEnd();
|
|
18419
18283
|
i0.ɵɵelement(10, "hr");
|
|
18420
18284
|
i0.ɵɵelementStart(11, "div", 3);
|
|
18421
|
-
i0.ɵɵelementStart(12, "div");
|
|
18422
|
-
i0.ɵɵelementStart(13, "div"
|
|
18285
|
+
i0.ɵɵelementStart(12, "div", 4);
|
|
18286
|
+
i0.ɵɵelementStart(13, "div");
|
|
18423
18287
|
i0.ɵɵelementStart(14, "div", 5);
|
|
18424
|
-
i0.ɵɵelementStart(15, "
|
|
18425
|
-
i0.ɵɵ
|
|
18426
|
-
i0.ɵɵ
|
|
18288
|
+
i0.ɵɵelementStart(15, "div", 6);
|
|
18289
|
+
i0.ɵɵelementStart(16, "label", 7);
|
|
18290
|
+
i0.ɵɵtext(17);
|
|
18291
|
+
i0.ɵɵpipe(18, "rpxTranslate");
|
|
18427
18292
|
i0.ɵɵelementEnd();
|
|
18428
18293
|
i0.ɵɵelementEnd();
|
|
18429
|
-
i0.ɵɵelementStart(
|
|
18430
|
-
i0.ɵɵtext(
|
|
18431
|
-
i0.ɵɵpipe(
|
|
18294
|
+
i0.ɵɵelementStart(19, "div", 8);
|
|
18295
|
+
i0.ɵɵtext(20);
|
|
18296
|
+
i0.ɵɵpipe(21, "rpxTranslate");
|
|
18432
18297
|
i0.ɵɵelementEnd();
|
|
18433
|
-
i0.ɵɵtemplate(
|
|
18434
|
-
i0.ɵɵelement(
|
|
18298
|
+
i0.ɵɵtemplate(22, QueryWriteRaiseQueryComponent_p_22_Template, 6, 6, "p", 9);
|
|
18299
|
+
i0.ɵɵelement(23, "input", 10);
|
|
18435
18300
|
i0.ɵɵelementEnd();
|
|
18436
|
-
i0.ɵɵelementStart(23, "div", 4);
|
|
18437
18301
|
i0.ɵɵelementStart(24, "div", 5);
|
|
18438
|
-
i0.ɵɵelementStart(25, "
|
|
18439
|
-
i0.ɵɵ
|
|
18440
|
-
i0.ɵɵ
|
|
18302
|
+
i0.ɵɵelementStart(25, "div", 6);
|
|
18303
|
+
i0.ɵɵelementStart(26, "label", 11);
|
|
18304
|
+
i0.ɵɵtext(27);
|
|
18305
|
+
i0.ɵɵpipe(28, "rpxTranslate");
|
|
18441
18306
|
i0.ɵɵelementEnd();
|
|
18442
18307
|
i0.ɵɵelementEnd();
|
|
18443
|
-
i0.ɵɵelementStart(
|
|
18444
|
-
i0.ɵɵtext(
|
|
18445
|
-
i0.ɵɵpipe(
|
|
18308
|
+
i0.ɵɵelementStart(29, "div", 12);
|
|
18309
|
+
i0.ɵɵtext(30);
|
|
18310
|
+
i0.ɵɵpipe(31, "rpxTranslate");
|
|
18446
18311
|
i0.ɵɵelementEnd();
|
|
18447
|
-
i0.ɵɵtemplate(
|
|
18448
|
-
i0.ɵɵelement(
|
|
18312
|
+
i0.ɵɵtemplate(32, QueryWriteRaiseQueryComponent_p_32_Template, 6, 6, "p", 13);
|
|
18313
|
+
i0.ɵɵelement(33, "input", 14);
|
|
18449
18314
|
i0.ɵɵelementEnd();
|
|
18450
|
-
i0.ɵɵelementStart(33, "div", 4);
|
|
18451
18315
|
i0.ɵɵelementStart(34, "div", 5);
|
|
18452
|
-
i0.ɵɵelementStart(35, "
|
|
18453
|
-
i0.ɵɵ
|
|
18454
|
-
i0.ɵɵ
|
|
18316
|
+
i0.ɵɵelementStart(35, "div", 6);
|
|
18317
|
+
i0.ɵɵelementStart(36, "label", 15);
|
|
18318
|
+
i0.ɵɵtext(37);
|
|
18319
|
+
i0.ɵɵpipe(38, "rpxTranslate");
|
|
18455
18320
|
i0.ɵɵelementEnd();
|
|
18456
18321
|
i0.ɵɵelementEnd();
|
|
18457
|
-
i0.ɵɵelementStart(
|
|
18458
|
-
i0.ɵɵtext(
|
|
18459
|
-
i0.ɵɵpipe(
|
|
18322
|
+
i0.ɵɵelementStart(39, "div", 16);
|
|
18323
|
+
i0.ɵɵtext(40);
|
|
18324
|
+
i0.ɵɵpipe(41, "rpxTranslate");
|
|
18460
18325
|
i0.ɵɵelementEnd();
|
|
18461
|
-
i0.ɵɵtemplate(
|
|
18462
|
-
i0.ɵɵelementStart(
|
|
18463
|
-
i0.ɵɵtext(
|
|
18326
|
+
i0.ɵɵtemplate(42, QueryWriteRaiseQueryComponent_p_42_Template, 6, 6, "p", 17);
|
|
18327
|
+
i0.ɵɵelementStart(43, "textarea", 18);
|
|
18328
|
+
i0.ɵɵtext(44, " ");
|
|
18464
18329
|
i0.ɵɵelementEnd();
|
|
18465
18330
|
i0.ɵɵelementEnd();
|
|
18466
|
-
i0.ɵɵelementStart(
|
|
18467
|
-
i0.ɵɵelementStart(
|
|
18468
|
-
i0.ɵɵelementStart(
|
|
18469
|
-
i0.ɵɵelementStart(
|
|
18470
|
-
i0.ɵɵtext(
|
|
18471
|
-
i0.ɵɵpipe(
|
|
18331
|
+
i0.ɵɵelementStart(45, "div", 5);
|
|
18332
|
+
i0.ɵɵelementStart(46, "fieldset", 19);
|
|
18333
|
+
i0.ɵɵelementStart(47, "legend");
|
|
18334
|
+
i0.ɵɵelementStart(48, "label", 20);
|
|
18335
|
+
i0.ɵɵtext(49);
|
|
18336
|
+
i0.ɵɵpipe(50, "rpxTranslate");
|
|
18472
18337
|
i0.ɵɵelementEnd();
|
|
18473
18338
|
i0.ɵɵelementEnd();
|
|
18474
|
-
i0.ɵɵelementStart(50, "div", 20);
|
|
18475
18339
|
i0.ɵɵelementStart(51, "div", 21);
|
|
18476
|
-
i0.ɵɵ
|
|
18477
|
-
i0.ɵɵ
|
|
18478
|
-
i0.ɵɵ
|
|
18479
|
-
i0.ɵɵ
|
|
18340
|
+
i0.ɵɵelementStart(52, "div", 22);
|
|
18341
|
+
i0.ɵɵelement(53, "input", 23);
|
|
18342
|
+
i0.ɵɵelementStart(54, "label", 24);
|
|
18343
|
+
i0.ɵɵtext(55);
|
|
18344
|
+
i0.ɵɵpipe(56, "rpxTranslate");
|
|
18345
|
+
i0.ɵɵelementEnd();
|
|
18480
18346
|
i0.ɵɵelementEnd();
|
|
18347
|
+
i0.ɵɵelementStart(57, "div", 22);
|
|
18348
|
+
i0.ɵɵelement(58, "input", 25);
|
|
18349
|
+
i0.ɵɵelementStart(59, "label", 26);
|
|
18350
|
+
i0.ɵɵtext(60);
|
|
18351
|
+
i0.ɵɵpipe(61, "rpxTranslate");
|
|
18481
18352
|
i0.ɵɵelementEnd();
|
|
18482
|
-
i0.ɵɵelementStart(56, "div", 21);
|
|
18483
|
-
i0.ɵɵelement(57, "input", 24);
|
|
18484
|
-
i0.ɵɵelementStart(58, "label", 25);
|
|
18485
|
-
i0.ɵɵtext(59);
|
|
18486
|
-
i0.ɵɵpipe(60, "rpxTranslate");
|
|
18487
18353
|
i0.ɵɵelementEnd();
|
|
18488
18354
|
i0.ɵɵelementEnd();
|
|
18489
18355
|
i0.ɵɵelementEnd();
|
|
18490
18356
|
i0.ɵɵelementEnd();
|
|
18491
|
-
i0.ɵɵtemplate(61, QueryWriteRaiseQueryComponent_ng_container_61_Template, 7, 3, "ng-container", 26);
|
|
18492
18357
|
i0.ɵɵelementEnd();
|
|
18493
18358
|
i0.ɵɵelementEnd();
|
|
18494
18359
|
i0.ɵɵelementEnd();
|
|
@@ -18504,17 +18369,17 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18504
18369
|
let tmp_18_0 = null;
|
|
18505
18370
|
let tmp_19_0 = null;
|
|
18506
18371
|
i0.ɵɵadvance(3);
|
|
18507
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4,
|
|
18372
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 34, "Raise a query"));
|
|
18508
18373
|
i0.ɵɵadvance(3);
|
|
18509
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7,
|
|
18510
|
-
i0.ɵɵadvance(
|
|
18374
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 36, "Enter query details"));
|
|
18375
|
+
i0.ɵɵadvance(6);
|
|
18511
18376
|
i0.ɵɵproperty("formGroup", ctx.formGroup);
|
|
18512
18377
|
i0.ɵɵadvance(2);
|
|
18513
18378
|
i0.ɵɵclassProp("govuk-form-group--error", (tmp_3_0 = ctx.formGroup.get("fullName")) == null ? null : tmp_3_0.errors == null ? null : tmp_3_0.errors.length);
|
|
18514
18379
|
i0.ɵɵadvance(3);
|
|
18515
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18380
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(18, 38, "Full name"), " ");
|
|
18516
18381
|
i0.ɵɵadvance(3);
|
|
18517
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18382
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(21, 40, "Your full name must be included here"), " ");
|
|
18518
18383
|
i0.ɵɵadvance(2);
|
|
18519
18384
|
i0.ɵɵproperty("ngIf", (tmp_6_0 = ctx.formGroup.get("body")) == null ? null : tmp_6_0.errors == null ? null : tmp_6_0.errors.length);
|
|
18520
18385
|
i0.ɵɵadvance(1);
|
|
@@ -18523,9 +18388,9 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18523
18388
|
i0.ɵɵadvance(1);
|
|
18524
18389
|
i0.ɵɵclassProp("govuk-form-group--error", (tmp_9_0 = ctx.formGroup.get("subject")) == null ? null : tmp_9_0.errors == null ? null : tmp_9_0.errors.length);
|
|
18525
18390
|
i0.ɵɵadvance(3);
|
|
18526
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18391
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(28, 42, "Query subject"), " ");
|
|
18527
18392
|
i0.ɵɵadvance(3);
|
|
18528
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18393
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(31, 44, "The subject should be a summary of your query"), " ");
|
|
18529
18394
|
i0.ɵɵadvance(2);
|
|
18530
18395
|
i0.ɵɵproperty("ngIf", (tmp_12_0 = ctx.formGroup.get("body")) == null ? null : tmp_12_0.errors == null ? null : tmp_12_0.errors.length);
|
|
18531
18396
|
i0.ɵɵadvance(1);
|
|
@@ -18534,26 +18399,24 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18534
18399
|
i0.ɵɵadvance(1);
|
|
18535
18400
|
i0.ɵɵclassProp("govuk-form-group--error", (tmp_15_0 = ctx.formGroup.get("body")) == null ? null : tmp_15_0.errors == null ? null : tmp_15_0.errors.length);
|
|
18536
18401
|
i0.ɵɵadvance(3);
|
|
18537
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18402
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(38, 46, "Query body"), " ");
|
|
18538
18403
|
i0.ɵɵadvance(3);
|
|
18539
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18404
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(41, 48, "Include as many details as possible so case workers can respond to your query"), " ");
|
|
18540
18405
|
i0.ɵɵadvance(2);
|
|
18541
18406
|
i0.ɵɵproperty("ngIf", (tmp_18_0 = ctx.formGroup.get("body")) == null ? null : tmp_18_0.errors == null ? null : tmp_18_0.errors.length);
|
|
18542
18407
|
i0.ɵɵadvance(1);
|
|
18543
18408
|
i0.ɵɵclassProp("govuk-textarea--error", (tmp_19_0 = ctx.formGroup.get("body")) == null ? null : tmp_19_0.errors == null ? null : tmp_19_0.errors.length);
|
|
18544
18409
|
i0.ɵɵproperty("formControlName", "body");
|
|
18545
18410
|
i0.ɵɵadvance(6);
|
|
18546
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18411
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(50, 50, "Is the query hearing related?"), " ");
|
|
18547
18412
|
i0.ɵɵadvance(4);
|
|
18548
18413
|
i0.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === true)("value", true);
|
|
18549
18414
|
i0.ɵɵadvance(2);
|
|
18550
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(
|
|
18415
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(56, 52, "Is the query hearing related?", null, "Yes"), " ");
|
|
18551
18416
|
i0.ɵɵadvance(3);
|
|
18552
18417
|
i0.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === false)("value", false);
|
|
18553
18418
|
i0.ɵɵadvance(2);
|
|
18554
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(
|
|
18555
|
-
i0.ɵɵadvance(2);
|
|
18556
|
-
i0.ɵɵproperty("ngIf", ctx.formGroup.get("isHearingRelated").value);
|
|
18419
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(61, 56, "Is the query hearing related?", null, "No"), " ");
|
|
18557
18420
|
} }, encapsulation: 2 });
|
|
18558
18421
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(QueryWriteRaiseQueryComponent, [{
|
|
18559
18422
|
type: Component,
|
|
@@ -18565,7 +18428,7 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18565
18428
|
type: Input
|
|
18566
18429
|
}] }); })();
|
|
18567
18430
|
|
|
18568
|
-
function
|
|
18431
|
+
function QueryWriteRespondToQueryComponent_p_27_Template(rf, ctx) { if (rf & 1) {
|
|
18569
18432
|
i0.ɵɵelementStart(0, "p", 15);
|
|
18570
18433
|
i0.ɵɵelementStart(1, "span", 16);
|
|
18571
18434
|
i0.ɵɵtext(2);
|
|
@@ -18583,7 +18446,7 @@ function QueryWriteRespondToQueryComponent_p_26_Template(rf, ctx) { if (rf & 1)
|
|
|
18583
18446
|
class QueryWriteRespondToQueryComponent {
|
|
18584
18447
|
}
|
|
18585
18448
|
QueryWriteRespondToQueryComponent.ɵfac = function QueryWriteRespondToQueryComponent_Factory(t) { return new (t || QueryWriteRespondToQueryComponent)(); };
|
|
18586
|
-
QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRespondToQueryComponent, selectors: [["ccd-query-write-respond-to-query"]], inputs: { queryItem: "queryItem", formGroup: "formGroup" }, decls:
|
|
18449
|
+
QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRespondToQueryComponent, selectors: [["ccd-query-write-respond-to-query"]], inputs: { queryItem: "queryItem", formGroup: "formGroup" }, decls: 30, vars: 23, consts: [[1, "govuk-!-margin-bottom-2"], ["href", "javascript:void(0)", 1, "govuk-back-link", "govuk-!-margin-top-0"], [1, "govuk-!-margin-bottom-6"], [1, "govuk-caption-l"], [1, "govuk-heading-l", "govuk-!-margin-bottom-0"], [1, "govuk-!-margin-bottom-4"], [3, "queryItem"], [1, "query-respond"], [1, "govuk-heading-m"], [3, "formGroup"], [1, "govuk-form-group", "body-textarea"], [1, "govuk-label-wrapper"], ["for", "query-body", 1, "govuk-label", "govuk-!-font-weight-bold"], ["id", "query-body-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-body", "name", "query-body", "rows", "5", "aria-describedby", "query-body-hint query-body-error", 1, "govuk-textarea", 3, "formControlName"], ["id", "query-body-error", 1, "govuk-error-message"], [1, "govuk-visually-hidden"]], template: function QueryWriteRespondToQueryComponent_Template(rf, ctx) { if (rf & 1) {
|
|
18587
18450
|
i0.ɵɵelementStart(0, "div", 0);
|
|
18588
18451
|
i0.ɵɵelementStart(1, "a", 1);
|
|
18589
18452
|
i0.ɵɵtext(2);
|
|
@@ -18609,21 +18472,23 @@ QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWr
|
|
|
18609
18472
|
i0.ɵɵelementEnd();
|
|
18610
18473
|
i0.ɵɵelementEnd();
|
|
18611
18474
|
i0.ɵɵelementStart(16, "div", 7);
|
|
18612
|
-
i0.ɵɵelementStart(17, "
|
|
18613
|
-
i0.ɵɵ
|
|
18614
|
-
i0.ɵɵ
|
|
18475
|
+
i0.ɵɵelementStart(17, "div", 5);
|
|
18476
|
+
i0.ɵɵelementStart(18, "h1", 8);
|
|
18477
|
+
i0.ɵɵtext(19);
|
|
18478
|
+
i0.ɵɵpipe(20, "rpxTranslate");
|
|
18615
18479
|
i0.ɵɵelementEnd();
|
|
18616
|
-
i0.ɵɵelementStart(
|
|
18617
|
-
i0.ɵɵelementStart(
|
|
18618
|
-
i0.ɵɵelementStart(
|
|
18619
|
-
i0.ɵɵelementStart(
|
|
18620
|
-
i0.ɵɵtext(
|
|
18621
|
-
i0.ɵɵpipe(
|
|
18480
|
+
i0.ɵɵelementStart(21, "div", 9);
|
|
18481
|
+
i0.ɵɵelementStart(22, "div", 10);
|
|
18482
|
+
i0.ɵɵelementStart(23, "div", 11);
|
|
18483
|
+
i0.ɵɵelementStart(24, "label", 12);
|
|
18484
|
+
i0.ɵɵtext(25);
|
|
18485
|
+
i0.ɵɵpipe(26, "rpxTranslate");
|
|
18622
18486
|
i0.ɵɵelementEnd();
|
|
18623
18487
|
i0.ɵɵelementEnd();
|
|
18624
|
-
i0.ɵɵtemplate(
|
|
18625
|
-
i0.ɵɵelementStart(
|
|
18626
|
-
i0.ɵɵtext(
|
|
18488
|
+
i0.ɵɵtemplate(27, QueryWriteRespondToQueryComponent_p_27_Template, 6, 6, "p", 13);
|
|
18489
|
+
i0.ɵɵelementStart(28, "textarea", 14);
|
|
18490
|
+
i0.ɵɵtext(29, " ");
|
|
18491
|
+
i0.ɵɵelementEnd();
|
|
18627
18492
|
i0.ɵɵelementEnd();
|
|
18628
18493
|
i0.ɵɵelementEnd();
|
|
18629
18494
|
i0.ɵɵelementEnd();
|
|
@@ -18633,21 +18498,21 @@ QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWr
|
|
|
18633
18498
|
let tmp_8_0 = null;
|
|
18634
18499
|
let tmp_9_0 = null;
|
|
18635
18500
|
i0.ɵɵadvance(2);
|
|
18636
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 13, "
|
|
18501
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 13, "Cancel and return to tasks"));
|
|
18637
18502
|
i0.ɵɵadvance(5);
|
|
18638
18503
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 15, "Respond to query"));
|
|
18639
18504
|
i0.ɵɵadvance(3);
|
|
18640
18505
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(11, 17, "Query details"));
|
|
18641
18506
|
i0.ɵɵadvance(5);
|
|
18642
18507
|
i0.ɵɵproperty("queryItem", ctx.queryItem);
|
|
18643
|
-
i0.ɵɵadvance(
|
|
18644
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(
|
|
18508
|
+
i0.ɵɵadvance(4);
|
|
18509
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(20, 19, "Respond to a query"));
|
|
18645
18510
|
i0.ɵɵadvance(2);
|
|
18646
18511
|
i0.ɵɵproperty("formGroup", ctx.formGroup);
|
|
18647
18512
|
i0.ɵɵadvance(1);
|
|
18648
18513
|
i0.ɵɵclassProp("govuk-form-group--error", (tmp_6_0 = ctx.formGroup.get("body")) == null ? null : tmp_6_0.errors == null ? null : tmp_6_0.errors.length);
|
|
18649
18514
|
i0.ɵɵadvance(3);
|
|
18650
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18515
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(26, 21, "Response message"), " ");
|
|
18651
18516
|
i0.ɵɵadvance(2);
|
|
18652
18517
|
i0.ɵɵproperty("ngIf", (tmp_8_0 = ctx.formGroup.get("body")) == null ? null : tmp_8_0.errors == null ? null : tmp_8_0.errors.length);
|
|
18653
18518
|
i0.ɵɵadvance(1);
|
|
@@ -25627,7 +25492,6 @@ const PALETTE_COMPONENTS = [
|
|
|
25627
25492
|
QueryWriteRaiseQueryComponent,
|
|
25628
25493
|
QueryCaseDetailsHeaderComponent,
|
|
25629
25494
|
QueryWriteAddDocumentsComponent,
|
|
25630
|
-
QueryWriteDateInputComponent
|
|
25631
25495
|
];
|
|
25632
25496
|
class PaletteModule {
|
|
25633
25497
|
}
|
|
@@ -25809,8 +25673,7 @@ PaletteModule.ɵinj = i0.ɵɵdefineInjector({ providers: [
|
|
|
25809
25673
|
QueryWriteRespondToQueryComponent,
|
|
25810
25674
|
QueryWriteRaiseQueryComponent,
|
|
25811
25675
|
QueryCaseDetailsHeaderComponent,
|
|
25812
|
-
QueryWriteAddDocumentsComponent,
|
|
25813
|
-
QueryWriteDateInputComponent], imports: [CommonModule,
|
|
25676
|
+
QueryWriteAddDocumentsComponent], imports: [CommonModule,
|
|
25814
25677
|
RouterModule,
|
|
25815
25678
|
FormsModule,
|
|
25816
25679
|
ReactiveFormsModule,
|
|
@@ -25957,8 +25820,7 @@ PaletteModule.ɵinj = i0.ɵɵdefineInjector({ providers: [
|
|
|
25957
25820
|
QueryWriteRespondToQueryComponent,
|
|
25958
25821
|
QueryWriteRaiseQueryComponent,
|
|
25959
25822
|
QueryCaseDetailsHeaderComponent,
|
|
25960
|
-
QueryWriteAddDocumentsComponent
|
|
25961
|
-
QueryWriteDateInputComponent] }); })();
|
|
25823
|
+
QueryWriteAddDocumentsComponent] }); })();
|
|
25962
25824
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaletteModule, [{
|
|
25963
25825
|
type: NgModule,
|
|
25964
25826
|
args: [{
|
|
@@ -26102,7 +25964,7 @@ i0.ɵɵsetComponentScope(WriteQueryManagementFieldComponent, [i5.NgIf, QueryWrit
|
|
|
26102
25964
|
i0.ɵɵsetComponentScope(QueryDetailsComponent, [i5.NgIf, QueryDetailsTableComponent], [i1.RpxTranslatePipe]);
|
|
26103
25965
|
i0.ɵɵsetComponentScope(QueryWriteRespondToQueryComponent, [QueryCaseDetailsHeaderComponent,
|
|
26104
25966
|
QueryDetailsTableComponent, i3.NgControlStatusGroup, i3.FormGroupDirective, i5.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.FormControlName], [i1.RpxTranslatePipe]);
|
|
26105
|
-
i0.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3.NgControlStatusGroup, i3.FormGroupDirective, i5.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.FormControlName
|
|
25967
|
+
i0.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3.NgControlStatusGroup, i3.FormGroupDirective, i5.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.FormControlName], [i1.RpxTranslatePipe]);
|
|
26106
25968
|
i0.ɵɵsetComponentScope(QueryWriteAddDocumentsComponent, [WriteCollectionFieldComponent, i3.NgControlStatusGroup, i3.FormGroupDirective], []);
|
|
26107
25969
|
|
|
26108
25970
|
class Confirmation {
|
|
@@ -35457,5 +35319,5 @@ class TestRouteSnapshotBuilder {
|
|
|
35457
35319
|
* Generated bundle index. Do not edit.
|
|
35458
35320
|
*/
|
|
35459
35321
|
|
|
35460
|
-
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, AddCommentsComponent, AddCommentsErrorMessage, AddCommentsStep, AddressModel, AddressOption, AddressesService, Alert, AlertComponent, AlertIconClassPipe, AlertMessageType, AlertModule, AlertService, AuthService, Banner, BannersService, BeforeYouStartComponent, BodyComponent, BrowserService, CCDCaseLinkType, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagDisplayContextParameter, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagText, CaseFlagWizardStepTitle, CaseFullAccessViewComponent, CaseHeaderComponent, CaseHeaderModule, CaseHistoryViewerFieldComponent, CaseLink, CaseLinkResponse, CaseListComponent, CaseListFiltersComponent, CaseListFiltersModule, CaseListModule, CaseNotifier, CasePaymentHistoryViewerFieldComponent, CasePrintDocument, CasePrinterComponent, CaseProgressComponent, CaseReferencePipe, CaseResolver, CaseSpecificAccessRequestComponent, CaseSpecificAccessSuccessComponent, CaseState, CaseTab, CaseTimelineComponent, CaseTimelineDisplayMode, CaseTimelineModule, CaseType, CaseTypeLite, CaseView, CaseViewComponent, CaseViewEvent, CaseViewTrigger, CaseViewerComponent, CaseViewerModule, CasesService, CaseworkerService, CcdCYAPageLabelFilterPipe, CcdCaseTitlePipe, CcdCollectionTableCaseFieldsFilterPipe, CcdPageFieldsPipe, CcdTabFieldsPipe, CheckYourAnswersComponent, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, ConfirmFlagStatusComponent, ConfirmStatusErrorMessage, ConfirmStatusStep, Confirmation, ConvertHrefToRouterService, CreateCaseFiltersComponent, CreateCaseFiltersModule, CreateCaseFiltersSelection, DRAFT_PREFIX, DRAFT_QUERY_PARAM, DashPipe, DateInputComponent, DatePipe, DateTimeFormatUtils, DatetimePickerComponent, DefinitionsModule, DefinitionsService, DeleteOrCancelDialogComponent, DialogsModule, DisplayMode, Document, DocumentData, DocumentDialogComponent, DocumentLinks, DocumentManagementService, DocumentUrlPipe, Draft, DraftService, DynamicListPipe, DynamicRadioListPipe, ESQueryType, Embedded, EnumDisplayDescriptionPipe, ErrorMessageComponent, ErrorNotifierService, EventCaseField, EventCompletionReturnStates, EventCompletionStateMachineService, EventCompletionStates, EventLogComponent, EventLogDetailsComponent, EventLogTableComponent, EventMessageModule, EventStartComponent, EventStartModule, EventStartStateMachineService, EventStatusService, EventTriggerResolver, EventTriggerService, Fee, FeeValue, Field, FieldLabelPipe, FieldReadComponent, FieldReadLabelComponent, FieldType, FieldTypeSanitiser, FieldWriteComponent, FieldsFilterPipe, FieldsPurger, FieldsUtils, FirstErrorPipe, FixedListItem, FixedListPipe, FixedRadioListPipe, FlagFieldDisplayPipe, FocusElementDirective, FocusElementModule, FooterComponent, FormDocument, FormErrorService, FormValidatorsService, FormValueService, FormatTranslatorService, GreyBarService, HRef, HeaderBarComponent, HeadersModule, HttpError, HttpErrorService, HttpService, IsCompoundPipe, IsMandatoryPipe, IsReadOnlyAndNotCollectionPipe, IsReadOnlyPipe, JudicialworkerService, Jurisdiction, JurisdictionService, LabelFieldComponent, LabelSubstitutorDirective, LabelSubstitutorModule, LanguageInterpreterDisplayPipe, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipleTasksExistComponent, NavigationComponent, NavigationItemComponent, NavigationNotifierService, NavigationOrigin, NoLinkedCasesComponent, NoTasksAvailableComponent, NotificationBannerComponent, NotificationBannerHeaderClass, NotificationBannerType, OrderService, OrderSummary, OrganisationConverter, OrganisationService, PageValidationService, PaginationComponent, PaginationMetadata, PaginationModule, PaletteContext, PaletteModule, PaletteService, PaletteUtilsModule, Patterns, PaymentField, PhaseComponent, PipesModule, PlaceholderService, PrintUrlPipe, Profile, ProfileNotifier, ProfileService, QueryCaseDetailsHeaderComponent, QueryCreateComponent, QueryDetailsComponent, QueryDetailsTableComponent, QueryListComponent, QueryListData, QueryListItem, QueryListResponseStatus, QueryWriteAddDocumentsComponent,
|
|
35322
|
+
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, AddCommentsComponent, AddCommentsErrorMessage, AddCommentsStep, AddressModel, AddressOption, AddressesService, Alert, AlertComponent, AlertIconClassPipe, AlertMessageType, AlertModule, AlertService, AuthService, Banner, BannersService, BeforeYouStartComponent, BodyComponent, BrowserService, CCDCaseLinkType, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagDisplayContextParameter, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagText, CaseFlagWizardStepTitle, CaseFullAccessViewComponent, CaseHeaderComponent, CaseHeaderModule, CaseHistoryViewerFieldComponent, CaseLink, CaseLinkResponse, CaseListComponent, CaseListFiltersComponent, CaseListFiltersModule, CaseListModule, CaseNotifier, CasePaymentHistoryViewerFieldComponent, CasePrintDocument, CasePrinterComponent, CaseProgressComponent, CaseReferencePipe, CaseResolver, CaseSpecificAccessRequestComponent, CaseSpecificAccessSuccessComponent, CaseState, CaseTab, CaseTimelineComponent, CaseTimelineDisplayMode, CaseTimelineModule, CaseType, CaseTypeLite, CaseView, CaseViewComponent, CaseViewEvent, CaseViewTrigger, CaseViewerComponent, CaseViewerModule, CasesService, CaseworkerService, CcdCYAPageLabelFilterPipe, CcdCaseTitlePipe, CcdCollectionTableCaseFieldsFilterPipe, CcdPageFieldsPipe, CcdTabFieldsPipe, CheckYourAnswersComponent, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, ConfirmFlagStatusComponent, ConfirmStatusErrorMessage, ConfirmStatusStep, Confirmation, ConvertHrefToRouterService, CreateCaseFiltersComponent, CreateCaseFiltersModule, CreateCaseFiltersSelection, DRAFT_PREFIX, DRAFT_QUERY_PARAM, DashPipe, DateInputComponent, DatePipe, DateTimeFormatUtils, DatetimePickerComponent, DefinitionsModule, DefinitionsService, DeleteOrCancelDialogComponent, DialogsModule, DisplayMode, Document, DocumentData, DocumentDialogComponent, DocumentLinks, DocumentManagementService, DocumentUrlPipe, Draft, DraftService, DynamicListPipe, DynamicRadioListPipe, ESQueryType, Embedded, EnumDisplayDescriptionPipe, ErrorMessageComponent, ErrorNotifierService, EventCaseField, EventCompletionReturnStates, EventCompletionStateMachineService, EventCompletionStates, EventLogComponent, EventLogDetailsComponent, EventLogTableComponent, EventMessageModule, EventStartComponent, EventStartModule, EventStartStateMachineService, EventStatusService, EventTriggerResolver, EventTriggerService, Fee, FeeValue, Field, FieldLabelPipe, FieldReadComponent, FieldReadLabelComponent, FieldType, FieldTypeSanitiser, FieldWriteComponent, FieldsFilterPipe, FieldsPurger, FieldsUtils, FirstErrorPipe, FixedListItem, FixedListPipe, FixedRadioListPipe, FlagFieldDisplayPipe, FocusElementDirective, FocusElementModule, FooterComponent, FormDocument, FormErrorService, FormValidatorsService, FormValueService, FormatTranslatorService, GreyBarService, HRef, HeaderBarComponent, HeadersModule, HttpError, HttpErrorService, HttpService, IsCompoundPipe, IsMandatoryPipe, IsReadOnlyAndNotCollectionPipe, IsReadOnlyPipe, JudicialworkerService, Jurisdiction, JurisdictionService, LabelFieldComponent, LabelSubstitutorDirective, LabelSubstitutorModule, LanguageInterpreterDisplayPipe, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipleTasksExistComponent, NavigationComponent, NavigationItemComponent, NavigationNotifierService, NavigationOrigin, NoLinkedCasesComponent, NoTasksAvailableComponent, NotificationBannerComponent, NotificationBannerHeaderClass, NotificationBannerType, OrderService, OrderSummary, OrganisationConverter, OrganisationService, PageValidationService, PaginationComponent, PaginationMetadata, PaginationModule, PaletteContext, PaletteModule, PaletteService, PaletteUtilsModule, Patterns, PaymentField, PhaseComponent, PipesModule, PlaceholderService, PrintUrlPipe, Profile, ProfileNotifier, ProfileService, QueryCaseDetailsHeaderComponent, QueryCreateComponent, QueryDetailsComponent, QueryDetailsTableComponent, QueryListComponent, QueryListData, QueryListItem, QueryListResponseStatus, QueryWriteAddDocumentsComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadDateFieldComponent, ReadDocumentFieldComponent, ReadDynamicListFieldComponent, ReadDynamicMultiSelectListFieldComponent, ReadDynamicRadioListFieldComponent, ReadEmailFieldComponent, ReadFieldsFilterPipe, ReadFixedListFieldComponent, ReadFixedRadioListFieldComponent, ReadJudicialUserFieldComponent, ReadLinkedCasesFieldComponent, ReadMoneyGbpFieldComponent, ReadMultiSelectListFieldComponent, ReadNumberFieldComponent, ReadOrderSummaryFieldComponent, ReadOrderSummaryRowComponent, ReadOrganisationFieldComponent, ReadOrganisationFieldRawComponent, ReadOrganisationFieldTableComponent, ReadPhoneUKFieldComponent, ReadQueryManagementFieldComponent, ReadTextAreaFieldComponent, ReadTextFieldComponent, ReadYesNoFieldComponent, RefdataCaseFlagType, RemoveDialogComponent, RequestOptionsBuilder, RouterHelperService, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, WaysToPayFieldComponent, WindowService, Wizard, WizardFactoryService, WizardPage, WizardPageField, WorkAllocationService, WorkbasketFiltersComponent, WorkbasketFiltersModule, WorkbasketInput, WorkbasketInputFilterService, WorkbasketInputModel, WriteAddressFieldComponent, WriteCaseFlagFieldComponent, WriteCaseLinkFieldComponent, WriteCollectionFieldComponent, WriteComplexFieldComponent, WriteDateContainerFieldComponent, WriteDateFieldComponent, WriteDocumentFieldComponent, WriteDynamicListFieldComponent, WriteDynamicMultiSelectListFieldComponent, WriteDynamicRadioListFieldComponent, WriteEmailFieldComponent, WriteFixedListFieldComponent, WriteFixedRadioListFieldComponent, WriteJudicialUserFieldComponent, WriteLinkedCasesFieldComponent, WriteMoneyGbpFieldComponent, WriteMultiSelectListFieldComponent, WriteNumberFieldComponent, WriteOrderSummaryFieldComponent, WriteOrganisationComplexFieldComponent, WriteOrganisationFieldComponent, WritePhoneUKFieldComponent, WriteQueryManagementFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, partyMessagesMockData, textFieldType, viewerRouting };
|
|
35461
35323
|
//# sourceMappingURL=hmcts-ccd-case-ui-toolkit.js.map
|