@hmcts/rpx-xui-common-lib 1.6.10 → 1.7.0-ao-rectification
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 +216 -44
- 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 +28 -27
- package/esm2015/lib/components/find-location/find-location.component.js +5 -5
- package/esm2015/lib/components/generic-filter/generic-filter.component.js +2 -2
- package/esm2015/lib/components/index.js +2 -2
- package/esm2015/lib/components/pagination-v1/pagination.component.js +130 -0
- package/esm2015/lib/components/public_api.js +2 -1
- package/esm2015/lib/components/search-location/search-location.component.js +6 -6
- package/esm2015/lib/components/user-list/user-list.component.js +57 -2
- package/esm2015/lib/exui-common-lib.module.js +12 -6
- package/esm2015/lib/models/filter.model.js +1 -3
- package/esm2015/lib/models/index.js +2 -1
- package/esm2015/lib/models/pagination.model.js +16 -0
- package/esm2015/public-api.js +2 -2
- package/esm5/hmcts-rpx-xui-common-lib.js +28 -27
- package/esm5/lib/components/find-location/find-location.component.js +5 -5
- package/esm5/lib/components/generic-filter/generic-filter.component.js +2 -2
- package/esm5/lib/components/index.js +2 -2
- package/esm5/lib/components/pagination-v1/pagination.component.js +144 -0
- package/esm5/lib/components/public_api.js +2 -1
- package/esm5/lib/components/search-location/search-location.component.js +6 -6
- package/esm5/lib/components/user-list/user-list.component.js +73 -2
- package/esm5/lib/exui-common-lib.module.js +13 -6
- package/esm5/lib/models/filter.model.js +1 -3
- package/esm5/lib/models/index.js +2 -1
- package/esm5/lib/models/pagination.model.js +16 -0
- package/esm5/public-api.js +2 -2
- package/fesm2015/hmcts-rpx-xui-common-lib.js +170 -16
- package/fesm2015/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/fesm5/hmcts-rpx-xui-common-lib.js +200 -16
- package/fesm5/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/hmcts-rpx-xui-common-lib.d.ts +26 -25
- package/hmcts-rpx-xui-common-lib.metadata.json +1 -1
- package/lib/components/find-location/find-location.component.d.ts +1 -1
- package/lib/components/pagination-v1/pagination.component.d.ts +19 -0
- package/lib/components/public_api.d.ts +1 -0
- package/lib/components/user-list/user-list.component.d.ts +8 -0
- package/lib/models/filter.model.d.ts +0 -1
- package/lib/models/index.d.ts +1 -0
- package/lib/models/pagination.model.d.ts +4 -0
- package/package.json +3 -2
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { MatInputModule, MatTabsModule } from '@angular/material';
|
|
2
1
|
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
2
|
+
import { MatInputModule } from '@angular/material/input';
|
|
3
|
+
import { MatTabsModule } from '@angular/material/tabs';
|
|
4
|
+
import { NgxPaginationModule, PaginatePipe } from 'ngx-pagination';
|
|
3
5
|
import { HttpClient } from '@angular/common/http';
|
|
4
6
|
import { FormArray, FormBuilder, FormControl, FormGroup, Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
5
7
|
import { initialize } from 'launchdarkly-js-client-sdk';
|
|
@@ -1182,7 +1184,7 @@ class GenericFilterComponent {
|
|
|
1182
1184
|
GenericFilterComponent.decorators = [
|
|
1183
1185
|
{ type: Component, args: [{
|
|
1184
1186
|
selector: 'xuilib-generic-filter',
|
|
1185
|
-
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 [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 [form]=\"form\"\n [fields]=\"config.fields\"\n [
|
|
1187
|
+
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 [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 [form]=\"form\"\n [fields]=\"config.fields\"\n [title]=\"field.title\"\n [enableAddLocationButton]=\"field.enableAddLocationButton\"\n [disabled]=\"disabled(field, form)\"\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",
|
|
1186
1188
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1187
1189
|
encapsulation: ViewEncapsulation.None,
|
|
1188
1190
|
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}"]
|
|
@@ -2559,6 +2561,11 @@ class UserListComponent {
|
|
|
2559
2561
|
constructor() {
|
|
2560
2562
|
this.users = [];
|
|
2561
2563
|
this.userClick = new EventEmitter();
|
|
2564
|
+
this.moreResultsToGo = false;
|
|
2565
|
+
this.pagination = {
|
|
2566
|
+
page_number: 1,
|
|
2567
|
+
page_size: 25
|
|
2568
|
+
};
|
|
2562
2569
|
}
|
|
2563
2570
|
/**
|
|
2564
2571
|
* @param {?} user
|
|
@@ -2567,14 +2574,60 @@ class UserListComponent {
|
|
|
2567
2574
|
onUserClick(user) {
|
|
2568
2575
|
this.userClick.emit(user);
|
|
2569
2576
|
}
|
|
2577
|
+
/**
|
|
2578
|
+
* @param {?} pageNumber
|
|
2579
|
+
* @return {?}
|
|
2580
|
+
*/
|
|
2581
|
+
onPaginationHandler(pageNumber) {
|
|
2582
|
+
this.pagination.page_number = pageNumber;
|
|
2583
|
+
}
|
|
2584
|
+
/**
|
|
2585
|
+
* @param {?} rows
|
|
2586
|
+
* @return {?}
|
|
2587
|
+
*/
|
|
2588
|
+
getFirstResult(rows) {
|
|
2589
|
+
if (rows && rows.length > 0) {
|
|
2590
|
+
/** @type {?} */
|
|
2591
|
+
const currentPage = (this.pagination.page_number ? this.pagination.page_number : 1);
|
|
2592
|
+
if (currentPage === 1) {
|
|
2593
|
+
return currentPage;
|
|
2594
|
+
}
|
|
2595
|
+
return (currentPage - 1) * this.pagination.page_size + 1;
|
|
2596
|
+
}
|
|
2597
|
+
return 0;
|
|
2598
|
+
}
|
|
2599
|
+
/**
|
|
2600
|
+
* @param {?} rows
|
|
2601
|
+
* @return {?}
|
|
2602
|
+
*/
|
|
2603
|
+
getLastResult(rows) {
|
|
2604
|
+
if (rows && rows.length > 0) {
|
|
2605
|
+
/** @type {?} */
|
|
2606
|
+
const currentPage = (this.pagination.page_number ? this.pagination.page_number : 1);
|
|
2607
|
+
return (currentPage) * this.pagination.page_size;
|
|
2608
|
+
}
|
|
2609
|
+
return 0;
|
|
2610
|
+
}
|
|
2611
|
+
/**
|
|
2612
|
+
* @param {?} rows
|
|
2613
|
+
* @return {?}
|
|
2614
|
+
*/
|
|
2615
|
+
getTotalResults(rows) {
|
|
2616
|
+
if (rows && rows.length > 0) {
|
|
2617
|
+
return rows.length;
|
|
2618
|
+
}
|
|
2619
|
+
return 0;
|
|
2620
|
+
}
|
|
2570
2621
|
}
|
|
2571
2622
|
UserListComponent.decorators = [
|
|
2572
2623
|
{ type: Component, args: [{
|
|
2573
2624
|
selector: 'xuilib-user-list',
|
|
2574
|
-
template: "<table class=\"govuk-table\">\n <thead clas=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th class=\"govuk-table__header\" scope=\"col\">Name</th>\n <th class=\"govuk-table__header\" scope=\"col\">Email</th>\n <th class=\"govuk-table__header\" scope=\"col\">Status</th>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\" data-selector=\"table-row\" *ngFor=\"let u of users\">\n <td class=\"govuk-table__cell\" data-selector=\"table-cell\">\n <a class=\"govuk-link\" [attr.title]=\"u.routerLinkTitle\" [routerLink]=\"u.routerLink\" (click)=\"onUserClick(u)\">{{ u.fullName }}</a>\n </td>\n <td class=\"govuk-table__cell\" data-selector=\"table-cell\">{{ u.email }}</td>\n <td class=\"govuk-table__cell\" data-selector=\"table-cell\">{{ u.status }}</td>\n </tr>\n </tbody>\n</table>",
|
|
2625
|
+
template: "<div class=\"pagination-top\" *ngIf=\"getTotalResults(users) > pagination.page_size\" attr.aria-label=\"{{ getTotalResults(users) }} results have been found\" role=\"status\">\n <span class=\"text-16\" id=\"search-result-summary__text\">Showing \n <span class=\"govuk-!-font-weight-bold\">{{ getFirstResult(users) }}</span>\n to\n <span class=\"govuk-!-font-weight-bold\">{{ getLastResult(users) }}</span>\n of\n <span class=\"govuk-!-font-weight-bold\">{{ getTotalResults(users) }}</span> results</span>\n</div>\n<table class=\"govuk-table\">\n <thead clas=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th class=\"govuk-table__header\" scope=\"col\">Name</th>\n <th class=\"govuk-table__header\" scope=\"col\">Email</th>\n <th class=\"govuk-table__header\" scope=\"col\">Status</th>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\" data-selector=\"table-row\" *ngFor=\"let u of users | paginate: { itemsPerPage: pagination?.page_size, currentPage: pagination?.page_number, totalItems: users.length }\">\n <td class=\"govuk-table__cell\" data-selector=\"table-cell\">\n <a class=\"govuk-link\" [attr.title]=\"u.routerLinkTitle\" [routerLink]=\"u.routerLink\" (click)=\"onUserClick(u)\">{{ u.fullName }}</a>\n </td>\n <td class=\"govuk-table__cell\" data-selector=\"table-cell\">{{ u.email }}</td>\n <td class=\"govuk-table__cell\" data-selector=\"table-cell\">{{ u.status }}</td>\n </tr>\n </tbody>\n</table>\n<xuilib-pagination-v1 *ngIf=\"getTotalResults(users) > pagination.page_size\" (pageChange)=\"onPaginationHandler($event)\"></xuilib-pagination-v1>",
|
|
2575
2626
|
styles: [":host{display:block}"]
|
|
2576
2627
|
}] }
|
|
2577
2628
|
];
|
|
2629
|
+
/** @nocollapse */
|
|
2630
|
+
UserListComponent.ctorParameters = () => [];
|
|
2578
2631
|
UserListComponent.propDecorators = {
|
|
2579
2632
|
users: [{ type: Input }],
|
|
2580
2633
|
userClick: [{ type: Output }]
|
|
@@ -2896,7 +2949,7 @@ class SearchLocationComponent {
|
|
|
2896
2949
|
if (this.singleMode && this.selectedLocations.length > 0) {
|
|
2897
2950
|
/** @type {?} */
|
|
2898
2951
|
const location = this.selectedLocations[0];
|
|
2899
|
-
this.form.controls.searchTerm.patchValue(location.
|
|
2952
|
+
this.form.controls.searchTerm.patchValue(location.venue_name, { emitEvent: false, onlySelf: true });
|
|
2900
2953
|
}
|
|
2901
2954
|
this.search();
|
|
2902
2955
|
}
|
|
@@ -2916,7 +2969,7 @@ class SearchLocationComponent {
|
|
|
2916
2969
|
* @return {?}
|
|
2917
2970
|
*/
|
|
2918
2971
|
onSelectionChange(location) {
|
|
2919
|
-
this.form.controls.searchTerm.patchValue(location.
|
|
2972
|
+
this.form.controls.searchTerm.patchValue(location.venue_name, { emitEvent: false, onlySelf: true });
|
|
2920
2973
|
this.locationSelected.emit(location);
|
|
2921
2974
|
}
|
|
2922
2975
|
/**
|
|
@@ -2954,7 +3007,7 @@ class SearchLocationComponent {
|
|
|
2954
3007
|
locations => {
|
|
2955
3008
|
this.locations = locations;
|
|
2956
3009
|
this.cd.markForCheck();
|
|
2957
|
-
if (locations.length === 1 && this.term === locations[0].
|
|
3010
|
+
if (locations.length === 1 && this.term === locations[0].venue_name && !this.singleMode) {
|
|
2958
3011
|
this.locationSelected.emit(locations[0]);
|
|
2959
3012
|
this.showAutocomplete = false;
|
|
2960
3013
|
return;
|
|
@@ -2992,13 +3045,13 @@ class SearchLocationComponent {
|
|
|
2992
3045
|
* @param {?} selectedLocation
|
|
2993
3046
|
* @return {?}
|
|
2994
3047
|
*/
|
|
2995
|
-
selectedLocation => selectedLocation.epimms_id)).includes(location.epimms_id) && location.
|
|
3048
|
+
selectedLocation => selectedLocation.epimms_id)).includes(location.epimms_id) && location.venue_name));
|
|
2996
3049
|
}
|
|
2997
3050
|
}
|
|
2998
3051
|
SearchLocationComponent.decorators = [
|
|
2999
3052
|
{ type: Component, args: [{
|
|
3000
3053
|
selector: 'exui-search-location',
|
|
3001
|
-
template: "<div class=\"auto-complete-container\">\n <input\n [formControl]=\"form.controls.searchTerm\"\n [matAutocomplete]=\"autoSearchLocation\"\n class=\"govuk-input\"\n [attr.disabled]=\"disabled\">\n <mat-autocomplete class=\"mat-autocomplete-panel-extend\" autoActiveFirstOption #autoSearchLocation=\"matAutocomplete\">\n <mat-option *ngFor=\"let location of locations\"\n (onSelectionChange)=\"onSelectionChange(location)\">\n {{ location.
|
|
3054
|
+
template: "<div class=\"auto-complete-container\">\n <input\n [formControl]=\"form.controls.searchTerm\"\n [matAutocomplete]=\"autoSearchLocation\"\n class=\"govuk-input\"\n [attr.disabled]=\"disabled\">\n <mat-autocomplete class=\"mat-autocomplete-panel-extend\" autoActiveFirstOption #autoSearchLocation=\"matAutocomplete\">\n <mat-option *ngFor=\"let location of locations\"\n (onSelectionChange)=\"onSelectionChange(location)\">\n {{ location.venue_name }}\n </mat-option>\n <mat-option *ngIf=\"!locations.length && showAutocomplete && term && term.length >= this.minSearchCharacters\">No results found</mat-option>\n </mat-autocomplete>\n</div>\n",
|
|
3002
3055
|
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:550px;display:inline-block;margin-right:4px}.autocomplete__input{line-height:24px;font-size:19px}"]
|
|
3003
3056
|
}] }
|
|
3004
3057
|
];
|
|
@@ -3035,7 +3088,7 @@ class FindLocationComponent {
|
|
|
3035
3088
|
this.selectedLocations = [];
|
|
3036
3089
|
this.submitted = true;
|
|
3037
3090
|
this.enableAddLocationButton = true;
|
|
3038
|
-
this.
|
|
3091
|
+
this.title = 'Search for a location by name';
|
|
3039
3092
|
this.locations = [];
|
|
3040
3093
|
this.tempSelectedLocation = null;
|
|
3041
3094
|
this.serviceIds = 'SSCS,IA';
|
|
@@ -3185,7 +3238,7 @@ class FindLocationComponent {
|
|
|
3185
3238
|
FindLocationComponent.decorators = [
|
|
3186
3239
|
{ type: Component, args: [{
|
|
3187
3240
|
selector: 'xuilib-find-location',
|
|
3188
|
-
template: "<div class=\"location-picker-custom\">\n <div class=\"search-location\">\n <div>\n <label id=\"input-selected-location-label\" *ngIf=\"
|
|
3241
|
+
template: "<div class=\"location-picker-custom\">\n <div class=\"search-location\">\n <div>\n <label id=\"input-selected-location-label\" *ngIf=\"title\">{{title}}</label>\n </div>\n <exui-search-location class=\"search-location\"\n [locations]=\"locations\"\n [selectedLocations]=\"selectedLocations\"\n [singleMode]=\"field.maxSelected === 1\"\n [delay]=\"300\"\n [disabled]=\"disabled\"\n [serviceIds]=\"serviceIds\"\n (locationInputChanged)=\"onInputChanged($event)\"\n (locationSelected)=\"onLocationSelected($event)\"\n [locationType]=\"'case-management'\"></exui-search-location>\n <a href=\"javascript:void(0)\" (click)=\"addLocation()\" class=\"govuk-button\" data-module=\"govuk-button\" *ngIf=\"enableAddLocationButton\">\n Add location\n </a>\n </div>\n <ul class=\"hmcts-filter-tags selection-container\" *ngIf=\"field.maxSelected != 1\">\n <li class=\"location-selection\" *ngFor=\"let selection of selectedLocations\">\n <a class=\"hmcts-filter__tag\" (click)=\"removeLocation(selection)\" href=\"javascript:void(0)\">\n {{ selection.venue_name }}\n </a>\n </li>\n </ul>\n</div>\n",
|
|
3189
3242
|
styles: [""]
|
|
3190
3243
|
}] }
|
|
3191
3244
|
];
|
|
@@ -3196,7 +3249,7 @@ FindLocationComponent.propDecorators = {
|
|
|
3196
3249
|
form: [{ type: Input }],
|
|
3197
3250
|
field: [{ type: Input }],
|
|
3198
3251
|
fields: [{ type: Input }],
|
|
3199
|
-
|
|
3252
|
+
title: [{ type: Input }],
|
|
3200
3253
|
searchLocationComponent: [{ type: ViewChild, args: [SearchLocationComponent,] }],
|
|
3201
3254
|
disabled: [{ type: Input }],
|
|
3202
3255
|
services: [{ type: Input }]
|
|
@@ -3241,6 +3294,98 @@ PaginationComponent.propDecorators = {
|
|
|
3241
3294
|
nextPage: [{ type: Output }]
|
|
3242
3295
|
};
|
|
3243
3296
|
|
|
3297
|
+
/**
|
|
3298
|
+
* @fileoverview added by tsickle
|
|
3299
|
+
* Generated from: lib/components/pagination-v1/pagination.component.ts
|
|
3300
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
3301
|
+
*/
|
|
3302
|
+
/**
|
|
3303
|
+
* @param {?} input
|
|
3304
|
+
* @return {?}
|
|
3305
|
+
*/
|
|
3306
|
+
function coerceToBoolean(input) {
|
|
3307
|
+
return !!input && input !== 'false';
|
|
3308
|
+
}
|
|
3309
|
+
class PaginationV1Component {
|
|
3310
|
+
constructor() {
|
|
3311
|
+
this.maxSize = 7;
|
|
3312
|
+
this.previousLabel = 'Previous';
|
|
3313
|
+
this.nextLabel = 'Next';
|
|
3314
|
+
this.screenReaderPaginationLabel = 'Pagination';
|
|
3315
|
+
this.screenReaderPageLabel = 'page';
|
|
3316
|
+
this.screenReaderCurrentLabel = `You're on page`;
|
|
3317
|
+
this.pageChange = new EventEmitter();
|
|
3318
|
+
this.pageBoundsCorrection = new EventEmitter();
|
|
3319
|
+
// tslint:disable-next-line:variable-name
|
|
3320
|
+
this._directionLinks = true;
|
|
3321
|
+
// tslint:disable-next-line:variable-name
|
|
3322
|
+
this._autoHide = false;
|
|
3323
|
+
// tslint:disable-next-line:variable-name
|
|
3324
|
+
this._responsive = false;
|
|
3325
|
+
}
|
|
3326
|
+
/**
|
|
3327
|
+
* @return {?}
|
|
3328
|
+
*/
|
|
3329
|
+
get directionLinks() {
|
|
3330
|
+
return this._directionLinks;
|
|
3331
|
+
}
|
|
3332
|
+
/**
|
|
3333
|
+
* @param {?} value
|
|
3334
|
+
* @return {?}
|
|
3335
|
+
*/
|
|
3336
|
+
set directionLinks(value) {
|
|
3337
|
+
this._directionLinks = coerceToBoolean(value);
|
|
3338
|
+
}
|
|
3339
|
+
/**
|
|
3340
|
+
* @return {?}
|
|
3341
|
+
*/
|
|
3342
|
+
get autoHide() {
|
|
3343
|
+
return this._autoHide;
|
|
3344
|
+
}
|
|
3345
|
+
/**
|
|
3346
|
+
* @param {?} value
|
|
3347
|
+
* @return {?}
|
|
3348
|
+
*/
|
|
3349
|
+
set autoHide(value) {
|
|
3350
|
+
this._autoHide = coerceToBoolean(value);
|
|
3351
|
+
}
|
|
3352
|
+
/**
|
|
3353
|
+
* @return {?}
|
|
3354
|
+
*/
|
|
3355
|
+
get responsive() {
|
|
3356
|
+
return this._responsive;
|
|
3357
|
+
}
|
|
3358
|
+
/**
|
|
3359
|
+
* @param {?} value
|
|
3360
|
+
* @return {?}
|
|
3361
|
+
*/
|
|
3362
|
+
set responsive(value) {
|
|
3363
|
+
this._responsive = coerceToBoolean(value);
|
|
3364
|
+
}
|
|
3365
|
+
}
|
|
3366
|
+
PaginationV1Component.decorators = [
|
|
3367
|
+
{ type: Component, args: [{
|
|
3368
|
+
selector: 'xuilib-pagination-v1',
|
|
3369
|
+
template: "<pagination-template #p=\"paginationApi\" [id]=\"id\" [maxSize]=\"maxSize\" (pageChange)=\"pageChange.emit($event)\"\n (pageBoundsCorrection)=\"pageBoundsCorrection.emit($event)\">\n <nav role=\"navigation\" aria-label=\"Pagination\">\n <ul class=\"ngx-pagination\" role=\"navigation\" [attr.aria-label]=\"screenReaderPaginationLabel\"\n [class.responsive]=\"responsive\" *ngIf=\"!(autoHide && p.pages.length <= 1)\">\n <li class=\"pagination-previous\" [class.disabled]=\"p.isFirstPage()\" *ngIf=\"directionLinks\">\n <a tabindex=\"0\" *ngIf=\"1 < p.getCurrent()\" (keyup.enter)=\"p.previous()\" (click)=\"p.previous()\"\n [attr.aria-label]=\"previousLabel + ' ' + screenReaderPageLabel\">\n {{ previousLabel }} <span class=\"show-for-sr\">{{ screenReaderPageLabel }}</span>\n </a>\n <span *ngIf=\"p.isFirstPage()\">\n {{ previousLabel }} <span class=\"show-for-sr\">{{ screenReaderPageLabel }}</span>\n </span>\n </li>\n <li class=\"small-screen\">\n {{ p.getCurrent() }} / {{ p.getLastPage() }}\n </li>\n <li [class.current]=\"p.getCurrent() === page.value\" [class.ellipsis]=\"page.label === '...'\"\n *ngFor=\"let page of p.pages\">\n <a tabindex=\"0\" (keyup.enter)=\"p.setCurrent(page.value)\" (click)=\"p.setCurrent(page.value)\"\n *ngIf=\"p.getCurrent() !== page.value\">\n <span class=\"show-for-sr\">{{ screenReaderPageLabel }} </span>\n <span>{{ (page.label === '...') ? page.label : (page.label | number:'') }}</span>\n </a>\n <ng-container *ngIf=\"p.getCurrent() === page.value\">\n <span class=\"show-for-sr\">{{ screenReaderCurrentLabel }} </span>\n <span>{{ (page.label === '...') ? page.label : (page.label | number:'') }}</span>\n </ng-container>\n </li>\n <li class=\"pagination-next\" [class.disabled]=\"p.isLastPage()\" *ngIf=\"directionLinks\">\n <a tabindex=\"0\" *ngIf=\"!p.isLastPage()\" (keyup.enter)=\"p.next()\" (click)=\"p.next()\"\n [attr.aria-label]=\"nextLabel + ' ' + screenReaderPageLabel\">\n {{ nextLabel }} <span class=\"show-for-sr\">{{ screenReaderPageLabel }}</span>\n </a>\n <span *ngIf=\"p.isLastPage()\">\n {{ nextLabel }} <span class=\"show-for-sr\">{{ screenReaderPageLabel }}</span>\n </span>\n </li>\n </ul>\n </nav>\n</pagination-template>\n",
|
|
3370
|
+
styles: [".ngx-pagination{margin-left:0;margin-bottom:1rem;padding-top:25px;text-decoration:none;text-align:left;font-size:16px}.ngx-pagination::after,.ngx-pagination::before{content:\" \";display:table}.ngx-pagination::after{clear:both}.ngx-pagination li{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;margin-right:.0625rem;border-radius:0;display:inline-block}.ngx-pagination a,.ngx-pagination button{display:block;padding:.1875rem .625rem;border-radius:0;color:#005da6;cursor:pointer}.ngx-pagination a:hover,.ngx-pagination button:hover{background:#e6e6e6}.ngx-pagination .current{padding:.1875rem .625rem;background:#fff;color:#4c2c92;cursor:default;font-weight:900}.ngx-pagination .disabled{display:none}.ngx-pagination .disabled:hover{background:0 0}.ngx-pagination .pagination-previous a::before,.ngx-pagination .pagination-previous.disabled::before{margin-right:.5rem;display:inline-block;height:10px;width:10px;border-style:solid;color:#0a0a0a;background:0 0;transform:rotate(-45deg);content:\"\";border-width:3px 0 0 3px}.ngx-pagination .pagination-next a::after,.ngx-pagination .pagination-next.disabled::after{margin-left:.5rem;display:inline-block;height:10px;width:10px;border-style:solid;color:#0a0a0a;background:0 0;transform:rotate(-45deg);content:\"\";border-width:0 3px 3px 0}.ngx-pagination .show-for-sr{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}.ngx-pagination .small-screen{display:none}@media screen and (max-width:601px){.ngx-pagination.responsive .small-screen{display:inline-block}.ngx-pagination.responsive li:not(.small-screen):not(.pagination-previous):not(.pagination-next){display:none}}"]
|
|
3371
|
+
}] }
|
|
3372
|
+
];
|
|
3373
|
+
PaginationV1Component.propDecorators = {
|
|
3374
|
+
visibilityLabel: [{ type: Input }],
|
|
3375
|
+
id: [{ type: Input }],
|
|
3376
|
+
maxSize: [{ type: Input }],
|
|
3377
|
+
directionLinks: [{ type: Input }],
|
|
3378
|
+
autoHide: [{ type: Input }],
|
|
3379
|
+
responsive: [{ type: Input }],
|
|
3380
|
+
previousLabel: [{ type: Input }],
|
|
3381
|
+
nextLabel: [{ type: Input }],
|
|
3382
|
+
screenReaderPaginationLabel: [{ type: Input }],
|
|
3383
|
+
screenReaderPageLabel: [{ type: Input }],
|
|
3384
|
+
screenReaderCurrentLabel: [{ type: Input }],
|
|
3385
|
+
pageChange: [{ type: Output }],
|
|
3386
|
+
pageBoundsCorrection: [{ type: Output }]
|
|
3387
|
+
};
|
|
3388
|
+
|
|
3244
3389
|
/**
|
|
3245
3390
|
* @fileoverview added by tsickle
|
|
3246
3391
|
* Generated from: lib/components/public_api.ts
|
|
@@ -3511,6 +3656,12 @@ class RadioFilterFieldConfig {
|
|
|
3511
3656
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
3512
3657
|
*/
|
|
3513
3658
|
|
|
3659
|
+
/**
|
|
3660
|
+
* @fileoverview added by tsickle
|
|
3661
|
+
* Generated from: lib/models/pagination.model.ts
|
|
3662
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
3663
|
+
*/
|
|
3664
|
+
|
|
3514
3665
|
/**
|
|
3515
3666
|
* @fileoverview added by tsickle
|
|
3516
3667
|
* Generated from: lib/models/index.ts
|
|
@@ -4855,9 +5006,10 @@ const COMMON_COMPONENTS = [
|
|
|
4855
5006
|
GenericFilterComponent,
|
|
4856
5007
|
CookieBannerComponent,
|
|
4857
5008
|
FindPersonComponent,
|
|
5009
|
+
PaginationComponent,
|
|
5010
|
+
PaginationV1Component,
|
|
4858
5011
|
FindLocationComponent,
|
|
4859
|
-
SearchLocationComponent
|
|
4860
|
-
PaginationComponent
|
|
5012
|
+
SearchLocationComponent
|
|
4861
5013
|
];
|
|
4862
5014
|
/** @type {?} */
|
|
4863
5015
|
const GOV_UI_COMPONENTS = [
|
|
@@ -4899,14 +5051,16 @@ ExuiCommonLibModule.decorators = [
|
|
|
4899
5051
|
RouterModule.forChild([]),
|
|
4900
5052
|
MatAutocompleteModule,
|
|
4901
5053
|
MatTabsModule,
|
|
4902
|
-
MatInputModule
|
|
5054
|
+
MatInputModule,
|
|
5055
|
+
NgxPaginationModule
|
|
4903
5056
|
],
|
|
4904
5057
|
providers: [
|
|
4905
5058
|
{ provide: windowToken, useFactory: ɵ0 }
|
|
4906
5059
|
],
|
|
4907
5060
|
exports: [
|
|
4908
5061
|
...COMMON_COMPONENTS,
|
|
4909
|
-
...GOV_UI_COMPONENTS
|
|
5062
|
+
...GOV_UI_COMPONENTS,
|
|
5063
|
+
PaginatePipe
|
|
4910
5064
|
]
|
|
4911
5065
|
},] }
|
|
4912
5066
|
];
|
|
@@ -5783,6 +5937,6 @@ LoadingService.decorators = [
|
|
|
5783
5937
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5784
5938
|
*/
|
|
5785
5939
|
|
|
5786
|
-
export { AccessibilityComponent, CheckboxListComponent, ContactDetailsComponent, DueDateComponent, GenericFilterComponent, HmctsSessionDialogComponent, InviteUserFormComponent, InviteUserPermissionComponent, LoadingSpinnerComponent, SelectedCaseConfirmComponent, SelectedCaseListComponent, SelectedCaseComponent, ServiceMessageComponent, ServiceMessagesComponent, ShareCaseConfirmComponent, ShareCaseComponent, TabComponent, TcConfirmComponent, TcDisplayHtmlComponent, TcDisplayPlainComponent, TermsAndConditionsComponent, UserDetailsComponent, UserListComponent, CookieBannerComponent, FindLocationComponent, SearchLocationComponent, PaginationComponent, FeatureToggleDirective, LetContext, LetDirective, COMMON_COMPONENTS, GOV_UI_COMPONENTS, ExuiCommonLibModule, GovUiService, checkboxesBeCheckedValidator, dateValidator, radioGroupValidator, HmctsSubNavigationComponent, BadgeColour, DateBadgeColour, SECONDS_IN_A_DAY, AnonymousFeatureUser, LoggedInFeatureUser, PersonRole, RoleCategory, RadioFilterFieldConfig, FeatureToggleGuard, FeatureToggleService, LaunchDarklyService, GoogleAnalyticsService, GoogleTagManagerService, ManageSessionServices, TimeoutNotificationsService, RoleMatching, RoleGuard, RoleService, CookieService, HasLoadingState, LoadingService, FilterService, windowProvider, windowToken, AccessibilityComponent as ɵx, CheckboxListComponent as ɵz, ContactDetailsComponent as ɵf, CookieBannerComponent as ɵbf, DueDateComponent as ɵy, ExuiPageWrapperComponent as ɵa, FindLocationComponent as
|
|
5940
|
+
export { AccessibilityComponent, CheckboxListComponent, ContactDetailsComponent, DueDateComponent, GenericFilterComponent, HmctsSessionDialogComponent, InviteUserFormComponent, InviteUserPermissionComponent, LoadingSpinnerComponent, SelectedCaseConfirmComponent, SelectedCaseListComponent, SelectedCaseComponent, ServiceMessageComponent, ServiceMessagesComponent, ShareCaseConfirmComponent, ShareCaseComponent, TabComponent, TcConfirmComponent, TcDisplayHtmlComponent, TcDisplayPlainComponent, TermsAndConditionsComponent, UserDetailsComponent, UserListComponent, CookieBannerComponent, FindLocationComponent, SearchLocationComponent, PaginationComponent, PaginationV1Component, FeatureToggleDirective, LetContext, LetDirective, COMMON_COMPONENTS, GOV_UI_COMPONENTS, ExuiCommonLibModule, GovUiService, checkboxesBeCheckedValidator, dateValidator, radioGroupValidator, HmctsSubNavigationComponent, BadgeColour, DateBadgeColour, SECONDS_IN_A_DAY, AnonymousFeatureUser, LoggedInFeatureUser, PersonRole, RoleCategory, RadioFilterFieldConfig, FeatureToggleGuard, FeatureToggleService, LaunchDarklyService, GoogleAnalyticsService, GoogleTagManagerService, ManageSessionServices, TimeoutNotificationsService, RoleMatching, RoleGuard, RoleService, CookieService, HasLoadingState, LoadingService, FilterService, windowProvider, windowToken, AccessibilityComponent as ɵx, CheckboxListComponent as ɵz, ContactDetailsComponent as ɵf, CookieBannerComponent as ɵbf, DueDateComponent as ɵy, ExuiPageWrapperComponent as ɵa, FindLocationComponent as ɵbm, FindPersonComponent as ɵbh, GenericFilterComponent as ɵbd, HmctsSessionDialogComponent as ɵk, InviteUserFormComponent as ɵo, InviteUserPermissionComponent as ɵn, LoadingSpinnerComponent as ɵbc, PaginationV1Component as ɵbl, PaginationComponent as ɵbk, SearchLocationComponent as ɵbn, SelectedCaseConfirmComponent as ɵv, SelectedCaseListComponent as ɵt, SelectedCaseComponent as ɵu, ServiceMessageComponent as ɵba, ServiceMessagesComponent as ɵbb, ShareCaseConfirmComponent as ɵs, ShareCaseComponent as ɵp, TabComponent as ɵw, TcConfirmComponent as ɵe, TcDisplayHtmlComponent as ɵc, TcDisplayPlainComponent as ɵd, TermsAndConditionsComponent as ɵb, UserDetailsComponent as ɵm, UserListComponent as ɵl, UserSelectComponent as ɵq, FeatureToggleDirective as ɵg, LetContext as ɵi, LetDirective as ɵj, GovUkCheckboxComponent as ɵbx, GovUkCheckboxesComponent as ɵcd, GovUkDateComponent as ɵcc, GovUkErrorMessageComponent as ɵca, GovUkFieldsetComponent as ɵcb, GovUkFileUploadComponent as ɵci, GovUkFormGroupWrapperComponent as ɵby, GovUkInputComponent as ɵbw, GovUkLabelComponent as ɵbz, GovUkRadioComponent as ɵce, GovUkRadiosComponent as ɵcf, GovUkSelectComponent as ɵcg, GovukTableComponent as ɵbv, GovUkTextareaComponent as ɵch, HmctsBannerComponent as ɵbu, HmctsErrorSummaryComponent as ɵbs, HmctsIdentityBarComponent as ɵbp, HmctsMainWrapperComponent as ɵbt, HmctsPrimaryNavigationComponent as ɵbr, HmctsSubNavigationComponent as ɵbq, RemoveHostDirective as ɵcj, CaseSharingStateService as ɵr, CookieService as ɵbg, FeatureToggleService as ɵh, FilterService as ɵbe, FindAPersonService as ɵbi, LocationService as ɵbo, SessionStorageService as ɵbj };
|
|
5787
5941
|
|
|
5788
5942
|
//# sourceMappingURL=hmcts-rpx-xui-common-lib.js.map
|