@hmcts/ccd-case-ui-toolkit 7.2.26-welsh-translation-qm → 7.2.27-close-message
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/esm2022/lib/shared/components/case-header/case-header.component.mjs +5 -5
- package/esm2022/lib/shared/components/palette/organisation/read-organisation-field-raw.component.mjs +21 -25
- package/esm2022/lib/shared/components/palette/organisation/read-organisation-field-table.component.mjs +21 -25
- package/esm2022/lib/shared/components/palette/palette.module.mjs +2 -6
- package/esm2022/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.mjs +15 -29
- package/esm2022/lib/shared/components/palette/query-management/read-query-management-field.component.mjs +3 -3
- package/esm2022/lib/shared/components/palette/utils/field-label.pipe.mjs +11 -3
- package/esm2022/lib/shared/directives/index.mjs +1 -2
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +70 -204
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +17 -18
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/utils/field-label.pipe.d.ts +1 -0
- package/lib/shared/components/palette/utils/field-label.pipe.d.ts.map +1 -1
- package/lib/shared/directives/index.d.ts +0 -1
- package/lib/shared/directives/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/esm2022/lib/shared/directives/welsh-translated-markdown/index.mjs +0 -3
- package/esm2022/lib/shared/directives/welsh-translated-markdown/welsh-translated-markdown.directive.mjs +0 -104
- package/esm2022/lib/shared/directives/welsh-translated-markdown/welsh-translated-markdown.module.mjs +0 -21
- package/lib/shared/directives/welsh-translated-markdown/index.d.ts +0 -3
- package/lib/shared/directives/welsh-translated-markdown/index.d.ts.map +0 -1
- package/lib/shared/directives/welsh-translated-markdown/welsh-translated-markdown.directive.d.ts +0 -76
- package/lib/shared/directives/welsh-translated-markdown/welsh-translated-markdown.directive.d.ts.map +0 -1
- package/lib/shared/directives/welsh-translated-markdown/welsh-translated-markdown.module.d.ts +0 -8
- package/lib/shared/directives/welsh-translated-markdown/welsh-translated-markdown.module.d.ts.map +0 -1
|
@@ -2924,11 +2924,19 @@ class FieldLabelPipe {
|
|
|
2924
2924
|
return '';
|
|
2925
2925
|
}
|
|
2926
2926
|
else if (!field.display_context) {
|
|
2927
|
-
return this.
|
|
2927
|
+
return this.getTranslatedLabel(field);
|
|
2928
2928
|
}
|
|
2929
|
-
return this.
|
|
2929
|
+
return this.getTranslatedLabel(field) + (field.display_context.toUpperCase() === 'OPTIONAL' ?
|
|
2930
2930
|
' (' + this.rpxTranslationPipe.transform('Optional') + ')' : '');
|
|
2931
2931
|
}
|
|
2932
|
+
getTranslatedLabel(field) {
|
|
2933
|
+
if (!field.isTranslated) {
|
|
2934
|
+
return this.rpxTranslationPipe.transform(field.label);
|
|
2935
|
+
}
|
|
2936
|
+
else {
|
|
2937
|
+
return field.label;
|
|
2938
|
+
}
|
|
2939
|
+
}
|
|
2932
2940
|
static ɵfac = function FieldLabelPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FieldLabelPipe)(i0.ɵɵdirectiveInject(i1.RpxTranslatePipe, 16)); };
|
|
2933
2941
|
static ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "ccdFieldLabel", type: FieldLabelPipe, pure: false });
|
|
2934
2942
|
}
|
|
@@ -6761,124 +6769,6 @@ class FocusElementModule {
|
|
|
6761
6769
|
}], null, null); })();
|
|
6762
6770
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FocusElementModule, { declarations: [FocusElementDirective], exports: [FocusElementDirective] }); })();
|
|
6763
6771
|
|
|
6764
|
-
/**
|
|
6765
|
-
* @directive TranslatedMarkdownDirective
|
|
6766
|
-
*
|
|
6767
|
-
* @description
|
|
6768
|
-
* Structural directive that emits language-appropriate markdown content based on the user's UI language.
|
|
6769
|
-
* It is designed for service-supplied content that optionally includes a Welsh (`markdown_cy`) version.
|
|
6770
|
-
*
|
|
6771
|
-
* The directive:
|
|
6772
|
-
* - Emits `markdown_cy` if the UI language is Welsh and the field exists
|
|
6773
|
-
* - Emits `markdown` otherwise (no translation is applied within the directive)
|
|
6774
|
-
* - Leaves it up to the consuming template to apply fallback translation (e.g. via `rpxTranslate`)
|
|
6775
|
-
*
|
|
6776
|
-
* This allows cleaner templates and better separation of content choice vs. translation logic.
|
|
6777
|
-
*
|
|
6778
|
-
* @usage
|
|
6779
|
-
* ```html
|
|
6780
|
-
* <div *ngFor="let qq of qualifyingQuestions">
|
|
6781
|
-
* <ng-container *translatedMarkdown="qq; let content">
|
|
6782
|
-
* <markdown [data]="qq ? content : (qq.markdown | rpxTranslate)"></markdown>
|
|
6783
|
-
* </ng-container>
|
|
6784
|
-
* </div>
|
|
6785
|
-
* ```
|
|
6786
|
-
*
|
|
6787
|
-
* @input dataItem - An object expected to contain:
|
|
6788
|
-
* - `markdown` (string): the default English content
|
|
6789
|
-
* - `markdown_cy` (string | optional): the Welsh version of the content
|
|
6790
|
-
* - Any additional metadata used in context
|
|
6791
|
-
*
|
|
6792
|
-
* @example
|
|
6793
|
-
* // --- LaunchDarkly JSON format ---
|
|
6794
|
-
* {
|
|
6795
|
-
* "UNSPEC_CLAIM": [
|
|
6796
|
-
* {
|
|
6797
|
-
* "name": "Raise a query",
|
|
6798
|
-
* "url": "http://...",
|
|
6799
|
-
* "markdown": "### Raise a query\nUse this to raise a new query.",
|
|
6800
|
-
* "markdown_cy": "### Codwch ymholiad\nDefnyddiwch hwn i godi ymholiad newydd."
|
|
6801
|
-
* }
|
|
6802
|
-
* ]
|
|
6803
|
-
* }
|
|
6804
|
-
*
|
|
6805
|
-
* // --- Input object in component after processing ---
|
|
6806
|
-
* const dataItem = {
|
|
6807
|
-
* name: 'Raise a query',
|
|
6808
|
-
* url: 'http://...',
|
|
6809
|
-
* markdown: '### Raise a query\nUse this to raise a new query.',
|
|
6810
|
-
* markdown_cy: '### Codwch ymholiad\nDefnyddiwch hwn i godi ymholiad newydd.'
|
|
6811
|
-
* };
|
|
6812
|
-
*
|
|
6813
|
-
* // --- Template usage ---
|
|
6814
|
-
* <ng-container *translatedMarkdown="dataItem; let content">
|
|
6815
|
-
* <markdown [data]="dataItem ? content : (dataItem.markdown | rpxTranslate)"></markdown>
|
|
6816
|
-
* </ng-container>
|
|
6817
|
-
*/
|
|
6818
|
-
/**
|
|
6819
|
-
* @directive TranslatedMarkdownDirective
|
|
6820
|
-
*
|
|
6821
|
-
* Renders Welsh markdown (`markdown_cy`) if the UI language is Welsh,
|
|
6822
|
-
* otherwise uses English (`markdown`). Reactively updates when the language changes.
|
|
6823
|
-
*/
|
|
6824
|
-
class TranslatedMarkdownDirective {
|
|
6825
|
-
viewContainer;
|
|
6826
|
-
templateRef;
|
|
6827
|
-
translationService;
|
|
6828
|
-
dataItem;
|
|
6829
|
-
subscription;
|
|
6830
|
-
constructor(viewContainer, templateRef, translationService) {
|
|
6831
|
-
this.viewContainer = viewContainer;
|
|
6832
|
-
this.templateRef = templateRef;
|
|
6833
|
-
this.translationService = translationService;
|
|
6834
|
-
}
|
|
6835
|
-
ngOnInit() {
|
|
6836
|
-
this.subscription = this.translationService.language$.subscribe((lang) => {
|
|
6837
|
-
const isWelsh = lang === 'cy';
|
|
6838
|
-
const content = isWelsh && this.dataItem?.markdown_cy
|
|
6839
|
-
? this.dataItem.markdown_cy
|
|
6840
|
-
: this.dataItem?.markdown ?? '';
|
|
6841
|
-
this.viewContainer.clear();
|
|
6842
|
-
this.viewContainer.createEmbeddedView(this.templateRef, {
|
|
6843
|
-
$implicit: content,
|
|
6844
|
-
translatedMarkdown: this.dataItem
|
|
6845
|
-
});
|
|
6846
|
-
});
|
|
6847
|
-
}
|
|
6848
|
-
ngOnDestroy() {
|
|
6849
|
-
this.subscription?.unsubscribe();
|
|
6850
|
-
}
|
|
6851
|
-
static ɵfac = function TranslatedMarkdownDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TranslatedMarkdownDirective)(i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i0.TemplateRef), i0.ɵɵdirectiveInject(i1.RpxTranslationService)); };
|
|
6852
|
-
static ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: TranslatedMarkdownDirective, selectors: [["", "translatedMarkdown", ""]], inputs: { dataItem: [0, "translatedMarkdown", "dataItem"] } });
|
|
6853
|
-
}
|
|
6854
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TranslatedMarkdownDirective, [{
|
|
6855
|
-
type: Directive,
|
|
6856
|
-
args: [{
|
|
6857
|
-
selector: '[translatedMarkdown]'
|
|
6858
|
-
}]
|
|
6859
|
-
}], () => [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: i1.RpxTranslationService }], { dataItem: [{
|
|
6860
|
-
type: Input,
|
|
6861
|
-
args: ['translatedMarkdown']
|
|
6862
|
-
}] }); })();
|
|
6863
|
-
|
|
6864
|
-
class TranslatedMarkdownModule {
|
|
6865
|
-
static ɵfac = function TranslatedMarkdownModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TranslatedMarkdownModule)(); };
|
|
6866
|
-
static ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: TranslatedMarkdownModule });
|
|
6867
|
-
static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
|
|
6868
|
-
}
|
|
6869
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TranslatedMarkdownModule, [{
|
|
6870
|
-
type: NgModule,
|
|
6871
|
-
args: [{
|
|
6872
|
-
declarations: [
|
|
6873
|
-
TranslatedMarkdownDirective
|
|
6874
|
-
],
|
|
6875
|
-
exports: [
|
|
6876
|
-
TranslatedMarkdownDirective
|
|
6877
|
-
]
|
|
6878
|
-
}]
|
|
6879
|
-
}], null, null); })();
|
|
6880
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(TranslatedMarkdownModule, { declarations: [TranslatedMarkdownDirective], exports: [TranslatedMarkdownDirective] }); })();
|
|
6881
|
-
|
|
6882
6772
|
var AddressType;
|
|
6883
6773
|
(function (AddressType) {
|
|
6884
6774
|
AddressType["DPA"] = "DPA";
|
|
@@ -20669,49 +20559,36 @@ const caseMessagesMockData = [
|
|
|
20669
20559
|
}
|
|
20670
20560
|
];
|
|
20671
20561
|
|
|
20672
|
-
function QualifyingQuestionDetailComponent_ng_container_0_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
20673
|
-
i0.ɵɵelementContainerStart(0);
|
|
20674
|
-
i0.ɵɵelementStart(1, "div", 3);
|
|
20675
|
-
i0.ɵɵtext(2);
|
|
20676
|
-
i0.ɵɵelement(3, "ccd-markdown", 4);
|
|
20677
|
-
i0.ɵɵpipe(4, "rpxTranslate");
|
|
20678
|
-
i0.ɵɵelementEnd();
|
|
20679
|
-
i0.ɵɵelementContainerEnd();
|
|
20680
|
-
} if (rf & 2) {
|
|
20681
|
-
const content_r1 = ctx.$implicit;
|
|
20682
|
-
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
20683
|
-
i0.ɵɵadvance(2);
|
|
20684
|
-
i0.ɵɵtextInterpolate1(" ", ctx_r1.qualifyingQuestion.markdown, " ");
|
|
20685
|
-
i0.ɵɵadvance();
|
|
20686
|
-
i0.ɵɵproperty("content", ctx_r1.qualifyingQuestion ? content_r1 : i0.ɵɵpipeBind1(4, 2, ctx_r1.qualifyingQuestion.markdown));
|
|
20687
|
-
} }
|
|
20688
20562
|
function QualifyingQuestionDetailComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
20689
20563
|
i0.ɵɵelementContainerStart(0);
|
|
20690
20564
|
i0.ɵɵelementStart(1, "h1", 1);
|
|
20691
20565
|
i0.ɵɵtext(2);
|
|
20692
20566
|
i0.ɵɵpipe(3, "rpxTranslate");
|
|
20693
20567
|
i0.ɵɵelementEnd();
|
|
20694
|
-
i0.ɵɵ
|
|
20568
|
+
i0.ɵɵelementStart(4, "div", 2);
|
|
20569
|
+
i0.ɵɵelement(5, "ccd-markdown", 3);
|
|
20570
|
+
i0.ɵɵpipe(6, "rpxTranslate");
|
|
20571
|
+
i0.ɵɵelementEnd();
|
|
20695
20572
|
i0.ɵɵelementContainerEnd();
|
|
20696
20573
|
} if (rf & 2) {
|
|
20697
|
-
const
|
|
20698
|
-
i0.ɵɵadvance(2);
|
|
20699
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 2, ctx_r1.qualifyingQuestion.name), " - ");
|
|
20574
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
20700
20575
|
i0.ɵɵadvance(2);
|
|
20701
|
-
i0.ɵɵ
|
|
20576
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 2, ctx_r0.qualifyingQuestion.name), " ");
|
|
20577
|
+
i0.ɵɵadvance(3);
|
|
20578
|
+
i0.ɵɵproperty("content", i0.ɵɵpipeBind1(6, 4, ctx_r0.qualifyingQuestion.markdown));
|
|
20702
20579
|
} }
|
|
20703
20580
|
class QualifyingQuestionDetailComponent {
|
|
20704
20581
|
qualifyingQuestion;
|
|
20705
20582
|
static ɵfac = function QualifyingQuestionDetailComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || QualifyingQuestionDetailComponent)(); };
|
|
20706
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: QualifyingQuestionDetailComponent, selectors: [["ccd-qualifying-question-detail"]], inputs: { qualifyingQuestion: "qualifyingQuestion" }, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "govuk-heading-l"], [
|
|
20707
|
-
i0.ɵɵtemplate(0, QualifyingQuestionDetailComponent_ng_container_0_Template,
|
|
20583
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: QualifyingQuestionDetailComponent, selectors: [["ccd-qualifying-question-detail"]], inputs: { qualifyingQuestion: "qualifyingQuestion" }, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "govuk-heading-l"], [1, "qm-qualifying-question"], [3, "content"]], template: function QualifyingQuestionDetailComponent_Template(rf, ctx) { if (rf & 1) {
|
|
20584
|
+
i0.ɵɵtemplate(0, QualifyingQuestionDetailComponent_ng_container_0_Template, 7, 6, "ng-container", 0);
|
|
20708
20585
|
} if (rf & 2) {
|
|
20709
20586
|
i0.ɵɵproperty("ngIf", ctx.qualifyingQuestion == null ? null : ctx.qualifyingQuestion.markdown);
|
|
20710
|
-
} }, dependencies: [i5.NgIf,
|
|
20587
|
+
} }, dependencies: [i5.NgIf, MarkdownComponent, i1.RpxTranslatePipe], styles: [".qm-qualifying-question[_ngcontent-%COMP%] .markdown[_ngcontent-%COMP%]{font-size:19px}"] });
|
|
20711
20588
|
}
|
|
20712
20589
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(QualifyingQuestionDetailComponent, [{
|
|
20713
20590
|
type: Component,
|
|
20714
|
-
args: [{ selector: 'ccd-qualifying-question-detail', template: "
|
|
20591
|
+
args: [{ selector: 'ccd-qualifying-question-detail', template: "<ng-container *ngIf=\"qualifyingQuestion?.markdown\">\n <h1 class=\"govuk-heading-l\">\n {{ qualifyingQuestion.name | rpxTranslate }}\n </h1>\n <div class=\"qm-qualifying-question\">\n <ccd-markdown\n [content]=\"qualifyingQuestion.markdown | rpxTranslate\">\n </ccd-markdown>\n </div>\n</ng-container>\n", styles: [".qm-qualifying-question .markdown{font-size:19px}\n"] }]
|
|
20715
20592
|
}], null, { qualifyingQuestion: [{
|
|
20716
20593
|
type: Input
|
|
20717
20594
|
}] }); })();
|
|
@@ -23405,7 +23282,7 @@ function ReadQueryManagementFieldComponent_ng_template_1_Template(rf, ctx) { if
|
|
|
23405
23282
|
i0.ɵɵadvance();
|
|
23406
23283
|
i0.ɵɵproperty("ngIf", !ctx_r1.isInternalUser() && !ctx_r1.isQueryClosed);
|
|
23407
23284
|
i0.ɵɵadvance();
|
|
23408
|
-
i0.ɵɵproperty("ngIf",
|
|
23285
|
+
i0.ɵɵproperty("ngIf", ctx_r1.isQueryClosed);
|
|
23409
23286
|
} }
|
|
23410
23287
|
class ReadQueryManagementFieldComponent extends AbstractFieldReadComponent {
|
|
23411
23288
|
route;
|
|
@@ -23471,7 +23348,7 @@ class ReadQueryManagementFieldComponent extends AbstractFieldReadComponent {
|
|
|
23471
23348
|
}
|
|
23472
23349
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadQueryManagementFieldComponent, [{
|
|
23473
23350
|
type: Component,
|
|
23474
|
-
args: [{ selector: 'ccd-read-query-management-field', template: "<ng-container *ngIf=\"showQueryList; else singleQueryDetails\">\n <ng-container *ngFor=\"let caseQueriesCollection of caseQueriesCollections\">\n <div *ngIf=\"showQueryList\" class=\"govuk-!-margin-top-8 govuk-!-margin-bottom-8\">\n <ccd-query-list (selectedQuery)=\"setQuery($event)\" [caseQueriesCollection]=\"caseQueriesCollection\"></ccd-query-list>\n </div>\n </ng-container>\n</ng-container>\n\n<ng-template #singleQueryDetails>\n <ccd-query-details\n [query]=\"query\"\n (backClicked)=\"showQueryList = true\"\n [caseId]=\"caseId\"\n ></ccd-query-details>\n\n <ng-container *ngIf=\"!isInternalUser() && !isQueryClosed\">\n <ng-container *ngIf=\"query?.children?.length > 0 && query?.children?.length % 2 === 1; else queryIsInReview\">\n <button id=\"ask-follow-up-question\" class=\"govuk-button\" data-module=\"govuk-button\"\n [routerLink]=\"['/query-management', 'query', caseId, '4', query.id]\">\n {{ 'Ask a follow-up question' | rpxTranslate }}\n </button>\n </ng-container>\n\n <ng-template #queryIsInReview>\n <div>\n <p class=\"govuk-!-font-weight-bold\">{{ 'Your query is under review' | rpxTranslate }}</p>\n <p>{{ 'Our team will read your query and respond. Do not submit the same query more than once.' | rpxTranslate }}</p>\n </div>\n </ng-template>\n </ng-container>\n <ng-container *ngIf=\"
|
|
23351
|
+
args: [{ selector: 'ccd-read-query-management-field', template: "<ng-container *ngIf=\"showQueryList; else singleQueryDetails\">\n <ng-container *ngFor=\"let caseQueriesCollection of caseQueriesCollections\">\n <div *ngIf=\"showQueryList\" class=\"govuk-!-margin-top-8 govuk-!-margin-bottom-8\">\n <ccd-query-list (selectedQuery)=\"setQuery($event)\" [caseQueriesCollection]=\"caseQueriesCollection\"></ccd-query-list>\n </div>\n </ng-container>\n</ng-container>\n\n<ng-template #singleQueryDetails>\n <ccd-query-details\n [query]=\"query\"\n (backClicked)=\"showQueryList = true\"\n [caseId]=\"caseId\"\n ></ccd-query-details>\n\n <ng-container *ngIf=\"!isInternalUser() && !isQueryClosed\">\n <ng-container *ngIf=\"query?.children?.length > 0 && query?.children?.length % 2 === 1; else queryIsInReview\">\n <button id=\"ask-follow-up-question\" class=\"govuk-button\" data-module=\"govuk-button\"\n [routerLink]=\"['/query-management', 'query', caseId, '4', query.id]\">\n {{ 'Ask a follow-up question' | rpxTranslate }}\n </button>\n </ng-container>\n\n <ng-template #queryIsInReview>\n <div>\n <p class=\"govuk-!-font-weight-bold\">{{ 'Your query is under review' | rpxTranslate }}</p>\n <p>{{ 'Our team will read your query and respond. Do not submit the same query more than once.' | rpxTranslate }}</p>\n </div>\n </ng-template>\n </ng-container>\n <ng-container *ngIf=\"isQueryClosed\">\n <div class=\"govuk-warning-text\">\n <span aria-hidden=\"true\" class=\"govuk-warning-text__icon\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-visually-hidden\">Warning</span>\n <p class=\"qm-service-message govuk-!-font-weight-bold\">{{ 'This query has been closed by court staff.' | rpxTranslate }}</p>\n </strong>\n </div>\n </ng-container>\n</ng-template>\n" }]
|
|
23475
23352
|
}], () => [{ type: i1$1.ActivatedRoute }, { type: SessionStorageService }, { type: CaseNotifier }], null); })();
|
|
23476
23353
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadQueryManagementFieldComponent, { className: "ReadQueryManagementFieldComponent", filePath: "lib/shared/components/palette/query-management/read-query-management-field.component.ts", lineNumber: 15 }); })();
|
|
23477
23354
|
|
|
@@ -30218,36 +30095,32 @@ class ReadOrderSummaryRowComponent extends AbstractFieldReadComponent {
|
|
|
30218
30095
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadOrderSummaryRowComponent, { className: "ReadOrderSummaryRowComponent", filePath: "lib/shared/components/palette/order-summary/read-order-summary-row.component.ts", lineNumber: 13 }); })();
|
|
30219
30096
|
|
|
30220
30097
|
function ReadOrganisationFieldRawComponent_table_7_Template(rf, ctx) { if (rf & 1) {
|
|
30221
|
-
i0.ɵɵelementStart(0, "table", 1);
|
|
30222
|
-
i0.ɵɵ
|
|
30223
|
-
i0.ɵɵelementStart(
|
|
30224
|
-
i0.ɵɵ
|
|
30225
|
-
i0.ɵɵelementStart(4, "td", 5)(5, "span", 6);
|
|
30226
|
-
i0.ɵɵtext(6);
|
|
30227
|
-
i0.ɵɵpipe(7, "rpxTranslate");
|
|
30098
|
+
i0.ɵɵelementStart(0, "table", 1)(1, "tr", 4);
|
|
30099
|
+
i0.ɵɵelement(2, "th", 2);
|
|
30100
|
+
i0.ɵɵelementStart(3, "td", 5)(4, "span", 6);
|
|
30101
|
+
i0.ɵɵtext(5);
|
|
30228
30102
|
i0.ɵɵelementEnd()();
|
|
30229
|
-
i0.ɵɵelementStart(
|
|
30230
|
-
i0.ɵɵtext(
|
|
30103
|
+
i0.ɵɵelementStart(6, "td")(7, "span", 6);
|
|
30104
|
+
i0.ɵɵtext(8);
|
|
30231
30105
|
i0.ɵɵelementEnd()()();
|
|
30232
|
-
i0.ɵɵelementStart(
|
|
30233
|
-
i0.ɵɵelement(
|
|
30234
|
-
i0.ɵɵelementStart(
|
|
30235
|
-
i0.ɵɵtext(
|
|
30236
|
-
i0.ɵɵpipe(16, "rpxTranslate");
|
|
30106
|
+
i0.ɵɵelementStart(9, "tr", 4);
|
|
30107
|
+
i0.ɵɵelement(10, "th", 2);
|
|
30108
|
+
i0.ɵɵelementStart(11, "td", 5)(12, "span", 6);
|
|
30109
|
+
i0.ɵɵtext(13);
|
|
30237
30110
|
i0.ɵɵelementEnd()();
|
|
30238
|
-
i0.ɵɵelementStart(
|
|
30239
|
-
i0.ɵɵelement(
|
|
30111
|
+
i0.ɵɵelementStart(14, "td");
|
|
30112
|
+
i0.ɵɵelement(15, "ccd-markdown", 7);
|
|
30240
30113
|
i0.ɵɵelementEnd()()();
|
|
30241
30114
|
} if (rf & 2) {
|
|
30242
30115
|
const selectedOrg_r1 = ctx.ngIf;
|
|
30243
|
-
i0.ɵɵattribute("aria-describedby",
|
|
30244
|
-
i0.ɵɵadvance(6);
|
|
30245
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 7, "Name:"));
|
|
30246
|
-
i0.ɵɵadvance(4);
|
|
30247
|
-
i0.ɵɵtextInterpolate(selectedOrg_r1.name);
|
|
30116
|
+
i0.ɵɵattribute("aria-describedby", "selected organisation field table");
|
|
30248
30117
|
i0.ɵɵadvance(5);
|
|
30249
|
-
i0.ɵɵtextInterpolate(
|
|
30118
|
+
i0.ɵɵtextInterpolate("Name:");
|
|
30250
30119
|
i0.ɵɵadvance(3);
|
|
30120
|
+
i0.ɵɵtextInterpolate(selectedOrg_r1.name);
|
|
30121
|
+
i0.ɵɵadvance(5);
|
|
30122
|
+
i0.ɵɵtextInterpolate("Address:");
|
|
30123
|
+
i0.ɵɵadvance(2);
|
|
30251
30124
|
i0.ɵɵproperty("content", selectedOrg_r1.address);
|
|
30252
30125
|
} }
|
|
30253
30126
|
class ReadOrganisationFieldRawComponent extends AbstractFieldReadComponent {
|
|
@@ -30275,7 +30148,7 @@ class ReadOrganisationFieldRawComponent extends AbstractFieldReadComponent {
|
|
|
30275
30148
|
i0.ɵɵelementStart(3, "tbody")(4, "tr");
|
|
30276
30149
|
i0.ɵɵelement(5, "th", 2);
|
|
30277
30150
|
i0.ɵɵelementStart(6, "td");
|
|
30278
|
-
i0.ɵɵtemplate(7, ReadOrganisationFieldRawComponent_table_7_Template,
|
|
30151
|
+
i0.ɵɵtemplate(7, ReadOrganisationFieldRawComponent_table_7_Template, 16, 5, "table", 3);
|
|
30279
30152
|
i0.ɵɵpipe(8, "async");
|
|
30280
30153
|
i0.ɵɵelementEnd()()()()();
|
|
30281
30154
|
} if (rf & 2) {
|
|
@@ -30287,43 +30160,39 @@ class ReadOrganisationFieldRawComponent extends AbstractFieldReadComponent {
|
|
|
30287
30160
|
}
|
|
30288
30161
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadOrganisationFieldRawComponent, [{
|
|
30289
30162
|
type: Component,
|
|
30290
|
-
args: [{ selector: 'ccd-read-organisation-field-raw', template: "<div class=\"complex-panel\">\n <table class=\"complex-field-table\" [attr.aria-describedby]=\"'complex organisation field table' | rpxTranslate\">\n <tbody>\n <tr>\n <th style=\"display: none;\"></th>\n <td>\n <table class=\"complex-field-table\" *ngIf=\"(selectedOrg$ | async) as selectedOrg\"\n [attr.aria-describedby]=\"'
|
|
30163
|
+
args: [{ selector: 'ccd-read-organisation-field-raw', template: "<div class=\"complex-panel\">\n <table class=\"complex-field-table\" [attr.aria-describedby]=\"'complex organisation field table' | rpxTranslate\">\n <tbody>\n <tr>\n <th style=\"display: none;\"></th>\n <td>\n <table class=\"complex-field-table\" *ngIf=\"(selectedOrg$ | async) as selectedOrg\"\n [attr.aria-describedby]=\"'selected organisation field table'\">\n <tr class=\"complex-panel-compound-field\">\n <th style=\"display: none;\"></th>\n <td class=\"label-width-small\"><span class=\"text-16\">{{'Name:'}}</span></td>\n <td><span class=\"text-16\">{{selectedOrg.name}}</span></td>\n </tr>\n <tr class=\"complex-panel-compound-field\">\n <th style=\"display: none;\"></th>\n <td class=\"label-width-small\"><span class=\"text-16\">{{'Address:'}}</span></td>\n <td>\n <ccd-markdown [content]=\"selectedOrg.address\"></ccd-markdown>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n", styles: [".hmcts-banner{border:0 solid;margin-bottom:10px;color:#000}.hmcts-banner .warning-message{font-weight:700}.govuk-hint{font-size:1.1rem}.name-header{font-weight:700;margin-top:10px;font-size:18px}.td-address{width:90%;padding-top:2px}.td-select{width:10%}.warning-panel{background-color:#e7ebef;height:40px;margin-bottom:0;align-items:center;display:flex}.warning-panel .warning-message{padding-left:15px}.complex-field-table>tbody>tr>th{border:none}.complex-field-table>tbody>tr:last-child>th,.complex-field-table>tbody>tr:last-child>td{border-bottom:none}.complex-field-title{width:300px}.label-width-small{width:100px}.label-width-medium{width:150px}.scroll-container{height:600px;overflow-y:scroll}.no-result-message{margin-top:15px}\n"] }]
|
|
30291
30164
|
}], () => [{ type: OrganisationService }, { type: OrganisationConverter }], { caseFields: [{
|
|
30292
30165
|
type: Input
|
|
30293
30166
|
}] }); })();
|
|
30294
30167
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadOrganisationFieldRawComponent, { className: "ReadOrganisationFieldRawComponent", filePath: "lib/shared/components/palette/organisation/read-organisation-field-raw.component.ts", lineNumber: 15 }); })();
|
|
30295
30168
|
|
|
30296
30169
|
function ReadOrganisationFieldTableComponent_table_12_Template(rf, ctx) { if (rf & 1) {
|
|
30297
|
-
i0.ɵɵelementStart(0, "table", 1);
|
|
30298
|
-
i0.ɵɵ
|
|
30299
|
-
i0.ɵɵelementStart(
|
|
30300
|
-
i0.ɵɵ
|
|
30301
|
-
i0.ɵɵelementStart(4, "td", 8)(5, "span", 4);
|
|
30302
|
-
i0.ɵɵtext(6);
|
|
30303
|
-
i0.ɵɵpipe(7, "rpxTranslate");
|
|
30170
|
+
i0.ɵɵelementStart(0, "table", 1)(1, "tr", 6);
|
|
30171
|
+
i0.ɵɵelement(2, "th", 7);
|
|
30172
|
+
i0.ɵɵelementStart(3, "td", 8)(4, "span", 4);
|
|
30173
|
+
i0.ɵɵtext(5);
|
|
30304
30174
|
i0.ɵɵelementEnd()();
|
|
30305
|
-
i0.ɵɵelementStart(
|
|
30306
|
-
i0.ɵɵtext(
|
|
30175
|
+
i0.ɵɵelementStart(6, "td")(7, "span", 4);
|
|
30176
|
+
i0.ɵɵtext(8);
|
|
30307
30177
|
i0.ɵɵelementEnd()()();
|
|
30308
|
-
i0.ɵɵelementStart(
|
|
30309
|
-
i0.ɵɵelement(
|
|
30310
|
-
i0.ɵɵelementStart(
|
|
30311
|
-
i0.ɵɵtext(
|
|
30312
|
-
i0.ɵɵpipe(16, "rpxTranslate");
|
|
30178
|
+
i0.ɵɵelementStart(9, "tr", 6);
|
|
30179
|
+
i0.ɵɵelement(10, "th", 7);
|
|
30180
|
+
i0.ɵɵelementStart(11, "td", 8)(12, "span", 4);
|
|
30181
|
+
i0.ɵɵtext(13);
|
|
30313
30182
|
i0.ɵɵelementEnd()();
|
|
30314
|
-
i0.ɵɵelementStart(
|
|
30315
|
-
i0.ɵɵelement(
|
|
30183
|
+
i0.ɵɵelementStart(14, "td");
|
|
30184
|
+
i0.ɵɵelement(15, "ccd-markdown", 9);
|
|
30316
30185
|
i0.ɵɵelementEnd()()();
|
|
30317
30186
|
} if (rf & 2) {
|
|
30318
30187
|
const selectedOrg_r1 = ctx.ngIf;
|
|
30319
|
-
i0.ɵɵattribute("aria-describedby",
|
|
30320
|
-
i0.ɵɵadvance(6);
|
|
30321
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 7, "Name:"));
|
|
30322
|
-
i0.ɵɵadvance(4);
|
|
30323
|
-
i0.ɵɵtextInterpolate(selectedOrg_r1.name);
|
|
30188
|
+
i0.ɵɵattribute("aria-describedby", "selected organisation field table");
|
|
30324
30189
|
i0.ɵɵadvance(5);
|
|
30325
|
-
i0.ɵɵtextInterpolate(
|
|
30190
|
+
i0.ɵɵtextInterpolate("Name:");
|
|
30326
30191
|
i0.ɵɵadvance(3);
|
|
30192
|
+
i0.ɵɵtextInterpolate(selectedOrg_r1.name);
|
|
30193
|
+
i0.ɵɵadvance(5);
|
|
30194
|
+
i0.ɵɵtextInterpolate("Address:");
|
|
30195
|
+
i0.ɵɵadvance(2);
|
|
30327
30196
|
i0.ɵɵproperty("content", selectedOrg_r1.address);
|
|
30328
30197
|
} }
|
|
30329
30198
|
class ReadOrganisationFieldTableComponent extends AbstractFieldReadComponent {
|
|
@@ -30353,7 +30222,7 @@ class ReadOrganisationFieldTableComponent extends AbstractFieldReadComponent {
|
|
|
30353
30222
|
i0.ɵɵpipe(10, "rpxTranslate");
|
|
30354
30223
|
i0.ɵɵelementEnd()()()();
|
|
30355
30224
|
i0.ɵɵelementStart(11, "td");
|
|
30356
|
-
i0.ɵɵtemplate(12, ReadOrganisationFieldTableComponent_table_12_Template,
|
|
30225
|
+
i0.ɵɵtemplate(12, ReadOrganisationFieldTableComponent_table_12_Template, 16, 5, "table", 5);
|
|
30357
30226
|
i0.ɵɵpipe(13, "async");
|
|
30358
30227
|
i0.ɵɵelementEnd()()()()();
|
|
30359
30228
|
} if (rf & 2) {
|
|
@@ -30367,7 +30236,7 @@ class ReadOrganisationFieldTableComponent extends AbstractFieldReadComponent {
|
|
|
30367
30236
|
}
|
|
30368
30237
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadOrganisationFieldTableComponent, [{
|
|
30369
30238
|
type: Component,
|
|
30370
|
-
args: [{ selector: 'ccd-read-organisation-field-table', template: "<div class=\"complex-panel\">\n <table class=\"complex-field-table\" [attr.aria-describedby]=\"'complex organisation field table' | rpxTranslate\">\n <tbody>\n <tr>\n <th class=\"complex-field-title\">\n <dl class=\"complex-panel-title\">\n <dt><span class=\"text-16\">{{caseField.label | rpxTranslate}}</span></dt>\n </dl>\n </th>\n <td>\n <table class=\"complex-field-table\" *ngIf=\"(selectedOrg$ | async) as selectedOrg\"\n [attr.aria-describedby]=\"'
|
|
30239
|
+
args: [{ selector: 'ccd-read-organisation-field-table', template: "<div class=\"complex-panel\">\n <table class=\"complex-field-table\" [attr.aria-describedby]=\"'complex organisation field table' | rpxTranslate\">\n <tbody>\n <tr>\n <th class=\"complex-field-title\">\n <dl class=\"complex-panel-title\">\n <dt><span class=\"text-16\">{{caseField.label | rpxTranslate}}</span></dt>\n </dl>\n </th>\n <td>\n <table class=\"complex-field-table\" *ngIf=\"(selectedOrg$ | async) as selectedOrg\"\n [attr.aria-describedby]=\"'selected organisation field table'\">\n <tr class=\"complex-panel-compound-field\">\n <th style=\"display: none;\"></th>\n <td class=\"label-width-medium\"><span class=\"text-16\">{{'Name:'}}</span></td>\n <td><span class=\"text-16\">{{selectedOrg.name}}</span></td>\n </tr>\n <tr class=\"complex-panel-compound-field\">\n <th style=\"display: none;\"></th>\n <td class=\"label-width-medium\"><span class=\"text-16\">{{'Address:'}}</span></td>\n <td>\n <ccd-markdown [content]=\"selectedOrg.address\"></ccd-markdown>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n", styles: [".hmcts-banner{border:0 solid;margin-bottom:10px;color:#000}.hmcts-banner .warning-message{font-weight:700}.govuk-hint{font-size:1.1rem}.name-header{font-weight:700;margin-top:10px;font-size:18px}.td-address{width:90%;padding-top:2px}.td-select{width:10%}.warning-panel{background-color:#e7ebef;height:40px;margin-bottom:0;align-items:center;display:flex}.warning-panel .warning-message{padding-left:15px}.complex-field-table>tbody>tr>th{border:none}.complex-field-table>tbody>tr:last-child>th,.complex-field-table>tbody>tr:last-child>td{border-bottom:none}.complex-field-title{width:300px}.label-width-small{width:100px}.label-width-medium{width:150px}.scroll-container{height:600px;overflow-y:scroll}.no-result-message{margin-top:15px}\n"] }]
|
|
30371
30240
|
}], () => [{ type: OrganisationService }, { type: OrganisationConverter }], { caseFields: [{
|
|
30372
30241
|
type: Input
|
|
30373
30242
|
}] }); })();
|
|
@@ -30753,7 +30622,6 @@ class PaletteModule {
|
|
|
30753
30622
|
FormModule,
|
|
30754
30623
|
TabsModule,
|
|
30755
30624
|
LabelSubstitutorModule,
|
|
30756
|
-
TranslatedMarkdownModule,
|
|
30757
30625
|
MarkdownModule.forChild(),
|
|
30758
30626
|
NgxMatDatetimePickerModule,
|
|
30759
30627
|
NgxMatTimepickerModule,
|
|
@@ -30799,7 +30667,6 @@ class PaletteModule {
|
|
|
30799
30667
|
FormModule,
|
|
30800
30668
|
TabsModule,
|
|
30801
30669
|
LabelSubstitutorModule,
|
|
30802
|
-
TranslatedMarkdownModule,
|
|
30803
30670
|
MarkdownModule.forChild(),
|
|
30804
30671
|
NgxMatDatetimePickerModule,
|
|
30805
30672
|
NgxMatTimepickerModule,
|
|
@@ -31008,8 +30875,7 @@ class PaletteModule {
|
|
|
31008
30875
|
BodyModule,
|
|
31009
30876
|
FormModule,
|
|
31010
30877
|
TabsModule,
|
|
31011
|
-
LabelSubstitutorModule,
|
|
31012
|
-
TranslatedMarkdownModule, i2$1.MarkdownModule, NgxMatDatetimePickerModule,
|
|
30878
|
+
LabelSubstitutorModule, i2$1.MarkdownModule, NgxMatDatetimePickerModule,
|
|
31013
30879
|
NgxMatTimepickerModule,
|
|
31014
30880
|
NgxMatNativeDateModule,
|
|
31015
30881
|
MatLegacyFormFieldModule,
|
|
@@ -32288,7 +32154,7 @@ function CaseHeaderComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
32288
32154
|
} if (rf & 2) {
|
|
32289
32155
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
32290
32156
|
i0.ɵɵadvance();
|
|
32291
|
-
i0.ɵɵproperty("caseField", ctx_r0.caseTitle)("caseFields", ctx_r0.caseFields);
|
|
32157
|
+
i0.ɵɵproperty("caseField", ctx_r0.caseTitle)("labelCanBeTranslated", false)("caseFields", ctx_r0.caseFields);
|
|
32292
32158
|
} }
|
|
32293
32159
|
class CaseHeaderComponent {
|
|
32294
32160
|
caseDetails;
|
|
@@ -32311,8 +32177,8 @@ class CaseHeaderComponent {
|
|
|
32311
32177
|
return caseDataFields.concat(this.caseDetails.metadataFields);
|
|
32312
32178
|
}
|
|
32313
32179
|
static ɵfac = function CaseHeaderComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CaseHeaderComponent)(); };
|
|
32314
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CaseHeaderComponent, selectors: [["ccd-case-header"]], inputs: { caseDetails: "caseDetails" }, decls: 2, vars: 2, consts: [["class", "heading-h1", 4, "ngIf"], ["class", "case-title", 4, "ngIf"], [1, "heading-h1"], [1, "case-title"], [3, "caseField", "caseFields"]], template: function CaseHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
32315
|
-
i0.ɵɵtemplate(0, CaseHeaderComponent_h1_0_Template, 3, 3, "h1", 0)(1, CaseHeaderComponent_div_1_Template, 2,
|
|
32180
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CaseHeaderComponent, selectors: [["ccd-case-header"]], inputs: { caseDetails: "caseDetails" }, decls: 2, vars: 2, consts: [["class", "heading-h1", 4, "ngIf"], ["class", "case-title", 4, "ngIf"], [1, "heading-h1"], [1, "case-title"], [3, "caseField", "labelCanBeTranslated", "caseFields"]], template: function CaseHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
32181
|
+
i0.ɵɵtemplate(0, CaseHeaderComponent_h1_0_Template, 3, 3, "h1", 0)(1, CaseHeaderComponent_div_1_Template, 2, 3, "div", 1);
|
|
32316
32182
|
} if (rf & 2) {
|
|
32317
32183
|
i0.ɵɵproperty("ngIf", !ctx.caseTitle.label);
|
|
32318
32184
|
i0.ɵɵadvance();
|
|
@@ -32321,7 +32187,7 @@ class CaseHeaderComponent {
|
|
|
32321
32187
|
}
|
|
32322
32188
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CaseHeaderComponent, [{
|
|
32323
32189
|
type: Component,
|
|
32324
|
-
args: [{ selector: 'ccd-case-header', template: "<h1 *ngIf=\"!caseTitle.label\" class=\"heading-h1\">#{{ caseDetails.case_id | ccdCaseReference}}</h1>\n\n<div *ngIf=\"caseTitle.label\" class=\"case-title\">\n <ccd-label-field [caseField]=\"caseTitle\" [caseFields]=\"caseFields\"></ccd-label-field>\n</div>\n", styles: [".case-title{margin-top:47px;margin-bottom:10px}.heading-h1{margin-top:40px}\n"] }]
|
|
32190
|
+
args: [{ selector: 'ccd-case-header', template: "<h1 *ngIf=\"!caseTitle.label\" class=\"heading-h1\">#{{ caseDetails.case_id | ccdCaseReference}}</h1>\n\n<div *ngIf=\"caseTitle.label\" class=\"case-title\">\n <ccd-label-field [caseField]=\"caseTitle\" [labelCanBeTranslated]=\"false\" [caseFields]=\"caseFields\"></ccd-label-field>\n</div>\n", styles: [".case-title{margin-top:47px;margin-bottom:10px}.heading-h1{margin-top:40px}\n"] }]
|
|
32325
32191
|
}], null, { caseDetails: [{
|
|
32326
32192
|
type: Input
|
|
32327
32193
|
}] }); })();
|
|
@@ -40264,5 +40130,5 @@ class TestRouteSnapshotBuilder {
|
|
|
40264
40130
|
* Generated bundle index. Do not edit.
|
|
40265
40131
|
*/
|
|
40266
40132
|
|
|
40267
|
-
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, 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, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder,
|
|
40133
|
+
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, 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, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, WaysToPayFieldComponent, WindowService, Wizard, WizardFactoryService, WizardPage, WizardPageField, WorkAllocationService, WorkbasketFiltersComponent, WorkbasketFiltersModule, WorkbasketInput, WorkbasketInputFilterService, WorkbasketInputModel, WriteAddressFieldComponent, WriteCaseFlagFieldComponent, WriteCaseLinkFieldComponent, WriteCollectionFieldComponent, WriteComplexFieldComponent, WriteDateContainerFieldComponent, WriteDateFieldComponent, WriteDocumentFieldComponent, WriteDynamicListFieldComponent, WriteDynamicMultiSelectListFieldComponent, WriteDynamicRadioListFieldComponent, WriteEmailFieldComponent, WriteFixedListFieldComponent, WriteFixedRadioListFieldComponent, WriteJudicialUserFieldComponent, WriteLinkedCasesFieldComponent, WriteMoneyGbpFieldComponent, WriteMultiSelectListFieldComponent, WriteNumberFieldComponent, WriteOrderSummaryFieldComponent, WriteOrganisationComplexFieldComponent, WriteOrganisationFieldComponent, WritePhoneUKFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, textFieldType, viewerRouting };
|
|
40268
40134
|
//# sourceMappingURL=hmcts-ccd-case-ui-toolkit.mjs.map
|