@hmcts/ccd-case-ui-toolkit 6.19.3-RetryCaseRetrievals.1 → 6.19.5-secure-doc-case-creation.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +56 -29
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
- package/esm2015/lib/shared/components/case-editor/case-editor.module.js +6 -6
- package/esm2015/lib/shared/components/create-case-filters/create-case-filters.component.js +13 -8
- package/esm2015/lib/shared/components/palette/document/write-document-field.component.js +43 -20
- package/esm2015/lib/shared/components/palette/palette.module.js +4 -5
- package/esm2015/lib/shared/domain/definition/jurisdiction.model.js +1 -1
- package/esm2015/lib/shared/services/jurisdiction/jurisdiction.service.js +6 -2
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +56 -29
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/case-editor/case-editor.module.d.ts +8 -8
- package/lib/shared/components/create-case-filters/create-case-filters.component.d.ts +3 -1
- package/lib/shared/components/create-case-filters/create-case-filters.component.d.ts.map +1 -1
- package/lib/shared/components/palette/document/write-document-field.component.d.ts +8 -4
- package/lib/shared/components/palette/document/write-document-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/domain/definition/jurisdiction.model.d.ts +1 -0
- package/lib/shared/domain/definition/jurisdiction.model.d.ts.map +1 -1
- package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts +3 -2
- package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -14,18 +14,18 @@ import * as i12 from "@angular/common";
|
|
|
14
14
|
import * as i13 from "@angular/router";
|
|
15
15
|
import * as i14 from "@angular/forms";
|
|
16
16
|
import * as i15 from "../../commons/case-edit-data/case-edit-data.module";
|
|
17
|
-
import * as i16 from "
|
|
18
|
-
import * as i17 from "../../directives/
|
|
19
|
-
import * as i18 from "
|
|
20
|
-
import * as i19 from "
|
|
21
|
-
import * as i20 from "
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "
|
|
17
|
+
import * as i16 from "../../directives/substitutor/label-substitutor.module";
|
|
18
|
+
import * as i17 from "../../directives/conditional-show/conditional-show.module";
|
|
19
|
+
import * as i18 from "../error/errors.module";
|
|
20
|
+
import * as i19 from "@angular/cdk/portal";
|
|
21
|
+
import * as i20 from "../loading-spinner/loading-spinner.module";
|
|
22
|
+
import * as i21 from "../../../components/banners/banners.module";
|
|
23
|
+
import * as i22 from "../palette/palette.module";
|
|
24
24
|
import * as i23 from "rpx-xui-translation";
|
|
25
25
|
import * as i24 from "../error/callback-errors.component";
|
|
26
26
|
export declare class CaseEditorModule {
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDef<CaseEditorModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CaseEditorModule, [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.CaseEventCompletionComponent, typeof i7.CaseEventCompletionTaskCancelledComponent, typeof i8.CaseEventCompletionTaskReassignedComponent, typeof i9.CaseCreateComponent, typeof i10.CaseProgressComponent, typeof i11.CaseEditGenericErrorsComponent], [typeof i12.CommonModule, typeof i13.RouterModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.CaseEditDataModule, typeof i16.
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CaseEditorModule, [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.CaseEventCompletionComponent, typeof i7.CaseEventCompletionTaskCancelledComponent, typeof i8.CaseEventCompletionTaskReassignedComponent, typeof i9.CaseCreateComponent, typeof i10.CaseProgressComponent, typeof i11.CaseEditGenericErrorsComponent], [typeof i12.CommonModule, typeof i13.RouterModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.CaseEditDataModule, typeof i16.LabelSubstitutorModule, typeof i17.ConditionalShowModule, typeof i18.ErrorsModule, typeof i19.PortalModule, typeof i20.LoadingSpinnerModule, typeof i21.BannersModule, typeof i22.PaletteModule, typeof i23.RpxTranslationModule], [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i9.CaseCreateComponent, typeof i10.CaseProgressComponent, typeof i24.CallbackErrorsComponent]>;
|
|
29
29
|
static ɵinj: i0.ɵɵInjectorDef<CaseEditorModule>;
|
|
30
30
|
}
|
|
31
31
|
//# sourceMappingURL=case-editor.module.d.ts.map
|
|
@@ -7,11 +7,13 @@ import { DefinitionsService } from '../../services/definitions/definitions.servi
|
|
|
7
7
|
import { OrderService } from '../../services/order/order.service';
|
|
8
8
|
import { SessionStorageService } from '../../services/session/session-storage.service';
|
|
9
9
|
import { CreateCaseFiltersSelection } from './create-case-filters-selection.model';
|
|
10
|
+
import { JurisdictionService } from '../../services';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class CreateCaseFiltersComponent implements OnInit {
|
|
12
13
|
private readonly orderService;
|
|
13
14
|
private readonly definitionsService;
|
|
14
15
|
private readonly sessionStorageService;
|
|
16
|
+
private readonly jurisdictionService;
|
|
15
17
|
isDisabled: boolean;
|
|
16
18
|
startButtonText: string;
|
|
17
19
|
selectionSubmitted: EventEmitter<CreateCaseFiltersSelection>;
|
|
@@ -29,7 +31,7 @@ export declare class CreateCaseFiltersComponent implements OnInit {
|
|
|
29
31
|
filterJurisdictionControl: FormControl;
|
|
30
32
|
filterCaseTypeControl: FormControl;
|
|
31
33
|
filterEventControl: FormControl;
|
|
32
|
-
constructor(orderService: OrderService, definitionsService: DefinitionsService, sessionStorageService: SessionStorageService);
|
|
34
|
+
constructor(orderService: OrderService, definitionsService: DefinitionsService, sessionStorageService: SessionStorageService, jurisdictionService: JurisdictionService);
|
|
33
35
|
ngOnInit(): void;
|
|
34
36
|
onJurisdictionIdChange(): void;
|
|
35
37
|
onCaseTypeIdChange(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-case-filters.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/create-case-filters/create-case-filters.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAExD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAC;AAC5E,OAAO,EAAE,YAAY,EAAE,MAAM,4CAA4C,CAAC;AAC1E,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AACvF,OAAO,EAAE,0BAA0B,EAAE,MAAM,uCAAuC,CAAC;;
|
|
1
|
+
{"version":3,"file":"create-case-filters.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/create-case-filters/create-case-filters.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAExD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAC;AAC5E,OAAO,EAAE,YAAY,EAAE,MAAM,4CAA4C,CAAC;AAC1E,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AACvF,OAAO,EAAE,0BAA0B,EAAE,MAAM,uCAAuC,CAAC;AACnF,OAAO,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;;AAErD,qBAIa,0BAA2B,YAAW,MAAM;IA6BrD,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IA7B/B,UAAU,EAAE,OAAO,CAAC;IAEpB,eAAe,EAAE,MAAM,CAAC;IAExB,kBAAkB,EAAE,YAAY,CAAC,0BAA0B,CAAC,CAAsB;IAElF,gBAAgB,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEzD,SAAS,EAAE,SAAS,CAAqB;IAEzC,QAAQ,EAAE;QACf,YAAY,CAAC,EAAE,YAAY,CAAC;QAC5B,QAAQ,CAAC,EAAE,YAAY,CAAC;QACxB,KAAK,CAAC,EAAE,SAAS,CAAC;QAClB,SAAS,CAAC,EAAE,SAAS,CAAA;KACtB,CAAC;IAEK,aAAa,EAAE,YAAY,EAAE,CAAC;IAC9B,6BAA6B,CAAC,EAAE,YAAY,EAAE,CAAC;IAC/C,sBAAsB,CAAC,EAAE,SAAS,EAAE,CAAC;IAErC,yBAAyB,EAAE,WAAW,CAAC;IACvC,qBAAqB,EAAE,WAAW,CAAC;IACnC,kBAAkB,EAAE,WAAW,CAAC;gBAGpB,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,kBAAkB,EACtC,qBAAqB,EAAE,qBAAqB,EAC5C,mBAAmB,EAAE,mBAAmB;IAGpD,QAAQ;IAaR,sBAAsB,IAAI,IAAI;IAW9B,kBAAkB,IAAI,IAAI;IAU1B,eAAe,IAAI,IAAI;IASvB,WAAW,IAAI,OAAO;IAQtB,KAAK;IAUL,YAAY,IAAI,IAAI;IASpB,UAAU,IAAI,IAAI;IAQzB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,2BAA2B;IAInC,OAAO,CAAC,4BAA4B;IAMpC,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,kBAAkB;IAO1B,OAAO,CAAC,cAAc;IAOtB,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,UAAU;IAQlB,OAAO,CAAC,OAAO;iCApLJ,0BAA0B;2CAA1B,0BAA0B;CAuLtC"}
|
|
@@ -3,6 +3,7 @@ import { MatDialog } from '@angular/material/dialog';
|
|
|
3
3
|
import { Subscription } from 'rxjs';
|
|
4
4
|
import { AbstractAppConfig } from '../../../../app.config';
|
|
5
5
|
import { DocumentManagementService } from '../../../services/document-management/document-management.service';
|
|
6
|
+
import { JurisdictionService } from '../../../services/jurisdiction/jurisdiction.service';
|
|
6
7
|
import { CaseNotifier } from '../../case-editor/services/case.notifier';
|
|
7
8
|
import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
|
|
8
9
|
import { FileUploadStateService } from './file-upload-state.service';
|
|
@@ -13,6 +14,7 @@ export declare class WriteDocumentFieldComponent extends AbstractFieldWriteCompo
|
|
|
13
14
|
private readonly documentManagement;
|
|
14
15
|
dialog: MatDialog;
|
|
15
16
|
private readonly fileUploadStateService;
|
|
17
|
+
private readonly jurisdictionService;
|
|
16
18
|
static readonly DOCUMENT_URL = "document_url";
|
|
17
19
|
static readonly DOCUMENT_BINARY_URL = "document_binary_url";
|
|
18
20
|
static readonly DOCUMENT_FILENAME = "document_filename";
|
|
@@ -28,12 +30,14 @@ export declare class WriteDocumentFieldComponent extends AbstractFieldWriteCompo
|
|
|
28
30
|
clickInsideTheDocument: boolean;
|
|
29
31
|
fileUploadSubscription: Subscription;
|
|
30
32
|
dialogSubscription: Subscription;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
caseNotifierSubscription: Subscription;
|
|
34
|
+
jurisdictionSubs: Subscription;
|
|
33
35
|
private uploadedDocument;
|
|
34
36
|
private dialogConfig;
|
|
35
37
|
private secureModeOn;
|
|
36
|
-
|
|
38
|
+
jurisdictionId: string;
|
|
39
|
+
caseTypeId: string;
|
|
40
|
+
constructor(appConfig: AbstractAppConfig, caseNotifier: CaseNotifier, documentManagement: DocumentManagementService, dialog: MatDialog, fileUploadStateService: FileUploadStateService, jurisdictionService: JurisdictionService);
|
|
37
41
|
clickout(event: any): void;
|
|
38
42
|
ngOnInit(): void;
|
|
39
43
|
ngOnDestroy(): void;
|
|
@@ -43,7 +47,7 @@ export declare class WriteDocumentFieldComponent extends AbstractFieldWriteCompo
|
|
|
43
47
|
fileChangeEvent(fileInput: any): void;
|
|
44
48
|
openFileDialog(): void;
|
|
45
49
|
fileSelectEvent(): void;
|
|
46
|
-
triggerReplace():
|
|
50
|
+
triggerReplace(): boolean;
|
|
47
51
|
getUploadedFileName(): any;
|
|
48
52
|
private resetUpload;
|
|
49
53
|
private fileValidations;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"write-document-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/document/write-document-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,SAAS,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAElG,OAAO,EAAE,SAAS,EAAmB,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAK3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,mEAAmE,CAAC;
|
|
1
|
+
{"version":3,"file":"write-document-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/document/write-document-field.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2OA,
|
|
1
|
+
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2OA,qBAoEa,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jurisdiction.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/jurisdiction.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,qBAAa,YAAY;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,YAAY,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"jurisdiction.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/jurisdiction.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,qBAAa,YAAY;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B,eAAe,CAAC,EAAE,YAAY,CAAC;CACvC"}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
1
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
2
2
|
import { Jurisdiction } from '../../domain/definition/jurisdiction.model';
|
|
3
3
|
import { JudicialUserModel } from '../../domain/jurisdiction';
|
|
4
4
|
import { HttpService } from '../http';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class JurisdictionService {
|
|
7
7
|
private readonly httpService;
|
|
8
|
-
|
|
8
|
+
readonly selectedJurisdictionSource: Subject<Jurisdiction>;
|
|
9
|
+
readonly selectedJurisdictionBS: BehaviorSubject<Jurisdiction>;
|
|
9
10
|
readonly selectedJurisdiction: Observable<Jurisdiction>;
|
|
10
11
|
constructor(httpService: HttpService);
|
|
11
12
|
getJurisdictions(): Observable<Jurisdiction[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jurisdiction.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/jurisdiction/jurisdiction.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"jurisdiction.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/jurisdiction/jurisdiction.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,4CAA4C,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;;AAEtC,qBACa,mBAAmB;IAMlB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAJxC,SAAgB,0BAA0B,wBAA+B;IACzE,SAAgB,sBAAsB,gCAA2C;IACjF,SAAgB,oBAAoB,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC;gBAElC,WAAW,EAAE,WAAW;IAI9C,gBAAgB,IAAI,UAAU,CAAC,YAAY,EAAE,CAAC;IAI9C,4BAA4B,CAAC,YAAY,EAAE,YAAY,GAAG,IAAI;IAM9D,mBAAmB,CAAC,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,UAAU,CAAC,iBAAiB,EAAE,CAAC;IAI3F,kCAAkC,CAAC,aAAa,EAAE,MAAM,EAAE,GAAG,UAAU,CAAC,iBAAiB,EAAE,CAAC;iCAxBxF,mBAAmB;qCAAnB,mBAAmB;CA2B/B"}
|