@hmcts/rpx-xui-common-lib 2.1.0-angular-upgrade-11 → 2.1.3-angular-upgrade-11
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 +189 -158
- 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 +2 -1
- package/esm2015/lib/exui-common-lib.module.js +17 -1
- package/esm2015/lib/services/public-api.js +5 -1
- package/fesm2015/hmcts-rpx-xui-common-lib.js +174 -159
- package/fesm2015/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/hmcts-rpx-xui-common-lib.d.ts +1 -0
- package/hmcts-rpx-xui-common-lib.metadata.json +1 -1
- package/lib/exui-common-lib.module.d.ts +2 -0
- package/lib/services/public-api.d.ts +4 -0
- package/package.json +1 -4
|
@@ -27,7 +27,9 @@ import { HmctsPaginationComponent } from './gov-ui/components/hmcts-pagination/h
|
|
|
27
27
|
import { HmctsPrimaryNavigationComponent } from './gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component';
|
|
28
28
|
import { HmctsSubNavigationComponent } from './gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component';
|
|
29
29
|
import { RemoveHostDirective } from './gov-ui/directives/remove-host.directive';
|
|
30
|
+
import { CaseSharingStateService, CookieService, FilterService, FindAPersonService, GoogleAnalyticsService, GoogleTagManagerService, LaunchDarklyService, LoadingService, LocationService, ManageSessionServices, SessionStorageService, TimeoutNotificationsService } from './services';
|
|
30
31
|
export declare const COMMON_COMPONENTS: (typeof AccessibilityComponent | typeof GenericFilterComponent | typeof SelectedCaseConfirmComponent | typeof SelectedCaseListComponent | typeof SelectedCaseComponent | typeof ServiceMessagesComponent | typeof ShareCaseConfirmComponent | typeof ShareCaseComponent | typeof CookieBannerComponent | typeof SearchLocationComponent | typeof SearchVenueComponent | typeof SearchJudicialsComponent | typeof FindPersonComponent | typeof FeatureToggleDirective | typeof LetDirective)[];
|
|
31
32
|
export declare const GOV_UI_COMPONENTS: (typeof HmctsIdentityBarComponent | typeof HmctsPaginationComponent | typeof HmctsSubNavigationComponent | typeof HmctsPrimaryNavigationComponent | typeof HmctsErrorSummaryComponent | typeof HmctsMainWrapperComponent | typeof HmctsBannerComponent | typeof GovukTableComponent | typeof GovUkFormGroupWrapperComponent | typeof GovUkLabelComponent | typeof GovUkErrorMessageComponent | typeof GovUkCheckboxesComponent | typeof GovUkRadioComponent | typeof RemoveHostDirective)[];
|
|
33
|
+
export declare const COMMON_SERVICES: (typeof FilterService | typeof CaseSharingStateService | typeof CookieService | typeof LocationService | typeof SessionStorageService | typeof FindAPersonService | typeof LaunchDarklyService | typeof GoogleAnalyticsService | typeof GoogleTagManagerService | typeof ManageSessionServices | typeof TimeoutNotificationsService | typeof LoadingService)[];
|
|
32
34
|
export declare class ExuiCommonLibModule {
|
|
33
35
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './case-sharing-state/case-sharing-state.service';
|
|
1
2
|
export * from './feature-toggle/feature-toggle.guard';
|
|
2
3
|
export * from './feature-toggle/feature-toggle.service';
|
|
3
4
|
export * from './feature-toggle/launch-darkly.service';
|
|
@@ -9,4 +10,7 @@ export * from './role-guard/role.guard';
|
|
|
9
10
|
export * from './role-guard/role.service';
|
|
10
11
|
export * from './cookie/cookie.service';
|
|
11
12
|
export * from './loading/loading.service';
|
|
13
|
+
export * from './locations/location.service';
|
|
12
14
|
export * from './filter/filter.service';
|
|
15
|
+
export * from './find-person/find-person.service';
|
|
16
|
+
export * from './session-storage/session-storage.service';
|
package/package.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmcts/rpx-xui-common-lib",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3-angular-upgrade-11",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"launchdarkly-js-client-sdk": "^2.15.2",
|
|
6
6
|
"ngx-pagination": "^3.2.1"
|
|
7
7
|
},
|
|
8
|
-
"publishConfig": {
|
|
9
|
-
"access": "public"
|
|
10
|
-
},
|
|
11
8
|
"license": "MIT",
|
|
12
9
|
"repository": "https://github.com/hmcts/rpx-xui-common-lib.git",
|
|
13
10
|
"description": "Angular web component for EXUI common library - xui-common-lib",
|