@hmcts/ccd-case-ui-toolkit 6.16.0-query-management-raise-query-function-v4 → 6.16.0-query-management-respond-backlink-text
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +86 -234
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
- package/esm2015/lib/shared/components/palette/palette.module.js +11 -8
- package/esm2015/lib/shared/components/palette/query-management/components/index.js +1 -2
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.js +64 -81
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.js +21 -19
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +87 -225
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +29 -30
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/query-management/components/index.d.ts +0 -1
- package/lib/shared/components/palette/query-management/components/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.js +0 -125
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts +0 -20
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts.map +0 -1
|
@@ -20900,132 +20900,6 @@
|
|
|
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
|
-
|
|
21029
20903
|
var QueryWriteAddDocumentsComponent = /** @class */ (function () {
|
|
21030
20904
|
function QueryWriteAddDocumentsComponent() {
|
|
21031
20905
|
this.documentFormGroup = new i3.FormGroup({});
|
|
@@ -21094,7 +20968,7 @@
|
|
|
21094
20968
|
}] });
|
|
21095
20969
|
})();
|
|
21096
20970
|
|
|
21097
|
-
function
|
|
20971
|
+
function QueryWriteRaiseQueryComponent_p_22_Template(rf, ctx) {
|
|
21098
20972
|
if (rf & 1) {
|
|
21099
20973
|
i0__namespace.ɵɵelementStart(0, "p", 27);
|
|
21100
20974
|
i0__namespace.ɵɵelementStart(1, "span", 28);
|
|
@@ -21112,7 +20986,7 @@
|
|
|
21112
20986
|
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 4, "Enter a message"), " ");
|
|
21113
20987
|
}
|
|
21114
20988
|
}
|
|
21115
|
-
function
|
|
20989
|
+
function QueryWriteRaiseQueryComponent_p_32_Template(rf, ctx) {
|
|
21116
20990
|
if (rf & 1) {
|
|
21117
20991
|
i0__namespace.ɵɵelementStart(0, "p", 29);
|
|
21118
20992
|
i0__namespace.ɵɵelementStart(1, "span", 28);
|
|
@@ -21130,7 +21004,7 @@
|
|
|
21130
21004
|
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 4, "Enter a subject"), " ");
|
|
21131
21005
|
}
|
|
21132
21006
|
}
|
|
21133
|
-
function
|
|
21007
|
+
function QueryWriteRaiseQueryComponent_p_42_Template(rf, ctx) {
|
|
21134
21008
|
if (rf & 1) {
|
|
21135
21009
|
i0__namespace.ɵɵelementStart(0, "p", 30);
|
|
21136
21010
|
i0__namespace.ɵɵelementStart(1, "span", 28);
|
|
@@ -21148,32 +21022,13 @@
|
|
|
21148
21022
|
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 4, "Enter a query body"), " ");
|
|
21149
21023
|
}
|
|
21150
21024
|
}
|
|
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, "label", 33);
|
|
21157
|
-
i0__namespace.ɵɵtext(4);
|
|
21158
|
-
i0__namespace.ɵɵpipe(5, "rpxTranslate");
|
|
21159
|
-
i0__namespace.ɵɵelementEnd();
|
|
21160
|
-
i0__namespace.ɵɵelement(6, "ccd-query-write-date-input", 34);
|
|
21161
|
-
i0__namespace.ɵɵelementEnd();
|
|
21162
|
-
i0__namespace.ɵɵelementEnd();
|
|
21163
|
-
i0__namespace.ɵɵelementContainerEnd();
|
|
21164
|
-
}
|
|
21165
|
-
if (rf & 2) {
|
|
21166
|
-
i0__namespace.ɵɵadvance(4);
|
|
21167
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(5, 1, "Hearing Date"), " ");
|
|
21168
|
-
}
|
|
21169
|
-
}
|
|
21170
21025
|
var QueryWriteRaiseQueryComponent = /** @class */ (function () {
|
|
21171
21026
|
function QueryWriteRaiseQueryComponent() {
|
|
21172
21027
|
}
|
|
21173
21028
|
return QueryWriteRaiseQueryComponent;
|
|
21174
21029
|
}());
|
|
21175
21030
|
QueryWriteRaiseQueryComponent.ɵfac = function QueryWriteRaiseQueryComponent_Factory(t) { return new (t || QueryWriteRaiseQueryComponent)(); };
|
|
21176
|
-
QueryWriteRaiseQueryComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 62, vars:
|
|
21031
|
+
QueryWriteRaiseQueryComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: QueryWriteRaiseQueryComponent, selectors: [["ccd-query-write-raise-query"]], inputs: { formGroup: "formGroup" }, decls: 62, vars: 60, consts: [[1, "govuk-!-margin-bottom-6"], [1, "govuk-caption-l"], [1, "govuk-heading-l", "govuk-!-margin-bottom-4"], [1, "govuk-!-margin-bottom-4"], [3, "formGroup"], [1, "govuk-form-group"], [1, "govuk-label-wrapper"], ["for", "query-raise-fullName", 1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["id", "query-raise-fullName-hint", 1, "govuk-hint"], ["id", "query-raise-fullName-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-raise-fullName", "name", "query-raise-fullName", "type", "text", 1, "govuk-input", 3, "formControlName"], ["for", "query-raise-subject", 1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["id", "query-raise-subject-hint", 1, "govuk-hint"], ["id", "query-raise-subject-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-raise-subject", "name", "query-raise-subject", "type", "text", 1, "govuk-input", 3, "formControlName"], ["for", "query-raise-body", 1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["id", "query-raise-body-hint", 1, "govuk-hint"], ["id", "query-raise-body-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-raise-body", "name", "query-body", "rows", "5", "aria-describedby", "query-body-hint query-body-error", 1, "govuk-textarea", 3, "formControlName"], [1, "govuk-fieldset"], [1, "govuk-label", "govuk-label--m", "govuk-!-font-weight-bold"], ["data-module", "govuk-radios", 1, "govuk-radios", "govuk-radios--inline"], [1, "govuk-radios__item"], ["id", "query-raise-isHearingRelated-yes", "name", "query-raise-isHearingRelated-yes", "type", "radio", 1, "govuk-radios__input", 3, "checked", "value"], ["for", "query-raise-isHearingRelated-yes", 1, "govuk-label", "govuk-radios__label"], ["id", "query-raise-isHearingRelated-no", "name", "query-raise-isHearingRelated-no", "type", "radio", 1, "govuk-radios__input", 3, "checked", "value"], ["for", "query-raise-isHearingRelated-no", 1, "govuk-label", "govuk-radios__label"], ["id", "query-raise-fullName-error", 1, "govuk-error-message"], [1, "govuk-visually-hidden"], ["id", "query-raise-subject-error", 1, "govuk-error-message"], ["id", "query-raise-body-error", 1, "govuk-error-message"]], template: function QueryWriteRaiseQueryComponent_Template(rf, ctx) {
|
|
21177
21032
|
if (rf & 1) {
|
|
21178
21033
|
i0__namespace.ɵɵelementStart(0, "div");
|
|
21179
21034
|
i0__namespace.ɵɵelementStart(1, "div", 0);
|
|
@@ -21191,77 +21046,78 @@
|
|
|
21191
21046
|
i0__namespace.ɵɵelementEnd();
|
|
21192
21047
|
i0__namespace.ɵɵelement(10, "hr");
|
|
21193
21048
|
i0__namespace.ɵɵelementStart(11, "div", 3);
|
|
21194
|
-
i0__namespace.ɵɵelementStart(12, "div");
|
|
21195
|
-
i0__namespace.ɵɵelementStart(13, "div"
|
|
21049
|
+
i0__namespace.ɵɵelementStart(12, "div", 4);
|
|
21050
|
+
i0__namespace.ɵɵelementStart(13, "div");
|
|
21196
21051
|
i0__namespace.ɵɵelementStart(14, "div", 5);
|
|
21197
|
-
i0__namespace.ɵɵelementStart(15, "
|
|
21198
|
-
i0__namespace.ɵɵ
|
|
21199
|
-
i0__namespace.ɵɵ
|
|
21052
|
+
i0__namespace.ɵɵelementStart(15, "div", 6);
|
|
21053
|
+
i0__namespace.ɵɵelementStart(16, "label", 7);
|
|
21054
|
+
i0__namespace.ɵɵtext(17);
|
|
21055
|
+
i0__namespace.ɵɵpipe(18, "rpxTranslate");
|
|
21200
21056
|
i0__namespace.ɵɵelementEnd();
|
|
21201
21057
|
i0__namespace.ɵɵelementEnd();
|
|
21202
|
-
i0__namespace.ɵɵelementStart(
|
|
21203
|
-
i0__namespace.ɵɵtext(
|
|
21204
|
-
i0__namespace.ɵɵpipe(
|
|
21058
|
+
i0__namespace.ɵɵelementStart(19, "div", 8);
|
|
21059
|
+
i0__namespace.ɵɵtext(20);
|
|
21060
|
+
i0__namespace.ɵɵpipe(21, "rpxTranslate");
|
|
21205
21061
|
i0__namespace.ɵɵelementEnd();
|
|
21206
|
-
i0__namespace.ɵɵtemplate(
|
|
21207
|
-
i0__namespace.ɵɵelement(
|
|
21062
|
+
i0__namespace.ɵɵtemplate(22, QueryWriteRaiseQueryComponent_p_22_Template, 6, 6, "p", 9);
|
|
21063
|
+
i0__namespace.ɵɵelement(23, "input", 10);
|
|
21208
21064
|
i0__namespace.ɵɵelementEnd();
|
|
21209
|
-
i0__namespace.ɵɵelementStart(23, "div", 4);
|
|
21210
21065
|
i0__namespace.ɵɵelementStart(24, "div", 5);
|
|
21211
|
-
i0__namespace.ɵɵelementStart(25, "
|
|
21212
|
-
i0__namespace.ɵɵ
|
|
21213
|
-
i0__namespace.ɵɵ
|
|
21066
|
+
i0__namespace.ɵɵelementStart(25, "div", 6);
|
|
21067
|
+
i0__namespace.ɵɵelementStart(26, "label", 11);
|
|
21068
|
+
i0__namespace.ɵɵtext(27);
|
|
21069
|
+
i0__namespace.ɵɵpipe(28, "rpxTranslate");
|
|
21214
21070
|
i0__namespace.ɵɵelementEnd();
|
|
21215
21071
|
i0__namespace.ɵɵelementEnd();
|
|
21216
|
-
i0__namespace.ɵɵelementStart(
|
|
21217
|
-
i0__namespace.ɵɵtext(
|
|
21218
|
-
i0__namespace.ɵɵpipe(
|
|
21072
|
+
i0__namespace.ɵɵelementStart(29, "div", 12);
|
|
21073
|
+
i0__namespace.ɵɵtext(30);
|
|
21074
|
+
i0__namespace.ɵɵpipe(31, "rpxTranslate");
|
|
21219
21075
|
i0__namespace.ɵɵelementEnd();
|
|
21220
|
-
i0__namespace.ɵɵtemplate(
|
|
21221
|
-
i0__namespace.ɵɵelement(
|
|
21076
|
+
i0__namespace.ɵɵtemplate(32, QueryWriteRaiseQueryComponent_p_32_Template, 6, 6, "p", 13);
|
|
21077
|
+
i0__namespace.ɵɵelement(33, "input", 14);
|
|
21222
21078
|
i0__namespace.ɵɵelementEnd();
|
|
21223
|
-
i0__namespace.ɵɵelementStart(33, "div", 4);
|
|
21224
21079
|
i0__namespace.ɵɵelementStart(34, "div", 5);
|
|
21225
|
-
i0__namespace.ɵɵelementStart(35, "
|
|
21226
|
-
i0__namespace.ɵɵ
|
|
21227
|
-
i0__namespace.ɵɵ
|
|
21080
|
+
i0__namespace.ɵɵelementStart(35, "div", 6);
|
|
21081
|
+
i0__namespace.ɵɵelementStart(36, "label", 15);
|
|
21082
|
+
i0__namespace.ɵɵtext(37);
|
|
21083
|
+
i0__namespace.ɵɵpipe(38, "rpxTranslate");
|
|
21228
21084
|
i0__namespace.ɵɵelementEnd();
|
|
21229
21085
|
i0__namespace.ɵɵelementEnd();
|
|
21230
|
-
i0__namespace.ɵɵelementStart(
|
|
21231
|
-
i0__namespace.ɵɵtext(
|
|
21232
|
-
i0__namespace.ɵɵpipe(
|
|
21086
|
+
i0__namespace.ɵɵelementStart(39, "div", 16);
|
|
21087
|
+
i0__namespace.ɵɵtext(40);
|
|
21088
|
+
i0__namespace.ɵɵpipe(41, "rpxTranslate");
|
|
21233
21089
|
i0__namespace.ɵɵelementEnd();
|
|
21234
|
-
i0__namespace.ɵɵtemplate(
|
|
21235
|
-
i0__namespace.ɵɵelementStart(
|
|
21236
|
-
i0__namespace.ɵɵtext(
|
|
21090
|
+
i0__namespace.ɵɵtemplate(42, QueryWriteRaiseQueryComponent_p_42_Template, 6, 6, "p", 17);
|
|
21091
|
+
i0__namespace.ɵɵelementStart(43, "textarea", 18);
|
|
21092
|
+
i0__namespace.ɵɵtext(44, " ");
|
|
21237
21093
|
i0__namespace.ɵɵelementEnd();
|
|
21238
21094
|
i0__namespace.ɵɵelementEnd();
|
|
21239
|
-
i0__namespace.ɵɵelementStart(
|
|
21240
|
-
i0__namespace.ɵɵelementStart(
|
|
21241
|
-
i0__namespace.ɵɵelementStart(
|
|
21242
|
-
i0__namespace.ɵɵelementStart(
|
|
21243
|
-
i0__namespace.ɵɵtext(
|
|
21244
|
-
i0__namespace.ɵɵpipe(
|
|
21095
|
+
i0__namespace.ɵɵelementStart(45, "div", 5);
|
|
21096
|
+
i0__namespace.ɵɵelementStart(46, "fieldset", 19);
|
|
21097
|
+
i0__namespace.ɵɵelementStart(47, "legend");
|
|
21098
|
+
i0__namespace.ɵɵelementStart(48, "label", 20);
|
|
21099
|
+
i0__namespace.ɵɵtext(49);
|
|
21100
|
+
i0__namespace.ɵɵpipe(50, "rpxTranslate");
|
|
21245
21101
|
i0__namespace.ɵɵelementEnd();
|
|
21246
21102
|
i0__namespace.ɵɵelementEnd();
|
|
21247
|
-
i0__namespace.ɵɵelementStart(50, "div", 20);
|
|
21248
21103
|
i0__namespace.ɵɵelementStart(51, "div", 21);
|
|
21249
|
-
i0__namespace.ɵɵ
|
|
21250
|
-
i0__namespace.ɵɵ
|
|
21251
|
-
i0__namespace.ɵɵ
|
|
21252
|
-
i0__namespace.ɵɵ
|
|
21104
|
+
i0__namespace.ɵɵelementStart(52, "div", 22);
|
|
21105
|
+
i0__namespace.ɵɵelement(53, "input", 23);
|
|
21106
|
+
i0__namespace.ɵɵelementStart(54, "label", 24);
|
|
21107
|
+
i0__namespace.ɵɵtext(55);
|
|
21108
|
+
i0__namespace.ɵɵpipe(56, "rpxTranslate");
|
|
21109
|
+
i0__namespace.ɵɵelementEnd();
|
|
21253
21110
|
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");
|
|
21254
21116
|
i0__namespace.ɵɵelementEnd();
|
|
21255
|
-
i0__namespace.ɵɵelementStart(56, "div", 21);
|
|
21256
|
-
i0__namespace.ɵɵelement(57, "input", 24);
|
|
21257
|
-
i0__namespace.ɵɵelementStart(58, "label", 25);
|
|
21258
|
-
i0__namespace.ɵɵtext(59);
|
|
21259
|
-
i0__namespace.ɵɵpipe(60, "rpxTranslate");
|
|
21260
21117
|
i0__namespace.ɵɵelementEnd();
|
|
21261
21118
|
i0__namespace.ɵɵelementEnd();
|
|
21262
21119
|
i0__namespace.ɵɵelementEnd();
|
|
21263
21120
|
i0__namespace.ɵɵelementEnd();
|
|
21264
|
-
i0__namespace.ɵɵtemplate(61, QueryWriteRaiseQueryComponent_ng_container_61_Template, 7, 3, "ng-container", 26);
|
|
21265
21121
|
i0__namespace.ɵɵelementEnd();
|
|
21266
21122
|
i0__namespace.ɵɵelementEnd();
|
|
21267
21123
|
i0__namespace.ɵɵelementEnd();
|
|
@@ -21278,17 +21134,17 @@
|
|
|
21278
21134
|
var tmp_18_0 = null;
|
|
21279
21135
|
var tmp_19_0 = null;
|
|
21280
21136
|
i0__namespace.ɵɵadvance(3);
|
|
21281
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(4,
|
|
21137
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(4, 34, "Raise a query"));
|
|
21282
21138
|
i0__namespace.ɵɵadvance(3);
|
|
21283
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(7,
|
|
21284
|
-
i0__namespace.ɵɵadvance(
|
|
21139
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(7, 36, "Enter query details"));
|
|
21140
|
+
i0__namespace.ɵɵadvance(6);
|
|
21285
21141
|
i0__namespace.ɵɵproperty("formGroup", ctx.formGroup);
|
|
21286
21142
|
i0__namespace.ɵɵadvance(2);
|
|
21287
21143
|
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);
|
|
21288
21144
|
i0__namespace.ɵɵadvance(3);
|
|
21289
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21145
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(18, 38, "Full name"), " ");
|
|
21290
21146
|
i0__namespace.ɵɵadvance(3);
|
|
21291
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21147
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(21, 40, "Your full name must be included here"), " ");
|
|
21292
21148
|
i0__namespace.ɵɵadvance(2);
|
|
21293
21149
|
i0__namespace.ɵɵproperty("ngIf", (tmp_6_0 = ctx.formGroup.get("body")) == null ? null : tmp_6_0.errors == null ? null : tmp_6_0.errors.length);
|
|
21294
21150
|
i0__namespace.ɵɵadvance(1);
|
|
@@ -21297,9 +21153,9 @@
|
|
|
21297
21153
|
i0__namespace.ɵɵadvance(1);
|
|
21298
21154
|
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);
|
|
21299
21155
|
i0__namespace.ɵɵadvance(3);
|
|
21300
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21156
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(28, 42, "Query subject"), " ");
|
|
21301
21157
|
i0__namespace.ɵɵadvance(3);
|
|
21302
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21158
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(31, 44, "The subject should be a summary of your query"), " ");
|
|
21303
21159
|
i0__namespace.ɵɵadvance(2);
|
|
21304
21160
|
i0__namespace.ɵɵproperty("ngIf", (tmp_12_0 = ctx.formGroup.get("body")) == null ? null : tmp_12_0.errors == null ? null : tmp_12_0.errors.length);
|
|
21305
21161
|
i0__namespace.ɵɵadvance(1);
|
|
@@ -21308,26 +21164,24 @@
|
|
|
21308
21164
|
i0__namespace.ɵɵadvance(1);
|
|
21309
21165
|
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);
|
|
21310
21166
|
i0__namespace.ɵɵadvance(3);
|
|
21311
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21167
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(38, 46, "Query body"), " ");
|
|
21312
21168
|
i0__namespace.ɵɵadvance(3);
|
|
21313
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21169
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(41, 48, "Include as many details as possible so case workers can respond to your query"), " ");
|
|
21314
21170
|
i0__namespace.ɵɵadvance(2);
|
|
21315
21171
|
i0__namespace.ɵɵproperty("ngIf", (tmp_18_0 = ctx.formGroup.get("body")) == null ? null : tmp_18_0.errors == null ? null : tmp_18_0.errors.length);
|
|
21316
21172
|
i0__namespace.ɵɵadvance(1);
|
|
21317
21173
|
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);
|
|
21318
21174
|
i0__namespace.ɵɵproperty("formControlName", "body");
|
|
21319
21175
|
i0__namespace.ɵɵadvance(6);
|
|
21320
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21176
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(50, 50, "Is the query hearing related?"), " ");
|
|
21321
21177
|
i0__namespace.ɵɵadvance(4);
|
|
21322
21178
|
i0__namespace.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === true)("value", true);
|
|
21323
21179
|
i0__namespace.ɵɵadvance(2);
|
|
21324
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(
|
|
21180
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(56, 52, "Is the query hearing related?", null, "Yes"), " ");
|
|
21325
21181
|
i0__namespace.ɵɵadvance(3);
|
|
21326
21182
|
i0__namespace.ɵɵproperty("checked", ctx.formGroup.get("isHearingRelated").value === false)("value", false);
|
|
21327
21183
|
i0__namespace.ɵɵadvance(2);
|
|
21328
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(
|
|
21329
|
-
i0__namespace.ɵɵadvance(2);
|
|
21330
|
-
i0__namespace.ɵɵproperty("ngIf", ctx.formGroup.get("isHearingRelated").value);
|
|
21184
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind3(61, 56, "Is the query hearing related?", null, "No"), " ");
|
|
21331
21185
|
}
|
|
21332
21186
|
}, encapsulation: 2 });
|
|
21333
21187
|
(function () {
|
|
@@ -21342,7 +21196,7 @@
|
|
|
21342
21196
|
}] });
|
|
21343
21197
|
})();
|
|
21344
21198
|
|
|
21345
|
-
function
|
|
21199
|
+
function QueryWriteRespondToQueryComponent_p_27_Template(rf, ctx) {
|
|
21346
21200
|
if (rf & 1) {
|
|
21347
21201
|
i0__namespace.ɵɵelementStart(0, "p", 15);
|
|
21348
21202
|
i0__namespace.ɵɵelementStart(1, "span", 16);
|
|
@@ -21366,7 +21220,7 @@
|
|
|
21366
21220
|
return QueryWriteRespondToQueryComponent;
|
|
21367
21221
|
}());
|
|
21368
21222
|
QueryWriteRespondToQueryComponent.ɵfac = function QueryWriteRespondToQueryComponent_Factory(t) { return new (t || QueryWriteRespondToQueryComponent)(); };
|
|
21369
|
-
QueryWriteRespondToQueryComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: QueryWriteRespondToQueryComponent, selectors: [["ccd-query-write-respond-to-query"]], inputs: { queryItem: "queryItem", formGroup: "formGroup" }, decls:
|
|
21223
|
+
QueryWriteRespondToQueryComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: QueryWriteRespondToQueryComponent, selectors: [["ccd-query-write-respond-to-query"]], inputs: { queryItem: "queryItem", formGroup: "formGroup" }, decls: 30, vars: 23, consts: [[1, "govuk-!-margin-bottom-2"], ["href", "javascript:void(0)", 1, "govuk-back-link", "govuk-!-margin-top-0"], [1, "govuk-!-margin-bottom-6"], [1, "govuk-caption-l"], [1, "govuk-heading-l", "govuk-!-margin-bottom-0"], [1, "govuk-!-margin-bottom-4"], [3, "queryItem"], [1, "query-respond"], [1, "govuk-heading-m"], [3, "formGroup"], [1, "govuk-form-group", "body-textarea"], [1, "govuk-label-wrapper"], ["for", "query-body", 1, "govuk-label", "govuk-!-font-weight-bold"], ["id", "query-body-error", "class", "govuk-error-message", 4, "ngIf"], ["id", "query-body", "name", "query-body", "rows", "5", "aria-describedby", "query-body-hint query-body-error", 1, "govuk-textarea", 3, "formControlName"], ["id", "query-body-error", 1, "govuk-error-message"], [1, "govuk-visually-hidden"]], template: function QueryWriteRespondToQueryComponent_Template(rf, ctx) {
|
|
21370
21224
|
if (rf & 1) {
|
|
21371
21225
|
i0__namespace.ɵɵelementStart(0, "div", 0);
|
|
21372
21226
|
i0__namespace.ɵɵelementStart(1, "a", 1);
|
|
@@ -21393,21 +21247,23 @@
|
|
|
21393
21247
|
i0__namespace.ɵɵelementEnd();
|
|
21394
21248
|
i0__namespace.ɵɵelementEnd();
|
|
21395
21249
|
i0__namespace.ɵɵelementStart(16, "div", 7);
|
|
21396
|
-
i0__namespace.ɵɵelementStart(17, "
|
|
21397
|
-
i0__namespace.ɵɵ
|
|
21398
|
-
i0__namespace.ɵɵ
|
|
21250
|
+
i0__namespace.ɵɵelementStart(17, "div", 5);
|
|
21251
|
+
i0__namespace.ɵɵelementStart(18, "h1", 8);
|
|
21252
|
+
i0__namespace.ɵɵtext(19);
|
|
21253
|
+
i0__namespace.ɵɵpipe(20, "rpxTranslate");
|
|
21399
21254
|
i0__namespace.ɵɵelementEnd();
|
|
21400
|
-
i0__namespace.ɵɵelementStart(
|
|
21401
|
-
i0__namespace.ɵɵelementStart(
|
|
21402
|
-
i0__namespace.ɵɵelementStart(
|
|
21403
|
-
i0__namespace.ɵɵelementStart(
|
|
21404
|
-
i0__namespace.ɵɵtext(
|
|
21405
|
-
i0__namespace.ɵɵpipe(
|
|
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");
|
|
21406
21261
|
i0__namespace.ɵɵelementEnd();
|
|
21407
21262
|
i0__namespace.ɵɵelementEnd();
|
|
21408
|
-
i0__namespace.ɵɵtemplate(
|
|
21409
|
-
i0__namespace.ɵɵelementStart(
|
|
21410
|
-
i0__namespace.ɵɵtext(
|
|
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
|
+
i0__namespace.ɵɵelementEnd();
|
|
21411
21267
|
i0__namespace.ɵɵelementEnd();
|
|
21412
21268
|
i0__namespace.ɵɵelementEnd();
|
|
21413
21269
|
i0__namespace.ɵɵelementEnd();
|
|
@@ -21418,21 +21274,21 @@
|
|
|
21418
21274
|
var tmp_8_0 = null;
|
|
21419
21275
|
var tmp_9_0 = null;
|
|
21420
21276
|
i0__namespace.ɵɵadvance(2);
|
|
21421
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(3, 13, "
|
|
21277
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(3, 13, "Cancel and return to tasks"));
|
|
21422
21278
|
i0__namespace.ɵɵadvance(5);
|
|
21423
21279
|
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(8, 15, "Respond to query"));
|
|
21424
21280
|
i0__namespace.ɵɵadvance(3);
|
|
21425
21281
|
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(11, 17, "Query details"));
|
|
21426
21282
|
i0__namespace.ɵɵadvance(5);
|
|
21427
21283
|
i0__namespace.ɵɵproperty("queryItem", ctx.queryItem);
|
|
21428
|
-
i0__namespace.ɵɵadvance(
|
|
21429
|
-
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(
|
|
21284
|
+
i0__namespace.ɵɵadvance(4);
|
|
21285
|
+
i0__namespace.ɵɵtextInterpolate(i0__namespace.ɵɵpipeBind1(20, 19, "Respond to a query"));
|
|
21430
21286
|
i0__namespace.ɵɵadvance(2);
|
|
21431
21287
|
i0__namespace.ɵɵproperty("formGroup", ctx.formGroup);
|
|
21432
21288
|
i0__namespace.ɵɵadvance(1);
|
|
21433
21289
|
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);
|
|
21434
21290
|
i0__namespace.ɵɵadvance(3);
|
|
21435
|
-
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(
|
|
21291
|
+
i0__namespace.ɵɵtextInterpolate1(" ", i0__namespace.ɵɵpipeBind1(26, 21, "Response message"), " ");
|
|
21436
21292
|
i0__namespace.ɵɵadvance(2);
|
|
21437
21293
|
i0__namespace.ɵɵproperty("ngIf", (tmp_8_0 = ctx.formGroup.get("body")) == null ? null : tmp_8_0.errors == null ? null : tmp_8_0.errors.length);
|
|
21438
21294
|
i0__namespace.ɵɵadvance(1);
|
|
@@ -29366,7 +29222,6 @@
|
|
|
29366
29222
|
QueryWriteRaiseQueryComponent,
|
|
29367
29223
|
QueryCaseDetailsHeaderComponent,
|
|
29368
29224
|
QueryWriteAddDocumentsComponent,
|
|
29369
|
-
QueryWriteDateInputComponent
|
|
29370
29225
|
];
|
|
29371
29226
|
var PaletteModule = /** @class */ (function () {
|
|
29372
29227
|
function PaletteModule() {
|
|
@@ -29552,8 +29407,7 @@
|
|
|
29552
29407
|
QueryWriteRespondToQueryComponent,
|
|
29553
29408
|
QueryWriteRaiseQueryComponent,
|
|
29554
29409
|
QueryCaseDetailsHeaderComponent,
|
|
29555
|
-
QueryWriteAddDocumentsComponent,
|
|
29556
|
-
QueryWriteDateInputComponent], imports: [i5.CommonModule,
|
|
29410
|
+
QueryWriteAddDocumentsComponent], imports: [i5.CommonModule,
|
|
29557
29411
|
i1$1.RouterModule,
|
|
29558
29412
|
i3.FormsModule,
|
|
29559
29413
|
i3.ReactiveFormsModule,
|
|
@@ -29700,8 +29554,7 @@
|
|
|
29700
29554
|
QueryWriteRespondToQueryComponent,
|
|
29701
29555
|
QueryWriteRaiseQueryComponent,
|
|
29702
29556
|
QueryCaseDetailsHeaderComponent,
|
|
29703
|
-
QueryWriteAddDocumentsComponent
|
|
29704
|
-
QueryWriteDateInputComponent] });
|
|
29557
|
+
QueryWriteAddDocumentsComponent] });
|
|
29705
29558
|
})();
|
|
29706
29559
|
(function () {
|
|
29707
29560
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(PaletteModule, [{
|
|
@@ -29847,7 +29700,7 @@
|
|
|
29847
29700
|
i0__namespace.ɵɵsetComponentScope(QueryDetailsComponent, [i5__namespace.NgIf, QueryDetailsTableComponent], [i1__namespace.RpxTranslatePipe]);
|
|
29848
29701
|
i0__namespace.ɵɵsetComponentScope(QueryWriteRespondToQueryComponent, [QueryCaseDetailsHeaderComponent,
|
|
29849
29702
|
QueryDetailsTableComponent, i3__namespace.NgControlStatusGroup, i3__namespace.FormGroupDirective, i5__namespace.NgIf, i3__namespace.DefaultValueAccessor, i3__namespace.NgControlStatus, i3__namespace.FormControlName], [i1__namespace.RpxTranslatePipe]);
|
|
29850
|
-
i0__namespace.ɵɵsetComponentScope(QueryWriteRaiseQueryComponent, [QueryCaseDetailsHeaderComponent, i3__namespace.NgControlStatusGroup, i3__namespace.FormGroupDirective, i5__namespace.NgIf, i3__namespace.DefaultValueAccessor, i3__namespace.NgControlStatus, i3__namespace.FormControlName
|
|
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]);
|
|
29851
29704
|
i0__namespace.ɵɵsetComponentScope(QueryWriteAddDocumentsComponent, [WriteCollectionFieldComponent, i3__namespace.NgControlStatusGroup, i3__namespace.FormGroupDirective], []);
|
|
29852
29705
|
|
|
29853
29706
|
var Confirmation = /** @class */ (function () {
|
|
@@ -40472,7 +40325,6 @@
|
|
|
40472
40325
|
exports.QueryListData = QueryListData;
|
|
40473
40326
|
exports.QueryListItem = QueryListItem;
|
|
40474
40327
|
exports.QueryWriteAddDocumentsComponent = QueryWriteAddDocumentsComponent;
|
|
40475
|
-
exports.QueryWriteDateInputComponent = QueryWriteDateInputComponent;
|
|
40476
40328
|
exports.QueryWriteRaiseQueryComponent = QueryWriteRaiseQueryComponent;
|
|
40477
40329
|
exports.QueryWriteRespondToQueryComponent = QueryWriteRespondToQueryComponent;
|
|
40478
40330
|
exports.ReadCaseFlagFieldComponent = ReadCaseFlagFieldComponent;
|