@hmcts/rpx-xui-common-lib 1.7.6 → 1.7.9-task-name-filter
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 +353 -26
- 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 +27 -25
- package/esm2015/lib/components/find-task-name/find-task-name.component.js +249 -0
- package/esm2015/lib/components/generic-filter/generic-filter.component.js +22 -2
- package/esm2015/lib/exui-common-lib.module.js +3 -1
- package/esm2015/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.js +5 -2
- package/esm2015/lib/models/filter.model.js +5 -1
- package/esm2015/lib/models/task-name.model.js +16 -0
- package/esm2015/lib/services/task-name/task-name.service.js +41 -0
- package/esm5/hmcts-rpx-xui-common-lib.js +27 -25
- package/esm5/lib/components/find-task-name/find-task-name.component.js +338 -0
- package/esm5/lib/components/generic-filter/generic-filter.component.js +27 -2
- package/esm5/lib/exui-common-lib.module.js +3 -1
- package/esm5/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.js +5 -2
- package/esm5/lib/models/filter.model.js +5 -1
- package/esm5/lib/models/task-name.model.js +16 -0
- package/esm5/lib/services/task-name/task-name.service.js +46 -0
- package/fesm2015/hmcts-rpx-xui-common-lib.js +234 -3
- package/fesm2015/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/fesm5/hmcts-rpx-xui-common-lib.js +331 -3
- package/fesm5/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/hmcts-rpx-xui-common-lib.d.ts +26 -24
- package/hmcts-rpx-xui-common-lib.metadata.json +1 -1
- package/lib/components/find-task-name/find-task-name.component.d.ts +41 -0
- package/lib/components/generic-filter/generic-filter.component.d.ts +1 -0
- package/lib/exui-common-lib.module.d.ts +2 -1
- package/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.d.ts +1 -0
- package/lib/models/filter.model.d.ts +3 -1
- package/lib/models/task-name.model.d.ts +4 -0
- package/lib/services/task-name/task-name.service.d.ts +10 -0
- package/package.json +1 -1
|
@@ -1138,6 +1138,31 @@ var GenericFilterComponent = /** @class */ (function () {
|
|
|
1138
1138
|
finally { if (e_2) throw e_2.error; }
|
|
1139
1139
|
}
|
|
1140
1140
|
};
|
|
1141
|
+
/**
|
|
1142
|
+
* @param {?} values
|
|
1143
|
+
* @param {?} field
|
|
1144
|
+
* @return {?}
|
|
1145
|
+
*/
|
|
1146
|
+
GenericFilterComponent.prototype.updateTaskNameControls = /**
|
|
1147
|
+
* @param {?} values
|
|
1148
|
+
* @param {?} field
|
|
1149
|
+
* @return {?}
|
|
1150
|
+
*/
|
|
1151
|
+
function (values, field) {
|
|
1152
|
+
// let keys;
|
|
1153
|
+
// if (!values) {
|
|
1154
|
+
// keys = Object.keys(this.form.get(field.name).value);
|
|
1155
|
+
// } else {
|
|
1156
|
+
// keys = Object.keys(values);
|
|
1157
|
+
// }
|
|
1158
|
+
// for (const key of keys) {
|
|
1159
|
+
// if (this.form.get(field.name) && this.form.get(field.name).get(key)) {
|
|
1160
|
+
// const value = values && values[key] ? values[key] : null;
|
|
1161
|
+
// this.form.get(field.name).get(key).patchValue(value);
|
|
1162
|
+
// }
|
|
1163
|
+
// }
|
|
1164
|
+
this.form.get(field.name).patchValue(values);
|
|
1165
|
+
};
|
|
1141
1166
|
/**
|
|
1142
1167
|
* @param {?} event
|
|
1143
1168
|
* @param {?} form
|
|
@@ -1581,7 +1606,7 @@ var GenericFilterComponent = /** @class */ (function () {
|
|
|
1581
1606
|
GenericFilterComponent.decorators = [
|
|
1582
1607
|
{ type: Component, args: [{
|
|
1583
1608
|
selector: 'xuilib-generic-filter',
|
|
1584
|
-
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",
|
|
1609
|
+
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 <ng-container *ngSwitchCase=\"'find-task-name'\">\n <xuilib-find-task-name subTitle=\"\" (taskNameSelected)=\"updateTaskNameControls($event, field)\"\n (taskNameFieldChanged)=\"inputChanged(field)\"\n [submitted]=\"submitted\"\n [disabled]=\"disabled(field, form)\"\n [domain]=\"form.get(field.domainField)?.value\"\n [findTaskNameGroup]=\"form\"\n [selectedTaskName]=\"form.get(field.name)?.value?.email\"\n [userIncluded]=\"false\"\n ></xuilib-find-task-name>\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",
|
|
1585
1610
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1586
1611
|
encapsulation: ViewEncapsulation.None,
|
|
1587
1612
|
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}"]
|
|
@@ -5111,6 +5136,307 @@ var FindPersonComponent = /** @class */ (function () {
|
|
|
5111
5136
|
return FindPersonComponent;
|
|
5112
5137
|
}());
|
|
5113
5138
|
|
|
5139
|
+
/**
|
|
5140
|
+
* @fileoverview added by tsickle
|
|
5141
|
+
* Generated from: lib/services/task-name/task-name.service.ts
|
|
5142
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5143
|
+
*/
|
|
5144
|
+
var TaskNameService = /** @class */ (function () {
|
|
5145
|
+
function TaskNameService(http) {
|
|
5146
|
+
this.http = http;
|
|
5147
|
+
}
|
|
5148
|
+
/**
|
|
5149
|
+
* @return Observable<any[]>: Array of taskName in Observable
|
|
5150
|
+
*/
|
|
5151
|
+
/**
|
|
5152
|
+
* @return {?} Observable<any[]>: Array of taskName in Observable
|
|
5153
|
+
*/
|
|
5154
|
+
TaskNameService.prototype.getTaskName = /**
|
|
5155
|
+
* @return {?} Observable<any[]>: Array of taskName in Observable
|
|
5156
|
+
*/
|
|
5157
|
+
function () {
|
|
5158
|
+
return this.http.get("/workallocation2/taskNames");
|
|
5159
|
+
};
|
|
5160
|
+
TaskNameService.decorators = [
|
|
5161
|
+
{ type: Injectable, args: [{
|
|
5162
|
+
providedIn: 'root'
|
|
5163
|
+
},] }
|
|
5164
|
+
];
|
|
5165
|
+
/** @nocollapse */
|
|
5166
|
+
TaskNameService.ctorParameters = function () { return [
|
|
5167
|
+
{ type: HttpClient }
|
|
5168
|
+
]; };
|
|
5169
|
+
/** @nocollapse */ TaskNameService.ngInjectableDef = defineInjectable({ factory: function TaskNameService_Factory() { return new TaskNameService(inject(HttpClient)); }, token: TaskNameService, providedIn: "root" });
|
|
5170
|
+
return TaskNameService;
|
|
5171
|
+
}());
|
|
5172
|
+
|
|
5173
|
+
/**
|
|
5174
|
+
* @fileoverview added by tsickle
|
|
5175
|
+
* Generated from: lib/components/find-task-name/find-task-name.component.ts
|
|
5176
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5177
|
+
*/
|
|
5178
|
+
var FindTaskNameComponent = /** @class */ (function () {
|
|
5179
|
+
function FindTaskNameComponent(cd, taskService) {
|
|
5180
|
+
this.cd = cd;
|
|
5181
|
+
this.taskService = taskService;
|
|
5182
|
+
this.taskNameSelected = new EventEmitter();
|
|
5183
|
+
this.taskNameFieldChanged = new EventEmitter();
|
|
5184
|
+
this.boldTitle = 'Find the task name';
|
|
5185
|
+
this.subTitle = 'Type the name of the task name and select them.';
|
|
5186
|
+
this.domain = PersonRole.ALL;
|
|
5187
|
+
this.findTaskNameGroup = new FormGroup({});
|
|
5188
|
+
this.submitted = true;
|
|
5189
|
+
this.userIncluded = false;
|
|
5190
|
+
this.placeholderContent = '';
|
|
5191
|
+
this.isNoResultsShown = true;
|
|
5192
|
+
this.showUpdatedColor = false;
|
|
5193
|
+
this.selectedTaskNames = [];
|
|
5194
|
+
this.errorMessage = 'You must select a name';
|
|
5195
|
+
this.idValue = '';
|
|
5196
|
+
this.services = ['IA'];
|
|
5197
|
+
this.disabled = null;
|
|
5198
|
+
this.showAutocomplete = false;
|
|
5199
|
+
this.filteredOptions = [];
|
|
5200
|
+
this.minSearchCharacters = 1;
|
|
5201
|
+
this.searchTerm = '';
|
|
5202
|
+
}
|
|
5203
|
+
/**
|
|
5204
|
+
* @return {?}
|
|
5205
|
+
*/
|
|
5206
|
+
FindTaskNameComponent.prototype.ngOnDestroy = /**
|
|
5207
|
+
* @return {?}
|
|
5208
|
+
*/
|
|
5209
|
+
function () {
|
|
5210
|
+
if (this.sub) {
|
|
5211
|
+
this.sub.unsubscribe();
|
|
5212
|
+
}
|
|
5213
|
+
};
|
|
5214
|
+
/**
|
|
5215
|
+
* @return {?}
|
|
5216
|
+
*/
|
|
5217
|
+
FindTaskNameComponent.prototype.ngOnInit = /**
|
|
5218
|
+
* @return {?}
|
|
5219
|
+
*/
|
|
5220
|
+
function () {
|
|
5221
|
+
var _this = this;
|
|
5222
|
+
this.findTaskNameControl = new FormControl(this.selectedTaskName);
|
|
5223
|
+
this.findTaskNameGroup.addControl('findTaskNameControl', this.findTaskNameControl);
|
|
5224
|
+
this.sub = this.findTaskNameControl.valueChanges
|
|
5225
|
+
.pipe(tap((/**
|
|
5226
|
+
* @return {?}
|
|
5227
|
+
*/
|
|
5228
|
+
function () { return _this.showAutocomplete = false; })), tap((/**
|
|
5229
|
+
* @return {?}
|
|
5230
|
+
*/
|
|
5231
|
+
function () { return _this.filteredOptions = []; })), tap((/**
|
|
5232
|
+
* @param {?} term
|
|
5233
|
+
* @return {?}
|
|
5234
|
+
*/
|
|
5235
|
+
function (term) { return _this.searchTerm = term; })), debounceTime(300),
|
|
5236
|
+
// tap((searchTerm) => typeof searchTerm === 'string' ? this.taskNameSelected.emit(null) : void 0),
|
|
5237
|
+
filter((/**
|
|
5238
|
+
* @param {?} searchTerm
|
|
5239
|
+
* @return {?}
|
|
5240
|
+
*/
|
|
5241
|
+
function (searchTerm) { return searchTerm && searchTerm.length >= _this.minSearchCharacters; })), mergeMap((/**
|
|
5242
|
+
* @return {?}
|
|
5243
|
+
*/
|
|
5244
|
+
function () { return _this.getTaskName(); }))).subscribe((/**
|
|
5245
|
+
* @param {?} task
|
|
5246
|
+
* @return {?}
|
|
5247
|
+
*/
|
|
5248
|
+
function (task) {
|
|
5249
|
+
_this.filteredOptions = task;
|
|
5250
|
+
if (_this.searchTerm) {
|
|
5251
|
+
_this.filteredOptions = _this.filteredOptions.filter((/**
|
|
5252
|
+
* @param {?} t
|
|
5253
|
+
* @return {?}
|
|
5254
|
+
*/
|
|
5255
|
+
function (t) { return t.taskName.toLocaleLowerCase().includes(_this.searchTerm.toLocaleLowerCase()); }));
|
|
5256
|
+
}
|
|
5257
|
+
_this.cd.detectChanges();
|
|
5258
|
+
}));
|
|
5259
|
+
};
|
|
5260
|
+
/**
|
|
5261
|
+
* @return {?}
|
|
5262
|
+
*/
|
|
5263
|
+
FindTaskNameComponent.prototype.getTaskName = /**
|
|
5264
|
+
* @return {?}
|
|
5265
|
+
*/
|
|
5266
|
+
function () {
|
|
5267
|
+
return this.taskService.getTaskName();
|
|
5268
|
+
};
|
|
5269
|
+
// public filter(searchTerm: string): Observable<Person[]> {
|
|
5270
|
+
// console.log("**filter**");
|
|
5271
|
+
// const findJudicialPeople = this.taskService.getTaskName();
|
|
5272
|
+
// // const findJudicialPeople = this.findPersonService.find({searchTerm, userRole: this.domain, services: this.services, userIncluded: this.userIncluded, assignedUser: this.assignedUser});
|
|
5273
|
+
// const findCaseworkersOrAdmins = this.findPersonService.findCaseworkers({searchTerm, userRole: this.domain, services: this.services, userIncluded: this.userIncluded, assignedUser: this.assignedUser});
|
|
5274
|
+
// if (searchTerm && searchTerm.length > this.minSearchCharacters) {
|
|
5275
|
+
// switch (this.domain) {
|
|
5276
|
+
// case PersonRole.JUDICIAL: {
|
|
5277
|
+
// return findJudicialPeople.pipe(map(persons => {
|
|
5278
|
+
// const ids: string[] = this.selectedTaskNames.map(({id}) => id);
|
|
5279
|
+
// return persons.filter(({ id }) => !ids.includes(id));
|
|
5280
|
+
// }));
|
|
5281
|
+
// }
|
|
5282
|
+
// case PersonRole.ALL: {
|
|
5283
|
+
// return zip(findJudicialPeople, findCaseworkersOrAdmins).pipe(map(separatePeople => separatePeople[0].concat(separatePeople[1])));
|
|
5284
|
+
// }
|
|
5285
|
+
// case PersonRole.CASEWORKER:
|
|
5286
|
+
// case PersonRole.ADMIN: {
|
|
5287
|
+
// return findCaseworkersOrAdmins;
|
|
5288
|
+
// }
|
|
5289
|
+
// default: {
|
|
5290
|
+
// return of([]);
|
|
5291
|
+
// }
|
|
5292
|
+
// }
|
|
5293
|
+
// }
|
|
5294
|
+
// return of([]);
|
|
5295
|
+
// }
|
|
5296
|
+
// public filter(searchTerm: string): Observable<Person[]> {
|
|
5297
|
+
// console.log("**filter**");
|
|
5298
|
+
// const findJudicialPeople = this.taskService.getTaskName();
|
|
5299
|
+
// // const findJudicialPeople = this.findPersonService.find({searchTerm, userRole: this.domain, services: this.services, userIncluded: this.userIncluded, assignedUser: this.assignedUser});
|
|
5300
|
+
// const findCaseworkersOrAdmins = this.findPersonService.findCaseworkers({searchTerm, userRole: this.domain, services: this.services, userIncluded: this.userIncluded, assignedUser: this.assignedUser});
|
|
5301
|
+
// if (searchTerm && searchTerm.length > this.minSearchCharacters) {
|
|
5302
|
+
// switch (this.domain) {
|
|
5303
|
+
// case PersonRole.JUDICIAL: {
|
|
5304
|
+
// return findJudicialPeople.pipe(map(persons => {
|
|
5305
|
+
// const ids: string[] = this.selectedTaskNames.map(({id}) => id);
|
|
5306
|
+
// return persons.filter(({ id }) => !ids.includes(id));
|
|
5307
|
+
// }));
|
|
5308
|
+
// }
|
|
5309
|
+
// case PersonRole.ALL: {
|
|
5310
|
+
// return zip(findJudicialPeople, findCaseworkersOrAdmins).pipe(map(separatePeople => separatePeople[0].concat(separatePeople[1])));
|
|
5311
|
+
// }
|
|
5312
|
+
// case PersonRole.CASEWORKER:
|
|
5313
|
+
// case PersonRole.ADMIN: {
|
|
5314
|
+
// return findCaseworkersOrAdmins;
|
|
5315
|
+
// }
|
|
5316
|
+
// default: {
|
|
5317
|
+
// return of([]);
|
|
5318
|
+
// }
|
|
5319
|
+
// }
|
|
5320
|
+
// }
|
|
5321
|
+
// return of([]);
|
|
5322
|
+
// }
|
|
5323
|
+
/**
|
|
5324
|
+
* @param {?} selectedTaskName
|
|
5325
|
+
* @return {?}
|
|
5326
|
+
*/
|
|
5327
|
+
FindTaskNameComponent.prototype.onSelectionChange =
|
|
5328
|
+
// public filter(searchTerm: string): Observable<Person[]> {
|
|
5329
|
+
// console.log("**filter**");
|
|
5330
|
+
// const findJudicialPeople = this.taskService.getTaskName();
|
|
5331
|
+
// // const findJudicialPeople = this.findPersonService.find({searchTerm, userRole: this.domain, services: this.services, userIncluded: this.userIncluded, assignedUser: this.assignedUser});
|
|
5332
|
+
// const findCaseworkersOrAdmins = this.findPersonService.findCaseworkers({searchTerm, userRole: this.domain, services: this.services, userIncluded: this.userIncluded, assignedUser: this.assignedUser});
|
|
5333
|
+
// if (searchTerm && searchTerm.length > this.minSearchCharacters) {
|
|
5334
|
+
// switch (this.domain) {
|
|
5335
|
+
// case PersonRole.JUDICIAL: {
|
|
5336
|
+
// return findJudicialPeople.pipe(map(persons => {
|
|
5337
|
+
// const ids: string[] = this.selectedTaskNames.map(({id}) => id);
|
|
5338
|
+
// return persons.filter(({ id }) => !ids.includes(id));
|
|
5339
|
+
// }));
|
|
5340
|
+
// }
|
|
5341
|
+
// case PersonRole.ALL: {
|
|
5342
|
+
// return zip(findJudicialPeople, findCaseworkersOrAdmins).pipe(map(separatePeople => separatePeople[0].concat(separatePeople[1])));
|
|
5343
|
+
// }
|
|
5344
|
+
// case PersonRole.CASEWORKER:
|
|
5345
|
+
// case PersonRole.ADMIN: {
|
|
5346
|
+
// return findCaseworkersOrAdmins;
|
|
5347
|
+
// }
|
|
5348
|
+
// default: {
|
|
5349
|
+
// return of([]);
|
|
5350
|
+
// }
|
|
5351
|
+
// }
|
|
5352
|
+
// }
|
|
5353
|
+
// return of([]);
|
|
5354
|
+
// }
|
|
5355
|
+
/**
|
|
5356
|
+
* @param {?} selectedTaskName
|
|
5357
|
+
* @return {?}
|
|
5358
|
+
*/
|
|
5359
|
+
function (selectedTaskName) {
|
|
5360
|
+
if (selectedTaskName && selectedTaskName.taskName) {
|
|
5361
|
+
/** @type {?} */
|
|
5362
|
+
var taskName = selectedTaskName.taskName;
|
|
5363
|
+
this.taskNameSelected.emit(taskName);
|
|
5364
|
+
this.findTaskNameControl.setValue(taskName);
|
|
5365
|
+
}
|
|
5366
|
+
};
|
|
5367
|
+
// public getDisplayName(selectedPerson: Person): string {
|
|
5368
|
+
// if (!selectedPerson) {
|
|
5369
|
+
// return '';
|
|
5370
|
+
// }
|
|
5371
|
+
// if (selectedPerson.domain === PersonRole.JUDICIAL && selectedPerson.knownAs) {
|
|
5372
|
+
// return `${selectedPerson.knownAs} (${selectedPerson.email})`;
|
|
5373
|
+
// }
|
|
5374
|
+
// return selectedPerson.email ? `${selectedPerson.name} (${selectedPerson.email})` : selectedPerson.name;
|
|
5375
|
+
// }
|
|
5376
|
+
// public getDisplayName(selectedPerson: Person): string {
|
|
5377
|
+
// if (!selectedPerson) {
|
|
5378
|
+
// return '';
|
|
5379
|
+
// }
|
|
5380
|
+
// if (selectedPerson.domain === PersonRole.JUDICIAL && selectedPerson.knownAs) {
|
|
5381
|
+
// return `${selectedPerson.knownAs} (${selectedPerson.email})`;
|
|
5382
|
+
// }
|
|
5383
|
+
// return selectedPerson.email ? `${selectedPerson.name} (${selectedPerson.email})` : selectedPerson.name;
|
|
5384
|
+
// }
|
|
5385
|
+
/**
|
|
5386
|
+
* @return {?}
|
|
5387
|
+
*/
|
|
5388
|
+
FindTaskNameComponent.prototype.onInput =
|
|
5389
|
+
// public getDisplayName(selectedPerson: Person): string {
|
|
5390
|
+
// if (!selectedPerson) {
|
|
5391
|
+
// return '';
|
|
5392
|
+
// }
|
|
5393
|
+
// if (selectedPerson.domain === PersonRole.JUDICIAL && selectedPerson.knownAs) {
|
|
5394
|
+
// return `${selectedPerson.knownAs} (${selectedPerson.email})`;
|
|
5395
|
+
// }
|
|
5396
|
+
// return selectedPerson.email ? `${selectedPerson.name} (${selectedPerson.email})` : selectedPerson.name;
|
|
5397
|
+
// }
|
|
5398
|
+
/**
|
|
5399
|
+
* @return {?}
|
|
5400
|
+
*/
|
|
5401
|
+
function () {
|
|
5402
|
+
this.taskNameFieldChanged.emit();
|
|
5403
|
+
};
|
|
5404
|
+
FindTaskNameComponent.decorators = [
|
|
5405
|
+
{ type: Component, args: [{
|
|
5406
|
+
selector: 'xuilib-find-task-name',
|
|
5407
|
+
template: "<h1 class=\"govuk-heading-l\" *ngIf=\"title && title.length\">\n <span class=\"govuk-caption-l\">{{title}}</span>\n {{boldTitle}}\n</h1>\n<div class=\"govuk-form-group\" [formGroup]=\"findTaskNameGroup\"\n [ngClass]=\"{'form-group-error': findTaskNameGroup.get('findTaskNameControl').invalid && submitted}\">\n <fieldset class=\"govuk-fieldset\" aria-describedby=\"sub-title-hint\">\n <div id=\"sub-title-hint\" class=\"govuk-hint\" *ngIf=\"subTitle && subTitle.length\">\n {{subTitle}}\n </div>\n <span id=\"validation-error\" class=\"govuk-error-message\" *ngIf=\"findTaskNameGroup && findTaskNameGroup.errors\">\n <span class=\"govuk-visually-hidden\">Error:</span>{{findTaskNameGroup.errors.error ? findTaskNameGroup.errors.error : errorMessage}}\n </span>\n <input id=\"inputSelectTaskName{{idValue}}\" type=\"text\" aria-label=\"select a task name\"\n formControlName=\"findTaskNameControl\"\n [matAutocomplete]=\"auto\"\n class=\"govuk-input govuk-!-width-one-third\"\n [placeholder]=\"placeholderContent\"\n [attr.disabled]=\"disabled\"\n (input)=\"onInput()\">\n <mat-autocomplete autoActiveFirstOption #auto=\"matAutocomplete\" (optionSelected)=\"onSelectionChange($event.option.value)\">\n <mat-option *ngFor=\"let option of filteredOptions\"\n [value]=\"option\"\n [ngClass]=\"{'hide-autocomplete': !showAutocomplete, 'select-option': showUpdatedColor}\">\n {{ option.taskName }}\n </mat-option>\n <mat-option [ngClass]=\"{'select-option': showUpdatedColor}\" *ngIf=\"isNoResultsShown && !filteredOptions.length && showAutocomplete\">No results found</mat-option>\n </mat-autocomplete>\n </fieldset>\n</div>\n",
|
|
5408
|
+
styles: [""]
|
|
5409
|
+
}] }
|
|
5410
|
+
];
|
|
5411
|
+
/** @nocollapse */
|
|
5412
|
+
FindTaskNameComponent.ctorParameters = function () { return [
|
|
5413
|
+
{ type: ChangeDetectorRef },
|
|
5414
|
+
{ type: TaskNameService }
|
|
5415
|
+
]; };
|
|
5416
|
+
FindTaskNameComponent.propDecorators = {
|
|
5417
|
+
taskNameSelected: [{ type: Output }],
|
|
5418
|
+
taskNameFieldChanged: [{ type: Output }],
|
|
5419
|
+
title: [{ type: Input }],
|
|
5420
|
+
boldTitle: [{ type: Input }],
|
|
5421
|
+
subTitle: [{ type: Input }],
|
|
5422
|
+
domain: [{ type: Input }],
|
|
5423
|
+
findTaskNameGroup: [{ type: Input }],
|
|
5424
|
+
selectedTaskName: [{ type: Input }],
|
|
5425
|
+
submitted: [{ type: Input }],
|
|
5426
|
+
userIncluded: [{ type: Input }],
|
|
5427
|
+
assignedUser: [{ type: Input }],
|
|
5428
|
+
placeholderContent: [{ type: Input }],
|
|
5429
|
+
isNoResultsShown: [{ type: Input }],
|
|
5430
|
+
showUpdatedColor: [{ type: Input }],
|
|
5431
|
+
selectedTaskNames: [{ type: Input }],
|
|
5432
|
+
errorMessage: [{ type: Input }],
|
|
5433
|
+
idValue: [{ type: Input }],
|
|
5434
|
+
services: [{ type: Input }],
|
|
5435
|
+
disabled: [{ type: Input }]
|
|
5436
|
+
};
|
|
5437
|
+
return FindTaskNameComponent;
|
|
5438
|
+
}());
|
|
5439
|
+
|
|
5114
5440
|
/**
|
|
5115
5441
|
* @fileoverview added by tsickle
|
|
5116
5442
|
* Generated from: lib/components/search-judicials/search-judicials.component.ts
|
|
@@ -6575,7 +6901,8 @@ var HmctsSubNavigationComponent = /** @class */ (function () {
|
|
|
6575
6901
|
HmctsSubNavigationComponent.decorators = [
|
|
6576
6902
|
{ type: Component, args: [{
|
|
6577
6903
|
selector: 'xuilib-hmcts-sub-navigation',
|
|
6578
|
-
template: "<nav class=\"hmcts-sub-navigation\" attr.aria-label=\"{{label}}\" role=\"navigation\" *ngIf=\"items\">\n <ul class=\"hmcts-sub-navigation__list\">\n <li class=\"hmcts-sub-navigation__item\" *ngFor=\"let item of items\">\n <a data-selector=\"sub-nav-link\" class=\"hmcts-sub-navigation__link\" [routerLink]=\"item.href\"\n [attr.aria-current]=\"item.active ? 'page' : null\">\n {{item.text}}\n </a>\n </li>\n </ul>\n</nav>\n"
|
|
6904
|
+
template: "<nav class=\"hmcts-sub-navigation\" attr.aria-label=\"{{label}}\" role=\"navigation\" *ngIf=\"items\">\n <ul class=\"hmcts-sub-navigation__list\">\n <li class=\"hmcts-sub-navigation__item\" *ngFor=\"let item of items\">\n <a data-selector=\"sub-nav-link\" class=\"hmcts-sub-navigation__link\" [routerLink]=\"item.href\"\n [attr.aria-current]=\"item.active ? 'page' : null\">\n {{item.text}}\n\n <span *ngIf=\"item.roundel && item.roundel > 0 \" class=\"xui-alert-link__number\"> {{item.roundel}} </span>\n </a>\n </li>\n </ul>\n</nav>\n",
|
|
6905
|
+
styles: [".xui-alert-link__number{font-family:nta,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:.875rem;line-height:1.78571;border-radius:50%;background-color:#1d70b8;color:#fff;font-weight:700;width:25px;height:25px;margin-left:5px;text-align:center;display:inline-block;text-decoration:none}"]
|
|
6579
6906
|
}] }
|
|
6580
6907
|
];
|
|
6581
6908
|
HmctsSubNavigationComponent.propDecorators = {
|
|
@@ -6666,6 +6993,7 @@ var COMMON_COMPONENTS = [
|
|
|
6666
6993
|
FindPersonComponent,
|
|
6667
6994
|
SearchJudicialsComponent,
|
|
6668
6995
|
FindLocationComponent,
|
|
6996
|
+
FindTaskNameComponent,
|
|
6669
6997
|
SearchLocationComponent,
|
|
6670
6998
|
SearchVenueComponent,
|
|
6671
6999
|
PaginationComponent
|
|
@@ -7738,6 +8066,6 @@ var LoadingService = /** @class */ (function () {
|
|
|
7738
8066
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
7739
8067
|
*/
|
|
7740
8068
|
|
|
7741
|
-
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 ɵbl, FindPersonComponent as ɵbh, GenericFilterComponent as ɵbd, HmctsSessionDialogComponent as ɵk, InviteUserFormComponent as ɵo, InviteUserPermissionComponent as ɵn, LoadingSpinnerComponent as ɵbc, PaginationComponent as
|
|
8069
|
+
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 ɵbl, FindPersonComponent as ɵbh, FindTaskNameComponent as ɵbo, GenericFilterComponent as ɵbd, HmctsSessionDialogComponent as ɵk, InviteUserFormComponent as ɵo, InviteUserPermissionComponent as ɵn, LoadingSpinnerComponent as ɵbc, PaginationComponent as ɵbr, SearchJudicialsComponent as ɵbk, SearchLocationComponent as ɵbm, SearchVenueComponent as ɵbq, 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 ɵcb, GovUkCheckboxesComponent as ɵch, GovUkDateComponent as ɵcg, GovUkErrorMessageComponent as ɵce, GovUkFieldsetComponent as ɵcf, GovUkFileUploadComponent as ɵcm, GovUkFormGroupWrapperComponent as ɵcc, GovUkInputComponent as ɵca, GovUkLabelComponent as ɵcd, GovUkRadioComponent as ɵci, GovUkRadiosComponent as ɵcj, GovUkSelectComponent as ɵck, GovukTableComponent as ɵbz, GovUkTextareaComponent as ɵcl, HmctsBannerComponent as ɵby, HmctsErrorSummaryComponent as ɵbw, HmctsIdentityBarComponent as ɵbs, HmctsMainWrapperComponent as ɵbx, HmctsPaginationComponent as ɵbt, HmctsPrimaryNavigationComponent as ɵbv, HmctsSubNavigationComponent as ɵbu, RemoveHostDirective as ɵcn, CaseSharingStateService as ɵr, CookieService as ɵbg, FeatureToggleService as ɵh, FilterService as ɵbe, FindAPersonService as ɵbi, LocationService as ɵbn, SessionStorageService as ɵbj, TaskNameService as ɵbp };
|
|
7742
8070
|
|
|
7743
8071
|
//# sourceMappingURL=hmcts-rpx-xui-common-lib.js.map
|