@hmcts/ccd-case-ui-toolkit 7.3.67-srt-rc1 → 7.3.68-4216
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/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +1048 -145
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +4 -20
- package/index.d.ts.map +1 -1
- package/package.json +2 -3
|
@@ -17,7 +17,6 @@ import moment from 'moment';
|
|
|
17
17
|
import { __decorate, __metadata } from 'tslib';
|
|
18
18
|
import * as _ from 'underscore';
|
|
19
19
|
import 'reflect-metadata';
|
|
20
|
-
import { generate } from 'pegjs';
|
|
21
20
|
import { StateMachine } from '@edium/fsm';
|
|
22
21
|
import * as i1$3 from '@angular/material/legacy-dialog';
|
|
23
22
|
import { MAT_LEGACY_DIALOG_DATA, MatLegacyDialogModule } from '@angular/material/legacy-dialog';
|
|
@@ -1263,12 +1262,6 @@ class AbstractAppConfig {
|
|
|
1263
1262
|
return 'ithc';
|
|
1264
1263
|
return 'prod';
|
|
1265
1264
|
}
|
|
1266
|
-
getWASupportedRoleCategories() {
|
|
1267
|
-
return [];
|
|
1268
|
-
}
|
|
1269
|
-
getWASupportedRoleTypes() {
|
|
1270
|
-
return [];
|
|
1271
|
-
}
|
|
1272
1265
|
getCamRoleAssignmentsApiUrl() {
|
|
1273
1266
|
return undefined;
|
|
1274
1267
|
}
|
|
@@ -1325,8 +1318,6 @@ class CaseEditorConfig {
|
|
|
1325
1318
|
icp_jurisdictions;
|
|
1326
1319
|
events_to_hide;
|
|
1327
1320
|
enable_service_specific_multi_followups;
|
|
1328
|
-
wa_supported_role_categories;
|
|
1329
|
-
wa_supported_role_types;
|
|
1330
1321
|
}
|
|
1331
1322
|
|
|
1332
1323
|
class StructuredLoggerService {
|
|
@@ -4806,107 +4797,1036 @@ class FieldsUtils {
|
|
|
4806
4797
|
type: Injectable
|
|
4807
4798
|
}], null, null); })();
|
|
4808
4799
|
|
|
4809
|
-
|
|
4800
|
+
// @ts-nocheck
|
|
4801
|
+
// This file is generated by npm run generate:condition-parser. Do not edit by hand.
|
|
4802
|
+
// @generated by Peggy 5.1.0.
|
|
4803
|
+
//
|
|
4804
|
+
// https://peggyjs.org/
|
|
4805
|
+
class peg$SyntaxError extends SyntaxError {
|
|
4806
|
+
constructor(message, expected, found, location) {
|
|
4807
|
+
super(message);
|
|
4808
|
+
this.expected = expected;
|
|
4809
|
+
this.found = found;
|
|
4810
|
+
this.location = location;
|
|
4811
|
+
this.name = "SyntaxError";
|
|
4812
|
+
}
|
|
4813
|
+
format(sources) {
|
|
4814
|
+
let str = "Error: " + this.message;
|
|
4815
|
+
if (this.location) {
|
|
4816
|
+
let src = null;
|
|
4817
|
+
const st = sources.find(s => s.source === this.location.source);
|
|
4818
|
+
if (st) {
|
|
4819
|
+
src = st.text.split(/\r\n|\n|\r/g);
|
|
4820
|
+
}
|
|
4821
|
+
const s = this.location.start;
|
|
4822
|
+
const offset_s = (this.location.source && (typeof this.location.source.offset === "function"))
|
|
4823
|
+
? this.location.source.offset(s)
|
|
4824
|
+
: s;
|
|
4825
|
+
const loc = this.location.source + ":" + offset_s.line + ":" + offset_s.column;
|
|
4826
|
+
if (src) {
|
|
4827
|
+
const e = this.location.end;
|
|
4828
|
+
const filler = "".padEnd(offset_s.line.toString().length, " ");
|
|
4829
|
+
const line = src[s.line - 1];
|
|
4830
|
+
const last = s.line === e.line ? e.column : line.length + 1;
|
|
4831
|
+
const hatLen = (last - s.column) || 1;
|
|
4832
|
+
str += "\n --> " + loc + "\n"
|
|
4833
|
+
+ filler + " |\n"
|
|
4834
|
+
+ offset_s.line + " | " + line + "\n"
|
|
4835
|
+
+ filler + " | " + "".padEnd(s.column - 1, " ")
|
|
4836
|
+
+ "".padEnd(hatLen, "^");
|
|
4837
|
+
}
|
|
4838
|
+
else {
|
|
4839
|
+
str += "\n at " + loc;
|
|
4840
|
+
}
|
|
4841
|
+
}
|
|
4842
|
+
return str;
|
|
4843
|
+
}
|
|
4844
|
+
static buildMessage(expected, found) {
|
|
4845
|
+
function hex(ch) {
|
|
4846
|
+
return ch.codePointAt(0).toString(16).toUpperCase();
|
|
4847
|
+
}
|
|
4848
|
+
const nonPrintable = Object.prototype.hasOwnProperty.call(RegExp.prototype, "unicode")
|
|
4849
|
+
? new RegExp("[\\p{C}\\p{Mn}\\p{Mc}]", "gu")
|
|
4850
|
+
: null;
|
|
4851
|
+
function unicodeEscape(s) {
|
|
4852
|
+
if (nonPrintable) {
|
|
4853
|
+
return s.replace(nonPrintable, ch => "\\u{" + hex(ch) + "}");
|
|
4854
|
+
}
|
|
4855
|
+
return s;
|
|
4856
|
+
}
|
|
4857
|
+
function literalEscape(s) {
|
|
4858
|
+
return unicodeEscape(s
|
|
4859
|
+
.replace(/\\/g, "\\\\")
|
|
4860
|
+
.replace(/"/g, "\\\"")
|
|
4861
|
+
.replace(/\0/g, "\\0")
|
|
4862
|
+
.replace(/\t/g, "\\t")
|
|
4863
|
+
.replace(/\n/g, "\\n")
|
|
4864
|
+
.replace(/\r/g, "\\r")
|
|
4865
|
+
.replace(/[\x00-\x0F]/g, ch => "\\x0" + hex(ch))
|
|
4866
|
+
.replace(/[\x10-\x1F\x7F-\x9F]/g, ch => "\\x" + hex(ch)));
|
|
4867
|
+
}
|
|
4868
|
+
function classEscape(s) {
|
|
4869
|
+
return unicodeEscape(s
|
|
4870
|
+
.replace(/\\/g, "\\\\")
|
|
4871
|
+
.replace(/\]/g, "\\]")
|
|
4872
|
+
.replace(/\^/g, "\\^")
|
|
4873
|
+
.replace(/-/g, "\\-")
|
|
4874
|
+
.replace(/\0/g, "\\0")
|
|
4875
|
+
.replace(/\t/g, "\\t")
|
|
4876
|
+
.replace(/\n/g, "\\n")
|
|
4877
|
+
.replace(/\r/g, "\\r")
|
|
4878
|
+
.replace(/[\x00-\x0F]/g, ch => "\\x0" + hex(ch))
|
|
4879
|
+
.replace(/[\x10-\x1F\x7F-\x9F]/g, ch => "\\x" + hex(ch)));
|
|
4880
|
+
}
|
|
4881
|
+
const DESCRIBE_EXPECTATION_FNS = {
|
|
4882
|
+
literal(expectation) {
|
|
4883
|
+
return "\"" + literalEscape(expectation.text) + "\"";
|
|
4884
|
+
},
|
|
4885
|
+
class(expectation) {
|
|
4886
|
+
const escapedParts = expectation.parts.map(part => (Array.isArray(part)
|
|
4887
|
+
? classEscape(part[0]) + "-" + classEscape(part[1])
|
|
4888
|
+
: classEscape(part)));
|
|
4889
|
+
return "[" + (expectation.inverted ? "^" : "") + escapedParts.join("") + "]" + (expectation.unicode ? "u" : "");
|
|
4890
|
+
},
|
|
4891
|
+
any() {
|
|
4892
|
+
return "any character";
|
|
4893
|
+
},
|
|
4894
|
+
end() {
|
|
4895
|
+
return "end of input";
|
|
4896
|
+
},
|
|
4897
|
+
other(expectation) {
|
|
4898
|
+
return expectation.description;
|
|
4899
|
+
},
|
|
4900
|
+
};
|
|
4901
|
+
function describeExpectation(expectation) {
|
|
4902
|
+
return DESCRIBE_EXPECTATION_FNS[expectation.type](expectation);
|
|
4903
|
+
}
|
|
4904
|
+
function describeExpected(expected) {
|
|
4905
|
+
const descriptions = expected.map(describeExpectation);
|
|
4906
|
+
descriptions.sort();
|
|
4907
|
+
if (descriptions.length > 0) {
|
|
4908
|
+
let j = 1;
|
|
4909
|
+
for (let i = 1; i < descriptions.length; i++) {
|
|
4910
|
+
if (descriptions[i - 1] !== descriptions[i]) {
|
|
4911
|
+
descriptions[j] = descriptions[i];
|
|
4912
|
+
j++;
|
|
4913
|
+
}
|
|
4914
|
+
}
|
|
4915
|
+
descriptions.length = j;
|
|
4916
|
+
}
|
|
4917
|
+
switch (descriptions.length) {
|
|
4918
|
+
case 1:
|
|
4919
|
+
return descriptions[0];
|
|
4920
|
+
case 2:
|
|
4921
|
+
return descriptions[0] + " or " + descriptions[1];
|
|
4922
|
+
default:
|
|
4923
|
+
return descriptions.slice(0, -1).join(", ")
|
|
4924
|
+
+ ", or "
|
|
4925
|
+
+ descriptions[descriptions.length - 1];
|
|
4926
|
+
}
|
|
4927
|
+
}
|
|
4928
|
+
function describeFound(found) {
|
|
4929
|
+
return found ? "\"" + literalEscape(found) + "\"" : "end of input";
|
|
4930
|
+
}
|
|
4931
|
+
return "Expected " + describeExpected(expected) + " but " + describeFound(found) + " found.";
|
|
4932
|
+
}
|
|
4933
|
+
}
|
|
4934
|
+
function peg$parse(input, options) {
|
|
4935
|
+
options = options !== undefined ? options : {};
|
|
4936
|
+
const peg$FAILED = {};
|
|
4937
|
+
const peg$source = options.grammarSource;
|
|
4938
|
+
const peg$startRuleFunctions = {
|
|
4939
|
+
Start: peg$parseStart,
|
|
4940
|
+
};
|
|
4941
|
+
let peg$startRuleFunction = peg$parseStart;
|
|
4942
|
+
const peg$c0 = "AND";
|
|
4943
|
+
const peg$c1 = "OR";
|
|
4944
|
+
const peg$c2 = "[";
|
|
4945
|
+
const peg$c3 = "]";
|
|
4946
|
+
const peg$c4 = "\"";
|
|
4947
|
+
const peg$c5 = "(";
|
|
4948
|
+
const peg$c6 = ")";
|
|
4949
|
+
const peg$c7 = "=";
|
|
4950
|
+
const peg$c8 = "!=";
|
|
4951
|
+
const peg$c9 = "CONTAINS";
|
|
4952
|
+
const peg$r0 = /^[a-zA-Z]/;
|
|
4953
|
+
const peg$r1 = /^[A-Za-z0-9._\-]/;
|
|
4954
|
+
const peg$r2 = /^[0-9]/;
|
|
4955
|
+
const peg$r3 = /^[A-Za-z0-9.,* _&()\/\-]/;
|
|
4956
|
+
const peg$r4 = /^[ \t]/;
|
|
4957
|
+
const peg$e0 = peg$literalExpectation("AND", false);
|
|
4958
|
+
const peg$e1 = peg$literalExpectation("OR", false);
|
|
4959
|
+
const peg$e2 = peg$classExpectation([["a", "z"], ["A", "Z"]], false, false, false);
|
|
4960
|
+
const peg$e3 = peg$classExpectation([["A", "Z"], ["a", "z"], ["0", "9"], ".", "_", "-"], false, false, false);
|
|
4961
|
+
const peg$e4 = peg$literalExpectation("[", false);
|
|
4962
|
+
const peg$e5 = peg$literalExpectation("]", false);
|
|
4963
|
+
const peg$e6 = peg$classExpectation([["0", "9"]], false, false, false);
|
|
4964
|
+
const peg$e7 = peg$literalExpectation("\"", false);
|
|
4965
|
+
const peg$e8 = peg$classExpectation([["A", "Z"], ["a", "z"], ["0", "9"], ".", ",", "*", " ", "_", "&", "(", ")", "/", "-"], false, false, false);
|
|
4966
|
+
const peg$e9 = peg$literalExpectation("(", false);
|
|
4967
|
+
const peg$e10 = peg$literalExpectation(")", false);
|
|
4968
|
+
const peg$e11 = peg$literalExpectation("=", false);
|
|
4969
|
+
const peg$e12 = peg$literalExpectation("!=", false);
|
|
4970
|
+
const peg$e13 = peg$literalExpectation("CONTAINS", false);
|
|
4971
|
+
const peg$e14 = peg$otherExpectation("Whitespace");
|
|
4972
|
+
const peg$e15 = peg$classExpectation([" ", "\t"], false, false, false);
|
|
4973
|
+
const peg$e16 = peg$otherExpectation("One or more whitespaces");
|
|
4974
|
+
function peg$f0(formula, join) { return flat([[formula], join[0]], 1); }
|
|
4975
|
+
function peg$f1(eq, joins) { return flat([eq, flat(joins)]); }
|
|
4976
|
+
function peg$f2(comp, eq) { return [comp, eq]; }
|
|
4977
|
+
function peg$f3(comp, f) { return [comp, f]; }
|
|
4978
|
+
function peg$f4(fr, op, val) { return { fieldReference: fr, comparator: op, value: val }; }
|
|
4979
|
+
function peg$f5(c) { return c; }
|
|
4980
|
+
function peg$f6(c) { return c; }
|
|
4981
|
+
function peg$f7(l) { return l.join(""); }
|
|
4982
|
+
function peg$f8(v) { return v.join(""); }
|
|
4983
|
+
function peg$f9(v) { return parseInt(v.join("")); }
|
|
4984
|
+
function peg$f10(s1, fr, s2) { return s1 + fr + s2; }
|
|
4985
|
+
function peg$f11(characters) { return characters.join(""); }
|
|
4986
|
+
function peg$f12(val) { return val.join(""); }
|
|
4987
|
+
let peg$currPos = options.peg$currPos | 0;
|
|
4988
|
+
let peg$savedPos = peg$currPos;
|
|
4989
|
+
const peg$posDetailsCache = [{ line: 1, column: 1 }];
|
|
4990
|
+
let peg$maxFailPos = peg$currPos;
|
|
4991
|
+
let peg$maxFailExpected = options.peg$maxFailExpected || [];
|
|
4992
|
+
let peg$silentFails = options.peg$silentFails | 0;
|
|
4993
|
+
let peg$result;
|
|
4994
|
+
if (options.startRule) {
|
|
4995
|
+
if (!(options.startRule in peg$startRuleFunctions)) {
|
|
4996
|
+
throw new Error("Can't start parsing from rule \"" + options.startRule + "\".");
|
|
4997
|
+
}
|
|
4998
|
+
peg$startRuleFunction = peg$startRuleFunctions[options.startRule];
|
|
4999
|
+
}
|
|
5000
|
+
function text() {
|
|
5001
|
+
return input.substring(peg$savedPos, peg$currPos);
|
|
5002
|
+
}
|
|
5003
|
+
function offset() {
|
|
5004
|
+
return peg$savedPos;
|
|
5005
|
+
}
|
|
5006
|
+
function range() {
|
|
5007
|
+
return {
|
|
5008
|
+
source: peg$source,
|
|
5009
|
+
start: peg$savedPos,
|
|
5010
|
+
end: peg$currPos,
|
|
5011
|
+
};
|
|
5012
|
+
}
|
|
5013
|
+
function location() {
|
|
5014
|
+
return peg$computeLocation(peg$savedPos, peg$currPos);
|
|
5015
|
+
}
|
|
5016
|
+
function expected(description, location) {
|
|
5017
|
+
location = location !== undefined
|
|
5018
|
+
? location
|
|
5019
|
+
: peg$computeLocation(peg$savedPos, peg$currPos);
|
|
5020
|
+
throw peg$buildStructuredError([peg$otherExpectation(description)], input.substring(peg$savedPos, peg$currPos), location);
|
|
5021
|
+
}
|
|
5022
|
+
function error(message, location) {
|
|
5023
|
+
location = location !== undefined
|
|
5024
|
+
? location
|
|
5025
|
+
: peg$computeLocation(peg$savedPos, peg$currPos);
|
|
5026
|
+
throw peg$buildSimpleError(message, location);
|
|
5027
|
+
}
|
|
5028
|
+
function peg$getUnicode(pos = peg$currPos) {
|
|
5029
|
+
const cp = input.codePointAt(pos);
|
|
5030
|
+
if (cp === undefined) {
|
|
5031
|
+
return "";
|
|
5032
|
+
}
|
|
5033
|
+
return String.fromCodePoint(cp);
|
|
5034
|
+
}
|
|
5035
|
+
function peg$literalExpectation(text, ignoreCase) {
|
|
5036
|
+
return { type: "literal", text, ignoreCase };
|
|
5037
|
+
}
|
|
5038
|
+
function peg$classExpectation(parts, inverted, ignoreCase, unicode) {
|
|
5039
|
+
return { type: "class", parts, inverted, ignoreCase, unicode };
|
|
5040
|
+
}
|
|
5041
|
+
function peg$anyExpectation() {
|
|
5042
|
+
return { type: "any" };
|
|
5043
|
+
}
|
|
5044
|
+
function peg$endExpectation() {
|
|
5045
|
+
return { type: "end" };
|
|
5046
|
+
}
|
|
5047
|
+
function peg$otherExpectation(description) {
|
|
5048
|
+
return { type: "other", description };
|
|
5049
|
+
}
|
|
5050
|
+
function peg$computePosDetails(pos) {
|
|
5051
|
+
let details = peg$posDetailsCache[pos];
|
|
5052
|
+
let p;
|
|
5053
|
+
if (details) {
|
|
5054
|
+
return details;
|
|
5055
|
+
}
|
|
5056
|
+
else {
|
|
5057
|
+
if (pos >= peg$posDetailsCache.length) {
|
|
5058
|
+
p = peg$posDetailsCache.length - 1;
|
|
5059
|
+
}
|
|
5060
|
+
else {
|
|
5061
|
+
p = pos;
|
|
5062
|
+
while (!peg$posDetailsCache[--p]) { }
|
|
5063
|
+
}
|
|
5064
|
+
details = peg$posDetailsCache[p];
|
|
5065
|
+
details = {
|
|
5066
|
+
line: details.line,
|
|
5067
|
+
column: details.column,
|
|
5068
|
+
};
|
|
5069
|
+
while (p < pos) {
|
|
5070
|
+
if (input.charCodeAt(p) === 10) {
|
|
5071
|
+
details.line++;
|
|
5072
|
+
details.column = 1;
|
|
5073
|
+
}
|
|
5074
|
+
else {
|
|
5075
|
+
details.column++;
|
|
5076
|
+
}
|
|
5077
|
+
p++;
|
|
5078
|
+
}
|
|
5079
|
+
peg$posDetailsCache[pos] = details;
|
|
5080
|
+
return details;
|
|
5081
|
+
}
|
|
5082
|
+
}
|
|
5083
|
+
function peg$computeLocation(startPos, endPos, offset) {
|
|
5084
|
+
const startPosDetails = peg$computePosDetails(startPos);
|
|
5085
|
+
const endPosDetails = peg$computePosDetails(endPos);
|
|
5086
|
+
const res = {
|
|
5087
|
+
source: peg$source,
|
|
5088
|
+
start: {
|
|
5089
|
+
offset: startPos,
|
|
5090
|
+
line: startPosDetails.line,
|
|
5091
|
+
column: startPosDetails.column,
|
|
5092
|
+
},
|
|
5093
|
+
end: {
|
|
5094
|
+
offset: endPos,
|
|
5095
|
+
line: endPosDetails.line,
|
|
5096
|
+
column: endPosDetails.column,
|
|
5097
|
+
},
|
|
5098
|
+
};
|
|
5099
|
+
if (offset && peg$source && (typeof peg$source.offset === "function")) {
|
|
5100
|
+
res.start = peg$source.offset(res.start);
|
|
5101
|
+
res.end = peg$source.offset(res.end);
|
|
5102
|
+
}
|
|
5103
|
+
return res;
|
|
5104
|
+
}
|
|
5105
|
+
function peg$fail(expected) {
|
|
5106
|
+
if (peg$currPos < peg$maxFailPos) {
|
|
5107
|
+
return;
|
|
5108
|
+
}
|
|
5109
|
+
if (peg$currPos > peg$maxFailPos) {
|
|
5110
|
+
peg$maxFailPos = peg$currPos;
|
|
5111
|
+
peg$maxFailExpected = [];
|
|
5112
|
+
}
|
|
5113
|
+
peg$maxFailExpected.push(expected);
|
|
5114
|
+
}
|
|
5115
|
+
function peg$buildSimpleError(message, location) {
|
|
5116
|
+
return new peg$SyntaxError(message, null, null, location);
|
|
5117
|
+
}
|
|
5118
|
+
function peg$buildStructuredError(expected, found, location) {
|
|
5119
|
+
return new peg$SyntaxError(peg$SyntaxError.buildMessage(expected, found), expected, found, location);
|
|
5120
|
+
}
|
|
5121
|
+
function peg$parseStart() {
|
|
5122
|
+
let s0;
|
|
5123
|
+
s0 = peg$parseFormula();
|
|
5124
|
+
return s0;
|
|
5125
|
+
}
|
|
5126
|
+
function peg$parseFormula() {
|
|
5127
|
+
let s0;
|
|
5128
|
+
s0 = peg$parseEnclosedFormula();
|
|
5129
|
+
if (s0 === peg$FAILED) {
|
|
5130
|
+
s0 = peg$parseOpenFormula();
|
|
5131
|
+
}
|
|
5132
|
+
return s0;
|
|
5133
|
+
}
|
|
5134
|
+
function peg$parseEnclosedFormula() {
|
|
5135
|
+
let s0, s1, s2, s3, s4, s5;
|
|
5136
|
+
s0 = peg$currPos;
|
|
5137
|
+
s1 = peg$parsebracket();
|
|
5138
|
+
if (s1 !== peg$FAILED) {
|
|
5139
|
+
s2 = peg$parseOpenFormula();
|
|
5140
|
+
if (s2 !== peg$FAILED) {
|
|
5141
|
+
s3 = peg$parsebracket();
|
|
5142
|
+
if (s3 !== peg$FAILED) {
|
|
5143
|
+
s4 = [];
|
|
5144
|
+
s5 = peg$parseJoinComparator();
|
|
5145
|
+
while (s5 !== peg$FAILED) {
|
|
5146
|
+
s4.push(s5);
|
|
5147
|
+
s5 = peg$parseJoinComparator();
|
|
5148
|
+
}
|
|
5149
|
+
peg$savedPos = s0;
|
|
5150
|
+
s0 = peg$f0(s2, s4);
|
|
5151
|
+
}
|
|
5152
|
+
else {
|
|
5153
|
+
peg$currPos = s0;
|
|
5154
|
+
s0 = peg$FAILED;
|
|
5155
|
+
}
|
|
5156
|
+
}
|
|
5157
|
+
else {
|
|
5158
|
+
peg$currPos = s0;
|
|
5159
|
+
s0 = peg$FAILED;
|
|
5160
|
+
}
|
|
5161
|
+
}
|
|
5162
|
+
else {
|
|
5163
|
+
peg$currPos = s0;
|
|
5164
|
+
s0 = peg$FAILED;
|
|
5165
|
+
}
|
|
5166
|
+
return s0;
|
|
5167
|
+
}
|
|
5168
|
+
function peg$parseOpenFormula() {
|
|
5169
|
+
let s0, s1, s2, s3;
|
|
5170
|
+
s0 = peg$currPos;
|
|
5171
|
+
s1 = peg$parseOpenEqualityCheck();
|
|
5172
|
+
if (s1 !== peg$FAILED) {
|
|
5173
|
+
s2 = [];
|
|
5174
|
+
s3 = peg$parseJoinComparator();
|
|
5175
|
+
while (s3 !== peg$FAILED) {
|
|
5176
|
+
s2.push(s3);
|
|
5177
|
+
s3 = peg$parseJoinComparator();
|
|
5178
|
+
}
|
|
5179
|
+
peg$savedPos = s0;
|
|
5180
|
+
s0 = peg$f1(s1, s2);
|
|
5181
|
+
}
|
|
5182
|
+
else {
|
|
5183
|
+
peg$currPos = s0;
|
|
5184
|
+
s0 = peg$FAILED;
|
|
5185
|
+
}
|
|
5186
|
+
return s0;
|
|
5187
|
+
}
|
|
5188
|
+
function peg$parseJoinComparator() {
|
|
5189
|
+
let s0, s1, s2;
|
|
5190
|
+
s0 = peg$currPos;
|
|
5191
|
+
s1 = peg$parseComparator();
|
|
5192
|
+
if (s1 !== peg$FAILED) {
|
|
5193
|
+
s2 = peg$parseOpenEqualityCheck();
|
|
5194
|
+
if (s2 !== peg$FAILED) {
|
|
5195
|
+
peg$savedPos = s0;
|
|
5196
|
+
s0 = peg$f2(s1, s2);
|
|
5197
|
+
}
|
|
5198
|
+
else {
|
|
5199
|
+
peg$currPos = s0;
|
|
5200
|
+
s0 = peg$FAILED;
|
|
5201
|
+
}
|
|
5202
|
+
}
|
|
5203
|
+
else {
|
|
5204
|
+
peg$currPos = s0;
|
|
5205
|
+
s0 = peg$FAILED;
|
|
5206
|
+
}
|
|
5207
|
+
if (s0 === peg$FAILED) {
|
|
5208
|
+
s0 = peg$parseCompoundJoinComparator();
|
|
5209
|
+
}
|
|
5210
|
+
return s0;
|
|
5211
|
+
}
|
|
5212
|
+
function peg$parseCompoundJoinComparator() {
|
|
5213
|
+
let s0, s1, s2, s3, s4;
|
|
5214
|
+
s0 = peg$currPos;
|
|
5215
|
+
s1 = peg$parseComparator();
|
|
5216
|
+
if (s1 !== peg$FAILED) {
|
|
5217
|
+
s2 = peg$parsebracket();
|
|
5218
|
+
if (s2 !== peg$FAILED) {
|
|
5219
|
+
s3 = peg$parseOpenFormula();
|
|
5220
|
+
if (s3 !== peg$FAILED) {
|
|
5221
|
+
s4 = peg$parsebracket();
|
|
5222
|
+
if (s4 !== peg$FAILED) {
|
|
5223
|
+
peg$savedPos = s0;
|
|
5224
|
+
s0 = peg$f3(s1, s3);
|
|
5225
|
+
}
|
|
5226
|
+
else {
|
|
5227
|
+
peg$currPos = s0;
|
|
5228
|
+
s0 = peg$FAILED;
|
|
5229
|
+
}
|
|
5230
|
+
}
|
|
5231
|
+
else {
|
|
5232
|
+
peg$currPos = s0;
|
|
5233
|
+
s0 = peg$FAILED;
|
|
5234
|
+
}
|
|
5235
|
+
}
|
|
5236
|
+
else {
|
|
5237
|
+
peg$currPos = s0;
|
|
5238
|
+
s0 = peg$FAILED;
|
|
5239
|
+
}
|
|
5240
|
+
}
|
|
5241
|
+
else {
|
|
5242
|
+
peg$currPos = s0;
|
|
5243
|
+
s0 = peg$FAILED;
|
|
5244
|
+
}
|
|
5245
|
+
return s0;
|
|
5246
|
+
}
|
|
5247
|
+
function peg$parseOpenEqualityCheck() {
|
|
5248
|
+
let s0, s1, s2, s3, s4, s5;
|
|
5249
|
+
s0 = peg$currPos;
|
|
5250
|
+
s1 = peg$parseFieldRef();
|
|
5251
|
+
if (s1 !== peg$FAILED) {
|
|
5252
|
+
s2 = peg$parse_();
|
|
5253
|
+
if (s2 === peg$FAILED) {
|
|
5254
|
+
s2 = null;
|
|
5255
|
+
}
|
|
5256
|
+
s3 = peg$parseoperator();
|
|
5257
|
+
if (s3 !== peg$FAILED) {
|
|
5258
|
+
s4 = peg$parse_();
|
|
5259
|
+
if (s4 === peg$FAILED) {
|
|
5260
|
+
s4 = null;
|
|
5261
|
+
}
|
|
5262
|
+
s5 = peg$parseValue();
|
|
5263
|
+
if (s5 !== peg$FAILED) {
|
|
5264
|
+
peg$savedPos = s0;
|
|
5265
|
+
s0 = peg$f4(s1, s3, s5);
|
|
5266
|
+
}
|
|
5267
|
+
else {
|
|
5268
|
+
peg$currPos = s0;
|
|
5269
|
+
s0 = peg$FAILED;
|
|
5270
|
+
}
|
|
5271
|
+
}
|
|
5272
|
+
else {
|
|
5273
|
+
peg$currPos = s0;
|
|
5274
|
+
s0 = peg$FAILED;
|
|
5275
|
+
}
|
|
5276
|
+
}
|
|
5277
|
+
else {
|
|
5278
|
+
peg$currPos = s0;
|
|
5279
|
+
s0 = peg$FAILED;
|
|
5280
|
+
}
|
|
5281
|
+
return s0;
|
|
5282
|
+
}
|
|
5283
|
+
function peg$parseComparator() {
|
|
5284
|
+
let s0, s1, s2, s3;
|
|
5285
|
+
s0 = peg$currPos;
|
|
5286
|
+
s1 = peg$parse_();
|
|
5287
|
+
if (s1 === peg$FAILED) {
|
|
5288
|
+
s1 = null;
|
|
5289
|
+
}
|
|
5290
|
+
if (input.substr(peg$currPos, 3) === peg$c0) {
|
|
5291
|
+
s2 = peg$c0;
|
|
5292
|
+
peg$currPos += 3;
|
|
5293
|
+
}
|
|
5294
|
+
else {
|
|
5295
|
+
s2 = peg$FAILED;
|
|
5296
|
+
if (peg$silentFails === 0) {
|
|
5297
|
+
peg$fail(peg$e0);
|
|
5298
|
+
}
|
|
5299
|
+
}
|
|
5300
|
+
if (s2 !== peg$FAILED) {
|
|
5301
|
+
s3 = peg$parse_();
|
|
5302
|
+
if (s3 === peg$FAILED) {
|
|
5303
|
+
s3 = null;
|
|
5304
|
+
}
|
|
5305
|
+
peg$savedPos = s0;
|
|
5306
|
+
s0 = peg$f5(s2);
|
|
5307
|
+
}
|
|
5308
|
+
else {
|
|
5309
|
+
peg$currPos = s0;
|
|
5310
|
+
s0 = peg$FAILED;
|
|
5311
|
+
}
|
|
5312
|
+
if (s0 === peg$FAILED) {
|
|
5313
|
+
s0 = peg$currPos;
|
|
5314
|
+
s1 = peg$parse_();
|
|
5315
|
+
if (s1 === peg$FAILED) {
|
|
5316
|
+
s1 = null;
|
|
5317
|
+
}
|
|
5318
|
+
if (input.substr(peg$currPos, 2) === peg$c1) {
|
|
5319
|
+
s2 = peg$c1;
|
|
5320
|
+
peg$currPos += 2;
|
|
5321
|
+
}
|
|
5322
|
+
else {
|
|
5323
|
+
s2 = peg$FAILED;
|
|
5324
|
+
if (peg$silentFails === 0) {
|
|
5325
|
+
peg$fail(peg$e1);
|
|
5326
|
+
}
|
|
5327
|
+
}
|
|
5328
|
+
if (s2 !== peg$FAILED) {
|
|
5329
|
+
s3 = peg$parse_();
|
|
5330
|
+
if (s3 === peg$FAILED) {
|
|
5331
|
+
s3 = null;
|
|
5332
|
+
}
|
|
5333
|
+
peg$savedPos = s0;
|
|
5334
|
+
s0 = peg$f6(s2);
|
|
5335
|
+
}
|
|
5336
|
+
else {
|
|
5337
|
+
peg$currPos = s0;
|
|
5338
|
+
s0 = peg$FAILED;
|
|
5339
|
+
}
|
|
5340
|
+
}
|
|
5341
|
+
return s0;
|
|
5342
|
+
}
|
|
5343
|
+
function peg$parseWord() {
|
|
5344
|
+
let s0, s1, s2;
|
|
5345
|
+
s0 = peg$currPos;
|
|
5346
|
+
s1 = [];
|
|
5347
|
+
s2 = peg$parseLetter();
|
|
5348
|
+
if (s2 !== peg$FAILED) {
|
|
5349
|
+
while (s2 !== peg$FAILED) {
|
|
5350
|
+
s1.push(s2);
|
|
5351
|
+
s2 = peg$parseLetter();
|
|
5352
|
+
}
|
|
5353
|
+
}
|
|
5354
|
+
else {
|
|
5355
|
+
s1 = peg$FAILED;
|
|
5356
|
+
}
|
|
5357
|
+
if (s1 !== peg$FAILED) {
|
|
5358
|
+
peg$savedPos = s0;
|
|
5359
|
+
s1 = peg$f7(s1);
|
|
5360
|
+
}
|
|
5361
|
+
s0 = s1;
|
|
5362
|
+
return s0;
|
|
5363
|
+
}
|
|
5364
|
+
function peg$parseLetter() {
|
|
5365
|
+
let s0;
|
|
5366
|
+
s0 = input.charAt(peg$currPos);
|
|
5367
|
+
if (peg$r0.test(s0)) {
|
|
5368
|
+
peg$currPos++;
|
|
5369
|
+
}
|
|
5370
|
+
else {
|
|
5371
|
+
s0 = peg$FAILED;
|
|
5372
|
+
if (peg$silentFails === 0) {
|
|
5373
|
+
peg$fail(peg$e2);
|
|
5374
|
+
}
|
|
5375
|
+
}
|
|
5376
|
+
return s0;
|
|
5377
|
+
}
|
|
5378
|
+
function peg$parseValue() {
|
|
5379
|
+
let s0, s1;
|
|
5380
|
+
s0 = peg$parsequotedValue();
|
|
5381
|
+
if (s0 === peg$FAILED) {
|
|
5382
|
+
s0 = peg$currPos;
|
|
5383
|
+
s1 = peg$parseWord();
|
|
5384
|
+
if (s1 !== peg$FAILED) {
|
|
5385
|
+
peg$savedPos = s0;
|
|
5386
|
+
s1 = peg$f8(s1);
|
|
5387
|
+
}
|
|
5388
|
+
s0 = s1;
|
|
5389
|
+
if (s0 === peg$FAILED) {
|
|
5390
|
+
s0 = peg$currPos;
|
|
5391
|
+
s1 = peg$parsenumber();
|
|
5392
|
+
if (s1 !== peg$FAILED) {
|
|
5393
|
+
peg$savedPos = s0;
|
|
5394
|
+
s1 = peg$f9(s1);
|
|
5395
|
+
}
|
|
5396
|
+
s0 = s1;
|
|
5397
|
+
}
|
|
5398
|
+
}
|
|
5399
|
+
return s0;
|
|
5400
|
+
}
|
|
5401
|
+
function peg$parseFieldRef() {
|
|
5402
|
+
let s0;
|
|
5403
|
+
s0 = peg$parseFieldReference();
|
|
5404
|
+
if (s0 === peg$FAILED) {
|
|
5405
|
+
s0 = peg$parseMetadataFieldReference();
|
|
5406
|
+
}
|
|
5407
|
+
return s0;
|
|
5408
|
+
}
|
|
5409
|
+
function peg$parseMetadataFieldReference() {
|
|
5410
|
+
let s0, s1, s2, s3;
|
|
5411
|
+
s0 = peg$currPos;
|
|
5412
|
+
s1 = peg$parseopenSquare();
|
|
5413
|
+
if (s1 !== peg$FAILED) {
|
|
5414
|
+
s2 = peg$parseFieldReference();
|
|
5415
|
+
if (s2 !== peg$FAILED) {
|
|
5416
|
+
s3 = peg$parsecloseSquare();
|
|
5417
|
+
if (s3 !== peg$FAILED) {
|
|
5418
|
+
peg$savedPos = s0;
|
|
5419
|
+
s0 = peg$f10(s1, s2, s3);
|
|
5420
|
+
}
|
|
5421
|
+
else {
|
|
5422
|
+
peg$currPos = s0;
|
|
5423
|
+
s0 = peg$FAILED;
|
|
5424
|
+
}
|
|
5425
|
+
}
|
|
5426
|
+
else {
|
|
5427
|
+
peg$currPos = s0;
|
|
5428
|
+
s0 = peg$FAILED;
|
|
5429
|
+
}
|
|
5430
|
+
}
|
|
5431
|
+
else {
|
|
5432
|
+
peg$currPos = s0;
|
|
5433
|
+
s0 = peg$FAILED;
|
|
5434
|
+
}
|
|
5435
|
+
return s0;
|
|
5436
|
+
}
|
|
5437
|
+
function peg$parseFieldReference() {
|
|
5438
|
+
let s0, s1, s2;
|
|
5439
|
+
s0 = peg$currPos;
|
|
5440
|
+
s1 = [];
|
|
5441
|
+
s2 = input.charAt(peg$currPos);
|
|
5442
|
+
if (peg$r1.test(s2)) {
|
|
5443
|
+
peg$currPos++;
|
|
5444
|
+
}
|
|
5445
|
+
else {
|
|
5446
|
+
s2 = peg$FAILED;
|
|
5447
|
+
if (peg$silentFails === 0) {
|
|
5448
|
+
peg$fail(peg$e3);
|
|
5449
|
+
}
|
|
5450
|
+
}
|
|
5451
|
+
if (s2 !== peg$FAILED) {
|
|
5452
|
+
while (s2 !== peg$FAILED) {
|
|
5453
|
+
s1.push(s2);
|
|
5454
|
+
s2 = input.charAt(peg$currPos);
|
|
5455
|
+
if (peg$r1.test(s2)) {
|
|
5456
|
+
peg$currPos++;
|
|
5457
|
+
}
|
|
5458
|
+
else {
|
|
5459
|
+
s2 = peg$FAILED;
|
|
5460
|
+
if (peg$silentFails === 0) {
|
|
5461
|
+
peg$fail(peg$e3);
|
|
5462
|
+
}
|
|
5463
|
+
}
|
|
5464
|
+
}
|
|
5465
|
+
}
|
|
5466
|
+
else {
|
|
5467
|
+
s1 = peg$FAILED;
|
|
5468
|
+
}
|
|
5469
|
+
if (s1 !== peg$FAILED) {
|
|
5470
|
+
peg$savedPos = s0;
|
|
5471
|
+
s1 = peg$f11(s1);
|
|
5472
|
+
}
|
|
5473
|
+
s0 = s1;
|
|
5474
|
+
return s0;
|
|
5475
|
+
}
|
|
5476
|
+
function peg$parseopenSquare() {
|
|
5477
|
+
let s0;
|
|
5478
|
+
if (input.charCodeAt(peg$currPos) === 91) {
|
|
5479
|
+
s0 = peg$c2;
|
|
5480
|
+
peg$currPos++;
|
|
5481
|
+
}
|
|
5482
|
+
else {
|
|
5483
|
+
s0 = peg$FAILED;
|
|
5484
|
+
if (peg$silentFails === 0) {
|
|
5485
|
+
peg$fail(peg$e4);
|
|
5486
|
+
}
|
|
5487
|
+
}
|
|
5488
|
+
return s0;
|
|
5489
|
+
}
|
|
5490
|
+
function peg$parsecloseSquare() {
|
|
5491
|
+
let s0;
|
|
5492
|
+
if (input.charCodeAt(peg$currPos) === 93) {
|
|
5493
|
+
s0 = peg$c3;
|
|
5494
|
+
peg$currPos++;
|
|
5495
|
+
}
|
|
5496
|
+
else {
|
|
5497
|
+
s0 = peg$FAILED;
|
|
5498
|
+
if (peg$silentFails === 0) {
|
|
5499
|
+
peg$fail(peg$e5);
|
|
5500
|
+
}
|
|
5501
|
+
}
|
|
5502
|
+
return s0;
|
|
5503
|
+
}
|
|
5504
|
+
function peg$parsenumber() {
|
|
5505
|
+
let s0, s1;
|
|
5506
|
+
s0 = [];
|
|
5507
|
+
s1 = input.charAt(peg$currPos);
|
|
5508
|
+
if (peg$r2.test(s1)) {
|
|
5509
|
+
peg$currPos++;
|
|
5510
|
+
}
|
|
5511
|
+
else {
|
|
5512
|
+
s1 = peg$FAILED;
|
|
5513
|
+
if (peg$silentFails === 0) {
|
|
5514
|
+
peg$fail(peg$e6);
|
|
5515
|
+
}
|
|
5516
|
+
}
|
|
5517
|
+
if (s1 !== peg$FAILED) {
|
|
5518
|
+
while (s1 !== peg$FAILED) {
|
|
5519
|
+
s0.push(s1);
|
|
5520
|
+
s1 = input.charAt(peg$currPos);
|
|
5521
|
+
if (peg$r2.test(s1)) {
|
|
5522
|
+
peg$currPos++;
|
|
5523
|
+
}
|
|
5524
|
+
else {
|
|
5525
|
+
s1 = peg$FAILED;
|
|
5526
|
+
if (peg$silentFails === 0) {
|
|
5527
|
+
peg$fail(peg$e6);
|
|
5528
|
+
}
|
|
5529
|
+
}
|
|
5530
|
+
}
|
|
5531
|
+
}
|
|
5532
|
+
else {
|
|
5533
|
+
s0 = peg$FAILED;
|
|
5534
|
+
}
|
|
5535
|
+
return s0;
|
|
5536
|
+
}
|
|
5537
|
+
function peg$parsequotedValue() {
|
|
5538
|
+
let s0, s1, s2, s3;
|
|
5539
|
+
s0 = peg$currPos;
|
|
5540
|
+
if (input.charCodeAt(peg$currPos) === 34) {
|
|
5541
|
+
s1 = peg$c4;
|
|
5542
|
+
peg$currPos++;
|
|
5543
|
+
}
|
|
5544
|
+
else {
|
|
5545
|
+
s1 = peg$FAILED;
|
|
5546
|
+
if (peg$silentFails === 0) {
|
|
5547
|
+
peg$fail(peg$e7);
|
|
5548
|
+
}
|
|
5549
|
+
}
|
|
5550
|
+
if (s1 !== peg$FAILED) {
|
|
5551
|
+
s2 = [];
|
|
5552
|
+
s3 = input.charAt(peg$currPos);
|
|
5553
|
+
if (peg$r3.test(s3)) {
|
|
5554
|
+
peg$currPos++;
|
|
5555
|
+
}
|
|
5556
|
+
else {
|
|
5557
|
+
s3 = peg$FAILED;
|
|
5558
|
+
if (peg$silentFails === 0) {
|
|
5559
|
+
peg$fail(peg$e8);
|
|
5560
|
+
}
|
|
5561
|
+
}
|
|
5562
|
+
while (s3 !== peg$FAILED) {
|
|
5563
|
+
s2.push(s3);
|
|
5564
|
+
s3 = input.charAt(peg$currPos);
|
|
5565
|
+
if (peg$r3.test(s3)) {
|
|
5566
|
+
peg$currPos++;
|
|
5567
|
+
}
|
|
5568
|
+
else {
|
|
5569
|
+
s3 = peg$FAILED;
|
|
5570
|
+
if (peg$silentFails === 0) {
|
|
5571
|
+
peg$fail(peg$e8);
|
|
5572
|
+
}
|
|
5573
|
+
}
|
|
5574
|
+
}
|
|
5575
|
+
if (input.charCodeAt(peg$currPos) === 34) {
|
|
5576
|
+
s3 = peg$c4;
|
|
5577
|
+
peg$currPos++;
|
|
5578
|
+
}
|
|
5579
|
+
else {
|
|
5580
|
+
s3 = peg$FAILED;
|
|
5581
|
+
if (peg$silentFails === 0) {
|
|
5582
|
+
peg$fail(peg$e7);
|
|
5583
|
+
}
|
|
5584
|
+
}
|
|
5585
|
+
if (s3 !== peg$FAILED) {
|
|
5586
|
+
peg$savedPos = s0;
|
|
5587
|
+
s0 = peg$f12(s2);
|
|
5588
|
+
}
|
|
5589
|
+
else {
|
|
5590
|
+
peg$currPos = s0;
|
|
5591
|
+
s0 = peg$FAILED;
|
|
5592
|
+
}
|
|
5593
|
+
}
|
|
5594
|
+
else {
|
|
5595
|
+
peg$currPos = s0;
|
|
5596
|
+
s0 = peg$FAILED;
|
|
5597
|
+
}
|
|
5598
|
+
return s0;
|
|
5599
|
+
}
|
|
5600
|
+
function peg$parsebracket() {
|
|
5601
|
+
let s0, s1, s2, s3;
|
|
5602
|
+
s0 = peg$currPos;
|
|
5603
|
+
s1 = peg$parse_();
|
|
5604
|
+
if (s1 === peg$FAILED) {
|
|
5605
|
+
s1 = null;
|
|
5606
|
+
}
|
|
5607
|
+
s2 = [];
|
|
5608
|
+
if (input.charCodeAt(peg$currPos) === 40) {
|
|
5609
|
+
s3 = peg$c5;
|
|
5610
|
+
peg$currPos++;
|
|
5611
|
+
}
|
|
5612
|
+
else {
|
|
5613
|
+
s3 = peg$FAILED;
|
|
5614
|
+
if (peg$silentFails === 0) {
|
|
5615
|
+
peg$fail(peg$e9);
|
|
5616
|
+
}
|
|
5617
|
+
}
|
|
5618
|
+
if (s3 !== peg$FAILED) {
|
|
5619
|
+
while (s3 !== peg$FAILED) {
|
|
5620
|
+
s2.push(s3);
|
|
5621
|
+
if (input.charCodeAt(peg$currPos) === 40) {
|
|
5622
|
+
s3 = peg$c5;
|
|
5623
|
+
peg$currPos++;
|
|
5624
|
+
}
|
|
5625
|
+
else {
|
|
5626
|
+
s3 = peg$FAILED;
|
|
5627
|
+
if (peg$silentFails === 0) {
|
|
5628
|
+
peg$fail(peg$e9);
|
|
5629
|
+
}
|
|
5630
|
+
}
|
|
5631
|
+
}
|
|
5632
|
+
}
|
|
5633
|
+
else {
|
|
5634
|
+
s2 = peg$FAILED;
|
|
5635
|
+
}
|
|
5636
|
+
if (s2 !== peg$FAILED) {
|
|
5637
|
+
s3 = peg$parse_();
|
|
5638
|
+
if (s3 === peg$FAILED) {
|
|
5639
|
+
s3 = null;
|
|
5640
|
+
}
|
|
5641
|
+
s1 = [s1, s2, s3];
|
|
5642
|
+
s0 = s1;
|
|
5643
|
+
}
|
|
5644
|
+
else {
|
|
5645
|
+
peg$currPos = s0;
|
|
5646
|
+
s0 = peg$FAILED;
|
|
5647
|
+
}
|
|
5648
|
+
if (s0 === peg$FAILED) {
|
|
5649
|
+
s0 = peg$currPos;
|
|
5650
|
+
s1 = peg$parse_();
|
|
5651
|
+
if (s1 === peg$FAILED) {
|
|
5652
|
+
s1 = null;
|
|
5653
|
+
}
|
|
5654
|
+
s2 = [];
|
|
5655
|
+
if (input.charCodeAt(peg$currPos) === 41) {
|
|
5656
|
+
s3 = peg$c6;
|
|
5657
|
+
peg$currPos++;
|
|
5658
|
+
}
|
|
5659
|
+
else {
|
|
5660
|
+
s3 = peg$FAILED;
|
|
5661
|
+
if (peg$silentFails === 0) {
|
|
5662
|
+
peg$fail(peg$e10);
|
|
5663
|
+
}
|
|
5664
|
+
}
|
|
5665
|
+
if (s3 !== peg$FAILED) {
|
|
5666
|
+
while (s3 !== peg$FAILED) {
|
|
5667
|
+
s2.push(s3);
|
|
5668
|
+
if (input.charCodeAt(peg$currPos) === 41) {
|
|
5669
|
+
s3 = peg$c6;
|
|
5670
|
+
peg$currPos++;
|
|
5671
|
+
}
|
|
5672
|
+
else {
|
|
5673
|
+
s3 = peg$FAILED;
|
|
5674
|
+
if (peg$silentFails === 0) {
|
|
5675
|
+
peg$fail(peg$e10);
|
|
5676
|
+
}
|
|
5677
|
+
}
|
|
5678
|
+
}
|
|
5679
|
+
}
|
|
5680
|
+
else {
|
|
5681
|
+
s2 = peg$FAILED;
|
|
5682
|
+
}
|
|
5683
|
+
if (s2 !== peg$FAILED) {
|
|
5684
|
+
s3 = peg$parse_();
|
|
5685
|
+
if (s3 === peg$FAILED) {
|
|
5686
|
+
s3 = null;
|
|
5687
|
+
}
|
|
5688
|
+
s1 = [s1, s2, s3];
|
|
5689
|
+
s0 = s1;
|
|
5690
|
+
}
|
|
5691
|
+
else {
|
|
5692
|
+
peg$currPos = s0;
|
|
5693
|
+
s0 = peg$FAILED;
|
|
5694
|
+
}
|
|
5695
|
+
}
|
|
5696
|
+
return s0;
|
|
5697
|
+
}
|
|
5698
|
+
function peg$parseoperator() {
|
|
5699
|
+
let s0;
|
|
5700
|
+
if (input.charCodeAt(peg$currPos) === 61) {
|
|
5701
|
+
s0 = peg$c7;
|
|
5702
|
+
peg$currPos++;
|
|
5703
|
+
}
|
|
5704
|
+
else {
|
|
5705
|
+
s0 = peg$FAILED;
|
|
5706
|
+
if (peg$silentFails === 0) {
|
|
5707
|
+
peg$fail(peg$e11);
|
|
5708
|
+
}
|
|
5709
|
+
}
|
|
5710
|
+
if (s0 === peg$FAILED) {
|
|
5711
|
+
if (input.substr(peg$currPos, 2) === peg$c8) {
|
|
5712
|
+
s0 = peg$c8;
|
|
5713
|
+
peg$currPos += 2;
|
|
5714
|
+
}
|
|
5715
|
+
else {
|
|
5716
|
+
s0 = peg$FAILED;
|
|
5717
|
+
if (peg$silentFails === 0) {
|
|
5718
|
+
peg$fail(peg$e12);
|
|
5719
|
+
}
|
|
5720
|
+
}
|
|
5721
|
+
if (s0 === peg$FAILED) {
|
|
5722
|
+
if (input.substr(peg$currPos, 8) === peg$c9) {
|
|
5723
|
+
s0 = peg$c9;
|
|
5724
|
+
peg$currPos += 8;
|
|
5725
|
+
}
|
|
5726
|
+
else {
|
|
5727
|
+
s0 = peg$FAILED;
|
|
5728
|
+
if (peg$silentFails === 0) {
|
|
5729
|
+
peg$fail(peg$e13);
|
|
5730
|
+
}
|
|
5731
|
+
}
|
|
5732
|
+
}
|
|
5733
|
+
}
|
|
5734
|
+
return s0;
|
|
5735
|
+
}
|
|
5736
|
+
function peg$parsews() {
|
|
5737
|
+
let s0, s1;
|
|
5738
|
+
peg$silentFails++;
|
|
5739
|
+
s0 = input.charAt(peg$currPos);
|
|
5740
|
+
if (peg$r4.test(s0)) {
|
|
5741
|
+
peg$currPos++;
|
|
5742
|
+
}
|
|
5743
|
+
else {
|
|
5744
|
+
s0 = peg$FAILED;
|
|
5745
|
+
if (peg$silentFails === 0) {
|
|
5746
|
+
peg$fail(peg$e15);
|
|
5747
|
+
}
|
|
5748
|
+
}
|
|
5749
|
+
peg$silentFails--;
|
|
5750
|
+
if (s0 === peg$FAILED) {
|
|
5751
|
+
s1 = peg$FAILED;
|
|
5752
|
+
if (peg$silentFails === 0) {
|
|
5753
|
+
peg$fail(peg$e14);
|
|
5754
|
+
}
|
|
5755
|
+
}
|
|
5756
|
+
return s0;
|
|
5757
|
+
}
|
|
5758
|
+
function peg$parse_() {
|
|
5759
|
+
let s0, s1;
|
|
5760
|
+
peg$silentFails++;
|
|
5761
|
+
s0 = [];
|
|
5762
|
+
s1 = peg$parsews();
|
|
5763
|
+
if (s1 !== peg$FAILED) {
|
|
5764
|
+
while (s1 !== peg$FAILED) {
|
|
5765
|
+
s0.push(s1);
|
|
5766
|
+
s1 = peg$parsews();
|
|
5767
|
+
}
|
|
5768
|
+
}
|
|
5769
|
+
else {
|
|
5770
|
+
s0 = peg$FAILED;
|
|
5771
|
+
}
|
|
5772
|
+
peg$silentFails--;
|
|
5773
|
+
if (s0 === peg$FAILED) {
|
|
5774
|
+
s1 = peg$FAILED;
|
|
5775
|
+
if (peg$silentFails === 0) {
|
|
5776
|
+
peg$fail(peg$e16);
|
|
5777
|
+
}
|
|
5778
|
+
}
|
|
5779
|
+
return s0;
|
|
5780
|
+
}
|
|
4810
5781
|
function flat(arr, depth = 1) {
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
5782
|
+
var flatten = function (arr, depth = 1) {
|
|
5783
|
+
if (depth)
|
|
5784
|
+
return arr;
|
|
5785
|
+
// Otherwise, concatenate into the parent array
|
|
5786
|
+
return arr.reduce(function (acc, val) {
|
|
5787
|
+
return acc.concat(Array.isArray(val) ? flatten(val, depth - 1) : val);
|
|
5788
|
+
}, []);
|
|
5789
|
+
};
|
|
5790
|
+
return flatten(arr, depth - 1);
|
|
5791
|
+
}
|
|
5792
|
+
peg$result = peg$startRuleFunction();
|
|
5793
|
+
const peg$success = (peg$result !== peg$FAILED && peg$currPos === input.length);
|
|
5794
|
+
function peg$throw() {
|
|
5795
|
+
if (peg$result !== peg$FAILED && peg$currPos < input.length) {
|
|
5796
|
+
peg$fail(peg$endExpectation());
|
|
5797
|
+
}
|
|
5798
|
+
throw peg$buildStructuredError(peg$maxFailExpected, peg$maxFailPos < input.length ? peg$getUnicode(peg$maxFailPos) : null, peg$maxFailPos < input.length
|
|
5799
|
+
? peg$computeLocation(peg$maxFailPos, peg$maxFailPos + 1)
|
|
5800
|
+
: peg$computeLocation(peg$maxFailPos, peg$maxFailPos));
|
|
5801
|
+
}
|
|
5802
|
+
if (options.peg$library) {
|
|
5803
|
+
return /** @type {any} */ ({
|
|
5804
|
+
peg$result,
|
|
5805
|
+
peg$currPos,
|
|
5806
|
+
peg$FAILED,
|
|
5807
|
+
peg$maxFailExpected,
|
|
5808
|
+
peg$maxFailPos,
|
|
5809
|
+
peg$success,
|
|
5810
|
+
peg$throw: peg$success ? undefined : peg$throw,
|
|
5811
|
+
});
|
|
4822
5812
|
}
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
= bracket formula:OpenFormula bracket join:(JoinComparator)*
|
|
4834
|
-
{ return flat([ [formula], join[0] ], 1) }
|
|
4835
|
-
|
|
4836
|
-
OpenFormula
|
|
4837
|
-
= eq:OpenEqualityCheck joins:(JoinComparator)*
|
|
4838
|
-
{ return flat([ eq, flat(joins) ]) }
|
|
4839
|
-
|
|
4840
|
-
JoinComparator
|
|
4841
|
-
= comp:Comparator eq:OpenEqualityCheck
|
|
4842
|
-
{ return [comp, eq]; }
|
|
4843
|
-
/ CompoundJoinComparator
|
|
4844
|
-
|
|
4845
|
-
CompoundJoinComparator
|
|
4846
|
-
= comp:Comparator bracket f:OpenFormula bracket
|
|
4847
|
-
{ return [comp, f ] }
|
|
4848
|
-
|
|
4849
|
-
OpenEqualityCheck
|
|
4850
|
-
= fr:FieldRef _? op:operator _? val:Value
|
|
4851
|
-
{ return { fieldReference: fr, comparator: op, value: val } }
|
|
4852
|
-
|
|
4853
|
-
Comparator
|
|
4854
|
-
= _? c:'AND' _?
|
|
4855
|
-
{ return c; }
|
|
4856
|
-
/ _? c:'OR' _?
|
|
4857
|
-
{ return c; }
|
|
4858
|
-
|
|
4859
|
-
Word
|
|
4860
|
-
= l:Letter+
|
|
4861
|
-
{ return l.join(""); }
|
|
4862
|
-
|
|
4863
|
-
Letter
|
|
4864
|
-
= [a-zA-Z]
|
|
4865
|
-
|
|
4866
|
-
Value
|
|
4867
|
-
= v:quotedValue / v:Word
|
|
4868
|
-
{ return v.join("") }
|
|
4869
|
-
/ v:number
|
|
4870
|
-
{ return parseInt(v.join("")) }
|
|
4871
|
-
|
|
4872
|
-
FieldRef
|
|
4873
|
-
= FieldReference / MetadataFieldReference
|
|
4874
|
-
|
|
4875
|
-
MetadataFieldReference
|
|
4876
|
-
= s1:openSquare fr:FieldReference s2:closeSquare
|
|
4877
|
-
{ return s1 + fr + s2 }
|
|
4878
|
-
|
|
4879
|
-
FieldReference
|
|
4880
|
-
= characters:[A-Za-z0-9._-]+ { return characters.join(""); }
|
|
4881
|
-
|
|
4882
|
-
openSquare
|
|
4883
|
-
= "["
|
|
4884
|
-
|
|
4885
|
-
closeSquare
|
|
4886
|
-
= "]"
|
|
4887
|
-
|
|
4888
|
-
number
|
|
4889
|
-
= [0-9]+
|
|
4890
|
-
|
|
4891
|
-
quotedValue
|
|
4892
|
-
= '"'val:[A-Za-z0-9.,* _&()/-]*'"'
|
|
4893
|
-
{ return val.join(""); }
|
|
4894
|
-
|
|
4895
|
-
bracket
|
|
4896
|
-
= (_? "("+ _? / _? ")"+ _? )
|
|
4897
|
-
|
|
4898
|
-
operator
|
|
4899
|
-
= "=" / "!=" / "CONTAINS"
|
|
4900
|
-
|
|
4901
|
-
ws "Whitespace"
|
|
4902
|
-
= [ \t]
|
|
4903
|
-
|
|
4904
|
-
_ "One or more whitespaces"
|
|
4905
|
-
= ws+
|
|
5813
|
+
if (peg$success) {
|
|
5814
|
+
return peg$result;
|
|
5815
|
+
}
|
|
5816
|
+
else {
|
|
5817
|
+
peg$throw();
|
|
5818
|
+
}
|
|
5819
|
+
}
|
|
5820
|
+
const peg$allowedStartRules = [
|
|
5821
|
+
"Start"
|
|
5822
|
+
];
|
|
4906
5823
|
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
5824
|
+
var parser = /*#__PURE__*/Object.freeze({
|
|
5825
|
+
__proto__: null,
|
|
5826
|
+
StartRules: peg$allowedStartRules,
|
|
5827
|
+
SyntaxError: peg$SyntaxError,
|
|
5828
|
+
parse: peg$parse
|
|
5829
|
+
});
|
|
4910
5830
|
|
|
4911
5831
|
class ConditionParser {
|
|
4912
5832
|
static logger = new StructuredLoggerService();
|
|
@@ -4920,7 +5840,7 @@ class ConditionParser {
|
|
|
4920
5840
|
return null;
|
|
4921
5841
|
}
|
|
4922
5842
|
condition = condition.replace(/CONTAINS/g, ' CONTAINS');
|
|
4923
|
-
return
|
|
5843
|
+
return parser.parse(condition.trim(), {});
|
|
4924
5844
|
}
|
|
4925
5845
|
/**
|
|
4926
5846
|
* Evaluate the current fields against the conditions
|
|
@@ -8409,26 +9329,6 @@ class WindowService {
|
|
|
8409
9329
|
type: Injectable
|
|
8410
9330
|
}], null, null); })();
|
|
8411
9331
|
|
|
8412
|
-
class FocusService {
|
|
8413
|
-
/** unique ID of DOM element this service will focus on */
|
|
8414
|
-
elementIdToFocus = 'focusService-elementIdToFocus';
|
|
8415
|
-
/**
|
|
8416
|
-
* Focus on a specific element with the elementIdToFocus.
|
|
8417
|
-
* If there is no element in the DOM, no action is taken.
|
|
8418
|
-
*/
|
|
8419
|
-
focus() {
|
|
8420
|
-
const elementToFocus = document.getElementById(this.elementIdToFocus);
|
|
8421
|
-
if (elementToFocus) {
|
|
8422
|
-
elementToFocus.focus();
|
|
8423
|
-
}
|
|
8424
|
-
}
|
|
8425
|
-
static ɵfac = function FocusService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FocusService)(); };
|
|
8426
|
-
static ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: FocusService, factory: FocusService.ɵfac });
|
|
8427
|
-
}
|
|
8428
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FocusService, [{
|
|
8429
|
-
type: Injectable
|
|
8430
|
-
}], null, null); })();
|
|
8431
|
-
|
|
8432
9332
|
class WorkbasketInputFilterService {
|
|
8433
9333
|
httpService;
|
|
8434
9334
|
appConfig;
|
|
@@ -10191,7 +11091,7 @@ class CaseEditComponent {
|
|
|
10191
11091
|
return of(true);
|
|
10192
11092
|
}
|
|
10193
11093
|
finishEventCompletionLogic(eventResponse) {
|
|
10194
|
-
this.caseNotifier.
|
|
11094
|
+
this.caseNotifier.cachedCaseView = null;
|
|
10195
11095
|
this.sessionStorageService.removeItem('eventUrl');
|
|
10196
11096
|
const confirmation = this.buildConfirmation(eventResponse);
|
|
10197
11097
|
if (confirmation && (confirmation.getHeader() || confirmation.getBody())) {
|
|
@@ -11522,7 +12422,6 @@ class CaseEditPageComponent {
|
|
|
11522
12422
|
addressService;
|
|
11523
12423
|
linkedCasesService;
|
|
11524
12424
|
caseFlagStateService;
|
|
11525
|
-
focusService;
|
|
11526
12425
|
static RESUMED_FORM_DISCARD = 'RESUMED_FORM_DISCARD';
|
|
11527
12426
|
static NEW_FORM_DISCARD = 'NEW_FORM_DISCARD';
|
|
11528
12427
|
static NEW_FORM_SAVE = 'NEW_FORM_CHANGED_SAVE';
|
|
@@ -11558,7 +12457,13 @@ class CaseEditPageComponent {
|
|
|
11558
12457
|
static scrollToTop() {
|
|
11559
12458
|
window.scrollTo(0, 0);
|
|
11560
12459
|
}
|
|
11561
|
-
|
|
12460
|
+
static setFocusToTop() {
|
|
12461
|
+
const topContainer = document.getElementById('top');
|
|
12462
|
+
if (topContainer) {
|
|
12463
|
+
topContainer.focus();
|
|
12464
|
+
}
|
|
12465
|
+
}
|
|
12466
|
+
constructor(caseEdit, route, formValueService, formErrorService, cdRef, pageValidationService, dialog, caseFieldService, caseEditDataService, loadingService, validPageListCaseFieldsService, multipageComponentStateService, addressService, linkedCasesService, caseFlagStateService) {
|
|
11562
12467
|
this.caseEdit = caseEdit;
|
|
11563
12468
|
this.route = route;
|
|
11564
12469
|
this.formValueService = formValueService;
|
|
@@ -11574,7 +12479,6 @@ class CaseEditPageComponent {
|
|
|
11574
12479
|
this.addressService = addressService;
|
|
11575
12480
|
this.linkedCasesService = linkedCasesService;
|
|
11576
12481
|
this.caseFlagStateService = caseFlagStateService;
|
|
11577
|
-
this.focusService = focusService;
|
|
11578
12482
|
this.multipageComponentStateService.setInstigator(this);
|
|
11579
12483
|
}
|
|
11580
12484
|
onFinalNext() {
|
|
@@ -11639,7 +12543,7 @@ class CaseEditPageComponent {
|
|
|
11639
12543
|
}
|
|
11640
12544
|
this.triggerText = this.getTriggerText();
|
|
11641
12545
|
});
|
|
11642
|
-
|
|
12546
|
+
CaseEditPageComponent.setFocusToTop();
|
|
11643
12547
|
this.caseEditFormSub = this.caseEditDataService.caseEditForm$.subscribe({
|
|
11644
12548
|
next: editForm => this.editForm = editForm
|
|
11645
12549
|
});
|
|
@@ -11700,7 +12604,7 @@ class CaseEditPageComponent {
|
|
|
11700
12604
|
if (this.getPageNumber() !== undefined) {
|
|
11701
12605
|
this.previousStep();
|
|
11702
12606
|
}
|
|
11703
|
-
|
|
12607
|
+
CaseEditPageComponent.setFocusToTop();
|
|
11704
12608
|
}
|
|
11705
12609
|
// Adding validation message to show it as Error Summary
|
|
11706
12610
|
generateErrorMessage(fields, container, path, sourceFromComplexField) {
|
|
@@ -11909,7 +12813,7 @@ class CaseEditPageComponent {
|
|
|
11909
12813
|
// purposes)
|
|
11910
12814
|
this.removeAllJudicialUserFormControls(this.currentPage, this.editForm);
|
|
11911
12815
|
}
|
|
11912
|
-
|
|
12816
|
+
CaseEditPageComponent.setFocusToTop();
|
|
11913
12817
|
}
|
|
11914
12818
|
updateFormData(jsonData) {
|
|
11915
12819
|
for (const caseFieldId of Object.keys(jsonData.data)) {
|
|
@@ -12028,8 +12932,6 @@ class CaseEditPageComponent {
|
|
|
12028
12932
|
else {
|
|
12029
12933
|
this.caseEdit.cancelled.emit();
|
|
12030
12934
|
}
|
|
12031
|
-
// clear CaseView cache to allow any incidental changes to get picked up once the edit has cancelled
|
|
12032
|
-
this.caseEdit.caseNotifier.removeCachedCase();
|
|
12033
12935
|
this.clearValidationErrors();
|
|
12034
12936
|
this.multipageComponentStateService.reset();
|
|
12035
12937
|
}
|
|
@@ -12203,7 +13105,7 @@ class CaseEditPageComponent {
|
|
|
12203
13105
|
}
|
|
12204
13106
|
});
|
|
12205
13107
|
}
|
|
12206
|
-
static ɵfac = function CaseEditPageComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CaseEditPageComponent)(i0.ɵɵdirectiveInject(CaseEditComponent), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(FormValueService), i0.ɵɵdirectiveInject(FormErrorService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(PageValidationService), i0.ɵɵdirectiveInject(i1$3.MatLegacyDialog), i0.ɵɵdirectiveInject(CaseFieldService), i0.ɵɵdirectiveInject(CaseEditDataService), i0.ɵɵdirectiveInject(LoadingService), i0.ɵɵdirectiveInject(ValidPageListCaseFieldsService), i0.ɵɵdirectiveInject(MultipageComponentStateService), i0.ɵɵdirectiveInject(AddressesService), i0.ɵɵdirectiveInject(LinkedCasesService), i0.ɵɵdirectiveInject(CaseFlagStateService)
|
|
13108
|
+
static ɵfac = function CaseEditPageComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CaseEditPageComponent)(i0.ɵɵdirectiveInject(CaseEditComponent), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(FormValueService), i0.ɵɵdirectiveInject(FormErrorService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(PageValidationService), i0.ɵɵdirectiveInject(i1$3.MatLegacyDialog), i0.ɵɵdirectiveInject(CaseFieldService), i0.ɵɵdirectiveInject(CaseEditDataService), i0.ɵɵdirectiveInject(LoadingService), i0.ɵɵdirectiveInject(ValidPageListCaseFieldsService), i0.ɵɵdirectiveInject(MultipageComponentStateService), i0.ɵɵdirectiveInject(AddressesService), i0.ɵɵdirectiveInject(LinkedCasesService), i0.ɵɵdirectiveInject(CaseFlagStateService)); };
|
|
12207
13109
|
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CaseEditPageComponent, selectors: [["ccd-case-edit-page"]], standalone: false, decls: 12, vars: 11, consts: [["titleBlock", ""], ["idBlock", ""], [4, "ngIf"], [4, "ngIf", "ngIfThen", "ngIfElse"], ["class", "govuk-error-summary", "aria-labelledby", "error-summary-title", "role", "alert", "tabindex", "-1", "data-module", "govuk-error-summary", 4, "ngIf"], [3, "error"], [3, "callbackErrorsContext", "triggerTextContinue", "triggerTextIgnore", "callbackErrorsSubject"], [1, "width-50"], ["class", "form", 3, "formGroup", "submit", 4, "ngIf"], [3, "eventCompletionParams", "eventCanBeCompleted", 4, "ngIf"], ["class", "govuk-heading-l", 4, "ngIf"], [1, "govuk-heading-l"], [1, "govuk-caption-l"], [3, "content"], ["class", "heading-h2", 4, "ngIf"], [1, "heading-h2"], ["aria-labelledby", "error-summary-title", "role", "alert", "tabindex", "-1", "data-module", "govuk-error-summary", 1, "govuk-error-summary"], ["id", "error-summary-title", 1, "govuk-error-summary__title"], ["class", "govuk-error-summary__body", 4, "ngFor", "ngForOf"], [1, "govuk-error-summary__body"], [1, "govuk-list", "govuk-error-summary__list"], ["tabindex", "0", 1, "validation-error", 3, "click", "keyup.enter"], [1, "form", 3, "submit", "formGroup"], ["id", "fieldset-case-data"], [2, "display", "none"], ["id", "caseEditForm", 3, "fields", "formGroup", "caseFields", "pageChangeSubject", "valuesChanged", 4, "ngIf"], ["class", "grid-row", 4, "ngIf"], [1, "form-group", "form-group-related"], ["class", "button button-secondary", "type", "button", 3, "disabled", "click", 4, "ngIf"], ["type", "submit", 1, "button", 3, "disabled"], [1, "cancel"], ["type", "button", 1, "govuk-js-link", 3, "click"], ["id", "caseEditForm", 3, "valuesChanged", "fields", "formGroup", "caseFields", "pageChangeSubject"], [1, "grid-row"], [1, "column-two-thirds", "rightBorderSeparator"], ["id", "caseEditForm1", 3, "fields", "formGroup", "caseFields"], [1, "column-one-third"], ["id", "caseEditForm2", 3, "fields", "formGroup", "caseFields"], ["type", "button", 1, "button", "button-secondary", 3, "click", "disabled"], [3, "eventCanBeCompleted", "eventCompletionParams"]], template: function CaseEditPageComponent_Template(rf, ctx) { if (rf & 1) {
|
|
12208
13110
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
12209
13111
|
i0.ɵɵtemplate(0, CaseEditPageComponent_ng_container_0_Template, 3, 2, "ng-container", 2)(1, CaseEditPageComponent_div_1_Template, 1, 0, "div", 3)(2, CaseEditPageComponent_ng_template_2_Template, 3, 7, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor)(4, CaseEditPageComponent_ng_template_4_Template, 1, 1, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor)(6, CaseEditPageComponent_div_6_Template, 5, 4, "div", 4);
|
|
@@ -12236,8 +13138,8 @@ class CaseEditPageComponent {
|
|
|
12236
13138
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CaseEditPageComponent, [{
|
|
12237
13139
|
type: Component,
|
|
12238
13140
|
args: [{ selector: 'ccd-case-edit-page', standalone: false, template: "<ng-container *ngIf=\"currentPage\">\n <h1 *ngIf=\"!currentPage.label\" class=\"govuk-heading-l\">{{eventTrigger.name | rpxTranslate}}</h1>\n <ng-container *ngIf=\"currentPage.label\">\n <span class=\"govuk-caption-l\">{{ eventTrigger.name | rpxTranslate}}</span>\n <h1 class=\"govuk-heading-l\">{{currentPage.label | rpxTranslate}}</h1>\n </ng-container>\n</ng-container>\n\n<!--Case ID or Title -->\n<div *ngIf=\"getCaseTitle(); then titleBlock; else idBlock\"></div>\n<ng-template #titleBlock>\n <ccd-markdown [content]=\"getCaseTitle() | ccdCaseTitle: caseFields : editForm.controls['data'] | rpxTranslate\"></ccd-markdown>\n</ng-template>\n<ng-template #idBlock>\n <h2 *ngIf=\"getCaseId()\" class=\"heading-h2\">#{{ getCaseId() | ccdCaseReference }}</h2>\n</ng-template>\n\n<!-- Error message summary -->\n<div *ngIf=\"validationErrors.length > 0\" class=\"govuk-error-summary\" aria-labelledby=\"error-summary-title\" role=\"alert\" tabindex=\"-1\" data-module=\"govuk-error-summary\">\n <h2 class=\"govuk-error-summary__title\" id=\"error-summary-title\">\n {{'There is a problem' | rpxTranslate}}\n </h2>\n <div *ngFor=\"let validationError of validationErrors\" class=\"govuk-error-summary__body\">\n <ul class=\"govuk-list govuk-error-summary__list\">\n <li>\n <a (click)=\"navigateToErrorElement(validationError.id)\" (keyup.enter)=\"navigateToErrorElement(validationError.id)\" tabindex=\"0\" class=\"validation-error\">\n {{ validationError.message | rpxTranslate: getRpxTranslatePipeArgs(validationError.label | rpxTranslate): null }}\n </a>\n </li>\n </ul>\n </div>\n</div>\n\n<ccd-case-edit-generic-errors [error]=\"caseEdit.error\"></ccd-case-edit-generic-errors>\n\n<ccd-callback-errors\n [triggerTextContinue]=\"triggerTextStart\"\n [triggerTextIgnore]=\"triggerTextIgnoreWarnings\"\n [callbackErrorsSubject]=\"caseEdit.callbackErrorsSubject\"\n (callbackErrorsContext)=\"callbackErrorsNotify($event)\">\n</ccd-callback-errors>\n<div class=\"width-50\">\n <form *ngIf=\"currentPage\" class=\"form\" [formGroup]=\"editForm\" (submit)=\"nextStep()\">\n <fieldset id=\"fieldset-case-data\">\n <legend style=\"display: none;\"></legend>\n <!-- single column -->\n <ccd-case-edit-form id='caseEditForm' *ngIf=\"!currentPage.isMultiColumn()\" [fields]=\"currentPage.getCol1Fields()\"\n [formGroup]=\"editForm.controls['data']\" [caseFields]=\"caseFields\"\n [pageChangeSubject]=\"pageChangeSubject\"\n (valuesChanged)=\"applyValuesChanged($event)\"></ccd-case-edit-form>\n <!-- two columns -->\n <div *ngIf=\"currentPage.isMultiColumn()\" class=\"grid-row\">\n <div class=\"column-two-thirds rightBorderSeparator\">\n <ccd-case-edit-form id='caseEditForm1' [fields]=\"currentPage.getCol1Fields()\"\n [formGroup]=\"editForm.controls['data']\" [caseFields]=\"caseFields\"></ccd-case-edit-form>\n </div>\n <div class=\"column-one-third\">\n <ccd-case-edit-form id='caseEditForm2' [fields]=\"currentPage.getCol2Fields()\"\n [formGroup]=\"editForm.controls['data']\" [caseFields]=\"caseFields\"></ccd-case-edit-form>\n </div>\n </div>\n </fieldset>\n\n <div class=\"form-group form-group-related\">\n <button class=\"button button-secondary\" type=\"button\" (click)=\"toPreviousPage()\" *ngIf=\"!isAtStart()\" [disabled]=\"isDisabled()\">\n {{'Previous' | rpxTranslate}}\n </button>\n <button class=\"button\" type=\"submit\" [disabled]=\"submitting()\">{{triggerText | rpxTranslate}}</button>\n </div>\n\n <p class=\"cancel\"><button type=\"button\" (click)=\"cancel()\" class=\"govuk-js-link\">{{getCancelText() | rpxTranslate}}</button></p>\n </form>\n</div>\n\n<ccd-case-event-completion *ngIf=\"caseEdit.isEventCompletionChecksRequired\"\n [eventCompletionParams]=\"caseEdit.eventCompletionParams\"\n (eventCanBeCompleted)=\"onEventCanBeCompleted($event)\">\n</ccd-case-event-completion>\n", styles: [".rightBorderSeparator{border-right-width:4px;border-right-color:#ffcc02;border-right-style:solid}.validation-error{cursor:pointer;text-decoration:underline;color:#d4351c}\n"] }]
|
|
12239
|
-
}], () => [{ type: CaseEditComponent }, { type: i1$1.ActivatedRoute }, { type: FormValueService }, { type: FormErrorService }, { type: i0.ChangeDetectorRef }, { type: PageValidationService }, { type: i1$3.MatLegacyDialog }, { type: CaseFieldService }, { type: CaseEditDataService }, { type: LoadingService }, { type: ValidPageListCaseFieldsService }, { type: MultipageComponentStateService }, { type: AddressesService }, { type: LinkedCasesService }, { type: CaseFlagStateService }
|
|
12240
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CaseEditPageComponent, { className: "CaseEditPageComponent", filePath: "lib/shared/components/case-editor/case-edit-page/case-edit-page.component.ts", lineNumber:
|
|
13141
|
+
}], () => [{ type: CaseEditComponent }, { type: i1$1.ActivatedRoute }, { type: FormValueService }, { type: FormErrorService }, { type: i0.ChangeDetectorRef }, { type: PageValidationService }, { type: i1$3.MatLegacyDialog }, { type: CaseFieldService }, { type: CaseEditDataService }, { type: LoadingService }, { type: ValidPageListCaseFieldsService }, { type: MultipageComponentStateService }, { type: AddressesService }, { type: LinkedCasesService }, { type: CaseFlagStateService }], null); })();
|
|
13142
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CaseEditPageComponent, { className: "CaseEditPageComponent", filePath: "lib/shared/components/case-editor/case-edit-page/case-edit-page.component.ts", lineNumber: 35 }); })();
|
|
12241
13143
|
|
|
12242
13144
|
class CallbackErrorsContext {
|
|
12243
13145
|
triggerText;
|
|
@@ -33572,8 +34474,7 @@ class CaseEditorModule {
|
|
|
33572
34474
|
EventCompletionStateMachineService,
|
|
33573
34475
|
CaseFlagStateService,
|
|
33574
34476
|
ValidPageListCaseFieldsService,
|
|
33575
|
-
MultipageComponentStateService
|
|
33576
|
-
FocusService
|
|
34477
|
+
MultipageComponentStateService
|
|
33577
34478
|
], imports: [CommonModule,
|
|
33578
34479
|
RouterModule,
|
|
33579
34480
|
FormsModule,
|
|
@@ -33656,8 +34557,7 @@ class CaseEditorModule {
|
|
|
33656
34557
|
EventCompletionStateMachineService,
|
|
33657
34558
|
CaseFlagStateService,
|
|
33658
34559
|
ValidPageListCaseFieldsService,
|
|
33659
|
-
MultipageComponentStateService
|
|
33660
|
-
FocusService
|
|
34560
|
+
MultipageComponentStateService
|
|
33661
34561
|
]
|
|
33662
34562
|
}]
|
|
33663
34563
|
}], null, null); })();
|
|
@@ -40040,6 +40940,9 @@ class CreateCaseFiltersComponent {
|
|
|
40040
40940
|
this.jurisdictions = jurisdictions;
|
|
40041
40941
|
this.selectJurisdiction(this.jurisdictions, this.filterJurisdictionControl);
|
|
40042
40942
|
});
|
|
40943
|
+
if (document.getElementById('cc-jurisdiction')) {
|
|
40944
|
+
document.getElementById('cc-jurisdiction').focus();
|
|
40945
|
+
}
|
|
40043
40946
|
}
|
|
40044
40947
|
onJurisdictionIdChange() {
|
|
40045
40948
|
this.resetCaseType();
|
|
@@ -41865,5 +42768,5 @@ class TestRouteSnapshotBuilder {
|
|
|
41865
42768
|
* Generated bundle index. Do not edit.
|
|
41866
42769
|
*/
|
|
41867
42770
|
|
|
41868
|
-
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, 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, COMPONENT_PORTAL_INJECTION_TOKEN, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventCompletionComponent, CaseEventCompletionTaskCancelledComponent, CaseEventCompletionTaskReassignedComponent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewFolderToggleComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagCheckYourAnswersPageStep, CaseFlagDisplayContextParameter, CaseFlagErrorMessage, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, 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, CloseQueryComponent, 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, FocusService, 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, MultipageComponentStateService, 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, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionService, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryConfirmationComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryManagementService, QueryWriteAddDocumentsComponent, QueryWriteDateInputComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, RaiseQueryErrorMessage, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadCookieService, 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, RespondToQueryErrorMessages, RetryUtil, RouterHelperService, RouterLinkComponent, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionErrorPageComponent, SessionErrorRoute, SessionJsonErrorLogger, SessionStorageGuard, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, StructuredLoggerService, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, 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, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, safeJsonParse, textFieldType, viewerRouting };
|
|
42771
|
+
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, 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, COMPONENT_PORTAL_INJECTION_TOKEN, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventCompletionComponent, CaseEventCompletionTaskCancelledComponent, CaseEventCompletionTaskReassignedComponent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewFolderToggleComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagCheckYourAnswersPageStep, CaseFlagDisplayContextParameter, CaseFlagErrorMessage, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, 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, CloseQueryComponent, 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, MultipageComponentStateService, 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, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionService, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryConfirmationComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryManagementService, QueryWriteAddDocumentsComponent, QueryWriteDateInputComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, RaiseQueryErrorMessage, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadCookieService, 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, RespondToQueryErrorMessages, RetryUtil, RouterHelperService, RouterLinkComponent, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionErrorPageComponent, SessionErrorRoute, SessionJsonErrorLogger, SessionStorageGuard, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, StructuredLoggerService, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, 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, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, safeJsonParse, textFieldType, viewerRouting };
|
|
41869
42772
|
//# sourceMappingURL=hmcts-ccd-case-ui-toolkit.mjs.map
|