@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
|
@@ -20900,6 +20900,132 @@
|
|
|
20900
20900
|
}] });
|
|
20901
20901
|
})();
|
|
20902
20902
|
|
|
20903
|
+
var QueryWriteDateInputComponent = /** @class */ (function () {
|
|
20904
|
+
function QueryWriteDateInputComponent() {
|
|
20905
|
+
this.disabled = false;
|
|
20906
|
+
}
|
|
20907
|
+
QueryWriteDateInputComponent.prototype.writeValue = function (date) {
|
|
20908
|
+
if (date instanceof Date && !isNaN(date.getTime())) {
|
|
20909
|
+
this.day = date.getDate();
|
|
20910
|
+
this.month = date.getMonth() + 1; // Months are zero-based
|
|
20911
|
+
this.year = date.getFullYear();
|
|
20912
|
+
}
|
|
20913
|
+
else {
|
|
20914
|
+
this.day = null;
|
|
20915
|
+
this.month = null;
|
|
20916
|
+
this.year = null;
|
|
20917
|
+
}
|
|
20918
|
+
};
|
|
20919
|
+
QueryWriteDateInputComponent.prototype.registerOnChange = function (fn) {
|
|
20920
|
+
this.onChange = fn;
|
|
20921
|
+
};
|
|
20922
|
+
QueryWriteDateInputComponent.prototype.registerOnTouched = function (fn) {
|
|
20923
|
+
this.onTouched = fn;
|
|
20924
|
+
};
|
|
20925
|
+
QueryWriteDateInputComponent.prototype.setDisabledState = function (isDisabled) {
|
|
20926
|
+
this.disabled = isDisabled;
|
|
20927
|
+
};
|
|
20928
|
+
QueryWriteDateInputComponent.prototype.updateDate = function () {
|
|
20929
|
+
var updatedValue = this.onChange && this.isValidDateInput() ?
|
|
20930
|
+
new Date(this.year, this.month - 1, this.day)
|
|
20931
|
+
: null;
|
|
20932
|
+
this.onChange(updatedValue);
|
|
20933
|
+
this.onTouched();
|
|
20934
|
+
};
|
|
20935
|
+
QueryWriteDateInputComponent.prototype.isValidDateInput = function () {
|
|
20936
|
+
var isValidDay = this.day >= 1 && this.day <= 31;
|
|
20937
|
+
var isValidMonth = this.month >= 1 && this.month <= 12;
|
|
20938
|
+
var isValidYear = this.year >= 0;
|
|
20939
|
+
return isValidDay && isValidMonth && isValidYear;
|
|
20940
|
+
};
|
|
20941
|
+
return QueryWriteDateInputComponent;
|
|
20942
|
+
}());
|
|
20943
|
+
QueryWriteDateInputComponent.ɵfac = function QueryWriteDateInputComponent_Factory(t) { return new (t || QueryWriteDateInputComponent)(); };
|
|
20944
|
+
QueryWriteDateInputComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: QueryWriteDateInputComponent, selectors: [["ccd-query-write-date-input"]], inputs: { formControlName: "formControlName" }, features: [i0__namespace.ɵɵProvidersFeature([
|
|
20945
|
+
{
|
|
20946
|
+
provide: i3.NG_VALUE_ACCESSOR,
|
|
20947
|
+
useExisting: i0.forwardRef(function () { return QueryWriteDateInputComponent; }),
|
|
20948
|
+
multi: true
|
|
20949
|
+
}
|
|
20950
|
+
])], 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) {
|
|
20951
|
+
if (rf & 1) {
|
|
20952
|
+
i0__namespace.ɵɵelementStart(0, "div", 0);
|
|
20953
|
+
i0__namespace.ɵɵelementStart(1, "div", 1);
|
|
20954
|
+
i0__namespace.ɵɵelementStart(2, "div", 2);
|
|
20955
|
+
i0__namespace.ɵɵelementStart(3, "label", 3);
|
|
20956
|
+
i0__namespace.ɵɵtext(4);
|
|
20957
|
+
i0__namespace.ɵɵpipe(5, "rpxTranslate");
|
|
20958
|
+
i0__namespace.ɵɵelementEnd();
|
|
20959
|
+
i0__namespace.ɵɵelementStart(6, "input", 4);
|
|
20960
|
+
i0__namespace.ɵɵ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(); });
|
|
20961
|
+
i0__namespace.ɵɵelementEnd();
|
|
20962
|
+
i0__namespace.ɵɵelementEnd();
|
|
20963
|
+
i0__namespace.ɵɵelementEnd();
|
|
20964
|
+
i0__namespace.ɵɵelementStart(7, "div", 1);
|
|
20965
|
+
i0__namespace.ɵɵelementStart(8, "div", 2);
|
|
20966
|
+
i0__namespace.ɵɵelementStart(9, "label", 3);
|
|
20967
|
+
i0__namespace.ɵɵtext(10);
|
|
20968
|
+
i0__namespace.ɵɵpipe(11, "rpxTranslate");
|
|
20969
|
+
i0__namespace.ɵɵelementEnd();
|
|
20970
|
+
i0__namespace.ɵɵelementStart(12, "input", 4);
|
|
20971
|
+
i0__namespace.ɵɵ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(); });
|
|
20972
|
+
i0__namespace.ɵɵelementEnd();
|
|
20973
|
+
i0__namespace.ɵɵelementEnd();
|
|
20974
|
+
i0__namespace.ɵɵelementEnd();
|
|
20975
|
+
i0__namespace.ɵɵelementStart(13, "div", 1);
|
|
20976
|
+
i0__namespace.ɵɵelementStart(14, "div", 2);
|
|
20977
|
+
i0__namespace.ɵɵelementStart(15, "label", 3);
|
|
20978
|
+
i0__namespace.ɵɵtext(16);
|
|
20979
|
+
i0__namespace.ɵɵpipe(17, "rpxTranslate");
|
|
20980
|
+
i0__namespace.ɵɵelementEnd();
|
|
20981
|
+
i0__namespace.ɵɵelementStart(18, "input", 5);
|
|
20982
|
+
i0__namespace.ɵɵ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(); });
|
|
20983
|
+
i0__namespace.ɵɵelementEnd();
|
|
20984
|
+
i0__namespace.ɵɵelementEnd();
|
|
20985
|
+
i0__namespace.ɵɵelementEnd();
|
|
20986
|
+
i0__namespace.ɵɵelementEnd();
|
|
20987
|
+
}
|
|
20988
|
+
if (rf & 2) {
|
|
20989
|
+
i0__namespace.ɵɵproperty("id", ctx.formControlName);
|
|
20990
|
+
i0__namespace.ɵɵadvance(3);
|
|
20991
|
+
i0__namespace.ɵɵproperty("for", ctx.formControlName + "-day");
|
|
20992
|
+
i0__namespace.ɵɵadvance(1);
|
|
20993
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 18, "Day"), " ");
|
|
20994
|
+
i0__namespace.ɵɵadvance(2);
|
|
20995
|
+
i0__namespace.ɵɵproperty("id", ctx.formControlName + "-day")("name", ctx.formControlName + "-day")("ngModel", ctx.day)("disabled", ctx.disabled);
|
|
20996
|
+
i0__namespace.ɵɵadvance(3);
|
|
20997
|
+
i0__namespace.ɵɵproperty("for", ctx.formControlName + "-month");
|
|
20998
|
+
i0__namespace.ɵɵadvance(1);
|
|
20999
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(11, 20, "Month"), " ");
|
|
21000
|
+
i0__namespace.ɵɵadvance(2);
|
|
21001
|
+
i0__namespace.ɵɵproperty("id", ctx.formControlName + "-month")("name", ctx.formControlName + "-month")("ngModel", ctx.month)("disabled", ctx.disabled);
|
|
21002
|
+
i0__namespace.ɵɵadvance(3);
|
|
21003
|
+
i0__namespace.ɵɵproperty("for", ctx.formControlName + "-year");
|
|
21004
|
+
i0__namespace.ɵɵadvance(1);
|
|
21005
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(17, 22, "Year"), " ");
|
|
21006
|
+
i0__namespace.ɵɵadvance(2);
|
|
21007
|
+
i0__namespace.ɵɵproperty("name", ctx.formControlName + "-year")("ngModel", ctx.year)("disabled", ctx.disabled);
|
|
21008
|
+
}
|
|
21009
|
+
}, directives: [i3__namespace.DefaultValueAccessor, i3__namespace.NgControlStatus, i3__namespace.NgModel], pipes: [i1__namespace.RpxTranslatePipe], encapsulation: 2 });
|
|
21010
|
+
(function () {
|
|
21011
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(QueryWriteDateInputComponent, [{
|
|
21012
|
+
type: i0.Component,
|
|
21013
|
+
args: [{
|
|
21014
|
+
selector: 'ccd-query-write-date-input',
|
|
21015
|
+
templateUrl: './query-write-date-input.component.html',
|
|
21016
|
+
providers: [
|
|
21017
|
+
{
|
|
21018
|
+
provide: i3.NG_VALUE_ACCESSOR,
|
|
21019
|
+
useExisting: i0.forwardRef(function () { return QueryWriteDateInputComponent; }),
|
|
21020
|
+
multi: true
|
|
21021
|
+
}
|
|
21022
|
+
]
|
|
21023
|
+
}]
|
|
21024
|
+
}], null, { formControlName: [{
|
|
21025
|
+
type: i0.Input
|
|
21026
|
+
}] });
|
|
21027
|
+
})();
|
|
21028
|
+
|
|
20903
21029
|
var QueryWriteAddDocumentsComponent = /** @class */ (function () {
|
|
20904
21030
|
function QueryWriteAddDocumentsComponent() {
|
|
20905
21031
|
this.documentFormGroup = new i3.FormGroup({});
|
|
@@ -20968,7 +21094,7 @@
|
|
|
20968
21094
|
}] });
|
|
20969
21095
|
})();
|
|
20970
21096
|
|
|
20971
|
-
function
|
|
21097
|
+
function QueryWriteRaiseQueryComponent_p_21_Template(rf, ctx) {
|
|
20972
21098
|
if (rf & 1) {
|
|
20973
21099
|
i0__namespace.ɵɵelementStart(0, "p", 27);
|
|
20974
21100
|
i0__namespace.ɵɵelementStart(1, "span", 28);
|
|
@@ -20986,7 +21112,7 @@
|
|
|
20986
21112
|
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 4, "Enter a message"), " ");
|
|
20987
21113
|
}
|
|
20988
21114
|
}
|
|
20989
|
-
function
|
|
21115
|
+
function QueryWriteRaiseQueryComponent_p_31_Template(rf, ctx) {
|
|
20990
21116
|
if (rf & 1) {
|
|
20991
21117
|
i0__namespace.ɵɵelementStart(0, "p", 29);
|
|
20992
21118
|
i0__namespace.ɵɵelementStart(1, "span", 28);
|
|
@@ -21004,7 +21130,7 @@
|
|
|
21004
21130
|
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 4, "Enter a subject"), " ");
|
|
21005
21131
|
}
|
|
21006
21132
|
}
|
|
21007
|
-
function
|
|
21133
|
+
function QueryWriteRaiseQueryComponent_p_41_Template(rf, ctx) {
|
|
21008
21134
|
if (rf & 1) {
|
|
21009
21135
|
i0__namespace.ɵɵelementStart(0, "p", 30);
|
|
21010
21136
|
i0__namespace.ɵɵelementStart(1, "span", 28);
|
|
@@ -21022,13 +21148,34 @@
|
|
|
21022
21148
|
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 4, "Enter a query body"), " ");
|
|
21023
21149
|
}
|
|
21024
21150
|
}
|
|
21151
|
+
function QueryWriteRaiseQueryComponent_ng_container_61_Template(rf, ctx) {
|
|
21152
|
+
if (rf & 1) {
|
|
21153
|
+
i0__namespace.ɵɵelementContainerStart(0);
|
|
21154
|
+
i0__namespace.ɵɵelementStart(1, "div", 31);
|
|
21155
|
+
i0__namespace.ɵɵelementStart(2, "fieldset", 32);
|
|
21156
|
+
i0__namespace.ɵɵelementStart(3, "legend");
|
|
21157
|
+
i0__namespace.ɵɵelementStart(4, "label", 33);
|
|
21158
|
+
i0__namespace.ɵɵtext(5);
|
|
21159
|
+
i0__namespace.ɵɵpipe(6, "rpxTranslate");
|
|
21160
|
+
i0__namespace.ɵɵelementEnd();
|
|
21161
|
+
i0__namespace.ɵɵelementEnd();
|
|
21162
|
+
i0__namespace.ɵɵelement(7, "ccd-query-write-date-input", 34);
|
|
21163
|
+
i0__namespace.ɵɵelementEnd();
|
|
21164
|
+
i0__namespace.ɵɵelementEnd();
|
|
21165
|
+
i0__namespace.ɵɵelementContainerEnd();
|
|
21166
|
+
}
|
|
21167
|
+
if (rf & 2) {
|
|
21168
|
+
i0__namespace.ɵɵadvance(5);
|
|
21169
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(6, 1, "Hearing date"), " ");
|
|
21170
|
+
}
|
|
21171
|
+
}
|
|
21025
21172
|
var QueryWriteRaiseQueryComponent = /** @class */ (function () {
|
|
21026
21173
|
function QueryWriteRaiseQueryComponent() {
|
|
21027
21174
|
}
|
|
21028
21175
|
return QueryWriteRaiseQueryComponent;
|
|
21029
21176
|
}());
|
|
21030
21177
|
QueryWriteRaiseQueryComponent.ɵfac = function QueryWriteRaiseQueryComponent_Factory(t) { return new (t || QueryWriteRaiseQueryComponent)(); };
|
|
21031
|
-
QueryWriteRaiseQueryComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 62, vars:
|
|
21178
|
+
QueryWriteRaiseQueryComponent.ɵcmp = i0__namespace.ɵɵ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) {
|
|
21032
21179
|
if (rf & 1) {
|
|
21033
21180
|
i0__namespace.ɵɵelementStart(0, "div");
|
|
21034
21181
|
i0__namespace.ɵɵelementStart(1, "div", 0);
|
|
@@ -21046,78 +21193,77 @@
|
|
|
21046
21193
|
i0__namespace.ɵɵelementEnd();
|
|
21047
21194
|
i0__namespace.ɵɵelement(10, "hr");
|
|
21048
21195
|
i0__namespace.ɵɵelementStart(11, "div", 3);
|
|
21049
|
-
i0__namespace.ɵɵelementStart(12, "div"
|
|
21050
|
-
i0__namespace.ɵɵelementStart(13, "div");
|
|
21196
|
+
i0__namespace.ɵɵelementStart(12, "div");
|
|
21197
|
+
i0__namespace.ɵɵelementStart(13, "div", 4);
|
|
21051
21198
|
i0__namespace.ɵɵelementStart(14, "div", 5);
|
|
21052
|
-
i0__namespace.ɵɵelementStart(15, "
|
|
21053
|
-
i0__namespace.ɵɵ
|
|
21054
|
-
i0__namespace.ɵɵ
|
|
21055
|
-
i0__namespace.ɵɵpipe(18, "rpxTranslate");
|
|
21199
|
+
i0__namespace.ɵɵelementStart(15, "label", 6);
|
|
21200
|
+
i0__namespace.ɵɵtext(16);
|
|
21201
|
+
i0__namespace.ɵɵpipe(17, "rpxTranslate");
|
|
21056
21202
|
i0__namespace.ɵɵelementEnd();
|
|
21057
21203
|
i0__namespace.ɵɵelementEnd();
|
|
21058
|
-
i0__namespace.ɵɵelementStart(
|
|
21059
|
-
i0__namespace.ɵɵtext(
|
|
21060
|
-
i0__namespace.ɵɵpipe(
|
|
21204
|
+
i0__namespace.ɵɵelementStart(18, "div", 7);
|
|
21205
|
+
i0__namespace.ɵɵtext(19);
|
|
21206
|
+
i0__namespace.ɵɵpipe(20, "rpxTranslate");
|
|
21061
21207
|
i0__namespace.ɵɵelementEnd();
|
|
21062
|
-
i0__namespace.ɵɵtemplate(
|
|
21063
|
-
i0__namespace.ɵɵelement(
|
|
21208
|
+
i0__namespace.ɵɵtemplate(21, QueryWriteRaiseQueryComponent_p_21_Template, 6, 6, "p", 8);
|
|
21209
|
+
i0__namespace.ɵɵelement(22, "input", 9);
|
|
21064
21210
|
i0__namespace.ɵɵelementEnd();
|
|
21211
|
+
i0__namespace.ɵɵelementStart(23, "div", 4);
|
|
21065
21212
|
i0__namespace.ɵɵelementStart(24, "div", 5);
|
|
21066
|
-
i0__namespace.ɵɵelementStart(25, "
|
|
21067
|
-
i0__namespace.ɵɵ
|
|
21068
|
-
i0__namespace.ɵɵ
|
|
21069
|
-
i0__namespace.ɵɵpipe(28, "rpxTranslate");
|
|
21213
|
+
i0__namespace.ɵɵelementStart(25, "label", 10);
|
|
21214
|
+
i0__namespace.ɵɵtext(26);
|
|
21215
|
+
i0__namespace.ɵɵpipe(27, "rpxTranslate");
|
|
21070
21216
|
i0__namespace.ɵɵelementEnd();
|
|
21071
21217
|
i0__namespace.ɵɵelementEnd();
|
|
21072
|
-
i0__namespace.ɵɵelementStart(
|
|
21073
|
-
i0__namespace.ɵɵtext(
|
|
21074
|
-
i0__namespace.ɵɵpipe(
|
|
21218
|
+
i0__namespace.ɵɵelementStart(28, "div", 11);
|
|
21219
|
+
i0__namespace.ɵɵtext(29);
|
|
21220
|
+
i0__namespace.ɵɵpipe(30, "rpxTranslate");
|
|
21075
21221
|
i0__namespace.ɵɵelementEnd();
|
|
21076
|
-
i0__namespace.ɵɵtemplate(
|
|
21077
|
-
i0__namespace.ɵɵelement(
|
|
21222
|
+
i0__namespace.ɵɵtemplate(31, QueryWriteRaiseQueryComponent_p_31_Template, 6, 6, "p", 12);
|
|
21223
|
+
i0__namespace.ɵɵelement(32, "input", 13);
|
|
21078
21224
|
i0__namespace.ɵɵelementEnd();
|
|
21225
|
+
i0__namespace.ɵɵelementStart(33, "div", 4);
|
|
21079
21226
|
i0__namespace.ɵɵelementStart(34, "div", 5);
|
|
21080
|
-
i0__namespace.ɵɵelementStart(35, "
|
|
21081
|
-
i0__namespace.ɵɵ
|
|
21082
|
-
i0__namespace.ɵɵ
|
|
21083
|
-
i0__namespace.ɵɵpipe(38, "rpxTranslate");
|
|
21227
|
+
i0__namespace.ɵɵelementStart(35, "label", 14);
|
|
21228
|
+
i0__namespace.ɵɵtext(36);
|
|
21229
|
+
i0__namespace.ɵɵpipe(37, "rpxTranslate");
|
|
21084
21230
|
i0__namespace.ɵɵelementEnd();
|
|
21085
21231
|
i0__namespace.ɵɵelementEnd();
|
|
21086
|
-
i0__namespace.ɵɵelementStart(
|
|
21087
|
-
i0__namespace.ɵɵtext(
|
|
21088
|
-
i0__namespace.ɵɵpipe(
|
|
21232
|
+
i0__namespace.ɵɵelementStart(38, "div", 15);
|
|
21233
|
+
i0__namespace.ɵɵtext(39);
|
|
21234
|
+
i0__namespace.ɵɵpipe(40, "rpxTranslate");
|
|
21089
21235
|
i0__namespace.ɵɵelementEnd();
|
|
21090
|
-
i0__namespace.ɵɵtemplate(
|
|
21091
|
-
i0__namespace.ɵɵelementStart(
|
|
21092
|
-
i0__namespace.ɵɵtext(
|
|
21236
|
+
i0__namespace.ɵɵtemplate(41, QueryWriteRaiseQueryComponent_p_41_Template, 6, 6, "p", 16);
|
|
21237
|
+
i0__namespace.ɵɵelementStart(42, "textarea", 17);
|
|
21238
|
+
i0__namespace.ɵɵtext(43, " ");
|
|
21093
21239
|
i0__namespace.ɵɵelementEnd();
|
|
21094
21240
|
i0__namespace.ɵɵelementEnd();
|
|
21095
|
-
i0__namespace.ɵɵelementStart(
|
|
21096
|
-
i0__namespace.ɵɵelementStart(
|
|
21097
|
-
i0__namespace.ɵɵelementStart(
|
|
21098
|
-
i0__namespace.ɵɵelementStart(
|
|
21099
|
-
i0__namespace.ɵɵtext(
|
|
21100
|
-
i0__namespace.ɵɵpipe(
|
|
21241
|
+
i0__namespace.ɵɵelementStart(44, "div", 4);
|
|
21242
|
+
i0__namespace.ɵɵelementStart(45, "fieldset", 18);
|
|
21243
|
+
i0__namespace.ɵɵelementStart(46, "legend");
|
|
21244
|
+
i0__namespace.ɵɵelementStart(47, "label", 19);
|
|
21245
|
+
i0__namespace.ɵɵtext(48);
|
|
21246
|
+
i0__namespace.ɵɵpipe(49, "rpxTranslate");
|
|
21101
21247
|
i0__namespace.ɵɵelementEnd();
|
|
21102
21248
|
i0__namespace.ɵɵelementEnd();
|
|
21249
|
+
i0__namespace.ɵɵelementStart(50, "div", 20);
|
|
21103
21250
|
i0__namespace.ɵɵelementStart(51, "div", 21);
|
|
21104
|
-
i0__namespace.ɵɵ
|
|
21105
|
-
i0__namespace.ɵɵ
|
|
21106
|
-
i0__namespace.ɵɵ
|
|
21107
|
-
i0__namespace.ɵɵ
|
|
21108
|
-
i0__namespace.ɵɵpipe(56, "rpxTranslate");
|
|
21109
|
-
i0__namespace.ɵɵelementEnd();
|
|
21251
|
+
i0__namespace.ɵɵelement(52, "input", 22);
|
|
21252
|
+
i0__namespace.ɵɵelementStart(53, "label", 23);
|
|
21253
|
+
i0__namespace.ɵɵtext(54);
|
|
21254
|
+
i0__namespace.ɵɵpipe(55, "rpxTranslate");
|
|
21110
21255
|
i0__namespace.ɵɵelementEnd();
|
|
21111
|
-
i0__namespace.ɵɵelementStart(57, "div", 22);
|
|
21112
|
-
i0__namespace.ɵɵelement(58, "input", 25);
|
|
21113
|
-
i0__namespace.ɵɵelementStart(59, "label", 26);
|
|
21114
|
-
i0__namespace.ɵɵtext(60);
|
|
21115
|
-
i0__namespace.ɵɵpipe(61, "rpxTranslate");
|
|
21116
21256
|
i0__namespace.ɵɵelementEnd();
|
|
21257
|
+
i0__namespace.ɵɵelementStart(56, "div", 21);
|
|
21258
|
+
i0__namespace.ɵɵelement(57, "input", 24);
|
|
21259
|
+
i0__namespace.ɵɵelementStart(58, "label", 25);
|
|
21260
|
+
i0__namespace.ɵɵtext(59);
|
|
21261
|
+
i0__namespace.ɵɵpipe(60, "rpxTranslate");
|
|
21117
21262
|
i0__namespace.ɵɵelementEnd();
|
|
21118
21263
|
i0__namespace.ɵɵelementEnd();
|
|
21119
21264
|
i0__namespace.ɵɵelementEnd();
|
|
21120
21265
|
i0__namespace.ɵɵelementEnd();
|
|
21266
|
+
i0__namespace.ɵɵtemplate(61, QueryWriteRaiseQueryComponent_ng_container_61_Template, 8, 3, "ng-container", 26);
|
|
21121
21267
|
i0__namespace.ɵɵelementEnd();
|
|
21122
21268
|
i0__namespace.ɵɵelementEnd();
|
|
21123
21269
|
i0__namespace.ɵɵelementEnd();
|
|
@@ -21134,17 +21280,17 @@
|
|
|
21134
21280
|
var tmp_18_0 = null;
|
|
21135
21281
|
var tmp_19_0 = null;
|
|
21136
21282
|
i0__namespace.ɵɵadvance(3);
|
|
21137
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(4,
|
|
21283
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(4, 35, "Raise a query"));
|
|
21138
21284
|
i0__namespace.ɵɵadvance(3);
|
|
21139
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(7,
|
|
21140
|
-
i0__namespace.ɵɵadvance(
|
|
21285
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(7, 37, "Enter query details"));
|
|
21286
|
+
i0__namespace.ɵɵadvance(5);
|
|
21141
21287
|
i0__namespace.ɵɵproperty("formGroup", ctx.formGroup);
|
|
21142
21288
|
i0__namespace.ɵɵadvance(2);
|
|
21143
21289
|
i0__namespace.ɵɵ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);
|
|
21144
21290
|
i0__namespace.ɵɵadvance(3);
|
|
21145
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21291
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(17, 39, "Full name"), " ");
|
|
21146
21292
|
i0__namespace.ɵɵadvance(3);
|
|
21147
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21293
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(20, 41, "Your full name must be included here"), " ");
|
|
21148
21294
|
i0__namespace.ɵɵadvance(2);
|
|
21149
21295
|
i0__namespace.ɵɵproperty("ngIf", (tmp_6_0 = ctx.formGroup.get("body")) == null ? null : tmp_6_0.errors == null ? null : tmp_6_0.errors.length);
|
|
21150
21296
|
i0__namespace.ɵɵadvance(1);
|
|
@@ -21153,9 +21299,9 @@
|
|
|
21153
21299
|
i0__namespace.ɵɵadvance(1);
|
|
21154
21300
|
i0__namespace.ɵɵ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);
|
|
21155
21301
|
i0__namespace.ɵɵadvance(3);
|
|
21156
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21302
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(27, 43, "Query subject"), " ");
|
|
21157
21303
|
i0__namespace.ɵɵadvance(3);
|
|
21158
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21304
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(30, 45, "The subject should be a summary of your query"), " ");
|
|
21159
21305
|
i0__namespace.ɵɵadvance(2);
|
|
21160
21306
|
i0__namespace.ɵɵproperty("ngIf", (tmp_12_0 = ctx.formGroup.get("body")) == null ? null : tmp_12_0.errors == null ? null : tmp_12_0.errors.length);
|
|
21161
21307
|
i0__namespace.ɵɵadvance(1);
|
|
@@ -21164,24 +21310,26 @@
|
|
|
21164
21310
|
i0__namespace.ɵɵadvance(1);
|
|
21165
21311
|
i0__namespace.ɵɵ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);
|
|
21166
21312
|
i0__namespace.ɵɵadvance(3);
|
|
21167
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21313
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(37, 47, "Query body"), " ");
|
|
21168
21314
|
i0__namespace.ɵɵadvance(3);
|
|
21169
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21315
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(40, 49, "Include as many details as possible so case workers can respond to your query"), " ");
|
|
21170
21316
|
i0__namespace.ɵɵadvance(2);
|
|
21171
21317
|
i0__namespace.ɵɵproperty("ngIf", (tmp_18_0 = ctx.formGroup.get("body")) == null ? null : tmp_18_0.errors == null ? null : tmp_18_0.errors.length);
|
|
21172
21318
|
i0__namespace.ɵɵadvance(1);
|
|
21173
21319
|
i0__namespace.ɵɵclassProp("govuk-textarea--error", (tmp_19_0 = ctx.formGroup.get("body")) == null ? null : tmp_19_0.errors == null ? null : tmp_19_0.errors.length);
|
|
21174
21320
|
i0__namespace.ɵɵproperty("formControlName", "body");
|
|
21175
21321
|
i0__namespace.ɵɵadvance(6);
|
|
21176
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21322
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(49, 51, "Is the query hearing related?"), " ");
|
|
21177
21323
|
i0__namespace.ɵɵadvance(4);
|
|
21178
21324
|
i0__namespace.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === true)("value", true);
|
|
21179
21325
|
i0__namespace.ɵɵadvance(2);
|
|
21180
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(
|
|
21326
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(55, 53, "Is the query hearing related?", null, "Yes"), " ");
|
|
21181
21327
|
i0__namespace.ɵɵadvance(3);
|
|
21182
21328
|
i0__namespace.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === false)("value", false);
|
|
21183
21329
|
i0__namespace.ɵɵadvance(2);
|
|
21184
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(
|
|
21330
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(60, 57, "Is the query hearing related?", null, "No"), " ");
|
|
21331
|
+
i0__namespace.ɵɵadvance(2);
|
|
21332
|
+
i0__namespace.ɵɵproperty("ngIf", ctx.formGroup.get("isHearingRelated").value);
|
|
21185
21333
|
}
|
|
21186
21334
|
}, encapsulation: 2 });
|
|
21187
21335
|
(function () {
|
|
@@ -21196,7 +21344,7 @@
|
|
|
21196
21344
|
}] });
|
|
21197
21345
|
})();
|
|
21198
21346
|
|
|
21199
|
-
function
|
|
21347
|
+
function QueryWriteRespondToQueryComponent_p_26_Template(rf, ctx) {
|
|
21200
21348
|
if (rf & 1) {
|
|
21201
21349
|
i0__namespace.ɵɵelementStart(0, "p", 15);
|
|
21202
21350
|
i0__namespace.ɵɵelementStart(1, "span", 16);
|
|
@@ -21220,7 +21368,7 @@
|
|
|
21220
21368
|
return QueryWriteRespondToQueryComponent;
|
|
21221
21369
|
}());
|
|
21222
21370
|
QueryWriteRespondToQueryComponent.ɵfac = function QueryWriteRespondToQueryComponent_Factory(t) { return new (t || QueryWriteRespondToQueryComponent)(); };
|
|
21223
|
-
QueryWriteRespondToQueryComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: QueryWriteRespondToQueryComponent, selectors: [["ccd-query-write-respond-to-query"]], inputs: { queryItem: "queryItem", formGroup: "formGroup" }, decls:
|
|
21371
|
+
QueryWriteRespondToQueryComponent.ɵcmp = i0__namespace.ɵɵ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) {
|
|
21224
21372
|
if (rf & 1) {
|
|
21225
21373
|
i0__namespace.ɵɵelementStart(0, "div", 0);
|
|
21226
21374
|
i0__namespace.ɵɵelementStart(1, "a", 1);
|
|
@@ -21247,23 +21395,21 @@
|
|
|
21247
21395
|
i0__namespace.ɵɵelementEnd();
|
|
21248
21396
|
i0__namespace.ɵɵelementEnd();
|
|
21249
21397
|
i0__namespace.ɵɵelementStart(16, "div", 7);
|
|
21250
|
-
i0__namespace.ɵɵelementStart(17, "
|
|
21251
|
-
i0__namespace.ɵɵ
|
|
21252
|
-
i0__namespace.ɵɵ
|
|
21253
|
-
i0__namespace.ɵɵpipe(20, "rpxTranslate");
|
|
21254
|
-
i0__namespace.ɵɵelementEnd();
|
|
21255
|
-
i0__namespace.ɵɵelementStart(21, "div", 9);
|
|
21256
|
-
i0__namespace.ɵɵelementStart(22, "div", 10);
|
|
21257
|
-
i0__namespace.ɵɵelementStart(23, "div", 11);
|
|
21258
|
-
i0__namespace.ɵɵelementStart(24, "label", 12);
|
|
21259
|
-
i0__namespace.ɵɵtext(25);
|
|
21260
|
-
i0__namespace.ɵɵpipe(26, "rpxTranslate");
|
|
21398
|
+
i0__namespace.ɵɵelementStart(17, "h1", 8);
|
|
21399
|
+
i0__namespace.ɵɵtext(18);
|
|
21400
|
+
i0__namespace.ɵɵpipe(19, "rpxTranslate");
|
|
21261
21401
|
i0__namespace.ɵɵelementEnd();
|
|
21402
|
+
i0__namespace.ɵɵelementStart(20, "div", 9);
|
|
21403
|
+
i0__namespace.ɵɵelementStart(21, "div", 10);
|
|
21404
|
+
i0__namespace.ɵɵelementStart(22, "div", 11);
|
|
21405
|
+
i0__namespace.ɵɵelementStart(23, "label", 12);
|
|
21406
|
+
i0__namespace.ɵɵtext(24);
|
|
21407
|
+
i0__namespace.ɵɵpipe(25, "rpxTranslate");
|
|
21262
21408
|
i0__namespace.ɵɵelementEnd();
|
|
21263
|
-
i0__namespace.ɵɵtemplate(27, QueryWriteRespondToQueryComponent_p_27_Template, 6, 6, "p", 13);
|
|
21264
|
-
i0__namespace.ɵɵelementStart(28, "textarea", 14);
|
|
21265
|
-
i0__namespace.ɵɵtext(29, " ");
|
|
21266
21409
|
i0__namespace.ɵɵelementEnd();
|
|
21410
|
+
i0__namespace.ɵɵtemplate(26, QueryWriteRespondToQueryComponent_p_26_Template, 6, 6, "p", 13);
|
|
21411
|
+
i0__namespace.ɵɵelementStart(27, "textarea", 14);
|
|
21412
|
+
i0__namespace.ɵɵtext(28, " ");
|
|
21267
21413
|
i0__namespace.ɵɵelementEnd();
|
|
21268
21414
|
i0__namespace.ɵɵelementEnd();
|
|
21269
21415
|
i0__namespace.ɵɵelementEnd();
|
|
@@ -21274,21 +21420,21 @@
|
|
|
21274
21420
|
var tmp_8_0 = null;
|
|
21275
21421
|
var tmp_9_0 = null;
|
|
21276
21422
|
i0__namespace.ɵɵadvance(2);
|
|
21277
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(3, 13, "
|
|
21423
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(3, 13, "Back to tasks"));
|
|
21278
21424
|
i0__namespace.ɵɵadvance(5);
|
|
21279
21425
|
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(8, 15, "Respond to query"));
|
|
21280
21426
|
i0__namespace.ɵɵadvance(3);
|
|
21281
21427
|
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(11, 17, "Query details"));
|
|
21282
21428
|
i0__namespace.ɵɵadvance(5);
|
|
21283
21429
|
i0__namespace.ɵɵproperty("queryItem", ctx.queryItem);
|
|
21284
|
-
i0__namespace.ɵɵadvance(
|
|
21285
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(
|
|
21430
|
+
i0__namespace.ɵɵadvance(3);
|
|
21431
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(19, 19, "Respond to a query"));
|
|
21286
21432
|
i0__namespace.ɵɵadvance(2);
|
|
21287
21433
|
i0__namespace.ɵɵproperty("formGroup", ctx.formGroup);
|
|
21288
21434
|
i0__namespace.ɵɵadvance(1);
|
|
21289
21435
|
i0__namespace.ɵɵ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);
|
|
21290
21436
|
i0__namespace.ɵɵadvance(3);
|
|
21291
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21437
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(25, 21, "Response message"), " ");
|
|
21292
21438
|
i0__namespace.ɵɵadvance(2);
|
|
21293
21439
|
i0__namespace.ɵɵproperty("ngIf", (tmp_8_0 = ctx.formGroup.get("body")) == null ? null : tmp_8_0.errors == null ? null : tmp_8_0.errors.length);
|
|
21294
21440
|
i0__namespace.ɵɵadvance(1);
|
|
@@ -29222,6 +29368,7 @@
|
|
|
29222
29368
|
QueryWriteRaiseQueryComponent,
|
|
29223
29369
|
QueryCaseDetailsHeaderComponent,
|
|
29224
29370
|
QueryWriteAddDocumentsComponent,
|
|
29371
|
+
QueryWriteDateInputComponent
|
|
29225
29372
|
];
|
|
29226
29373
|
var PaletteModule = /** @class */ (function () {
|
|
29227
29374
|
function PaletteModule() {
|
|
@@ -29407,7 +29554,8 @@
|
|
|
29407
29554
|
QueryWriteRespondToQueryComponent,
|
|
29408
29555
|
QueryWriteRaiseQueryComponent,
|
|
29409
29556
|
QueryCaseDetailsHeaderComponent,
|
|
29410
|
-
QueryWriteAddDocumentsComponent
|
|
29557
|
+
QueryWriteAddDocumentsComponent,
|
|
29558
|
+
QueryWriteDateInputComponent], imports: [i5.CommonModule,
|
|
29411
29559
|
i1$1.RouterModule,
|
|
29412
29560
|
i3.FormsModule,
|
|
29413
29561
|
i3.ReactiveFormsModule,
|
|
@@ -29554,7 +29702,8 @@
|
|
|
29554
29702
|
QueryWriteRespondToQueryComponent,
|
|
29555
29703
|
QueryWriteRaiseQueryComponent,
|
|
29556
29704
|
QueryCaseDetailsHeaderComponent,
|
|
29557
|
-
QueryWriteAddDocumentsComponent
|
|
29705
|
+
QueryWriteAddDocumentsComponent,
|
|
29706
|
+
QueryWriteDateInputComponent] });
|
|
29558
29707
|
})();
|
|
29559
29708
|
(function () {
|
|
29560
29709
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(PaletteModule, [{
|
|
@@ -29700,7 +29849,7 @@
|
|
|
29700
29849
|
i0__namespace.ɵɵsetComponentScope(QueryDetailsComponent, [i5__namespace.NgIf, QueryDetailsTableComponent], [i1__namespace.RpxTranslatePipe]);
|
|
29701
29850
|
i0__namespace.ɵɵsetComponentScope(QueryWriteRespondToQueryComponent, [QueryCaseDetailsHeaderComponent,
|
|
29702
29851
|
QueryDetailsTableComponent, i3__namespace.NgControlStatusGroup, i3__namespace.FormGroupDirective, i5__namespace.NgIf, i3__namespace.DefaultValueAccessor, i3__namespace.NgControlStatus, i3__namespace.FormControlName], [i1__namespace.RpxTranslatePipe]);
|
|
29703
|
-
i0__namespace.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3__namespace.NgControlStatusGroup, i3__namespace.FormGroupDirective, i5__namespace.NgIf, i3__namespace.DefaultValueAccessor, i3__namespace.NgControlStatus, i3__namespace.FormControlName], [i1__namespace.RpxTranslatePipe]);
|
|
29852
|
+
i0__namespace.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3__namespace.NgControlStatusGroup, i3__namespace.FormGroupDirective, i5__namespace.NgIf, i3__namespace.DefaultValueAccessor, i3__namespace.NgControlStatus, i3__namespace.FormControlName, i3__namespace.RadioControlValueAccessor, QueryWriteDateInputComponent], [i1__namespace.RpxTranslatePipe]);
|
|
29704
29853
|
i0__namespace.ɵɵsetComponentScope(QueryWriteAddDocumentsComponent, [WriteCollectionFieldComponent, i3__namespace.NgControlStatusGroup, i3__namespace.FormGroupDirective], []);
|
|
29705
29854
|
|
|
29706
29855
|
var Confirmation = /** @class */ (function () {
|
|
@@ -40325,6 +40474,7 @@
|
|
|
40325
40474
|
exports.QueryListData = QueryListData;
|
|
40326
40475
|
exports.QueryListItem = QueryListItem;
|
|
40327
40476
|
exports.QueryWriteAddDocumentsComponent = QueryWriteAddDocumentsComponent;
|
|
40477
|
+
exports.QueryWriteDateInputComponent = QueryWriteDateInputComponent;
|
|
40328
40478
|
exports.QueryWriteRaiseQueryComponent = QueryWriteRaiseQueryComponent;
|
|
40329
40479
|
exports.QueryWriteRespondToQueryComponent = QueryWriteRespondToQueryComponent;
|
|
40330
40480
|
exports.ReadCaseFlagFieldComponent = ReadCaseFlagFieldComponent;
|