@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
|
@@ -8,15 +8,16 @@ export { ContactDetailsComponent as ɵf } from './lib/components/contact-details
|
|
|
8
8
|
export { CookieBannerComponent as ɵbf } from './lib/components/cookie-banner/cookie-banner.component';
|
|
9
9
|
export { DueDateComponent as ɵy } from './lib/components/due-date/due-date.component';
|
|
10
10
|
export { ExuiPageWrapperComponent as ɵa } from './lib/components/exui-main-wrapper/exui-page-wrapper.component';
|
|
11
|
-
export { FindLocationComponent as
|
|
11
|
+
export { FindLocationComponent as ɵbm } from './lib/components/find-location/find-location.component';
|
|
12
12
|
export { FindPersonComponent as ɵbh } from './lib/components/find-person/find-person.component';
|
|
13
13
|
export { GenericFilterComponent as ɵbd } from './lib/components/generic-filter/generic-filter.component';
|
|
14
14
|
export { HmctsSessionDialogComponent as ɵk } from './lib/components/hmcts-session-dialog/hmcts-session-dialog.component';
|
|
15
15
|
export { InviteUserFormComponent as ɵo } from './lib/components/invite-user-form/invite-user-form.component';
|
|
16
16
|
export { InviteUserPermissionComponent as ɵn } from './lib/components/invite-user-permissions/invite-user-permission.component';
|
|
17
17
|
export { LoadingSpinnerComponent as ɵbc } from './lib/components/loading-spinner/loading-spinner.component';
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
18
|
+
export { PaginationV1Component as ɵbl } from './lib/components/pagination-v1/pagination.component';
|
|
19
|
+
export { PaginationComponent as ɵbk } from './lib/components/pagination/pagination.component';
|
|
20
|
+
export { SearchLocationComponent as ɵbn } from './lib/components/search-location/search-location.component';
|
|
20
21
|
export { SelectedCaseConfirmComponent as ɵv } from './lib/components/selected-case-confirm/selected-case-confirm.component';
|
|
21
22
|
export { SelectedCaseListComponent as ɵt } from './lib/components/selected-case-list/selected-case-list.component';
|
|
22
23
|
export { SelectedCaseComponent as ɵu } from './lib/components/selected-case/selected-case.component';
|
|
@@ -34,31 +35,31 @@ export { UserListComponent as ɵl } from './lib/components/user-list/user-list.c
|
|
|
34
35
|
export { UserSelectComponent as ɵq } from './lib/components/user-select/user-select.component';
|
|
35
36
|
export { FeatureToggleDirective as ɵg } from './lib/directives/feature-toggle/feature-toggle.directive';
|
|
36
37
|
export { LetContext as ɵi, LetDirective as ɵj } from './lib/directives/let/let.directive';
|
|
37
|
-
export { GovUkCheckboxComponent as
|
|
38
|
-
export { GovUkCheckboxesComponent as
|
|
39
|
-
export { GovUkDateComponent as
|
|
40
|
-
export { GovUkErrorMessageComponent as
|
|
41
|
-
export { GovUkFieldsetComponent as
|
|
42
|
-
export { GovUkFileUploadComponent as
|
|
43
|
-
export { GovUkFormGroupWrapperComponent as
|
|
44
|
-
export { GovUkInputComponent as
|
|
45
|
-
export { GovUkLabelComponent as
|
|
46
|
-
export { GovUkRadioComponent as
|
|
47
|
-
export { GovUkRadiosComponent as
|
|
48
|
-
export { GovUkSelectComponent as
|
|
49
|
-
export { GovukTableComponent as
|
|
50
|
-
export { GovUkTextareaComponent as
|
|
51
|
-
export { HmctsBannerComponent as
|
|
52
|
-
export { HmctsErrorSummaryComponent as
|
|
53
|
-
export { HmctsIdentityBarComponent as
|
|
54
|
-
export { HmctsMainWrapperComponent as
|
|
55
|
-
export { HmctsPrimaryNavigationComponent as
|
|
56
|
-
export { HmctsSubNavigationComponent as
|
|
57
|
-
export { RemoveHostDirective as
|
|
38
|
+
export { GovUkCheckboxComponent as ɵbx } from './lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component';
|
|
39
|
+
export { GovUkCheckboxesComponent as ɵcd } from './lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component';
|
|
40
|
+
export { GovUkDateComponent as ɵcc } from './lib/gov-ui/components/gov-uk-date/gov-uk-date.component';
|
|
41
|
+
export { GovUkErrorMessageComponent as ɵca } from './lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component';
|
|
42
|
+
export { GovUkFieldsetComponent as ɵcb } from './lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component';
|
|
43
|
+
export { GovUkFileUploadComponent as ɵci } from './lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component';
|
|
44
|
+
export { GovUkFormGroupWrapperComponent as ɵby } from './lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component';
|
|
45
|
+
export { GovUkInputComponent as ɵbw } from './lib/gov-ui/components/gov-uk-input/gov-uk-input.component';
|
|
46
|
+
export { GovUkLabelComponent as ɵbz } from './lib/gov-ui/components/gov-uk-label/gov-uk-label.component';
|
|
47
|
+
export { GovUkRadioComponent as ɵce } from './lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component';
|
|
48
|
+
export { GovUkRadiosComponent as ɵcf } from './lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component';
|
|
49
|
+
export { GovUkSelectComponent as ɵcg } from './lib/gov-ui/components/gov-uk-select/gov-uk-select.component';
|
|
50
|
+
export { GovukTableComponent as ɵbv } from './lib/gov-ui/components/gov-uk-table/gov-uk-table.component';
|
|
51
|
+
export { GovUkTextareaComponent as ɵch } from './lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component';
|
|
52
|
+
export { HmctsBannerComponent as ɵbu } from './lib/gov-ui/components/hmcts-banner/hmcts-banner.component';
|
|
53
|
+
export { HmctsErrorSummaryComponent as ɵbs } from './lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component';
|
|
54
|
+
export { HmctsIdentityBarComponent as ɵbp } from './lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component';
|
|
55
|
+
export { HmctsMainWrapperComponent as ɵbt } from './lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component';
|
|
56
|
+
export { HmctsPrimaryNavigationComponent as ɵbr } from './lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component';
|
|
57
|
+
export { HmctsSubNavigationComponent as ɵbq } from './lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component';
|
|
58
|
+
export { RemoveHostDirective as ɵcj } from './lib/gov-ui/directives/remove-host.directive';
|
|
58
59
|
export { CaseSharingStateService as ɵr } from './lib/services/case-sharing-state/case-sharing-state.service';
|
|
59
60
|
export { CookieService as ɵbg } from './lib/services/cookie/cookie.service';
|
|
60
61
|
export { FeatureToggleService as ɵh } from './lib/services/feature-toggle/feature-toggle.service';
|
|
61
62
|
export { FilterService as ɵbe } from './lib/services/filter/filter.service';
|
|
62
63
|
export { FindAPersonService as ɵbi } from './lib/services/find-person/find-person.service';
|
|
63
|
-
export { LocationService as
|
|
64
|
+
export { LocationService as ɵbo } from './lib/services/locations/location.service';
|
|
64
65
|
export { SessionStorageService as ɵbj } from './lib/services/session-storage/session-storage.service';
|