@hmcts/ccd-case-ui-toolkit 6.16.0-query-management-respond-backlink-text → 6.16.0-query-management-raise-query-function-v5
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 +236 -86
- 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 +8 -11
- package/esm2015/lib/shared/components/palette/query-management/components/index.js +2 -1
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.js +125 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.js +83 -64
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.js +19 -21
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +227 -87
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +30 -29
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/query-management/components/index.d.ts +1 -0
- package/lib/shared/components/palette/query-management/components/index.d.ts.map +1 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts +20 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -18156,6 +18156,126 @@ 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
|
+
|
|
18159
18279
|
class QueryWriteAddDocumentsComponent {
|
|
18160
18280
|
constructor() {
|
|
18161
18281
|
this.documentFormGroup = new FormGroup({});
|
|
@@ -18217,7 +18337,7 @@ QueryWriteAddDocumentsComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWrit
|
|
|
18217
18337
|
type: Output
|
|
18218
18338
|
}] }); })();
|
|
18219
18339
|
|
|
18220
|
-
function
|
|
18340
|
+
function QueryWriteRaiseQueryComponent_p_21_Template(rf, ctx) { if (rf & 1) {
|
|
18221
18341
|
i0.ɵɵelementStart(0, "p", 27);
|
|
18222
18342
|
i0.ɵɵelementStart(1, "span", 28);
|
|
18223
18343
|
i0.ɵɵtext(2);
|
|
@@ -18232,7 +18352,7 @@ function QueryWriteRaiseQueryComponent_p_22_Template(rf, ctx) { if (rf & 1) {
|
|
|
18232
18352
|
i0.ɵɵadvance(2);
|
|
18233
18353
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a message"), " ");
|
|
18234
18354
|
} }
|
|
18235
|
-
function
|
|
18355
|
+
function QueryWriteRaiseQueryComponent_p_31_Template(rf, ctx) { if (rf & 1) {
|
|
18236
18356
|
i0.ɵɵelementStart(0, "p", 29);
|
|
18237
18357
|
i0.ɵɵelementStart(1, "span", 28);
|
|
18238
18358
|
i0.ɵɵtext(2);
|
|
@@ -18247,7 +18367,7 @@ function QueryWriteRaiseQueryComponent_p_32_Template(rf, ctx) { if (rf & 1) {
|
|
|
18247
18367
|
i0.ɵɵadvance(2);
|
|
18248
18368
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a subject"), " ");
|
|
18249
18369
|
} }
|
|
18250
|
-
function
|
|
18370
|
+
function QueryWriteRaiseQueryComponent_p_41_Template(rf, ctx) { if (rf & 1) {
|
|
18251
18371
|
i0.ɵɵelementStart(0, "p", 30);
|
|
18252
18372
|
i0.ɵɵelementStart(1, "span", 28);
|
|
18253
18373
|
i0.ɵɵtext(2);
|
|
@@ -18262,10 +18382,28 @@ function QueryWriteRaiseQueryComponent_p_42_Template(rf, ctx) { if (rf & 1) {
|
|
|
18262
18382
|
i0.ɵɵadvance(2);
|
|
18263
18383
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a query body"), " ");
|
|
18264
18384
|
} }
|
|
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, "legend");
|
|
18390
|
+
i0.ɵɵelementStart(4, "label", 33);
|
|
18391
|
+
i0.ɵɵtext(5);
|
|
18392
|
+
i0.ɵɵpipe(6, "rpxTranslate");
|
|
18393
|
+
i0.ɵɵelementEnd();
|
|
18394
|
+
i0.ɵɵelementEnd();
|
|
18395
|
+
i0.ɵɵelement(7, "ccd-query-write-date-input", 34);
|
|
18396
|
+
i0.ɵɵelementEnd();
|
|
18397
|
+
i0.ɵɵelementEnd();
|
|
18398
|
+
i0.ɵɵelementContainerEnd();
|
|
18399
|
+
} if (rf & 2) {
|
|
18400
|
+
i0.ɵɵadvance(5);
|
|
18401
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(6, 1, "Hearing date"), " ");
|
|
18402
|
+
} }
|
|
18265
18403
|
class QueryWriteRaiseQueryComponent {
|
|
18266
18404
|
}
|
|
18267
18405
|
QueryWriteRaiseQueryComponent.ɵfac = function QueryWriteRaiseQueryComponent_Factory(t) { return new (t || QueryWriteRaiseQueryComponent)(); };
|
|
18268
|
-
QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 62, vars:
|
|
18406
|
+
QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 62, vars: 61, consts: [[1, "govuk-!-margin-bottom-6"], [1, "govuk-caption-l"], [1, "govuk-heading-l", "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", "isHearingRelated", "type", "radio", "formControlName", "isHearingRelated", 1, "govuk-radios__input", 3, "checked", "value"], ["for", "query-raise-isHearingRelated-yes", 1, "govuk-label", "govuk-radios__label"], ["id", "query-raise-isHearingRelated-no", "name", "isHearingRelated", "type", "radio", "formControlName", "isHearingRelated", 1, "govuk-radios__input", 3, "checked", "value"], ["for", "query-raise-isHearingRelated-no", 1, "govuk-label", "govuk-radios__label"], [4, "ngIf"], ["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"], [1, "govuk-!-margin-top-1"], ["role", "group", 1, "govuk-fieldset"], [1, "govuk-label", "govuk-label--s"], ["formControlName", "hearingDate"]], template: function QueryWriteRaiseQueryComponent_Template(rf, ctx) { if (rf & 1) {
|
|
18269
18407
|
i0.ɵɵelementStart(0, "div");
|
|
18270
18408
|
i0.ɵɵelementStart(1, "div", 0);
|
|
18271
18409
|
i0.ɵɵelementStart(2, "div", 1);
|
|
@@ -18282,78 +18420,77 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18282
18420
|
i0.ɵɵelementEnd();
|
|
18283
18421
|
i0.ɵɵelement(10, "hr");
|
|
18284
18422
|
i0.ɵɵelementStart(11, "div", 3);
|
|
18285
|
-
i0.ɵɵelementStart(12, "div"
|
|
18286
|
-
i0.ɵɵelementStart(13, "div");
|
|
18423
|
+
i0.ɵɵelementStart(12, "div");
|
|
18424
|
+
i0.ɵɵelementStart(13, "div", 4);
|
|
18287
18425
|
i0.ɵɵelementStart(14, "div", 5);
|
|
18288
|
-
i0.ɵɵelementStart(15, "
|
|
18289
|
-
i0.ɵɵ
|
|
18290
|
-
i0.ɵɵ
|
|
18291
|
-
i0.ɵɵpipe(18, "rpxTranslate");
|
|
18426
|
+
i0.ɵɵelementStart(15, "label", 6);
|
|
18427
|
+
i0.ɵɵtext(16);
|
|
18428
|
+
i0.ɵɵpipe(17, "rpxTranslate");
|
|
18292
18429
|
i0.ɵɵelementEnd();
|
|
18293
18430
|
i0.ɵɵelementEnd();
|
|
18294
|
-
i0.ɵɵelementStart(
|
|
18295
|
-
i0.ɵɵtext(
|
|
18296
|
-
i0.ɵɵpipe(
|
|
18431
|
+
i0.ɵɵelementStart(18, "div", 7);
|
|
18432
|
+
i0.ɵɵtext(19);
|
|
18433
|
+
i0.ɵɵpipe(20, "rpxTranslate");
|
|
18297
18434
|
i0.ɵɵelementEnd();
|
|
18298
|
-
i0.ɵɵtemplate(
|
|
18299
|
-
i0.ɵɵelement(
|
|
18435
|
+
i0.ɵɵtemplate(21, QueryWriteRaiseQueryComponent_p_21_Template, 6, 6, "p", 8);
|
|
18436
|
+
i0.ɵɵelement(22, "input", 9);
|
|
18300
18437
|
i0.ɵɵelementEnd();
|
|
18438
|
+
i0.ɵɵelementStart(23, "div", 4);
|
|
18301
18439
|
i0.ɵɵelementStart(24, "div", 5);
|
|
18302
|
-
i0.ɵɵelementStart(25, "
|
|
18303
|
-
i0.ɵɵ
|
|
18304
|
-
i0.ɵɵ
|
|
18305
|
-
i0.ɵɵpipe(28, "rpxTranslate");
|
|
18440
|
+
i0.ɵɵelementStart(25, "label", 10);
|
|
18441
|
+
i0.ɵɵtext(26);
|
|
18442
|
+
i0.ɵɵpipe(27, "rpxTranslate");
|
|
18306
18443
|
i0.ɵɵelementEnd();
|
|
18307
18444
|
i0.ɵɵelementEnd();
|
|
18308
|
-
i0.ɵɵelementStart(
|
|
18309
|
-
i0.ɵɵtext(
|
|
18310
|
-
i0.ɵɵpipe(
|
|
18445
|
+
i0.ɵɵelementStart(28, "div", 11);
|
|
18446
|
+
i0.ɵɵtext(29);
|
|
18447
|
+
i0.ɵɵpipe(30, "rpxTranslate");
|
|
18311
18448
|
i0.ɵɵelementEnd();
|
|
18312
|
-
i0.ɵɵtemplate(
|
|
18313
|
-
i0.ɵɵelement(
|
|
18449
|
+
i0.ɵɵtemplate(31, QueryWriteRaiseQueryComponent_p_31_Template, 6, 6, "p", 12);
|
|
18450
|
+
i0.ɵɵelement(32, "input", 13);
|
|
18314
18451
|
i0.ɵɵelementEnd();
|
|
18452
|
+
i0.ɵɵelementStart(33, "div", 4);
|
|
18315
18453
|
i0.ɵɵelementStart(34, "div", 5);
|
|
18316
|
-
i0.ɵɵelementStart(35, "
|
|
18317
|
-
i0.ɵɵ
|
|
18318
|
-
i0.ɵɵ
|
|
18319
|
-
i0.ɵɵpipe(38, "rpxTranslate");
|
|
18454
|
+
i0.ɵɵelementStart(35, "label", 14);
|
|
18455
|
+
i0.ɵɵtext(36);
|
|
18456
|
+
i0.ɵɵpipe(37, "rpxTranslate");
|
|
18320
18457
|
i0.ɵɵelementEnd();
|
|
18321
18458
|
i0.ɵɵelementEnd();
|
|
18322
|
-
i0.ɵɵelementStart(
|
|
18323
|
-
i0.ɵɵtext(
|
|
18324
|
-
i0.ɵɵpipe(
|
|
18459
|
+
i0.ɵɵelementStart(38, "div", 15);
|
|
18460
|
+
i0.ɵɵtext(39);
|
|
18461
|
+
i0.ɵɵpipe(40, "rpxTranslate");
|
|
18325
18462
|
i0.ɵɵelementEnd();
|
|
18326
|
-
i0.ɵɵtemplate(
|
|
18327
|
-
i0.ɵɵelementStart(
|
|
18328
|
-
i0.ɵɵtext(
|
|
18463
|
+
i0.ɵɵtemplate(41, QueryWriteRaiseQueryComponent_p_41_Template, 6, 6, "p", 16);
|
|
18464
|
+
i0.ɵɵelementStart(42, "textarea", 17);
|
|
18465
|
+
i0.ɵɵtext(43, " ");
|
|
18329
18466
|
i0.ɵɵelementEnd();
|
|
18330
18467
|
i0.ɵɵelementEnd();
|
|
18331
|
-
i0.ɵɵelementStart(
|
|
18332
|
-
i0.ɵɵelementStart(
|
|
18333
|
-
i0.ɵɵelementStart(
|
|
18334
|
-
i0.ɵɵelementStart(
|
|
18335
|
-
i0.ɵɵtext(
|
|
18336
|
-
i0.ɵɵpipe(
|
|
18468
|
+
i0.ɵɵelementStart(44, "div", 4);
|
|
18469
|
+
i0.ɵɵelementStart(45, "fieldset", 18);
|
|
18470
|
+
i0.ɵɵelementStart(46, "legend");
|
|
18471
|
+
i0.ɵɵelementStart(47, "label", 19);
|
|
18472
|
+
i0.ɵɵtext(48);
|
|
18473
|
+
i0.ɵɵpipe(49, "rpxTranslate");
|
|
18337
18474
|
i0.ɵɵelementEnd();
|
|
18338
18475
|
i0.ɵɵelementEnd();
|
|
18476
|
+
i0.ɵɵelementStart(50, "div", 20);
|
|
18339
18477
|
i0.ɵɵelementStart(51, "div", 21);
|
|
18340
|
-
i0.ɵɵ
|
|
18341
|
-
i0.ɵɵ
|
|
18342
|
-
i0.ɵɵ
|
|
18343
|
-
i0.ɵɵ
|
|
18344
|
-
i0.ɵɵpipe(56, "rpxTranslate");
|
|
18345
|
-
i0.ɵɵelementEnd();
|
|
18478
|
+
i0.ɵɵelement(52, "input", 22);
|
|
18479
|
+
i0.ɵɵelementStart(53, "label", 23);
|
|
18480
|
+
i0.ɵɵtext(54);
|
|
18481
|
+
i0.ɵɵpipe(55, "rpxTranslate");
|
|
18346
18482
|
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");
|
|
18352
18483
|
i0.ɵɵelementEnd();
|
|
18484
|
+
i0.ɵɵelementStart(56, "div", 21);
|
|
18485
|
+
i0.ɵɵelement(57, "input", 24);
|
|
18486
|
+
i0.ɵɵelementStart(58, "label", 25);
|
|
18487
|
+
i0.ɵɵtext(59);
|
|
18488
|
+
i0.ɵɵpipe(60, "rpxTranslate");
|
|
18353
18489
|
i0.ɵɵelementEnd();
|
|
18354
18490
|
i0.ɵɵelementEnd();
|
|
18355
18491
|
i0.ɵɵelementEnd();
|
|
18356
18492
|
i0.ɵɵelementEnd();
|
|
18493
|
+
i0.ɵɵtemplate(61, QueryWriteRaiseQueryComponent_ng_container_61_Template, 8, 3, "ng-container", 26);
|
|
18357
18494
|
i0.ɵɵelementEnd();
|
|
18358
18495
|
i0.ɵɵelementEnd();
|
|
18359
18496
|
i0.ɵɵelementEnd();
|
|
@@ -18369,17 +18506,17 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18369
18506
|
let tmp_18_0 = null;
|
|
18370
18507
|
let tmp_19_0 = null;
|
|
18371
18508
|
i0.ɵɵadvance(3);
|
|
18372
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4,
|
|
18509
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 35, "Raise a query"));
|
|
18373
18510
|
i0.ɵɵadvance(3);
|
|
18374
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7,
|
|
18375
|
-
i0.ɵɵadvance(
|
|
18511
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 37, "Enter query details"));
|
|
18512
|
+
i0.ɵɵadvance(5);
|
|
18376
18513
|
i0.ɵɵproperty("formGroup", ctx.formGroup);
|
|
18377
18514
|
i0.ɵɵadvance(2);
|
|
18378
18515
|
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);
|
|
18379
18516
|
i0.ɵɵadvance(3);
|
|
18380
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18517
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(17, 39, "Full name"), " ");
|
|
18381
18518
|
i0.ɵɵadvance(3);
|
|
18382
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18519
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(20, 41, "Your full name must be included here"), " ");
|
|
18383
18520
|
i0.ɵɵadvance(2);
|
|
18384
18521
|
i0.ɵɵproperty("ngIf", (tmp_6_0 = ctx.formGroup.get("body")) == null ? null : tmp_6_0.errors == null ? null : tmp_6_0.errors.length);
|
|
18385
18522
|
i0.ɵɵadvance(1);
|
|
@@ -18388,9 +18525,9 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18388
18525
|
i0.ɵɵadvance(1);
|
|
18389
18526
|
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);
|
|
18390
18527
|
i0.ɵɵadvance(3);
|
|
18391
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18528
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(27, 43, "Query subject"), " ");
|
|
18392
18529
|
i0.ɵɵadvance(3);
|
|
18393
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18530
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(30, 45, "The subject should be a summary of your query"), " ");
|
|
18394
18531
|
i0.ɵɵadvance(2);
|
|
18395
18532
|
i0.ɵɵproperty("ngIf", (tmp_12_0 = ctx.formGroup.get("body")) == null ? null : tmp_12_0.errors == null ? null : tmp_12_0.errors.length);
|
|
18396
18533
|
i0.ɵɵadvance(1);
|
|
@@ -18399,24 +18536,26 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18399
18536
|
i0.ɵɵadvance(1);
|
|
18400
18537
|
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);
|
|
18401
18538
|
i0.ɵɵadvance(3);
|
|
18402
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18539
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(37, 47, "Query body"), " ");
|
|
18403
18540
|
i0.ɵɵadvance(3);
|
|
18404
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18541
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(40, 49, "Include as many details as possible so case workers can respond to your query"), " ");
|
|
18405
18542
|
i0.ɵɵadvance(2);
|
|
18406
18543
|
i0.ɵɵproperty("ngIf", (tmp_18_0 = ctx.formGroup.get("body")) == null ? null : tmp_18_0.errors == null ? null : tmp_18_0.errors.length);
|
|
18407
18544
|
i0.ɵɵadvance(1);
|
|
18408
18545
|
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);
|
|
18409
18546
|
i0.ɵɵproperty("formControlName", "body");
|
|
18410
18547
|
i0.ɵɵadvance(6);
|
|
18411
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18548
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(49, 51, "Is the query hearing related?"), " ");
|
|
18412
18549
|
i0.ɵɵadvance(4);
|
|
18413
18550
|
i0.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === true)("value", true);
|
|
18414
18551
|
i0.ɵɵadvance(2);
|
|
18415
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(
|
|
18552
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(55, 53, "Is the query hearing related?", null, "Yes"), " ");
|
|
18416
18553
|
i0.ɵɵadvance(3);
|
|
18417
18554
|
i0.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === false)("value", false);
|
|
18418
18555
|
i0.ɵɵadvance(2);
|
|
18419
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(
|
|
18556
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(60, 57, "Is the query hearing related?", null, "No"), " ");
|
|
18557
|
+
i0.ɵɵadvance(2);
|
|
18558
|
+
i0.ɵɵproperty("ngIf", ctx.formGroup.get("isHearingRelated").value);
|
|
18420
18559
|
} }, encapsulation: 2 });
|
|
18421
18560
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(QueryWriteRaiseQueryComponent, [{
|
|
18422
18561
|
type: Component,
|
|
@@ -18428,7 +18567,7 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18428
18567
|
type: Input
|
|
18429
18568
|
}] }); })();
|
|
18430
18569
|
|
|
18431
|
-
function
|
|
18570
|
+
function QueryWriteRespondToQueryComponent_p_26_Template(rf, ctx) { if (rf & 1) {
|
|
18432
18571
|
i0.ɵɵelementStart(0, "p", 15);
|
|
18433
18572
|
i0.ɵɵelementStart(1, "span", 16);
|
|
18434
18573
|
i0.ɵɵtext(2);
|
|
@@ -18446,7 +18585,7 @@ function QueryWriteRespondToQueryComponent_p_27_Template(rf, ctx) { if (rf & 1)
|
|
|
18446
18585
|
class QueryWriteRespondToQueryComponent {
|
|
18447
18586
|
}
|
|
18448
18587
|
QueryWriteRespondToQueryComponent.ɵfac = function QueryWriteRespondToQueryComponent_Factory(t) { return new (t || QueryWriteRespondToQueryComponent)(); };
|
|
18449
|
-
QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRespondToQueryComponent, selectors: [["ccd-query-write-respond-to-query"]], inputs: { queryItem: "queryItem", formGroup: "formGroup" }, decls:
|
|
18588
|
+
QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRespondToQueryComponent, selectors: [["ccd-query-write-respond-to-query"]], inputs: { queryItem: "queryItem", formGroup: "formGroup" }, decls: 29, 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) {
|
|
18450
18589
|
i0.ɵɵelementStart(0, "div", 0);
|
|
18451
18590
|
i0.ɵɵelementStart(1, "a", 1);
|
|
18452
18591
|
i0.ɵɵtext(2);
|
|
@@ -18472,23 +18611,21 @@ QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWr
|
|
|
18472
18611
|
i0.ɵɵelementEnd();
|
|
18473
18612
|
i0.ɵɵelementEnd();
|
|
18474
18613
|
i0.ɵɵelementStart(16, "div", 7);
|
|
18475
|
-
i0.ɵɵelementStart(17, "
|
|
18476
|
-
i0.ɵɵ
|
|
18477
|
-
i0.ɵɵ
|
|
18478
|
-
i0.ɵɵpipe(20, "rpxTranslate");
|
|
18479
|
-
i0.ɵɵelementEnd();
|
|
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");
|
|
18614
|
+
i0.ɵɵelementStart(17, "h1", 8);
|
|
18615
|
+
i0.ɵɵtext(18);
|
|
18616
|
+
i0.ɵɵpipe(19, "rpxTranslate");
|
|
18486
18617
|
i0.ɵɵelementEnd();
|
|
18618
|
+
i0.ɵɵelementStart(20, "div", 9);
|
|
18619
|
+
i0.ɵɵelementStart(21, "div", 10);
|
|
18620
|
+
i0.ɵɵelementStart(22, "div", 11);
|
|
18621
|
+
i0.ɵɵelementStart(23, "label", 12);
|
|
18622
|
+
i0.ɵɵtext(24);
|
|
18623
|
+
i0.ɵɵpipe(25, "rpxTranslate");
|
|
18487
18624
|
i0.ɵɵelementEnd();
|
|
18488
|
-
i0.ɵɵtemplate(27, QueryWriteRespondToQueryComponent_p_27_Template, 6, 6, "p", 13);
|
|
18489
|
-
i0.ɵɵelementStart(28, "textarea", 14);
|
|
18490
|
-
i0.ɵɵtext(29, " ");
|
|
18491
18625
|
i0.ɵɵelementEnd();
|
|
18626
|
+
i0.ɵɵtemplate(26, QueryWriteRespondToQueryComponent_p_26_Template, 6, 6, "p", 13);
|
|
18627
|
+
i0.ɵɵelementStart(27, "textarea", 14);
|
|
18628
|
+
i0.ɵɵtext(28, " ");
|
|
18492
18629
|
i0.ɵɵelementEnd();
|
|
18493
18630
|
i0.ɵɵelementEnd();
|
|
18494
18631
|
i0.ɵɵelementEnd();
|
|
@@ -18498,21 +18635,21 @@ QueryWriteRespondToQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWr
|
|
|
18498
18635
|
let tmp_8_0 = null;
|
|
18499
18636
|
let tmp_9_0 = null;
|
|
18500
18637
|
i0.ɵɵadvance(2);
|
|
18501
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 13, "
|
|
18638
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 13, "Back to tasks"));
|
|
18502
18639
|
i0.ɵɵadvance(5);
|
|
18503
18640
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 15, "Respond to query"));
|
|
18504
18641
|
i0.ɵɵadvance(3);
|
|
18505
18642
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(11, 17, "Query details"));
|
|
18506
18643
|
i0.ɵɵadvance(5);
|
|
18507
18644
|
i0.ɵɵproperty("queryItem", ctx.queryItem);
|
|
18508
|
-
i0.ɵɵadvance(
|
|
18509
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(
|
|
18645
|
+
i0.ɵɵadvance(3);
|
|
18646
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(19, 19, "Respond to a query"));
|
|
18510
18647
|
i0.ɵɵadvance(2);
|
|
18511
18648
|
i0.ɵɵproperty("formGroup", ctx.formGroup);
|
|
18512
18649
|
i0.ɵɵadvance(1);
|
|
18513
18650
|
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);
|
|
18514
18651
|
i0.ɵɵadvance(3);
|
|
18515
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(
|
|
18652
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(25, 21, "Response message"), " ");
|
|
18516
18653
|
i0.ɵɵadvance(2);
|
|
18517
18654
|
i0.ɵɵproperty("ngIf", (tmp_8_0 = ctx.formGroup.get("body")) == null ? null : tmp_8_0.errors == null ? null : tmp_8_0.errors.length);
|
|
18518
18655
|
i0.ɵɵadvance(1);
|
|
@@ -25492,6 +25629,7 @@ const PALETTE_COMPONENTS = [
|
|
|
25492
25629
|
QueryWriteRaiseQueryComponent,
|
|
25493
25630
|
QueryCaseDetailsHeaderComponent,
|
|
25494
25631
|
QueryWriteAddDocumentsComponent,
|
|
25632
|
+
QueryWriteDateInputComponent
|
|
25495
25633
|
];
|
|
25496
25634
|
class PaletteModule {
|
|
25497
25635
|
}
|
|
@@ -25673,7 +25811,8 @@ PaletteModule.ɵinj = i0.ɵɵdefineInjector({ providers: [
|
|
|
25673
25811
|
QueryWriteRespondToQueryComponent,
|
|
25674
25812
|
QueryWriteRaiseQueryComponent,
|
|
25675
25813
|
QueryCaseDetailsHeaderComponent,
|
|
25676
|
-
QueryWriteAddDocumentsComponent
|
|
25814
|
+
QueryWriteAddDocumentsComponent,
|
|
25815
|
+
QueryWriteDateInputComponent], imports: [CommonModule,
|
|
25677
25816
|
RouterModule,
|
|
25678
25817
|
FormsModule,
|
|
25679
25818
|
ReactiveFormsModule,
|
|
@@ -25820,7 +25959,8 @@ PaletteModule.ɵinj = i0.ɵɵdefineInjector({ providers: [
|
|
|
25820
25959
|
QueryWriteRespondToQueryComponent,
|
|
25821
25960
|
QueryWriteRaiseQueryComponent,
|
|
25822
25961
|
QueryCaseDetailsHeaderComponent,
|
|
25823
|
-
QueryWriteAddDocumentsComponent
|
|
25962
|
+
QueryWriteAddDocumentsComponent,
|
|
25963
|
+
QueryWriteDateInputComponent] }); })();
|
|
25824
25964
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaletteModule, [{
|
|
25825
25965
|
type: NgModule,
|
|
25826
25966
|
args: [{
|
|
@@ -25964,7 +26104,7 @@ i0.ɵɵsetComponentScope(WriteQueryManagementFieldComponent, [i5.NgIf, QueryWrit
|
|
|
25964
26104
|
i0.ɵɵsetComponentScope(QueryDetailsComponent, [i5.NgIf, QueryDetailsTableComponent], [i1.RpxTranslatePipe]);
|
|
25965
26105
|
i0.ɵɵsetComponentScope(QueryWriteRespondToQueryComponent, [QueryCaseDetailsHeaderComponent,
|
|
25966
26106
|
QueryDetailsTableComponent, i3.NgControlStatusGroup, i3.FormGroupDirective, i5.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.FormControlName], [i1.RpxTranslatePipe]);
|
|
25967
|
-
i0.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3.NgControlStatusGroup, i3.FormGroupDirective, i5.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.FormControlName], [i1.RpxTranslatePipe]);
|
|
26107
|
+
i0.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3.NgControlStatusGroup, i3.FormGroupDirective, i5.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.FormControlName, i3.RadioControlValueAccessor, QueryWriteDateInputComponent], [i1.RpxTranslatePipe]);
|
|
25968
26108
|
i0.ɵɵsetComponentScope(QueryWriteAddDocumentsComponent, [WriteCollectionFieldComponent, i3.NgControlStatusGroup, i3.FormGroupDirective], []);
|
|
25969
26109
|
|
|
25970
26110
|
class Confirmation {
|
|
@@ -35319,5 +35459,5 @@ class TestRouteSnapshotBuilder {
|
|
|
35319
35459
|
* Generated bundle index. Do not edit.
|
|
35320
35460
|
*/
|
|
35321
35461
|
|
|
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 };
|
|
35462
|
+
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, QueryWriteDateInputComponent, 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 };
|
|
35323
35463
|
//# sourceMappingURL=hmcts-ccd-case-ui-toolkit.js.map
|