@hmcts/ccd-case-ui-toolkit 7.3.7-angular-20 → 7.3.14-exui-3994-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/index.d.ts CHANGED
@@ -1791,6 +1791,149 @@ declare class ReadCookieService {
1791
1791
  static ɵprov: i0.ɵɵInjectableDeclaration<ReadCookieService>;
1792
1792
  }
1793
1793
 
1794
+ declare class DocumentManagementService {
1795
+ private readonly http;
1796
+ private readonly appConfig;
1797
+ private readonly sessionStorageService;
1798
+ private static readonly PDF;
1799
+ private static readonly IMAGE;
1800
+ private static readonly WORD;
1801
+ private static readonly EXCEL;
1802
+ private static readonly POWERPOINT;
1803
+ private static readonly TXT;
1804
+ private static readonly RTF;
1805
+ private static readonly RESPONSE_DELAY;
1806
+ private static readonly imagesList;
1807
+ private static readonly wordList;
1808
+ private static readonly excelList;
1809
+ private static readonly powerpointList;
1810
+ private caseTypeId;
1811
+ private caseId?;
1812
+ constructor(http: HttpService, appConfig: AbstractAppConfig, sessionStorageService: SessionStorageService);
1813
+ uploadFile(formData: FormData): Observable<DocumentData>;
1814
+ setCaseInfo(): void;
1815
+ getMediaViewerInfo(documentFieldValue: any): string;
1816
+ getContentType(documentFieldValue: any): string;
1817
+ isImage(imageType: string): boolean;
1818
+ isWord(wordType: string): boolean;
1819
+ isExcel(excelType: string): boolean;
1820
+ isPowerpoint(powerpointType: string): boolean;
1821
+ parseCaseInfo(caseInfo: string | null): {
1822
+ caseType?: string;
1823
+ caseId?: string;
1824
+ jurisdiction?: string;
1825
+ } | null;
1826
+ private getCurrentPathname;
1827
+ private resolveCaseTypeId;
1828
+ private transformDocumentUrl;
1829
+ private getDocStoreUrl;
1830
+ isDocumentSecureModeEnabled(): boolean;
1831
+ static ɵfac: i0.ɵɵFactoryDeclaration<DocumentManagementService, never>;
1832
+ static ɵprov: i0.ɵɵInjectableDeclaration<DocumentManagementService>;
1833
+ }
1834
+
1835
+ declare class ErrorNotifierService {
1836
+ errorSource: Subject<any>;
1837
+ error: rxjs.Observable<any>;
1838
+ announceError(error: any): void;
1839
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorNotifierService, never>;
1840
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorNotifierService>;
1841
+ }
1842
+
1843
+ declare class EventStatusService {
1844
+ static readonly CALLBACK_STATUS_INCOMPLETE = "INCOMPLETE_CALLBACK";
1845
+ static readonly DELETE_DRAFT_STATUS_INCOMPLETE = "INCOMPLETE_DELETE_DRAFT";
1846
+ static readonly CALLBACK_STATUS_COMPLETE = "CALLBACK_COMPLETED";
1847
+ static readonly DELETE_DRAFT_STATUS_COMPLETE = "DELETE_DRAFT_COMPLETED";
1848
+ static isIncomplete(eventStatus: string): boolean;
1849
+ static ɵfac: i0.ɵɵFactoryDeclaration<EventStatusService, never>;
1850
+ static ɵprov: i0.ɵɵInjectableDeclaration<EventStatusService>;
1851
+ }
1852
+
1853
+ declare class Confirmation {
1854
+ private readonly caseId;
1855
+ private readonly status;
1856
+ private readonly header;
1857
+ private readonly body;
1858
+ constructor(caseId: string, status: string, header: string, body: string);
1859
+ getCaseId(): string;
1860
+ getStatus(): string;
1861
+ getHeader(): string;
1862
+ getBody(): string;
1863
+ }
1864
+
1865
+ declare enum EventCompletionReturnStates {
1866
+ InProgress = "in-progress",
1867
+ CompleteEvent = "complete-event",
1868
+ CancelEvent = "cancel-event"
1869
+ }
1870
+
1871
+ interface Task {
1872
+ assignee?: string;
1873
+ auto_assigned?: boolean;
1874
+ case_category: string;
1875
+ case_id: string;
1876
+ case_management_category?: string;
1877
+ case_name?: string;
1878
+ case_type_id?: string;
1879
+ created_date: string;
1880
+ due_date?: string;
1881
+ description?: string;
1882
+ execution_type?: string;
1883
+ id: string;
1884
+ jurisdiction: string;
1885
+ location?: string;
1886
+ location_name?: string;
1887
+ name?: string;
1888
+ permissions: {
1889
+ values: Permissions[];
1890
+ };
1891
+ region?: string;
1892
+ security_classification?: string;
1893
+ task_state?: string;
1894
+ task_system?: string;
1895
+ task_title?: string;
1896
+ type?: string;
1897
+ warning_list?: {
1898
+ values: string[];
1899
+ };
1900
+ warnings?: true;
1901
+ work_type_id?: string;
1902
+ }
1903
+ interface UserTask {
1904
+ task_data: Task;
1905
+ complete_task: boolean;
1906
+ }
1907
+ interface TaskEventCompletionInfo {
1908
+ taskId: string;
1909
+ eventId: string;
1910
+ caseId: string;
1911
+ userId: string;
1912
+ createdTimestamp: number;
1913
+ }
1914
+ interface EventDetails {
1915
+ eventId: string;
1916
+ caseId: string;
1917
+ userId: string;
1918
+ assignNeeded?: string;
1919
+ }
1920
+ declare enum Permissions {
1921
+ Own = "OWN",
1922
+ Execute = "EXECUTE",
1923
+ Read = "READ",
1924
+ Manage = "MANAGE",
1925
+ Cancel = "CANCEL"
1926
+ }
1927
+
1928
+ interface TaskResponse {
1929
+ task: Task;
1930
+ }
1931
+
1932
+ interface TaskPayload {
1933
+ task_required_for_event: boolean;
1934
+ tasks: Task[];
1935
+ }
1936
+
1794
1937
  declare class LinkCaseReason {
1795
1938
  key: string;
1796
1939
  value_en: string;
@@ -1937,169 +2080,6 @@ declare class CaseNotifier {
1937
2080
  static ɵprov: i0.ɵɵInjectableDeclaration<CaseNotifier>;
1938
2081
  }
1939
2082
 
1940
- interface JudicialUserModel {
1941
- emailId: string;
1942
- fullName: string;
1943
- idamId: string;
1944
- isJudge: string;
1945
- isMagistrate: string;
1946
- isPanelMember: string;
1947
- knownAs: string;
1948
- personalCode: string;
1949
- surname: string;
1950
- title: string;
1951
- }
1952
-
1953
- declare class JurisdictionService {
1954
- private readonly httpService;
1955
- readonly selectedJurisdictionSource: Subject<Jurisdiction>;
1956
- private readonly _selectedJurisdictionBS;
1957
- readonly selectedJurisdiction: Observable<Jurisdiction>;
1958
- constructor(httpService: HttpService);
1959
- getJurisdictions(): Observable<Jurisdiction[]>;
1960
- announceSelectedJurisdiction(jurisdiction: Jurisdiction): void;
1961
- getSelectedJurisdiction(): BehaviorSubject<Jurisdiction>;
1962
- searchJudicialUsers(searchTerm: string, serviceId: string): Observable<JudicialUserModel[]>;
1963
- searchJudicialUsersByPersonalCodes(personalCodes: string[]): Observable<JudicialUserModel[]>;
1964
- static ɵfac: i0.ɵɵFactoryDeclaration<JurisdictionService, never>;
1965
- static ɵprov: i0.ɵɵInjectableDeclaration<JurisdictionService>;
1966
- }
1967
-
1968
- declare class DocumentManagementService {
1969
- private readonly http;
1970
- private readonly appConfig;
1971
- private readonly caseNotifierService;
1972
- private readonly jurisdictionService;
1973
- private static readonly PDF;
1974
- private static readonly IMAGE;
1975
- private static readonly WORD;
1976
- private static readonly EXCEL;
1977
- private static readonly POWERPOINT;
1978
- private static readonly TXT;
1979
- private static readonly RTF;
1980
- private static readonly RESPONSE_DELAY;
1981
- private static readonly imagesList;
1982
- private static readonly wordList;
1983
- private static readonly excelList;
1984
- private static readonly powerpointList;
1985
- private caseTypeId;
1986
- constructor(http: HttpService, appConfig: AbstractAppConfig, caseNotifierService: CaseNotifier, jurisdictionService: JurisdictionService);
1987
- uploadFile(formData: FormData): Observable<DocumentData>;
1988
- getMediaViewerInfo(documentFieldValue: any): string;
1989
- getContentType(documentFieldValue: any): string;
1990
- isImage(imageType: string): boolean;
1991
- isWord(wordType: string): boolean;
1992
- isExcel(excelType: string): boolean;
1993
- isPowerpoint(powerpointType: string): boolean;
1994
- private transformDocumentUrl;
1995
- private getDocStoreUrl;
1996
- isDocumentSecureModeEnabled(): boolean;
1997
- static ɵfac: i0.ɵɵFactoryDeclaration<DocumentManagementService, never>;
1998
- static ɵprov: i0.ɵɵInjectableDeclaration<DocumentManagementService>;
1999
- }
2000
-
2001
- declare class ErrorNotifierService {
2002
- errorSource: Subject<any>;
2003
- error: rxjs.Observable<any>;
2004
- announceError(error: any): void;
2005
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorNotifierService, never>;
2006
- static ɵprov: i0.ɵɵInjectableDeclaration<ErrorNotifierService>;
2007
- }
2008
-
2009
- declare class EventStatusService {
2010
- static readonly CALLBACK_STATUS_INCOMPLETE = "INCOMPLETE_CALLBACK";
2011
- static readonly DELETE_DRAFT_STATUS_INCOMPLETE = "INCOMPLETE_DELETE_DRAFT";
2012
- static readonly CALLBACK_STATUS_COMPLETE = "CALLBACK_COMPLETED";
2013
- static readonly DELETE_DRAFT_STATUS_COMPLETE = "DELETE_DRAFT_COMPLETED";
2014
- static isIncomplete(eventStatus: string): boolean;
2015
- static ɵfac: i0.ɵɵFactoryDeclaration<EventStatusService, never>;
2016
- static ɵprov: i0.ɵɵInjectableDeclaration<EventStatusService>;
2017
- }
2018
-
2019
- declare class Confirmation {
2020
- private readonly caseId;
2021
- private readonly status;
2022
- private readonly header;
2023
- private readonly body;
2024
- constructor(caseId: string, status: string, header: string, body: string);
2025
- getCaseId(): string;
2026
- getStatus(): string;
2027
- getHeader(): string;
2028
- getBody(): string;
2029
- }
2030
-
2031
- declare enum EventCompletionReturnStates {
2032
- InProgress = "in-progress",
2033
- CompleteEvent = "complete-event",
2034
- CancelEvent = "cancel-event"
2035
- }
2036
-
2037
- interface Task {
2038
- assignee?: string;
2039
- auto_assigned?: boolean;
2040
- case_category: string;
2041
- case_id: string;
2042
- case_management_category?: string;
2043
- case_name?: string;
2044
- case_type_id?: string;
2045
- created_date: string;
2046
- due_date?: string;
2047
- description?: string;
2048
- execution_type?: string;
2049
- id: string;
2050
- jurisdiction: string;
2051
- location?: string;
2052
- location_name?: string;
2053
- name?: string;
2054
- permissions: {
2055
- values: Permissions[];
2056
- };
2057
- region?: string;
2058
- security_classification?: string;
2059
- task_state?: string;
2060
- task_system?: string;
2061
- task_title?: string;
2062
- type?: string;
2063
- warning_list?: {
2064
- values: string[];
2065
- };
2066
- warnings?: true;
2067
- work_type_id?: string;
2068
- }
2069
- interface UserTask {
2070
- task_data: Task;
2071
- complete_task: boolean;
2072
- }
2073
- interface TaskEventCompletionInfo {
2074
- taskId: string;
2075
- eventId: string;
2076
- caseId: string;
2077
- userId: string;
2078
- createdTimestamp: number;
2079
- }
2080
- interface EventDetails {
2081
- eventId: string;
2082
- caseId: string;
2083
- userId: string;
2084
- assignNeeded?: string;
2085
- }
2086
- declare enum Permissions {
2087
- Own = "OWN",
2088
- Execute = "EXECUTE",
2089
- Read = "READ",
2090
- Manage = "MANAGE",
2091
- Cancel = "CANCEL"
2092
- }
2093
-
2094
- interface TaskResponse {
2095
- task: Task;
2096
- }
2097
-
2098
- interface TaskPayload {
2099
- task_required_for_event: boolean;
2100
- tasks: Task[];
2101
- }
2102
-
2103
2083
  declare const MULTIPLE_TASKS_FOUND = "More than one task found!";
2104
2084
  declare class WorkAllocationService {
2105
2085
  private readonly http;
@@ -2219,6 +2199,9 @@ declare class FieldsUtils {
2219
2199
  static readonly SERVER_RESPONSE_FIELD_TYPE_COLLECTION = "Collection";
2220
2200
  static readonly SERVER_RESPONSE_FIELD_TYPE_COMPLEX = "Complex";
2221
2201
  static readonly SERVER_RESPONSE_FIELD_TYPE_DYNAMIC_LIST_TYPE: FieldTypeEnum[];
2202
+ static readonly defaultTabList: {
2203
+ PRLAPPS: string;
2204
+ };
2222
2205
  static isValidDisplayContext(ctx: string): boolean;
2223
2206
  static isTranslatable(fieldType: FieldType): boolean;
2224
2207
  static convertToCaseField(obj: any): CaseField;
@@ -2400,6 +2383,11 @@ declare class FormValidatorsService {
2400
2383
  static markDownPatternValidator(): ValidatorFn;
2401
2384
  addValidators(caseField: CaseField, control: AbstractControl): AbstractControl;
2402
2385
  addMarkDownValidators(formGroup: AbstractControl, controlPath: string): AbstractControl;
2386
+ private static hasMultiBracket;
2387
+ private static findOpeningTextClose;
2388
+ private static extendClosingRunAndRequireParen;
2389
+ private static isValidReferenceUrlTitleTail;
2390
+ private static matchesReferenceUrlDef;
2403
2391
  static ɵfac: i0.ɵɵFactoryDeclaration<FormValidatorsService, never>;
2404
2392
  static ɵprov: i0.ɵɵInjectableDeclaration<FormValidatorsService>;
2405
2393
  }
@@ -2542,6 +2530,34 @@ declare class MultipageComponentStateService {
2542
2530
  static ɵprov: i0.ɵɵInjectableDeclaration<MultipageComponentStateService>;
2543
2531
  }
2544
2532
 
2533
+ interface JudicialUserModel {
2534
+ emailId: string;
2535
+ fullName: string;
2536
+ idamId: string;
2537
+ isJudge: string;
2538
+ isMagistrate: string;
2539
+ isPanelMember: string;
2540
+ knownAs: string;
2541
+ personalCode: string;
2542
+ surname: string;
2543
+ title: string;
2544
+ }
2545
+
2546
+ declare class JurisdictionService {
2547
+ private readonly httpService;
2548
+ readonly selectedJurisdictionSource: Subject<Jurisdiction>;
2549
+ private readonly _selectedJurisdictionBS;
2550
+ readonly selectedJurisdiction: Observable<Jurisdiction>;
2551
+ constructor(httpService: HttpService);
2552
+ getJurisdictions(): Observable<Jurisdiction[]>;
2553
+ announceSelectedJurisdiction(jurisdiction: Jurisdiction): void;
2554
+ getSelectedJurisdiction(): BehaviorSubject<Jurisdiction>;
2555
+ searchJudicialUsers(searchTerm: string, serviceId: string): Observable<JudicialUserModel[]>;
2556
+ searchJudicialUsersByPersonalCodes(personalCodes: string[]): Observable<JudicialUserModel[]>;
2557
+ static ɵfac: i0.ɵɵFactoryDeclaration<JurisdictionService, never>;
2558
+ static ɵprov: i0.ɵɵInjectableDeclaration<JurisdictionService>;
2559
+ }
2560
+
2545
2561
  declare class BannersService {
2546
2562
  private readonly httpService;
2547
2563
  private readonly appConfig;
@@ -2934,6 +2950,7 @@ declare class LabelFieldComponent {
2934
2950
  }
2935
2951
 
2936
2952
  declare class CasePaymentHistoryViewerFieldComponent extends PaymentField {
2953
+ readonly PAYMENT_HISTORY_WARNING = "Recent payments may take a few minutes to reflect here.";
2937
2954
  constructor(appConfig: AbstractAppConfig, sessionStorage: SessionStorageService);
2938
2955
  static ɵfac: i0.ɵɵFactoryDeclaration<CasePaymentHistoryViewerFieldComponent, never>;
2939
2956
  static ɵcmp: i0.ɵɵComponentDeclaration<CasePaymentHistoryViewerFieldComponent, "ccd-case-payment-history-viewer-field", never, {}, {}, never, never, false, never>;
@@ -3513,6 +3530,7 @@ declare class WriteAddressFieldComponent extends AbstractFieldWriteComponent imp
3513
3530
  errorMessage: string;
3514
3531
  missingPostcode: boolean;
3515
3532
  noAddressSelected: boolean;
3533
+ loadingAddresses: boolean;
3516
3534
  constructor(addressesService: AddressesService, isCompoundPipe: IsCompoundPipe);
3517
3535
  ngOnInit(): void;
3518
3536
  findAddress(): void;
@@ -3551,6 +3569,7 @@ declare class WriteDocumentFieldComponent extends AbstractFieldWriteComponent im
3551
3569
  dialog: MatLegacyDialog;
3552
3570
  private readonly fileUploadStateService;
3553
3571
  private readonly jurisdictionService;
3572
+ private readonly sessionStorageService;
3554
3573
  static readonly DOCUMENT_URL = "document_url";
3555
3574
  static readonly DOCUMENT_BINARY_URL = "document_binary_url";
3556
3575
  static readonly DOCUMENT_FILENAME = "document_filename";
@@ -3576,8 +3595,10 @@ declare class WriteDocumentFieldComponent extends AbstractFieldWriteComponent im
3576
3595
  jurisdictionId: string;
3577
3596
  caseTypeId: string;
3578
3597
  caseTypeExclusions: string;
3598
+ caseId: string;
3579
3599
  fileSecureModeOn: boolean;
3580
- constructor(appConfig: AbstractAppConfig, caseNotifier: CaseNotifier, documentManagement: DocumentManagementService, dialog: MatLegacyDialog, fileUploadStateService: FileUploadStateService, jurisdictionService: JurisdictionService);
3600
+ gotFromCaseInfo: boolean;
3601
+ constructor(appConfig: AbstractAppConfig, caseNotifier: CaseNotifier, documentManagement: DocumentManagementService, dialog: MatLegacyDialog, fileUploadStateService: FileUploadStateService, jurisdictionService: JurisdictionService, sessionStorageService: SessionStorageService);
3581
3602
  ngOnInit(): void;
3582
3603
  ngOnDestroy(): void;
3583
3604
  isUploadInProgress(): boolean;
@@ -3602,6 +3623,7 @@ declare class WriteDocumentFieldComponent extends AbstractFieldWriteComponent im
3602
3623
  private getErrorMessage;
3603
3624
  private extractSecureErrorMessage;
3604
3625
  private buildDocumentUploadData;
3626
+ generateLogMessage(cdamEnabled: boolean): void;
3605
3627
  private handleDocumentUploadResult;
3606
3628
  private handleDocumentUploadError;
3607
3629
  static ɵfac: i0.ɵɵFactoryDeclaration<WriteDocumentFieldComponent, never>;
@@ -4090,6 +4112,7 @@ declare class CaseworkerService {
4090
4112
  }
4091
4113
 
4092
4114
  declare class EventCompletionStateMachineService {
4115
+ private readonly abstractConfig;
4093
4116
  stateCheckTasksCanBeCompleted: State;
4094
4117
  stateCompleteEventAndTask: State;
4095
4118
  stateCancelEvent: State;
@@ -4100,13 +4123,14 @@ declare class EventCompletionStateMachineService {
4100
4123
  stateTaskAssignToUser: State;
4101
4124
  stateTaskUnassigned: State;
4102
4125
  stateFinal: State;
4126
+ constructor(abstractConfig: AbstractAppConfig);
4103
4127
  initialiseStateMachine(context: EventCompletionStateMachineContext): StateMachine;
4104
4128
  startStateMachine(stateMachine: StateMachine): void;
4105
4129
  createStates(stateMachine: StateMachine): void;
4106
4130
  addTransitions(): void;
4107
- entryActionForStateCheckTasksCanBeCompleted(state: State, context: EventCompletionStateMachineContext): void;
4131
+ entryActionForStateCheckTasksCanBeCompleted: (state: State, context: EventCompletionStateMachineContext) => void;
4108
4132
  entryActionForStateTaskCompletedOrCancelled(state: State, context: EventCompletionStateMachineContext): void;
4109
- entryActionForStateCompleteEventAndTask(state: State, context: EventCompletionStateMachineContext): void;
4133
+ entryActionForStateCompleteEventAndTask: (state: State, context: EventCompletionStateMachineContext) => void;
4110
4134
  entryActionForStateTaskAssignedToAnotherUser(state: State, context: EventCompletionStateMachineContext): void;
4111
4135
  entryActionForStateTaskUnassigned(state: State, context: EventCompletionStateMachineContext): void;
4112
4136
  entryActionForStateFinal(state: State, context: EventCompletionStateMachineContext): void;
@@ -4956,6 +4980,7 @@ declare class ReadQueryManagementFieldComponent extends AbstractFieldReadCompone
4956
4980
  setQuery(query: any): void;
4957
4981
  backToQueryListPage(): void;
4958
4982
  isInternalUser(): boolean;
4983
+ isJudiciaryUser(): boolean;
4959
4984
  getMessageType(query: any): string | undefined;
4960
4985
  static ɵfac: i0.ɵɵFactoryDeclaration<ReadQueryManagementFieldComponent, never>;
4961
4986
  static ɵcmp: i0.ɵɵComponentDeclaration<ReadQueryManagementFieldComponent, "ccd-read-query-management-field", never, {}, {}, never, never, false, never>;
@@ -6119,10 +6144,12 @@ declare class CaseEditComponent implements OnInit, OnDestroy {
6119
6144
  error: HttpError;
6120
6145
  callbackErrorsSubject: Subject<any>;
6121
6146
  validPageList: WizardPage[];
6147
+ isRefreshModalVisible: boolean;
6122
6148
  constructor(fb: FormBuilder, caseNotifier: CaseNotifier, router: Router, route: ActivatedRoute, fieldsUtils: FieldsUtils, fieldsPurger: FieldsPurger, registrarService: ConditionalShowRegistrarService, wizardFactory: WizardFactoryService, sessionStorageService: SessionStorageService, windowsService: WindowService, formValueService: FormValueService, formErrorService: FormErrorService, loadingService: LoadingService, validPageListCaseFieldsService: ValidPageListCaseFieldsService, workAllocationService: WorkAllocationService, alertService: AlertService, abstractConfig: AbstractAppConfig, cookieService: ReadCookieService);
6123
6149
  ngOnInit(): void;
6124
6150
  ngOnDestroy(): void;
6125
6151
  checkPageRefresh(): boolean;
6152
+ onRefreshModalOk(): void;
6126
6153
  getPage(pageId: string): WizardPage;
6127
6154
  first(): Promise<boolean>;
6128
6155
  navigateToPage(pageId: string): Promise<boolean>;
@@ -6975,7 +7002,6 @@ declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, OnChange
6975
7002
  constructor(ngZone: NgZone, route: ActivatedRoute, router: Router, navigationNotifierService: NavigationNotifierService, orderService: OrderService, activityPollingService: ActivityPollingService, dialog: MatLegacyDialog, alertService: AlertService, draftService: DraftService, errorNotifierService: ErrorNotifierService, convertHrefToRouterService: ConvertHrefToRouterService, location: Location$1, crf: ChangeDetectorRef, sessionStorageService: SessionStorageService, rpxTranslationPipe: RpxTranslatePipe, loadingService: LoadingService, linkedCasesService: LinkedCasesService, caseFlagStateService: CaseFlagStateService);
6976
7003
  ngOnInit(): void;
6977
7004
  ngOnChanges(changes: SimpleChanges): void;
6978
- private setCaseInfo;
6979
7005
  isPrintEnabled(): boolean;
6980
7006
  ngOnDestroy(): void;
6981
7007
  unsubscribe(subscription: any): void;
@@ -7243,6 +7269,7 @@ interface EventStartStateMachineContext {
7243
7269
  }
7244
7270
 
7245
7271
  declare class EventStartStateMachineService {
7272
+ private readonly abstractConfig;
7246
7273
  stateCheckForMatchingTasks: State;
7247
7274
  stateNoTask: State;
7248
7275
  stateOneTask: State;
@@ -7252,6 +7279,7 @@ declare class EventStartStateMachineService {
7252
7279
  stateMultipleTasksAssignedToUser: State;
7253
7280
  stateTaskUnassigned: State;
7254
7281
  stateFinal: State;
7282
+ constructor(abstractConfig: AbstractAppConfig);
7255
7283
  initialiseStateMachine(context: EventStartStateMachineContext): StateMachine;
7256
7284
  createStates(stateMachine: StateMachine): void;
7257
7285
  addTransitions(): void;
@@ -7265,7 +7293,7 @@ declare class EventStartStateMachineService {
7265
7293
  entryActionForStateMultipleTasks(state: State, context: EventStartStateMachineContext): void;
7266
7294
  entryActionForStateTaskAssignedToUser(state: State, context: EventStartStateMachineContext): void;
7267
7295
  entryActionForStateTaskUnAssigned(state: State, context: EventStartStateMachineContext): void;
7268
- entryActionForStateOneTaskAssignedToUser(state: State, context: EventStartStateMachineContext): void;
7296
+ entryActionForStateOneTaskAssignedToUser: (state: State, context: EventStartStateMachineContext) => void;
7269
7297
  entryActionForStateMultipleTasksAssignedToUser(state: State, context: EventStartStateMachineContext): void;
7270
7298
  finalAction(state: State): void;
7271
7299
  addTransitionsForStateCheckForMatchingTasks(): void;
@@ -7285,9 +7313,10 @@ declare class EventStartComponent implements OnInit {
7285
7313
  private readonly route;
7286
7314
  private readonly sessionStorageService;
7287
7315
  private readonly cookieService;
7316
+ private readonly abstractConfig;
7288
7317
  stateMachine: StateMachine;
7289
7318
  context: EventStartStateMachineContext;
7290
- constructor(service: EventStartStateMachineService, router: Router, route: ActivatedRoute, sessionStorageService: SessionStorageService, cookieService: ReadCookieService);
7319
+ constructor(service: EventStartStateMachineService, router: Router, route: ActivatedRoute, sessionStorageService: SessionStorageService, cookieService: ReadCookieService, abstractConfig: AbstractAppConfig);
7291
7320
  ngOnInit(): void;
7292
7321
  static ɵfac: i0.ɵɵFactoryDeclaration<EventStartComponent, never>;
7293
7322
  static ɵcmp: i0.ɵɵComponentDeclaration<EventStartComponent, "ccd-event-start", never, {}, {}, never, never, false, never>;