@hmcts/ccd-case-ui-toolkit 6.16.0-query-management-document-uploader-v3 → 6.16.0-query-management-raise-query-function
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 +164 -21
- 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 +29 -19
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +156 -22
- 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,127 @@ 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
|
+
{
|
|
18206
|
+
provide: NG_VALIDATORS,
|
|
18207
|
+
useExisting: forwardRef(() => QueryWriteDateInputComponent),
|
|
18208
|
+
multi: true
|
|
18209
|
+
}
|
|
18210
|
+
])], decls: 16, vars: 15, 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) {
|
|
18211
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
18212
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
18213
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
18214
|
+
i0.ɵɵelementStart(3, "label", 3);
|
|
18215
|
+
i0.ɵɵtext(4, " Day ");
|
|
18216
|
+
i0.ɵɵelementEnd();
|
|
18217
|
+
i0.ɵɵelementStart(5, "input", 4);
|
|
18218
|
+
i0.ɵɵlistener("ngModelChange", function QueryWriteDateInputComponent_Template_input_ngModelChange_5_listener($event) { return ctx.day = $event; })("input", function QueryWriteDateInputComponent_Template_input_input_5_listener() { return ctx.updateDate(); });
|
|
18219
|
+
i0.ɵɵelementEnd();
|
|
18220
|
+
i0.ɵɵelementEnd();
|
|
18221
|
+
i0.ɵɵelementEnd();
|
|
18222
|
+
i0.ɵɵelementStart(6, "div", 1);
|
|
18223
|
+
i0.ɵɵelementStart(7, "div", 2);
|
|
18224
|
+
i0.ɵɵelementStart(8, "label", 3);
|
|
18225
|
+
i0.ɵɵtext(9, " Month ");
|
|
18226
|
+
i0.ɵɵelementEnd();
|
|
18227
|
+
i0.ɵɵelementStart(10, "input", 4);
|
|
18228
|
+
i0.ɵɵlistener("ngModelChange", function QueryWriteDateInputComponent_Template_input_ngModelChange_10_listener($event) { return ctx.month = $event; })("input", function QueryWriteDateInputComponent_Template_input_input_10_listener() { return ctx.updateDate(); });
|
|
18229
|
+
i0.ɵɵelementEnd();
|
|
18230
|
+
i0.ɵɵelementEnd();
|
|
18231
|
+
i0.ɵɵelementEnd();
|
|
18232
|
+
i0.ɵɵelementStart(11, "div", 1);
|
|
18233
|
+
i0.ɵɵelementStart(12, "div", 2);
|
|
18234
|
+
i0.ɵɵelementStart(13, "label", 3);
|
|
18235
|
+
i0.ɵɵtext(14, " Year ");
|
|
18236
|
+
i0.ɵɵelementEnd();
|
|
18237
|
+
i0.ɵɵelementStart(15, "input", 5);
|
|
18238
|
+
i0.ɵɵlistener("ngModelChange", function QueryWriteDateInputComponent_Template_input_ngModelChange_15_listener($event) { return ctx.year = $event; })("input", function QueryWriteDateInputComponent_Template_input_input_15_listener() { return ctx.updateDate(); });
|
|
18239
|
+
i0.ɵɵelementEnd();
|
|
18240
|
+
i0.ɵɵelementEnd();
|
|
18241
|
+
i0.ɵɵelementEnd();
|
|
18242
|
+
i0.ɵɵelementEnd();
|
|
18243
|
+
} if (rf & 2) {
|
|
18244
|
+
i0.ɵɵproperty("id", ctx.formControlName);
|
|
18245
|
+
i0.ɵɵadvance(3);
|
|
18246
|
+
i0.ɵɵproperty("for", ctx.formControlName + "-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(2);
|
|
18252
|
+
i0.ɵɵproperty("id", ctx.formControlName + "-month")("name", ctx.formControlName + "-month")("ngModel", ctx.month)("disabled", ctx.disabled);
|
|
18253
|
+
i0.ɵɵadvance(3);
|
|
18254
|
+
i0.ɵɵproperty("for", ctx.formControlName + "-year");
|
|
18255
|
+
i0.ɵɵadvance(2);
|
|
18256
|
+
i0.ɵɵproperty("name", ctx.formControlName + "-year")("ngModel", ctx.year)("disabled", ctx.disabled);
|
|
18257
|
+
} }, directives: [i3.DefaultValueAccessor, i3.NgControlStatus, i3.NgModel], encapsulation: 2 });
|
|
18258
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(QueryWriteDateInputComponent, [{
|
|
18259
|
+
type: Component,
|
|
18260
|
+
args: [{
|
|
18261
|
+
selector: 'ccd-query-write-date-input',
|
|
18262
|
+
templateUrl: './query-write-date-input.component.html',
|
|
18263
|
+
providers: [
|
|
18264
|
+
{
|
|
18265
|
+
provide: NG_VALUE_ACCESSOR,
|
|
18266
|
+
useExisting: forwardRef(() => QueryWriteDateInputComponent),
|
|
18267
|
+
multi: true
|
|
18268
|
+
},
|
|
18269
|
+
{
|
|
18270
|
+
provide: NG_VALIDATORS,
|
|
18271
|
+
useExisting: forwardRef(() => QueryWriteDateInputComponent),
|
|
18272
|
+
multi: true
|
|
18273
|
+
}
|
|
18274
|
+
]
|
|
18275
|
+
}]
|
|
18276
|
+
}], null, { formControlName: [{
|
|
18277
|
+
type: Input
|
|
18278
|
+
}] }); })();
|
|
18279
|
+
|
|
18159
18280
|
class QueryWriteAddDocumentsComponent {
|
|
18160
18281
|
constructor() {
|
|
18161
18282
|
this.documentFormGroup = new FormGroup({});
|
|
@@ -18218,8 +18339,8 @@ QueryWriteAddDocumentsComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWrit
|
|
|
18218
18339
|
}] }); })();
|
|
18219
18340
|
|
|
18220
18341
|
function QueryWriteRaiseQueryComponent_p_22_Template(rf, ctx) { if (rf & 1) {
|
|
18221
|
-
i0.ɵɵelementStart(0, "p",
|
|
18222
|
-
i0.ɵɵelementStart(1, "span",
|
|
18342
|
+
i0.ɵɵelementStart(0, "p", 28);
|
|
18343
|
+
i0.ɵɵelementStart(1, "span", 29);
|
|
18223
18344
|
i0.ɵɵtext(2);
|
|
18224
18345
|
i0.ɵɵpipe(3, "rpxTranslate");
|
|
18225
18346
|
i0.ɵɵelementEnd();
|
|
@@ -18233,8 +18354,8 @@ function QueryWriteRaiseQueryComponent_p_22_Template(rf, ctx) { if (rf & 1) {
|
|
|
18233
18354
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a message"), " ");
|
|
18234
18355
|
} }
|
|
18235
18356
|
function QueryWriteRaiseQueryComponent_p_32_Template(rf, ctx) { if (rf & 1) {
|
|
18236
|
-
i0.ɵɵelementStart(0, "p",
|
|
18237
|
-
i0.ɵɵelementStart(1, "span",
|
|
18357
|
+
i0.ɵɵelementStart(0, "p", 30);
|
|
18358
|
+
i0.ɵɵelementStart(1, "span", 29);
|
|
18238
18359
|
i0.ɵɵtext(2);
|
|
18239
18360
|
i0.ɵɵpipe(3, "rpxTranslate");
|
|
18240
18361
|
i0.ɵɵelementEnd();
|
|
@@ -18248,8 +18369,8 @@ function QueryWriteRaiseQueryComponent_p_32_Template(rf, ctx) { if (rf & 1) {
|
|
|
18248
18369
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a subject"), " ");
|
|
18249
18370
|
} }
|
|
18250
18371
|
function QueryWriteRaiseQueryComponent_p_42_Template(rf, ctx) { if (rf & 1) {
|
|
18251
|
-
i0.ɵɵelementStart(0, "p",
|
|
18252
|
-
i0.ɵɵelementStart(1, "span",
|
|
18372
|
+
i0.ɵɵelementStart(0, "p", 31);
|
|
18373
|
+
i0.ɵɵelementStart(1, "span", 29);
|
|
18253
18374
|
i0.ɵɵtext(2);
|
|
18254
18375
|
i0.ɵɵpipe(3, "rpxTranslate");
|
|
18255
18376
|
i0.ɵɵelementEnd();
|
|
@@ -18262,10 +18383,17 @@ function QueryWriteRaiseQueryComponent_p_42_Template(rf, ctx) { if (rf & 1) {
|
|
|
18262
18383
|
i0.ɵɵadvance(2);
|
|
18263
18384
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 4, "Enter a query body"), " ");
|
|
18264
18385
|
} }
|
|
18386
|
+
function QueryWriteRaiseQueryComponent_ng_container_62_Template(rf, ctx) { if (rf & 1) {
|
|
18387
|
+
i0.ɵɵelementContainerStart(0);
|
|
18388
|
+
i0.ɵɵelementStart(1, "fieldset", 32);
|
|
18389
|
+
i0.ɵɵelement(2, "ccd-query-write-date-input", 33);
|
|
18390
|
+
i0.ɵɵelementEnd();
|
|
18391
|
+
i0.ɵɵelementContainerEnd();
|
|
18392
|
+
} }
|
|
18265
18393
|
class QueryWriteRaiseQueryComponent {
|
|
18266
18394
|
}
|
|
18267
18395
|
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:
|
|
18396
|
+
QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 63, vars: 61, 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", "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"], ["role", "group", 1, "govuk-fieldset"], ["formControlName", "hearingDate"]], template: function QueryWriteRaiseQueryComponent_Template(rf, ctx) { if (rf & 1) {
|
|
18269
18397
|
i0.ɵɵelementStart(0, "div");
|
|
18270
18398
|
i0.ɵɵelementStart(1, "div", 0);
|
|
18271
18399
|
i0.ɵɵelementStart(2, "div", 1);
|
|
@@ -18353,6 +18481,7 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18353
18481
|
i0.ɵɵelementEnd();
|
|
18354
18482
|
i0.ɵɵelementEnd();
|
|
18355
18483
|
i0.ɵɵelementEnd();
|
|
18484
|
+
i0.ɵɵtemplate(62, QueryWriteRaiseQueryComponent_ng_container_62_Template, 3, 0, "ng-container", 27);
|
|
18356
18485
|
i0.ɵɵelementEnd();
|
|
18357
18486
|
i0.ɵɵelementEnd();
|
|
18358
18487
|
i0.ɵɵelementEnd();
|
|
@@ -18369,17 +18498,17 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18369
18498
|
let tmp_18_0 = null;
|
|
18370
18499
|
let tmp_19_0 = null;
|
|
18371
18500
|
i0.ɵɵadvance(3);
|
|
18372
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4,
|
|
18501
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 35, "Raise a query"));
|
|
18373
18502
|
i0.ɵɵadvance(3);
|
|
18374
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7,
|
|
18503
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 37, "Enter query details"));
|
|
18375
18504
|
i0.ɵɵadvance(6);
|
|
18376
18505
|
i0.ɵɵproperty("formGroup", ctx.formGroup);
|
|
18377
18506
|
i0.ɵɵadvance(2);
|
|
18378
18507
|
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
18508
|
i0.ɵɵadvance(3);
|
|
18380
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(18,
|
|
18509
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(18, 39, "Full name"), " ");
|
|
18381
18510
|
i0.ɵɵadvance(3);
|
|
18382
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(21,
|
|
18511
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(21, 41, "Your full name must be included here"), " ");
|
|
18383
18512
|
i0.ɵɵadvance(2);
|
|
18384
18513
|
i0.ɵɵproperty("ngIf", (tmp_6_0 = ctx.formGroup.get("body")) == null ? null : tmp_6_0.errors == null ? null : tmp_6_0.errors.length);
|
|
18385
18514
|
i0.ɵɵadvance(1);
|
|
@@ -18388,9 +18517,9 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18388
18517
|
i0.ɵɵadvance(1);
|
|
18389
18518
|
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
18519
|
i0.ɵɵadvance(3);
|
|
18391
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(28,
|
|
18520
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(28, 43, "Query subject"), " ");
|
|
18392
18521
|
i0.ɵɵadvance(3);
|
|
18393
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(31,
|
|
18522
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(31, 45, "The subject should be a summary of your query"), " ");
|
|
18394
18523
|
i0.ɵɵadvance(2);
|
|
18395
18524
|
i0.ɵɵproperty("ngIf", (tmp_12_0 = ctx.formGroup.get("body")) == null ? null : tmp_12_0.errors == null ? null : tmp_12_0.errors.length);
|
|
18396
18525
|
i0.ɵɵadvance(1);
|
|
@@ -18399,24 +18528,26 @@ QueryWriteRaiseQueryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: QueryWriteR
|
|
|
18399
18528
|
i0.ɵɵadvance(1);
|
|
18400
18529
|
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
18530
|
i0.ɵɵadvance(3);
|
|
18402
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(38,
|
|
18531
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(38, 47, "Query body"), " ");
|
|
18403
18532
|
i0.ɵɵadvance(3);
|
|
18404
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(41,
|
|
18533
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(41, 49, "Include as many details as possible so case workers can respond to your query"), " ");
|
|
18405
18534
|
i0.ɵɵadvance(2);
|
|
18406
18535
|
i0.ɵɵproperty("ngIf", (tmp_18_0 = ctx.formGroup.get("body")) == null ? null : tmp_18_0.errors == null ? null : tmp_18_0.errors.length);
|
|
18407
18536
|
i0.ɵɵadvance(1);
|
|
18408
18537
|
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
18538
|
i0.ɵɵproperty("formControlName", "body");
|
|
18410
18539
|
i0.ɵɵadvance(6);
|
|
18411
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(50,
|
|
18540
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(50, 51, "Is the query hearing related?"), " ");
|
|
18412
18541
|
i0.ɵɵadvance(4);
|
|
18413
18542
|
i0.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === true)("value", true);
|
|
18414
18543
|
i0.ɵɵadvance(2);
|
|
18415
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(56,
|
|
18544
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(56, 53, "Is the query hearing related?", null, "Yes"), " ");
|
|
18416
18545
|
i0.ɵɵadvance(3);
|
|
18417
18546
|
i0.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === false)("value", false);
|
|
18418
18547
|
i0.ɵɵadvance(2);
|
|
18419
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(61,
|
|
18548
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind3(61, 57, "Is the query hearing related?", null, "No"), " ");
|
|
18549
|
+
i0.ɵɵadvance(2);
|
|
18550
|
+
i0.ɵɵproperty("ngIf", ctx.formGroup.get("isHearingRelated").value);
|
|
18420
18551
|
} }, encapsulation: 2 });
|
|
18421
18552
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(QueryWriteRaiseQueryComponent, [{
|
|
18422
18553
|
type: Component,
|
|
@@ -25492,6 +25623,7 @@ const PALETTE_COMPONENTS = [
|
|
|
25492
25623
|
QueryWriteRaiseQueryComponent,
|
|
25493
25624
|
QueryCaseDetailsHeaderComponent,
|
|
25494
25625
|
QueryWriteAddDocumentsComponent,
|
|
25626
|
+
QueryWriteDateInputComponent
|
|
25495
25627
|
];
|
|
25496
25628
|
class PaletteModule {
|
|
25497
25629
|
}
|
|
@@ -25673,7 +25805,8 @@ PaletteModule.ɵinj = i0.ɵɵdefineInjector({ providers: [
|
|
|
25673
25805
|
QueryWriteRespondToQueryComponent,
|
|
25674
25806
|
QueryWriteRaiseQueryComponent,
|
|
25675
25807
|
QueryCaseDetailsHeaderComponent,
|
|
25676
|
-
QueryWriteAddDocumentsComponent
|
|
25808
|
+
QueryWriteAddDocumentsComponent,
|
|
25809
|
+
QueryWriteDateInputComponent], imports: [CommonModule,
|
|
25677
25810
|
RouterModule,
|
|
25678
25811
|
FormsModule,
|
|
25679
25812
|
ReactiveFormsModule,
|
|
@@ -25820,7 +25953,8 @@ PaletteModule.ɵinj = i0.ɵɵdefineInjector({ providers: [
|
|
|
25820
25953
|
QueryWriteRespondToQueryComponent,
|
|
25821
25954
|
QueryWriteRaiseQueryComponent,
|
|
25822
25955
|
QueryCaseDetailsHeaderComponent,
|
|
25823
|
-
QueryWriteAddDocumentsComponent
|
|
25956
|
+
QueryWriteAddDocumentsComponent,
|
|
25957
|
+
QueryWriteDateInputComponent] }); })();
|
|
25824
25958
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaletteModule, [{
|
|
25825
25959
|
type: NgModule,
|
|
25826
25960
|
args: [{
|
|
@@ -25964,7 +26098,7 @@ i0.ɵɵsetComponentScope(WriteQueryManagementFieldComponent, [i5.NgIf, QueryWrit
|
|
|
25964
26098
|
i0.ɵɵsetComponentScope(QueryDetailsComponent, [i5.NgIf, QueryDetailsTableComponent], [i1.RpxTranslatePipe]);
|
|
25965
26099
|
i0.ɵɵsetComponentScope(QueryWriteRespondToQueryComponent, [QueryCaseDetailsHeaderComponent,
|
|
25966
26100
|
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]);
|
|
26101
|
+
i0.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3.NgControlStatusGroup, i3.FormGroupDirective, i5.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.FormControlName, i3.RadioControlValueAccessor, QueryWriteDateInputComponent], [i1.RpxTranslatePipe]);
|
|
25968
26102
|
i0.ɵɵsetComponentScope(QueryWriteAddDocumentsComponent, [WriteCollectionFieldComponent, i3.NgControlStatusGroup, i3.FormGroupDirective], []);
|
|
25969
26103
|
|
|
25970
26104
|
class Confirmation {
|
|
@@ -35319,5 +35453,5 @@ class TestRouteSnapshotBuilder {
|
|
|
35319
35453
|
* Generated bundle index. Do not edit.
|
|
35320
35454
|
*/
|
|
35321
35455
|
|
|
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 };
|
|
35456
|
+
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
35457
|
//# sourceMappingURL=hmcts-ccd-case-ui-toolkit.js.map
|