@hmcts/rpx-xui-common-lib 1.7.22 → 1.7.23-EUI-2065
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-rpx-xui-common-lib.umd.js +40 -122
- package/bundles/hmcts-rpx-xui-common-lib.umd.js.map +1 -1
- package/bundles/hmcts-rpx-xui-common-lib.umd.min.js +1 -1
- package/bundles/hmcts-rpx-xui-common-lib.umd.min.js.map +1 -1
- package/esm2015/hmcts-rpx-xui-common-lib.js +25 -27
- package/esm2015/lib/components/generic-filter/generic-filter.component.js +2 -2
- package/esm2015/lib/components/selected-case/selected-case.component.js +5 -2
- package/esm2015/lib/components/selected-case-list/selected-case-list.component.js +9 -3
- package/esm2015/lib/components/share-case/share-case.component.js +10 -3
- package/esm2015/lib/exui-common-lib.module.js +1 -5
- package/esm2015/lib/models/filter.model.js +2 -2
- package/esm2015/lib/models/person.model.js +3 -1
- package/esm5/hmcts-rpx-xui-common-lib.js +25 -27
- package/esm5/lib/components/generic-filter/generic-filter.component.js +2 -2
- package/esm5/lib/components/selected-case/selected-case.component.js +5 -2
- package/esm5/lib/components/selected-case-list/selected-case-list.component.js +9 -3
- package/esm5/lib/components/share-case/share-case.component.js +10 -3
- package/esm5/lib/exui-common-lib.module.js +1 -5
- package/esm5/lib/models/filter.model.js +2 -2
- package/esm5/lib/models/person.model.js +3 -1
- package/fesm2015/hmcts-rpx-xui-common-lib.js +17 -86
- package/fesm2015/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/fesm5/hmcts-rpx-xui-common-lib.js +17 -97
- package/fesm5/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/hmcts-rpx-xui-common-lib.d.ts +24 -26
- package/hmcts-rpx-xui-common-lib.metadata.json +1 -1
- package/lib/components/selected-case/selected-case.component.d.ts +1 -0
- package/lib/components/selected-case-list/selected-case-list.component.d.ts +1 -0
- package/lib/components/share-case/share-case.component.d.ts +2 -0
- package/lib/models/filter.model.d.ts +2 -2
- package/lib/models/person.model.d.ts +2 -0
- package/package.json +1 -1
- package/esm2015/lib/components/find-service/find-service.component.js +0 -59
- package/esm2015/lib/components/search-service/search-service.component.js +0 -60
- package/esm5/lib/components/find-service/find-service.component.js +0 -64
- package/esm5/lib/components/search-service/search-service.component.js +0 -68
- package/lib/components/find-service/find-service.component.d.ts +0 -14
- package/lib/components/search-service/search-service.component.d.ts +0 -13
|
@@ -1668,7 +1668,7 @@
|
|
|
1668
1668
|
GenericFilterComponent.decorators = [
|
|
1669
1669
|
{ type: i0.Component, args: [{
|
|
1670
1670
|
selector: 'xuilib-generic-filter',
|
|
1671
|
-
template: "<form [formGroup]=\"form\" (ngSubmit)=\"applyFilter(form)\">\n <div class=\"contain-classes\" *ngFor=\"let field of config.fields\">\n <hr *ngIf=\"field.lineBreakBefore\" class=\"govuk-section-break govuk-section-break--visible elevated-break\">\n <div class=\"govuk-form-group xui-generic-filter\"\n [hidden]=\"hidden(field, form)\"\n [id]=\"field.name\"\n [ngClass]=\"{'form-group-error': submitted && (form.get(field.name).errors?.minLength || form.get(field.name).errors?.maxLength)}\">\n <h3 *ngIf=\"field.title\" class=\"govuk-heading-s\">{{field.title}}</h3>\n <p class=\"govuk-body\" *ngIf=\"field.subTitle\">{{field.subTitle}}</p>\n <span [id]=\"field.name + '-error'\" class=\"govuk-error-message\" *ngIf=\"field.displayMinSelectedError && submitted && form.get(field.name).errors?.minLength\">\n <span class=\"govuk-visually-hidden\">Error:</span> {{field.minSelectedError}}\n </span>\n <span [id]=\"field.name + '-error'\" class=\"govuk-error-message\" *ngIf=\"field.displayMaxSelectedError && submitted && form.get(field.name).errors?.maxLength\">\n <span class=\"govuk-visually-hidden\">Error:</span> {{field.maxSelectedError}}\n </span>\n <div class=\"govuk-body\" [ngSwitch]=\"field.type\">\n <ng-container *ngSwitchCase=\"'select'\">\n <select class=\"govuk-select\" (change)=\"fieldChanged(field, form)\" [attr.disabled]=\"disabled(field, form)\" [name]=\"'select_' + field.name\" [id]=\"'select_' + field.name\" [formControlName]=\"field.name\">\n <option disabled selected hidden value=\"\">{{field.disabledText}}</option>\n <option class=\"govuk-radios__item\" *ngFor=\"let item of field.options\" [value]=\"item.key\">{{item.label}}</option>\n </select>\n </ng-container>\n <ng-container *ngSwitchCase=\"'checkbox'\">\n <div class=\"govuk-checkboxes govuk-checkboxes--small\" [formGroupName]=\"field.name\" [attr.field]=\"field.name\" [id]=\"'checkbox_' + field.name\">\n <div *ngFor=\"let item of field.options; let i = index\" class=\"govuk-checkboxes__item\">\n <input type=\"checkbox\" class=\"govuk-checkboxes__input\"\n [attr.disabled]=\"disabled(field, form)\"\n [formControlName]=\"i\"\n (change)=\"toggleSelectAll($event, form, item, field)\"\n [value]=\"item.key\" [id]=\"'checkbox_' + item.key\"\n [name]=\"'checkbox_' + item.key\"\n />\n <label\n [for]=\"'checkbox_' + item.key\"\n class=\"govuk-label govuk-checkboxes__label\"\n [ngClass]=\"{'govuk-!-font-weight-bold': item.selectAll}\"\n >{{item.label}}</label>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'checkbox-large'\">\n <div class=\"govuk-checkboxes\" [formGroupName]=\"field.name\" [attr.field]=\"field.name\" [id]=\"'checkbox_' + field.name\">\n <div *ngFor=\"let item of field.options; let i = index\" class=\"govuk-checkboxes__item\">\n <input type=\"checkbox\" class=\"govuk-checkboxes__input\"\n [attr.disabled]=\"disabled(field, form)\"\n [formControlName]=\"i\"\n (change)=\"toggleSelectAll($event, form, item, field)\"\n [value]=\"item.key\" [id]=\"'checkbox_' + item.key\"\n [name]=\"'checkbox_' + item.key\"\n />\n <label\n [for]=\"'checkbox_' + item.key\"\n class=\"govuk-label govuk-checkboxes__label\"\n [ngClass]=\"{'govuk-!-font-weight-bold': item.selectAll}\"\n >{{item.label}}</label>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'radio'\">\n <div class=\"govuk-radios\">\n <div *ngFor=\"let item of field.options\" class=\"govuk-radios__item\">\n <input type=\"radio\"\n [formControlName]=\"field.name\"\n [id]=\"'radio_' + item.key\"\n [attr.disabled]=\"disabled(field, form)\"\n [checked]=\"item.key === form.get(field.name).value\"\n class=\"govuk-radios__input\"\n [value]=\"item.key\"\n (change)=\"fieldChanged(field, form)\"\n />\n <label [for]=\"'radio_' + item.key\" class=\"govuk-label govuk-radios__label\">{{item.label}}</label>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'find-person'\">\n <xuilib-find-person subTitle=\"\" (personSelected)=\"updatePersonControls($event, field)\"\n (personFieldChanged)=\"inputChanged(field)\"\n [submitted]=\"submitted\"\n [disabled]=\"disabled(field, form)\"\n [domain]=\"form.get(field.domainField)?.value\"\n [findPersonGroup]=\"form\"\n [selectedPerson]=\"form.get(field.name)?.value?.email\"\n [userIncluded]=\"false\"\n ></xuilib-find-person>\n </ng-container>\n <ng-container *ngSwitchCase=\"'find-location'\">\n <xuilib-find-location (locationFieldChanged)=\"inputChanged(field)\"\n [form]=\"form\"\n [fields]=\"config.fields\"\n [locationTitle]=\"field.locationTitle\"\n [enableAddLocationButton]=\"field.
|
|
1671
|
+
template: "<form [formGroup]=\"form\" (ngSubmit)=\"applyFilter(form)\">\n <div class=\"contain-classes\" *ngFor=\"let field of config.fields\">\n <hr *ngIf=\"field.lineBreakBefore\" class=\"govuk-section-break govuk-section-break--visible elevated-break\">\n <div class=\"govuk-form-group xui-generic-filter\"\n [hidden]=\"hidden(field, form)\"\n [id]=\"field.name\"\n [ngClass]=\"{'form-group-error': submitted && (form.get(field.name).errors?.minLength || form.get(field.name).errors?.maxLength)}\">\n <h3 *ngIf=\"field.title\" class=\"govuk-heading-s\">{{field.title}}</h3>\n <p class=\"govuk-body\" *ngIf=\"field.subTitle\">{{field.subTitle}}</p>\n <span [id]=\"field.name + '-error'\" class=\"govuk-error-message\" *ngIf=\"field.displayMinSelectedError && submitted && form.get(field.name).errors?.minLength\">\n <span class=\"govuk-visually-hidden\">Error:</span> {{field.minSelectedError}}\n </span>\n <span [id]=\"field.name + '-error'\" class=\"govuk-error-message\" *ngIf=\"field.displayMaxSelectedError && submitted && form.get(field.name).errors?.maxLength\">\n <span class=\"govuk-visually-hidden\">Error:</span> {{field.maxSelectedError}}\n </span>\n <div class=\"govuk-body\" [ngSwitch]=\"field.type\">\n <ng-container *ngSwitchCase=\"'select'\">\n <select class=\"govuk-select\" (change)=\"fieldChanged(field, form)\" [attr.disabled]=\"disabled(field, form)\" [name]=\"'select_' + field.name\" [id]=\"'select_' + field.name\" [formControlName]=\"field.name\">\n <option disabled selected hidden value=\"\">{{field.disabledText}}</option>\n <option class=\"govuk-radios__item\" *ngFor=\"let item of field.options\" [value]=\"item.key\">{{item.label}}</option>\n </select>\n </ng-container>\n <ng-container *ngSwitchCase=\"'checkbox'\">\n <div class=\"govuk-checkboxes govuk-checkboxes--small\" [formGroupName]=\"field.name\" [attr.field]=\"field.name\" [id]=\"'checkbox_' + field.name\">\n <div *ngFor=\"let item of field.options; let i = index\" class=\"govuk-checkboxes__item\">\n <input type=\"checkbox\" class=\"govuk-checkboxes__input\"\n [attr.disabled]=\"disabled(field, form)\"\n [formControlName]=\"i\"\n (change)=\"toggleSelectAll($event, form, item, field)\"\n [value]=\"item.key\" [id]=\"'checkbox_' + item.key\"\n [name]=\"'checkbox_' + item.key\"\n />\n <label\n [for]=\"'checkbox_' + item.key\"\n class=\"govuk-label govuk-checkboxes__label\"\n [ngClass]=\"{'govuk-!-font-weight-bold': item.selectAll}\"\n >{{item.label}}</label>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'checkbox-large'\">\n <div class=\"govuk-checkboxes\" [formGroupName]=\"field.name\" [attr.field]=\"field.name\" [id]=\"'checkbox_' + field.name\">\n <div *ngFor=\"let item of field.options; let i = index\" class=\"govuk-checkboxes__item\">\n <input type=\"checkbox\" class=\"govuk-checkboxes__input\"\n [attr.disabled]=\"disabled(field, form)\"\n [formControlName]=\"i\"\n (change)=\"toggleSelectAll($event, form, item, field)\"\n [value]=\"item.key\" [id]=\"'checkbox_' + item.key\"\n [name]=\"'checkbox_' + item.key\"\n />\n <label\n [for]=\"'checkbox_' + item.key\"\n class=\"govuk-label govuk-checkboxes__label\"\n [ngClass]=\"{'govuk-!-font-weight-bold': item.selectAll}\"\n >{{item.label}}</label>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'radio'\">\n <div class=\"govuk-radios\">\n <div *ngFor=\"let item of field.options\" class=\"govuk-radios__item\">\n <input type=\"radio\"\n [formControlName]=\"field.name\"\n [id]=\"'radio_' + item.key\"\n [attr.disabled]=\"disabled(field, form)\"\n [checked]=\"item.key === form.get(field.name).value\"\n class=\"govuk-radios__input\"\n [value]=\"item.key\"\n (change)=\"fieldChanged(field, form)\"\n />\n <label [for]=\"'radio_' + item.key\" class=\"govuk-label govuk-radios__label\">{{item.label}}</label>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'find-person'\">\n <xuilib-find-person subTitle=\"\" (personSelected)=\"updatePersonControls($event, field)\"\n (personFieldChanged)=\"inputChanged(field)\"\n [submitted]=\"submitted\"\n [disabled]=\"disabled(field, form)\"\n [domain]=\"form.get(field.domainField)?.value\"\n [findPersonGroup]=\"form\"\n [selectedPerson]=\"form.get(field.name)?.value?.email\"\n [userIncluded]=\"false\"\n ></xuilib-find-person>\n </ng-container>\n <ng-container *ngSwitchCase=\"'find-location'\">\n <xuilib-find-location (locationFieldChanged)=\"inputChanged(field)\"\n [form]=\"form\"\n [fields]=\"config.fields\"\n [locationTitle]=\"field.locationTitle\"\n [enableAddLocationButton]=\"field.enableAddLocationButton\"\n [disabled]=\"disabled(field, form)\"\n [disableInputField]=\"field.disable\"\n [selectedLocations]=\"form.get(field.name)?.value\"\n [submitted]=\"submitted\"\n [services]=\"form.get(field.findLocationField)?.value\"\n [field]=\"field\"\n ></xuilib-find-location>\n </ng-container>\n </div>\n </div>\n </div>\n <hr class=\"govuk-section-break govuk-section-break--m govuk-section-break--visible\"/>\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full\">\n <button\n class=\"govuk-button govuk-!-margin-right-1 govuk-!-margin-bottom-0\"\n type=\"submit\"\n id=\"applyFilter\"\n [disabled]=\"config.enableDisabledButton && form.invalid\"\n >{{config.applyButtonText || 'Apply'}}</button>\n <button *ngIf=\"config.showCancelFilterButton\"\n class=\"govuk-button govuk-button--secondary govuk-!-margin-bottom-0\"\n type=\"button\"\n id=\"cancelFilter\"\n (click)=\"cancelFilter()\">{{ config.cancelButtonText || 'Cancel'}}</button>\n </div>\n </div>\n</form>\n",
|
|
1672
1672
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
1673
1673
|
encapsulation: i0.ViewEncapsulation.None,
|
|
1674
1674
|
styles: [".contain-classes .elevated-break{position:relative;top:-10px}.contain-classes .xui-generic-filter .select-all{margin-bottom:10px}.contain-classes .xui-generic-filter .govuk-checkboxes{display:flex;flex-wrap:wrap}.contain-classes .xui-generic-filter .govuk-checkboxes>div{flex-grow:1;flex-shrink:0}"]
|
|
@@ -2199,7 +2199,10 @@
|
|
|
2199
2199
|
this.shareCases$.subscribe(( /**
|
|
2200
2200
|
* @param {?} shareCases
|
|
2201
2201
|
* @return {?}
|
|
2202
|
-
*/function (shareCases) {
|
|
2202
|
+
*/function (shareCases) {
|
|
2203
|
+
_this.shareCases = shareCases;
|
|
2204
|
+
_this.caseCount = _this.shareCases.length;
|
|
2205
|
+
}));
|
|
2203
2206
|
};
|
|
2204
2207
|
/**
|
|
2205
2208
|
* @param {?} sharedCase
|
|
@@ -2211,6 +2214,7 @@
|
|
|
2211
2214
|
*/
|
|
2212
2215
|
function (sharedCase) {
|
|
2213
2216
|
this.unselect.emit(sharedCase);
|
|
2217
|
+
this.caseCount = this.shareCases.length;
|
|
2214
2218
|
};
|
|
2215
2219
|
/**
|
|
2216
2220
|
* @param {?} event
|
|
@@ -2237,7 +2241,7 @@
|
|
|
2237
2241
|
SelectedCaseListComponent.decorators = [
|
|
2238
2242
|
{ type: i0.Component, args: [{
|
|
2239
2243
|
selector: 'xuilib-selected-case-list',
|
|
2240
|
-
template: "<ng-container *ngIf=\"!toConfirm\">\n <xuilib-selected-case\n *ngFor=\"let sharedCase of (shareCases$ | async); trackBy: trackByCaseId\"\n [sharedCase]=\"sharedCase\"\n [removeUserFromCaseToggleOn]=\"removeUserFromCaseToggleOn\"\n (unselect)=\"onUnselect($event)\"\n (synchronizeStore)=\"onSynchronizeStore($event)\"\n >\n </xuilib-selected-case>\n</ng-container>\n\n<ng-container *ngIf=\"toConfirm\">\n <xuilib-selected-case-confirm\n *ngFor=\"let sharedCase of (shareCases$ | async); trackBy: trackByCaseId\"\n [sharedCase]=\"sharedCase\"\n [changeLink]=\"changeLink\">\n </xuilib-selected-case-confirm>\n</ng-container>\n",
|
|
2244
|
+
template: "<ng-container *ngIf=\"!toConfirm\">\n <xuilib-selected-case\n *ngFor=\"let sharedCase of (shareCases$ | async); trackBy: trackByCaseId\"\n [sharedCase]=\"sharedCase\"\n [caseCount]=\"caseCount\"\n [removeUserFromCaseToggleOn]=\"removeUserFromCaseToggleOn\"\n (unselect)=\"onUnselect($event)\"\n (synchronizeStore)=\"onSynchronizeStore($event)\"\n >\n </xuilib-selected-case>\n</ng-container>\n\n<ng-container *ngIf=\"toConfirm\">\n <xuilib-selected-case-confirm\n *ngFor=\"let sharedCase of (shareCases$ | async); trackBy: trackByCaseId\"\n [sharedCase]=\"sharedCase\"\n [changeLink]=\"changeLink\">\n </xuilib-selected-case-confirm>\n</ng-container>\n",
|
|
2241
2245
|
styles: [""]
|
|
2242
2246
|
}] }
|
|
2243
2247
|
];
|
|
@@ -2651,7 +2655,7 @@
|
|
|
2651
2655
|
SelectedCaseComponent.decorators = [
|
|
2652
2656
|
{ type: i0.Component, args: [{
|
|
2653
2657
|
selector: 'xuilib-selected-case',
|
|
2654
|
-
template: "<div id=\"{{buildElementId('govuk-accordion__section')}}\" class=\"govuk-accordion__section\">\n <div class=\"govuk-grid-row govuk-case-header\">\n <div class=\"govuk-grid-column-three-quarters\">\n <h3 id=\"{{buildElementId('case-title')}}\" class=\"govuk-case-title\">{{ sharedCase.caseTitle }}</h3>\n <h1 id=\"{{buildElementId('case-id')}}\" class=\"govuk-case-sub-title\">{{ sharedCase.caseId }}</h1>\n </div>\n <div class=\"govuk-grid-column-twenty-percent\">\n <button id=\"{{buildElementId('btn-deselect-case')}}\" class=\"govuk-button hmcts-button--secondary\" (click)=\"onDeselect(sharedCase)\" title=\"Deselect case\">Deselect case</button>\n </div>\n <div class=\"govuk-accordion__section-header govuk-grid-column-five-percent\">\n <div class=\"govuk-accordion__section-heading\">\n <button type=\"button\" id=\"{{buildElementId('accordion-with-summary-sections-heading')}}\"\n aria-controls=\"accordion-with-summary-sections-content-1\" class=\"govuk-accordion__section-button\"\n aria-describedby=\"accordion-with-summary-sections-summary-1\" aria-expanded=\"false\" title=\"Expand or Collapse\">\n <span class=\"govuk-accordion__icon\" aria-hidden=\"true\"></span></button>\n </div>\n </div>\n </div>\n <div id=\"{{buildElementId('accordion-with-summary-sections-content')}}\" class=\"govuk-accordion__section-content\"\n aria-labelledby=\"buildElementId('accordion-with-summary-sections-heading')\" >\n <div class=\"govuk-grid-row\" *ngIf=\"showNoUsersAccessInfo()\">\n <span id=\"{{buildElementId('access-info-no-user')}}\" class=\"govuk-div-align-left\">No users from your organisation currently have access to this case.</span>\n </div>\n <div class=\"govuk-grid-row\" *ngIf=\"showUserHasAccessInfo()\">\n <span id=\"{{buildElementId('access-info-has-users')}}\" class=\"govuk-div-align-left\">Users from your organisation with access to this case.</span>\n </div>\n <table class=\"govuk-table\" *ngIf=\"showUserAccessTable()\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th id=\"{{buildElementId('name-heading')}}\" class=\"govuk-table__header govuk-table-column-header\" scope=\"col\">Name</th>\n <th id=\"{{buildElementId('email-heading')}}\" class=\"govuk-table__header govuk-table-column-header\" scope=\"col\">Email address</th>\n <th id=\"{{buildElementId('action-heading')}}\" class=\"govuk-table__header govuk-table-column-actions\" scope=\"col\">Actions</th>\n <th id=\"{{buildElementId('label-heading')}}\" class=\"govuk-table__header govuk-table-column-label\" scope=\"col\"> </th>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\" *ngFor=\"let user of combinedSortedShares; index as idx; trackBy: trackByUserId\">\n <td id=\"user-full-name-{{ userIdSetter(canCancel(sharedCase.caseId, user) | async, idx) }}\" class=\"govuk-table__cell\">{{ user.firstName + ' ' + user.lastName }}</td>\n <td id=\"user-email-{{ userIdSetter(canCancel(sharedCase.caseId, user) | async, idx) }}\" class=\"govuk-table__cell\">{{ user.email }}</td>\n <td class=\"govuk-table__cell\">\n <a *ngIf=\"canRemove(sharedCase.caseId, user) | async\" (click)=\"onRemove(user, sharedCase)\" href=\"javascript:void(0);\">Remove <span class=\"govuk-visually-hidden\">{{ user.firstName + ' ' + user.lastName }} from case</span></a>\n <a *ngIf=\"canCancel(sharedCase.caseId, user) | async\" (click)=\"onCancel(user, sharedCase)\" href=\"javascript:void(0);\">Cancel <span class=\"govuk-visually-hidden\">adding {{ user.firstName + ' ' + user.lastName }} to case</span></a>\n </td>\n <td class=\"govuk-table__cell\">\n <span *ngIf=\"isToBeRemoved(sharedCase.caseId, user) | async\" class=\"hmcts-badge hmcts-badge--red\">To be removed</span>\n <span *ngIf=\"isToBeAdded(sharedCase.caseId, user) | async\" class=\"hmcts-badge\">To be added</span>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n</div>\n",
|
|
2658
|
+
template: "<div id=\"{{buildElementId('govuk-accordion__section')}}\" class=\"govuk-accordion__section\">\n <div class=\"govuk-grid-row govuk-case-header\">\n <div class=\"govuk-grid-column-three-quarters\">\n <h3 id=\"{{buildElementId('case-title')}}\" class=\"govuk-case-title\">{{ sharedCase.caseTitle }}</h3>\n <h1 id=\"{{buildElementId('case-id')}}\" class=\"govuk-case-sub-title\">{{ sharedCase.caseId }}</h1>\n </div>\n <div class=\"govuk-grid-column-twenty-percent\">\n <button *ngIf=\"caseCount > 1\"\n id=\"{{buildElementId('btn-deselect-case')}}\" \n class=\"govuk-button hmcts-button--secondary\" \n (click)=\"onDeselect(sharedCase)\" \n title=\"Deselect case\">Deselect case</button>\n </div>\n <div class=\"govuk-accordion__section-header govuk-grid-column-five-percent\">\n <div class=\"govuk-accordion__section-heading\">\n <button type=\"button\" id=\"{{buildElementId('accordion-with-summary-sections-heading')}}\"\n aria-controls=\"accordion-with-summary-sections-content-1\" class=\"govuk-accordion__section-button\"\n aria-describedby=\"accordion-with-summary-sections-summary-1\" aria-expanded=\"false\" title=\"Expand or Collapse\">\n <span class=\"govuk-accordion__icon\" aria-hidden=\"true\"></span></button>\n </div>\n </div>\n </div>\n <div id=\"{{buildElementId('accordion-with-summary-sections-content')}}\" class=\"govuk-accordion__section-content\"\n aria-labelledby=\"buildElementId('accordion-with-summary-sections-heading')\" >\n <div class=\"govuk-grid-row\" *ngIf=\"showNoUsersAccessInfo()\">\n <span id=\"{{buildElementId('access-info-no-user')}}\" class=\"govuk-div-align-left\">No users from your organisation currently have access to this case.</span>\n </div>\n <div class=\"govuk-grid-row\" *ngIf=\"showUserHasAccessInfo()\">\n <span id=\"{{buildElementId('access-info-has-users')}}\" class=\"govuk-div-align-left\">Users from your organisation with access to this case.</span>\n </div>\n <table class=\"govuk-table\" *ngIf=\"showUserAccessTable()\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th id=\"{{buildElementId('name-heading')}}\" class=\"govuk-table__header govuk-table-column-header\" scope=\"col\">Name</th>\n <th id=\"{{buildElementId('email-heading')}}\" class=\"govuk-table__header govuk-table-column-header\" scope=\"col\">Email address</th>\n <th id=\"{{buildElementId('action-heading')}}\" class=\"govuk-table__header govuk-table-column-actions\" scope=\"col\">Actions</th>\n <th id=\"{{buildElementId('label-heading')}}\" class=\"govuk-table__header govuk-table-column-label\" scope=\"col\"> </th>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\" *ngFor=\"let user of combinedSortedShares; index as idx; trackBy: trackByUserId\">\n <td id=\"user-full-name-{{ userIdSetter(canCancel(sharedCase.caseId, user) | async, idx) }}\" class=\"govuk-table__cell\">{{ user.firstName + ' ' + user.lastName }}</td>\n <td id=\"user-email-{{ userIdSetter(canCancel(sharedCase.caseId, user) | async, idx) }}\" class=\"govuk-table__cell\">{{ user.email }}</td>\n <td class=\"govuk-table__cell\">\n <a *ngIf=\"canRemove(sharedCase.caseId, user) | async\" (click)=\"onRemove(user, sharedCase)\" href=\"javascript:void(0);\">Remove <span class=\"govuk-visually-hidden\">{{ user.firstName + ' ' + user.lastName }} from case</span></a>\n <a *ngIf=\"canCancel(sharedCase.caseId, user) | async\" (click)=\"onCancel(user, sharedCase)\" href=\"javascript:void(0);\">Cancel <span class=\"govuk-visually-hidden\">adding {{ user.firstName + ' ' + user.lastName }} to case</span></a>\n </td>\n <td class=\"govuk-table__cell\">\n <span *ngIf=\"isToBeRemoved(sharedCase.caseId, user) | async\" class=\"hmcts-badge hmcts-badge--red\">To be removed</span>\n <span *ngIf=\"isToBeAdded(sharedCase.caseId, user) | async\" class=\"hmcts-badge\">To be added</span>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n</div>\n",
|
|
2655
2659
|
styles: [".govuk-case-header{border-top:1px solid #bfc1c3}.govuk-case-title{font-family:nta,Arial,sans-serif;font-size:24px;color:#005ea5;font-weight:700;padding-left:0}.govuk-case-sub-title{font-family:nta,Arial,sans-serif;font-size:1rem!important;color:#6f777b;font-weight:400;padding-left:0}.govuk-grid-row{margin-left:0;margin-right:0}.govuk-grid-column-three-quarters{padding-top:5px;padding-left:0}.govuk-grid-column-twenty-percent{box-sizing:border-box;padding-top:10px;width:20%;float:left}.govuk-grid-column-five-percent{box-sizing:border-box;padding-top:15px;width:5%;float:left}.govuk-table-column-header{width:40%}.govuk-table-column-actions,.govuk-table-column-label{width:10%}.govuk-div-align-left{font-family:nta,Arial,sans-serif;font-size:1.1875rem!important;line-height:1.31579!important;text-align:left;margin-bottom:20px;padding-left:0;color:#0b0c0c}.govuk-accordion__section-header{border-top:0}.govuk-accordion__section-content{padding-top:0}"]
|
|
2656
2660
|
}] }
|
|
2657
2661
|
];
|
|
@@ -2666,6 +2670,7 @@
|
|
|
2666
2670
|
selectedUser: [{ type: i0.Input }],
|
|
2667
2671
|
opened: [{ type: i0.Input }],
|
|
2668
2672
|
removeUserFromCaseToggleOn: [{ type: i0.Input }],
|
|
2673
|
+
caseCount: [{ type: i0.Input }],
|
|
2669
2674
|
unselect: [{ type: i0.Output }],
|
|
2670
2675
|
synchronizeStore: [{ type: i0.Output }]
|
|
2671
2676
|
};
|
|
@@ -3071,6 +3076,7 @@
|
|
|
3071
3076
|
this.users = []; // users of this organisation the cases can be shared with
|
|
3072
3077
|
// users of this organisation the cases can be shared with
|
|
3073
3078
|
this.confirmLink = '';
|
|
3079
|
+
this.showRemoveUsers = false;
|
|
3074
3080
|
this.unselect = new i0.EventEmitter();
|
|
3075
3081
|
this.synchronizeStore = new i0.EventEmitter();
|
|
3076
3082
|
}
|
|
@@ -3233,8 +3239,8 @@
|
|
|
3233
3239
|
ShareCaseComponent.decorators = [
|
|
3234
3240
|
{ type: i0.Component, args: [{
|
|
3235
3241
|
selector: 'xuilib-share-case',
|
|
3236
|
-
template: "<div id=\"add-user\">\n <label class=\"govuk-label govuk-!-font-weight-bold\" for=\"add-user-input\">
|
|
3237
|
-
styles: [""]
|
|
3242
|
+
template: "<div id=\"add-user\">\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-!-font-weight-bold\" for=\"add-user-input\">{{addUserLabel}}</label>\n <span id=\"add-user-hint\" class=\"govuk-hint\">\n Search by name or email address. You can share access with as many people as you need.\n </span>\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <xuilib-user-select\n id=\"add-user-input\"\n aria-describedby=\"add-user-hint\"\n [users]=\"users\"\n (selected)=\"onSelectedUser($event)\">\n </xuilib-user-select>\n </div>\n <div class=\"govuk-grid-column-one-thirds\">\n <button id=\"btn-add-user\" (click)=\"addUser()\" class=\"govuk-button govuk-button--secondary\" [disabled]=\"isDisabledAdd()\" title=\"Add user to selected cases\">Add</button>\n </div>\n </div>\n <details id=\"add-user-help\" class=\"govuk-details\" data-module=\"govuk-details\">\n <summary class=\"govuk-details__summary\">\n <span id=\"content-why-can-not-find-email\" class=\"govuk-details__summary-text\">\n Can't find an email address?\n </span>\n </summary>\n <div id=\"content-reason-can-not-find-email\" class=\"govuk-details__text\">\n If you can't find your colleague's email address, they will need to complete their registration. Contact your\n administrator for help.\n </div>\n </details>\n </div>\n <div class=\"govuk-form-group\" *ngIf=\"showRemoveUsers\">\n <label class=\"govuk-label govuk-!-font-weight-bold\" for=\"remove-user-input\">Remove a person from all cases</label>\n <span id=\"remove-user-hint\" class=\"govuk-hint\">\n Select a person to remove them from all selected cases.\n </span>\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <select class=\"govuk-select\" id=\"remove-user-input\" aria-describedby=\"remove-user-hint\">\n <option value=\"{{user}}\" *ngFor=\"let user of users\">{{user.email}}</option>\n </select>\n </div>\n <div class=\"govuk-grid-column-one-thirds\">\n <button id=\"btn-remove-user\" class=\"govuk-button govuk-button--secondary\" title=\"Remove user from selected cases\">Remove</button>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"cases\">\n <h3 id=\"title-selected-cases\" class=\"govuk-heading-m\">Selected cases</h3>\n <div *ngIf=\"shareCases && shareCases.length > 0\" class=\"govuk-accordion\" data-module=\"govuk-accordion\" id=\"accordion-with-summary-sections\">\n <xuilib-selected-case-list\n [shareCases$]=\"shareCases$\"\n [removeUserFromCaseToggleOn]=\"removeUserFromCaseToggleOn\"\n (unselect)=\"onUnselect($event)\"\n (synchronizeStore)=\"onSynchronizeStore($event)\"\n >\n </xuilib-selected-case-list>\n </div>\n\n <div id=\"noCaseDisplay\" *ngIf=\"shareCases && shareCases.length === 0\" class=\"govuk-hint\">\n No cases to display.\n </div>\n\n</div>\n\n<div id=\"share-case-nav\" class=\"govuk-button-group\">\n <button class=\"govuk-button\" data-module=\"govuk-button\" [disabled]=\"isDisabledContinue()\" title=\"Continue\" [routerLink]=\"confirmLink\">Continue</button>\n <button class=\"govuk-button govuk-button--secondary\" data-module=\"govuk-button\" title=\"Cancel\">Cancel</button>\n</div>\n",
|
|
3243
|
+
styles: ["select{width:100%}"]
|
|
3238
3244
|
}] }
|
|
3239
3245
|
];
|
|
3240
3246
|
/** @nocollapse */
|
|
@@ -3248,6 +3254,8 @@
|
|
|
3248
3254
|
shareCases$: [{ type: i0.Input }],
|
|
3249
3255
|
users: [{ type: i0.Input }],
|
|
3250
3256
|
confirmLink: [{ type: i0.Input }],
|
|
3257
|
+
addUserLabel: [{ type: i0.Input }],
|
|
3258
|
+
showRemoveUsers: [{ type: i0.Input }],
|
|
3251
3259
|
unselect: [{ type: i0.Output }],
|
|
3252
3260
|
synchronizeStore: [{ type: i0.Output }],
|
|
3253
3261
|
userSelect: [{ type: i0.ViewChild, args: [UserSelectComponent,] }]
|
|
@@ -3833,6 +3841,7 @@
|
|
|
3833
3841
|
JUDICIAL: "Judicial",
|
|
3834
3842
|
CASEWORKER: "Legal Ops",
|
|
3835
3843
|
ADMIN: "Admin",
|
|
3844
|
+
CTSC: "CTSC User",
|
|
3836
3845
|
ALL: "All",
|
|
3837
3846
|
};
|
|
3838
3847
|
/** @enum {string} */
|
|
@@ -3840,6 +3849,7 @@
|
|
|
3840
3849
|
JUDICIAL: "JUDICIAL",
|
|
3841
3850
|
CASEWORKER: "LEGAL_OPERATIONS",
|
|
3842
3851
|
ADMIN: "ADMIN",
|
|
3852
|
+
CTSC: "CTSC",
|
|
3843
3853
|
ALL: "ALL",
|
|
3844
3854
|
};
|
|
3845
3855
|
|
|
@@ -5202,47 +5212,6 @@
|
|
|
5202
5212
|
return FindPersonComponent;
|
|
5203
5213
|
}());
|
|
5204
5214
|
|
|
5205
|
-
/**
|
|
5206
|
-
* @fileoverview added by tsickle
|
|
5207
|
-
* Generated from: lib/components/find-service/find-service.component.ts
|
|
5208
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5209
|
-
*/
|
|
5210
|
-
var FindServiceComponent = /** @class */ (function () {
|
|
5211
|
-
function FindServiceComponent() {
|
|
5212
|
-
this.serviceTitle = 'Search for a service by name';
|
|
5213
|
-
this.enableAddServiceButton = true;
|
|
5214
|
-
this.disableInputField = false;
|
|
5215
|
-
}
|
|
5216
|
-
/**
|
|
5217
|
-
* @return {?}
|
|
5218
|
-
*/
|
|
5219
|
-
FindServiceComponent.prototype.addService = /**
|
|
5220
|
-
* @return {?}
|
|
5221
|
-
*/
|
|
5222
|
-
function () {
|
|
5223
|
-
// Todo
|
|
5224
|
-
};
|
|
5225
|
-
FindServiceComponent.decorators = [
|
|
5226
|
-
{ type: i0.Component, args: [{
|
|
5227
|
-
selector: 'xuilib-find-service',
|
|
5228
|
-
template: "<div class=\"service-picker-custom\">\n <div class=\"search-service\">\n <div>\n <label id=\"input-selected-service-label\" *ngIf=\"serviceTitle\">{{serviceTitle}}</label>\n </div>\n <exui-search-service class=\"search-service\"\n [services]=\"services\"\n [selectedServices]=\"selectedServices\"\n [delay]=\"300\"\n [disabled]=\"disabled\"></exui-search-service>\n <a href=\"javascript:void(0)\" (click)=\"addService()\" class=\"govuk-button govuk-button--secondary govuk-!-margin-bottom-0\" \n data-module=\"govuk-button\" *ngIf=\"enableAddServiceButton\" id=\"add-service\">\n Add\n </a>\n </div>\n <ul class=\"hmcts-filter-tags selection-container\" *ngIf=\"field.maxSelected != 1\">\n <li class=\"service-selection\" *ngFor=\"let selection of selectedServices\">\n <a class=\"hmcts-filter__tag\" href=\"javascript:void(0)\">\n {{ selection.name }}\n </a>\n </li>\n </ul>\n </div>",
|
|
5229
|
-
styles: ["#add-service{background-color:#ddd}"]
|
|
5230
|
-
}] }
|
|
5231
|
-
];
|
|
5232
|
-
FindServiceComponent.propDecorators = {
|
|
5233
|
-
field: [{ type: i0.Input }],
|
|
5234
|
-
fields: [{ type: i0.Input }],
|
|
5235
|
-
serviceTitle: [{ type: i0.Input }],
|
|
5236
|
-
form: [{ type: i0.Input }],
|
|
5237
|
-
services: [{ type: i0.Input }],
|
|
5238
|
-
selectedServices: [{ type: i0.Input }],
|
|
5239
|
-
disabled: [{ type: i0.Input }],
|
|
5240
|
-
enableAddServiceButton: [{ type: i0.Input }],
|
|
5241
|
-
disableInputField: [{ type: i0.Input }]
|
|
5242
|
-
};
|
|
5243
|
-
return FindServiceComponent;
|
|
5244
|
-
}());
|
|
5245
|
-
|
|
5246
5215
|
/**
|
|
5247
5216
|
* @fileoverview added by tsickle
|
|
5248
5217
|
* Generated from: lib/components/search-judicials/search-judicials.component.ts
|
|
@@ -5482,53 +5451,6 @@
|
|
|
5482
5451
|
return SearchJudicialsComponent;
|
|
5483
5452
|
}());
|
|
5484
5453
|
|
|
5485
|
-
/**
|
|
5486
|
-
* @fileoverview added by tsickle
|
|
5487
|
-
* Generated from: lib/components/search-service/search-service.component.ts
|
|
5488
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5489
|
-
*/
|
|
5490
|
-
var SearchServiceComponent = /** @class */ (function () {
|
|
5491
|
-
function SearchServiceComponent() {
|
|
5492
|
-
this.showAutocomplete = false;
|
|
5493
|
-
this.minSearchCharacters = 3;
|
|
5494
|
-
this.term = '';
|
|
5495
|
-
}
|
|
5496
|
-
/**
|
|
5497
|
-
* @return {?}
|
|
5498
|
-
*/
|
|
5499
|
-
SearchServiceComponent.prototype.onInput = /**
|
|
5500
|
-
* @return {?}
|
|
5501
|
-
*/
|
|
5502
|
-
function () {
|
|
5503
|
-
// Todo
|
|
5504
|
-
};
|
|
5505
|
-
/**
|
|
5506
|
-
* @return {?}
|
|
5507
|
-
*/
|
|
5508
|
-
SearchServiceComponent.prototype.onSelectionChange = /**
|
|
5509
|
-
* @return {?}
|
|
5510
|
-
*/
|
|
5511
|
-
function () {
|
|
5512
|
-
// Todo
|
|
5513
|
-
};
|
|
5514
|
-
SearchServiceComponent.decorators = [
|
|
5515
|
-
{ type: i0.Component, args: [{
|
|
5516
|
-
selector: 'exui-search-service',
|
|
5517
|
-
template: "<div class=\"auto-complete-container\">\n <input\n id=\"inputServiceSearch\"\n (input)=\"onInput()\"\n [formControl]=\"form?.controls.searchTerm\"\n [matAutocomplete]=\"autoSearchService\"\n class=\"govuk-input\"\n [attr.disabled]=\"disabled\">\n <mat-autocomplete class=\"mat-autocomplete-panel-extend\" autoActiveFirstOption #autoSearchService=\"matAutocomplete\">\n <mat-option *ngFor=\"let service of services\" (onSelectionChange)=\"onSelectionChange()\">\n {{ service.name }}\n </mat-option>\n <mat-option *ngIf=\"!services?.length && showAutocomplete && term && term.length >= this.minSearchCharacters\">No results found</mat-option>\n </mat-autocomplete>\n</div>\n",
|
|
5518
|
-
styles: [".autocomplete__input--show-all-values{padding:5px 34px 5px 5px;cursor:pointer}.autocomplete__dropdown-arrow-down{z-index:-1;display:inline-block;position:absolute;right:8px;width:24px;height:24px;top:10px}.autocomplete__menu{background-color:#fff;border:2px solid #0b0c0c;border-top:0;color:#0b0c0c;margin:0;max-height:342px;overflow-x:hidden;padding:0;width:100%;width:calc(100% - 4px)}.autocomplete__menu--visible{display:block}.autocomplete__menu--hidden{display:none}.autocomplete__menu--overlay{box-shadow:rgba(0,0,0,.256863) 0 2px 6px;left:0;position:absolute;top:100%;z-index:100}.autocomplete__menu--inline{position:relative}.autocomplete__option{border-bottom:solid #b1b4b6;border-width:1px 0;cursor:pointer;display:block;position:relative}.autocomplete__option>*{pointer-events:none}.autocomplete__option:first-of-type{border-top-width:0}.autocomplete__option:last-of-type{border-bottom-width:0}.autocomplete__option--odd{background-color:#fafafa}.autocomplete__option--focused,.autocomplete__option:hover{background-color:#1d70b8;border-color:#1d70b8;color:#fff;outline:0}.autocomplete__option--no-results{background-color:#fafafa;color:#646b6f;cursor:not-allowed}.autocomplete__hint,.autocomplete__input,.autocomplete__option{font-size:13px;line-height:1.25}.autocomplete__hint,.autocomplete__option{padding:5px}@media (min-width:641px){.autocomplete__hint,.autocomplete__input,.autocomplete__option{font-size:13px;line-height:1.31579}}.div-action{display:inline-block}.add-location{display:inline}.remove-location-button{margin:5px}.hide-autocomplete{display:none}.auto-complete-container{min-width:250px;display:inline-block;margin-right:4px}.autocomplete__input{line-height:24px;font-size:19px}"]
|
|
5519
|
-
}] }
|
|
5520
|
-
];
|
|
5521
|
-
SearchServiceComponent.propDecorators = {
|
|
5522
|
-
services: [{ type: i0.Input }],
|
|
5523
|
-
selectedServices: [{ type: i0.Input }],
|
|
5524
|
-
disabled: [{ type: i0.Input }],
|
|
5525
|
-
delay: [{ type: i0.Input }],
|
|
5526
|
-
form: [{ type: i0.Input }],
|
|
5527
|
-
showAutocomplete: [{ type: i0.Input }]
|
|
5528
|
-
};
|
|
5529
|
-
return SearchServiceComponent;
|
|
5530
|
-
}());
|
|
5531
|
-
|
|
5532
5454
|
/**
|
|
5533
5455
|
* @fileoverview added by tsickle
|
|
5534
5456
|
* Generated from: lib/components/search-venue/search-venue.component.ts
|
|
@@ -6841,8 +6763,6 @@
|
|
|
6841
6763
|
SearchJudicialsComponent,
|
|
6842
6764
|
FindLocationComponent,
|
|
6843
6765
|
SearchLocationComponent,
|
|
6844
|
-
FindServiceComponent,
|
|
6845
|
-
SearchServiceComponent,
|
|
6846
6766
|
SearchVenueComponent,
|
|
6847
6767
|
PaginationComponent
|
|
6848
6768
|
];
|
|
@@ -7968,17 +7888,15 @@
|
|
|
7968
7888
|
exports.ɵa = ExuiPageWrapperComponent;
|
|
7969
7889
|
exports.ɵbl = FindLocationComponent;
|
|
7970
7890
|
exports.ɵbh = FindPersonComponent;
|
|
7971
|
-
exports.ɵbo = FindServiceComponent;
|
|
7972
7891
|
exports.ɵbd = GenericFilterComponent;
|
|
7973
7892
|
exports.ɵk = HmctsSessionDialogComponent;
|
|
7974
7893
|
exports.ɵo = InviteUserFormComponent;
|
|
7975
7894
|
exports.ɵn = InviteUserPermissionComponent;
|
|
7976
7895
|
exports.ɵbc = LoadingSpinnerComponent;
|
|
7977
|
-
exports.ɵ
|
|
7896
|
+
exports.ɵbp = PaginationComponent;
|
|
7978
7897
|
exports.ɵbk = SearchJudicialsComponent;
|
|
7979
7898
|
exports.ɵbm = SearchLocationComponent;
|
|
7980
|
-
exports.ɵ
|
|
7981
|
-
exports.ɵbq = SearchVenueComponent;
|
|
7899
|
+
exports.ɵbo = SearchVenueComponent;
|
|
7982
7900
|
exports.ɵv = SelectedCaseConfirmComponent;
|
|
7983
7901
|
exports.ɵt = SelectedCaseListComponent;
|
|
7984
7902
|
exports.ɵu = SelectedCaseComponent;
|
|
@@ -7997,28 +7915,28 @@
|
|
|
7997
7915
|
exports.ɵg = FeatureToggleDirective;
|
|
7998
7916
|
exports.ɵi = LetContext;
|
|
7999
7917
|
exports.ɵj = LetDirective;
|
|
8000
|
-
exports.ɵ
|
|
8001
|
-
exports.ɵ
|
|
8002
|
-
exports.ɵ
|
|
8003
|
-
exports.ɵ
|
|
8004
|
-
exports.ɵ
|
|
8005
|
-
exports.ɵ
|
|
8006
|
-
exports.ɵ
|
|
8007
|
-
exports.ɵ
|
|
8008
|
-
exports.ɵ
|
|
8009
|
-
exports.ɵ
|
|
8010
|
-
exports.ɵ
|
|
8011
|
-
exports.ɵ
|
|
8012
|
-
exports.ɵ
|
|
8013
|
-
exports.ɵ
|
|
8014
|
-
exports.ɵ
|
|
8015
|
-
exports.ɵ
|
|
8016
|
-
exports.ɵ
|
|
8017
|
-
exports.ɵ
|
|
8018
|
-
exports.ɵ
|
|
8019
|
-
exports.ɵ
|
|
8020
|
-
exports.ɵ
|
|
8021
|
-
exports.ɵ
|
|
7918
|
+
exports.ɵbz = GovUkCheckboxComponent;
|
|
7919
|
+
exports.ɵcf = GovUkCheckboxesComponent;
|
|
7920
|
+
exports.ɵce = GovUkDateComponent;
|
|
7921
|
+
exports.ɵcc = GovUkErrorMessageComponent;
|
|
7922
|
+
exports.ɵcd = GovUkFieldsetComponent;
|
|
7923
|
+
exports.ɵck = GovUkFileUploadComponent;
|
|
7924
|
+
exports.ɵca = GovUkFormGroupWrapperComponent;
|
|
7925
|
+
exports.ɵby = GovUkInputComponent;
|
|
7926
|
+
exports.ɵcb = GovUkLabelComponent;
|
|
7927
|
+
exports.ɵcg = GovUkRadioComponent;
|
|
7928
|
+
exports.ɵch = GovUkRadiosComponent;
|
|
7929
|
+
exports.ɵci = GovUkSelectComponent;
|
|
7930
|
+
exports.ɵbx = GovukTableComponent;
|
|
7931
|
+
exports.ɵcj = GovUkTextareaComponent;
|
|
7932
|
+
exports.ɵbw = HmctsBannerComponent;
|
|
7933
|
+
exports.ɵbu = HmctsErrorSummaryComponent;
|
|
7934
|
+
exports.ɵbq = HmctsIdentityBarComponent;
|
|
7935
|
+
exports.ɵbv = HmctsMainWrapperComponent;
|
|
7936
|
+
exports.ɵbr = HmctsPaginationComponent;
|
|
7937
|
+
exports.ɵbt = HmctsPrimaryNavigationComponent;
|
|
7938
|
+
exports.ɵbs = HmctsSubNavigationComponent;
|
|
7939
|
+
exports.ɵcl = RemoveHostDirective;
|
|
8022
7940
|
exports.ɵr = CaseSharingStateService;
|
|
8023
7941
|
exports.ɵbg = CookieService;
|
|
8024
7942
|
exports.ɵh = FeatureToggleService;
|