@hmcts/rpx-xui-common-lib 2.0.0-rc.4 → 2.0.1
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/esm2020/hmcts-rpx-xui-common-lib.mjs +5 -0
- package/esm2020/lib/components/accessibility/accessibility.component.mjs +486 -0
- package/esm2020/lib/components/checkbox-list/checkbox-list.component.mjs +231 -0
- package/esm2020/lib/components/contact-details/contact-details.component.mjs +107 -0
- package/esm2020/lib/components/cookie-banner/cookie-banner.component.mjs +144 -0
- package/esm2020/lib/components/due-date/due-date.component.mjs +140 -0
- package/esm2020/lib/components/exui-main-wrapper/exui-page-wrapper.component.mjs +79 -0
- package/esm2020/lib/components/find-location/find-location.component.mjs +219 -0
- package/esm2020/lib/components/find-person/find-person.component.mjs +234 -0
- package/esm2020/lib/components/find-service/find-service.component.mjs +187 -0
- package/esm2020/lib/components/find-task-name/find-task-name.component.mjs +200 -0
- package/esm2020/lib/components/generic-filter/generic-filter-utils.mjs +21 -0
- package/esm2020/lib/components/generic-filter/generic-filter.component.mjs +1198 -0
- package/esm2020/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.mjs +55 -0
- package/esm2020/lib/components/index.mjs +2 -0
- package/esm2020/lib/components/invite-user-form/invite-user-form.component.mjs +50 -0
- package/esm2020/lib/components/invite-user-permissions/invite-user-permission.component.mjs +54 -0
- package/esm2020/lib/components/loading-spinner/loading-spinner.component.mjs +32 -0
- package/esm2020/lib/components/pagination/pagination.component.mjs +93 -0
- package/esm2020/lib/components/public_api.mjs +39 -0
- package/esm2020/lib/components/search-judicials/search-judicials.component.mjs +184 -0
- package/esm2020/lib/components/search-location/search-location.component.mjs +205 -0
- package/esm2020/lib/components/search-service/search-service.component.mjs +81 -0
- package/esm2020/lib/components/search-venue/search-venue.component.mjs +188 -0
- package/esm2020/lib/components/selected-case/selected-case.component.mjs +380 -0
- package/esm2020/lib/components/selected-case-confirm/selected-case-confirm.component.mjs +130 -0
- package/esm2020/lib/components/selected-case-list/selected-case-list.component.mjs +98 -0
- package/esm2020/lib/components/service-message/service-message.component.mjs +50 -0
- package/esm2020/lib/components/service-messages/service-messages.component.mjs +75 -0
- package/esm2020/lib/components/share-case/share-case.component.mjs +410 -0
- package/esm2020/lib/components/share-case-confirm/share-case-confirm.component.mjs +85 -0
- package/esm2020/lib/components/tab/tab.component.mjs +39 -0
- package/esm2020/lib/components/tc-confirm/tc-confirm.component.mjs +65 -0
- package/esm2020/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.mjs +16 -0
- package/esm2020/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.mjs +16 -0
- package/esm2020/lib/components/terms-and-conditions/terms-and-conditions.component.mjs +59 -0
- package/esm2020/lib/components/user-details/user-details.component.mjs +265 -0
- package/esm2020/lib/components/user-list/user-list.component.mjs +99 -0
- package/esm2020/lib/components/user-select/user-select.component.mjs +92 -0
- package/esm2020/lib/components/write-address/write-address.component.mjs +345 -0
- package/esm2020/lib/components/write-address-inputs/write-address-inputs.component.mjs +165 -0
- package/esm2020/lib/directives/feature-toggle/feature-toggle.directive.mjs +41 -0
- package/esm2020/lib/directives/index.mjs +2 -0
- package/esm2020/lib/directives/let/let.directive.mjs +29 -0
- package/esm2020/lib/directives/public-api.mjs +3 -0
- package/esm2020/lib/exui-common-lib.module.mjs +313 -0
- package/esm2020/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.mjs +54 -0
- package/esm2020/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.mjs +136 -0
- package/esm2020/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.mjs +120 -0
- package/esm2020/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.mjs +45 -0
- package/esm2020/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.mjs +80 -0
- package/esm2020/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.mjs +78 -0
- package/esm2020/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.mjs +45 -0
- package/esm2020/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.mjs +70 -0
- package/esm2020/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.mjs +84 -0
- package/esm2020/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.mjs +47 -0
- package/esm2020/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.mjs +41 -0
- package/esm2020/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.mjs +79 -0
- package/esm2020/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.mjs +188 -0
- package/esm2020/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.mjs +56 -0
- package/esm2020/lib/gov-ui/components/hmcts-banner/hmcts-banner-info.interface.mjs +2 -0
- package/esm2020/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.mjs +112 -0
- package/esm2020/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.mjs +141 -0
- package/esm2020/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.mjs +33 -0
- package/esm2020/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.mjs +130 -0
- package/esm2020/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.mjs +204 -0
- package/esm2020/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.mjs +59 -0
- package/esm2020/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.mjs +57 -0
- package/esm2020/lib/gov-ui/components/index.mjs +2 -0
- package/esm2020/lib/gov-ui/components/public_api.mjs +22 -0
- package/esm2020/lib/gov-ui/directives/remove-host.directive.mjs +30 -0
- package/esm2020/lib/gov-ui/gov-ui.service.mjs +14 -0
- package/esm2020/lib/gov-ui/index.mjs +2 -0
- package/esm2020/lib/gov-ui/models/checkboxes-model.mjs +2 -0
- package/esm2020/lib/gov-ui/models/error-messages-model.mjs +2 -0
- package/esm2020/lib/gov-ui/models/gov-ui-config-model.mjs +2 -0
- package/esm2020/lib/gov-ui/models/index.mjs +2 -0
- package/esm2020/lib/gov-ui/models/isession-storage.interface.mjs +2 -0
- package/esm2020/lib/gov-ui/models/public_api.mjs +7 -0
- package/esm2020/lib/gov-ui/models/radio-buttons.model.mjs +2 -0
- package/esm2020/lib/gov-ui/public_api.mjs +8 -0
- package/esm2020/lib/gov-ui/util/helpers/html-templates.helper.mjs +22 -0
- package/esm2020/lib/gov-ui/util/session-storage/session-storage-utils.mjs +22 -0
- package/esm2020/lib/gov-ui/validators/checkboxes-be-checked.validator.mjs +18 -0
- package/esm2020/lib/gov-ui/validators/date.validator.mjs +15 -0
- package/esm2020/lib/gov-ui/validators/index.mjs +2 -0
- package/esm2020/lib/gov-ui/validators/public_api.mjs +7 -0
- package/esm2020/lib/gov-ui/validators/radio-group.validator.mjs +15 -0
- package/esm2020/lib/models/address-message.enum.mjs +11 -0
- package/esm2020/lib/models/address-option.model.mjs +21 -0
- package/esm2020/lib/models/address.model.mjs +4 -0
- package/esm2020/lib/models/case-share.model.mjs +7 -0
- package/esm2020/lib/models/contact-details.model.mjs +7 -0
- package/esm2020/lib/models/due-date.model.mjs +8 -0
- package/esm2020/lib/models/feature-user.mjs +5 -0
- package/esm2020/lib/models/filter.model.mjs +3 -0
- package/esm2020/lib/models/idle-config.model.mjs +2 -0
- package/esm2020/lib/models/index.mjs +19 -0
- package/esm2020/lib/models/location.model.mjs +7 -0
- package/esm2020/lib/models/pagination.model.mjs +2 -0
- package/esm2020/lib/models/person.model.mjs +19 -0
- package/esm2020/lib/models/public_api.mjs +6 -0
- package/esm2020/lib/models/search-options.model.mjs +2 -0
- package/esm2020/lib/models/task-name.model.mjs +2 -0
- package/esm2020/lib/models/tcDocument.model.mjs +2 -0
- package/esm2020/lib/models/timeout-notification.model.mjs +2 -0
- package/esm2020/lib/models/user-details.model.mjs +2 -0
- package/esm2020/lib/models/user.model.mjs +2 -0
- package/esm2020/lib/pipes/capitalize/capitalize.pipe.mjs +15 -0
- package/esm2020/lib/pipes/index.mjs +2 -0
- package/esm2020/lib/services/address/address-parser.mjs +76 -0
- package/esm2020/lib/services/address/address-type.enum.mjs +7 -0
- package/esm2020/lib/services/address/address.service.mjs +55 -0
- package/esm2020/lib/services/case-sharing-state/case-sharing-state.service.mjs +170 -0
- package/esm2020/lib/services/cookie/cookie.service.mjs +48 -0
- package/esm2020/lib/services/feature-toggle/feature-toggle.guard.mjs +34 -0
- package/esm2020/lib/services/feature-toggle/feature-toggle.service.mjs +29 -0
- package/esm2020/lib/services/feature-toggle/launch-darkly.service.mjs +61 -0
- package/esm2020/lib/services/filter/filter.service.mjs +95 -0
- package/esm2020/lib/services/find-person/find-person.service.mjs +114 -0
- package/esm2020/lib/services/google-analytics/google-analytics.service.mjs +68 -0
- package/esm2020/lib/services/google-tag-manager/google-tag-manager.service.mjs +71 -0
- package/esm2020/lib/services/index.mjs +2 -0
- package/esm2020/lib/services/loading/loading.service.mjs +41 -0
- package/esm2020/lib/services/locations/location.service.mjs +38 -0
- package/esm2020/lib/services/manage-session/manage-session.services.mjs +50 -0
- package/esm2020/lib/services/public-api.mjs +18 -0
- package/esm2020/lib/services/ref-data/index.mjs +4 -0
- package/esm2020/lib/services/ref-data/models/ref-data-htmcs-service.model.mjs +2 -0
- package/esm2020/lib/services/ref-data/models/ref-data-region.model.mjs +2 -0
- package/esm2020/lib/services/ref-data/ref-data-data-access/models/ref-data-locations-by-service-code-response.model.mjs +2 -0
- package/esm2020/lib/services/ref-data/ref-data-data-access/ref-data-data-access.service.mjs +33 -0
- package/esm2020/lib/services/ref-data/ref-data.service.mjs +34 -0
- package/esm2020/lib/services/role-guard/role.guard.mjs +38 -0
- package/esm2020/lib/services/role-guard/role.service.mjs +22 -0
- package/esm2020/lib/services/storage/session-storage/session-storage.service.mjs +43 -0
- package/esm2020/lib/services/task-name/task-name.service.mjs +35 -0
- package/esm2020/lib/services/timeout-notifications/timeout-notifications.service.mjs +103 -0
- package/esm2020/lib/window.mjs +4 -0
- package/esm2020/public-api.mjs +12 -0
- package/fesm2015/hmcts-rpx-xui-common-lib.mjs +10735 -0
- package/fesm2015/hmcts-rpx-xui-common-lib.mjs.map +1 -0
- package/fesm2020/hmcts-rpx-xui-common-lib.mjs +9774 -0
- package/fesm2020/hmcts-rpx-xui-common-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/accessibility/accessibility.component.d.ts +3 -0
- package/lib/components/checkbox-list/checkbox-list.component.d.ts +14 -7
- package/lib/components/contact-details/contact-details.component.d.ts +3 -0
- package/lib/components/cookie-banner/cookie-banner.component.d.ts +25 -0
- package/lib/components/due-date/due-date.component.d.ts +12 -6
- package/lib/components/exui-main-wrapper/exui-page-wrapper.component.d.ts +3 -0
- package/lib/components/find-location/find-location.component.d.ts +40 -0
- package/lib/components/find-person/find-person.component.d.ts +43 -0
- package/lib/components/find-service/find-service.component.d.ts +29 -0
- package/lib/components/find-task-name/find-task-name.component.d.ts +44 -0
- package/lib/components/generic-filter/generic-filter-utils.d.ts +5 -0
- package/lib/components/generic-filter/generic-filter.component.d.ts +57 -0
- package/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.d.ts +4 -1
- package/lib/components/invite-user-form/invite-user-form.component.d.ts +5 -2
- package/lib/components/invite-user-permissions/invite-user-permission.component.d.ts +3 -0
- package/lib/components/loading-spinner/loading-spinner.component.d.ts +8 -7
- package/lib/components/pagination/pagination.component.d.ts +13 -0
- package/lib/components/public_api.d.ts +18 -4
- package/lib/components/search-judicials/search-judicials.component.d.ts +40 -0
- package/lib/components/search-location/search-location.component.d.ts +45 -0
- package/lib/components/search-service/search-service.component.d.ts +18 -0
- package/lib/components/search-venue/search-venue.component.d.ts +40 -0
- package/lib/components/selected-case/selected-case.component.d.ts +4 -1
- package/lib/components/selected-case-confirm/selected-case-confirm.component.d.ts +3 -0
- package/lib/components/selected-case-list/selected-case-list.component.d.ts +4 -0
- package/lib/components/service-message/service-message.component.d.ts +3 -0
- package/lib/components/service-messages/service-messages.component.d.ts +3 -0
- package/lib/components/share-case/share-case.component.d.ts +40 -2
- package/lib/components/share-case-confirm/share-case-confirm.component.d.ts +3 -0
- package/lib/components/tab/tab.component.d.ts +3 -0
- package/lib/components/tc-confirm/tc-confirm.component.d.ts +3 -0
- package/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.d.ts +3 -0
- package/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.d.ts +3 -0
- package/lib/components/terms-and-conditions/terms-and-conditions.component.d.ts +3 -0
- package/lib/components/user-details/user-details.component.d.ts +3 -0
- package/lib/components/user-list/user-list.component.d.ts +12 -2
- package/lib/components/user-select/user-select.component.d.ts +5 -2
- package/lib/components/write-address/write-address.component.d.ts +45 -0
- package/lib/components/write-address-inputs/write-address-inputs.component.d.ts +16 -0
- package/lib/directives/feature-toggle/feature-toggle.directive.d.ts +4 -1
- package/lib/directives/let/let.directive.d.ts +4 -1
- package/lib/exui-common-lib.module.d.ts +90 -11
- package/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.d.ts +17 -5
- package/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.d.ts +11 -0
- package/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.d.ts +4 -2
- package/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.d.ts +4 -0
- package/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.d.ts +5 -2
- package/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.d.ts +3 -0
- package/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.d.ts +3 -0
- package/lib/gov-ui/components/hmcts-banner/hmcts-banner-info.interface.d.ts +7 -0
- package/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.d.ts +7 -2
- package/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.d.ts +4 -1
- package/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.d.ts +4 -1
- package/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.d.ts +6 -3
- package/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.d.ts +13 -0
- package/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.d.ts +4 -1
- package/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.d.ts +5 -0
- package/lib/gov-ui/components/public_api.d.ts +20 -19
- package/lib/gov-ui/directives/remove-host.directive.d.ts +3 -0
- package/lib/gov-ui/gov-ui.service.d.ts +3 -0
- package/lib/gov-ui/models/checkboxes-model.d.ts +4 -7
- package/lib/gov-ui/models/gov-ui-config-model.d.ts +2 -0
- package/lib/gov-ui/models/isession-storage.interface.d.ts +4 -0
- package/lib/gov-ui/models/public_api.d.ts +0 -1
- package/lib/gov-ui/models/radio-buttons.model.d.ts +9 -0
- package/lib/gov-ui/public_api.d.ts +1 -2
- package/lib/gov-ui/util/session-storage/session-storage-utils.d.ts +6 -0
- package/lib/models/address-message.enum.d.ts +9 -0
- package/lib/models/address-option.model.d.ts +9 -0
- package/lib/models/address.model.d.ts +9 -0
- package/lib/models/case-share.model.d.ts +5 -0
- package/lib/models/contact-details.model.d.ts +5 -1
- package/lib/models/due-date.model.d.ts +5 -0
- package/lib/models/feature-user.d.ts +1 -1
- package/lib/models/filter.model.d.ts +101 -0
- package/lib/models/index.d.ts +17 -0
- package/lib/models/location.model.d.ts +60 -0
- package/lib/models/pagination.model.d.ts +5 -0
- package/lib/models/person.model.d.ts +46 -0
- package/lib/models/public_api.d.ts +2 -7
- package/lib/models/search-options.model.d.ts +8 -0
- package/lib/models/task-name.model.d.ts +4 -0
- package/lib/pipes/capitalize/capitalize.pipe.d.ts +7 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/services/address/address-parser.d.ts +17 -0
- package/lib/services/address/address-type.enum.d.ts +5 -0
- package/lib/services/address/address.service.d.ts +15 -0
- package/lib/services/case-sharing-state/case-sharing-state.service.d.ts +5 -2
- package/lib/services/cookie/cookie.service.d.ts +12 -0
- package/lib/services/feature-toggle/feature-toggle.guard.d.ts +4 -0
- package/lib/services/feature-toggle/feature-toggle.service.d.ts +4 -1
- package/lib/services/feature-toggle/launch-darkly.service.d.ts +7 -5
- package/lib/services/filter/filter.service.d.ts +21 -0
- package/lib/services/find-person/find-person.service.d.ts +20 -0
- package/lib/services/google-analytics/google-analytics.service.d.ts +3 -0
- package/lib/services/google-tag-manager/google-tag-manager.service.d.ts +3 -0
- package/lib/services/loading/loading.service.d.ts +5 -2
- package/lib/services/locations/location.service.d.ts +26 -0
- package/lib/services/manage-session/manage-session.services.d.ts +3 -0
- package/lib/services/public-api.d.ts +6 -3
- package/lib/services/ref-data/index.d.ts +3 -0
- package/lib/services/ref-data/models/ref-data-htmcs-service.model.d.ts +13 -0
- package/lib/services/ref-data/models/ref-data-region.model.d.ts +4 -0
- package/lib/services/ref-data/ref-data-data-access/models/ref-data-locations-by-service-code-response.model.d.ts +8 -0
- package/lib/services/ref-data/ref-data-data-access/ref-data-data-access.service.d.ts +18 -0
- package/lib/services/ref-data/ref-data.service.d.ts +17 -0
- package/lib/services/role-guard/role.guard.d.ts +5 -1
- package/lib/services/role-guard/role.service.d.ts +9 -4
- package/lib/services/storage/session-storage/session-storage.service.d.ts +23 -0
- package/lib/services/task-name/task-name.service.d.ts +17 -0
- package/lib/services/timeout-notifications/timeout-notifications.service.d.ts +8 -2
- package/lib/window.d.ts +2 -2
- package/package.json +28 -20
- package/public-api.d.ts +3 -2
- package/bundles/hmcts-rpx-xui-common-lib.umd.js +0 -4890
- package/bundles/hmcts-rpx-xui-common-lib.umd.js.map +0 -1
- package/bundles/hmcts-rpx-xui-common-lib.umd.min.js +0 -2
- package/bundles/hmcts-rpx-xui-common-lib.umd.min.js.map +0 -1
- package/esm2015/hmcts-rpx-xui-common-lib.js +0 -59
- package/esm2015/lib/components/accessibility/accessibility.component.js +0 -20
- package/esm2015/lib/components/checkbox-list/checkbox-list.component.js +0 -275
- package/esm2015/lib/components/contact-details/contact-details.component.js +0 -27
- package/esm2015/lib/components/due-date/due-date.component.js +0 -211
- package/esm2015/lib/components/exui-main-wrapper/exui-page-wrapper.component.js +0 -42
- package/esm2015/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.js +0 -42
- package/esm2015/lib/components/index.js +0 -7
- package/esm2015/lib/components/invite-user-form/invite-user-form.component.js +0 -45
- package/esm2015/lib/components/invite-user-permissions/invite-user-permission.component.js +0 -44
- package/esm2015/lib/components/loading-spinner/loading-spinner.component.js +0 -56
- package/esm2015/lib/components/public_api.js +0 -30
- package/esm2015/lib/components/selected-case/selected-case.component.js +0 -316
- package/esm2015/lib/components/selected-case-confirm/selected-case-confirm.component.js +0 -81
- package/esm2015/lib/components/selected-case-list/selected-case-list.component.js +0 -94
- package/esm2015/lib/components/service-message/service-message.component.js +0 -40
- package/esm2015/lib/components/service-messages/service-messages.component.js +0 -106
- package/esm2015/lib/components/share-case/share-case.component.js +0 -172
- package/esm2015/lib/components/share-case-confirm/share-case-confirm.component.js +0 -67
- package/esm2015/lib/components/tab/tab.component.js +0 -45
- package/esm2015/lib/components/tc-confirm/tc-confirm.component.js +0 -37
- package/esm2015/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.js +0 -19
- package/esm2015/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.js +0 -19
- package/esm2015/lib/components/terms-and-conditions/terms-and-conditions.component.js +0 -26
- package/esm2015/lib/components/user-details/user-details.component.js +0 -78
- package/esm2015/lib/components/user-list/user-list.component.js +0 -37
- package/esm2015/lib/components/user-select/user-select.component.js +0 -105
- package/esm2015/lib/directives/feature-toggle/feature-toggle.directive.js +0 -95
- package/esm2015/lib/directives/index.js +0 -7
- package/esm2015/lib/directives/let/let.directive.js +0 -68
- package/esm2015/lib/directives/public-api.js +0 -8
- package/esm2015/lib/exui-common-lib.module.js +0 -157
- package/esm2015/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.js +0 -51
- package/esm2015/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.js +0 -32
- package/esm2015/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.js +0 -42
- package/esm2015/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.js +0 -34
- package/esm2015/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.js +0 -43
- package/esm2015/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.js +0 -57
- package/esm2015/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.js +0 -37
- package/esm2015/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.js +0 -54
- package/esm2015/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.js +0 -31
- package/esm2015/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.js +0 -51
- package/esm2015/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.js +0 -32
- package/esm2015/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.js +0 -46
- package/esm2015/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.js +0 -69
- package/esm2015/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.js +0 -43
- package/esm2015/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.js +0 -35
- package/esm2015/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.js +0 -90
- package/esm2015/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.js +0 -33
- package/esm2015/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.js +0 -75
- package/esm2015/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.js +0 -43
- package/esm2015/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.js +0 -37
- package/esm2015/lib/gov-ui/components/index.js +0 -7
- package/esm2015/lib/gov-ui/components/public_api.js +0 -26
- package/esm2015/lib/gov-ui/directives/index.js +0 -7
- package/esm2015/lib/gov-ui/directives/public_api.js +0 -7
- package/esm2015/lib/gov-ui/directives/remove-host.directive.js +0 -50
- package/esm2015/lib/gov-ui/gov-ui.service.js +0 -19
- package/esm2015/lib/gov-ui/index.js +0 -7
- package/esm2015/lib/gov-ui/models/banner-data-model.js +0 -16
- package/esm2015/lib/gov-ui/models/checkboxes-model.js +0 -22
- package/esm2015/lib/gov-ui/models/error-messages-model.js +0 -16
- package/esm2015/lib/gov-ui/models/gov-ui-config-model.js +0 -36
- package/esm2015/lib/gov-ui/models/index.js +0 -7
- package/esm2015/lib/gov-ui/models/public_api.js +0 -13
- package/esm2015/lib/gov-ui/public_api.js +0 -14
- package/esm2015/lib/gov-ui/util/helpers/html-templates.helper.js +0 -32
- package/esm2015/lib/gov-ui/validators/checkboxes-be-checked.validator.js +0 -37
- package/esm2015/lib/gov-ui/validators/date.validator.js +0 -32
- package/esm2015/lib/gov-ui/validators/index.js +0 -7
- package/esm2015/lib/gov-ui/validators/public_api.js +0 -12
- package/esm2015/lib/gov-ui/validators/radio-group.validator.js +0 -27
- package/esm2015/lib/models/badge-colour.enum.js +0 -14
- package/esm2015/lib/models/case-share.model.js +0 -26
- package/esm2015/lib/models/contact-details.model.js +0 -24
- package/esm2015/lib/models/due-date.model.js +0 -8
- package/esm2015/lib/models/feature-user.js +0 -20
- package/esm2015/lib/models/idle-config.model.js +0 -20
- package/esm2015/lib/models/index.js +0 -7
- package/esm2015/lib/models/public_api.js +0 -16
- package/esm2015/lib/models/tcDocument.model.js +0 -18
- package/esm2015/lib/models/timeout-notification.model.js +0 -18
- package/esm2015/lib/models/user-details.model.js +0 -22
- package/esm2015/lib/models/user.model.js +0 -25
- package/esm2015/lib/services/case-sharing-state/case-sharing-state.service.js +0 -218
- package/esm2015/lib/services/feature-toggle/feature-toggle.guard.js +0 -68
- package/esm2015/lib/services/feature-toggle/feature-toggle.service.js +0 -52
- package/esm2015/lib/services/feature-toggle/launch-darkly.service.js +0 -134
- package/esm2015/lib/services/google-analytics/google-analytics.service.js +0 -123
- package/esm2015/lib/services/google-tag-manager/google-tag-manager.service.js +0 -125
- package/esm2015/lib/services/index.js +0 -7
- package/esm2015/lib/services/loading/loading.service.js +0 -79
- package/esm2015/lib/services/manage-session/manage-session.services.js +0 -105
- package/esm2015/lib/services/public-api.js +0 -20
- package/esm2015/lib/services/role-guard/role.guard.js +0 -78
- package/esm2015/lib/services/role-guard/role.service.js +0 -39
- package/esm2015/lib/services/timeout-notifications/timeout-notifications.service.js +0 -158
- package/esm2015/lib/window.js +0 -13
- package/esm2015/public-api.js +0 -16
- package/esm5/hmcts-rpx-xui-common-lib.js +0 -59
- package/esm5/lib/components/accessibility/accessibility.component.js +0 -22
- package/esm5/lib/components/checkbox-list/checkbox-list.component.js +0 -391
- package/esm5/lib/components/contact-details/contact-details.component.js +0 -29
- package/esm5/lib/components/due-date/due-date.component.js +0 -255
- package/esm5/lib/components/exui-main-wrapper/exui-page-wrapper.component.js +0 -45
- package/esm5/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.js +0 -47
- package/esm5/lib/components/index.js +0 -7
- package/esm5/lib/components/invite-user-form/invite-user-form.component.js +0 -54
- package/esm5/lib/components/invite-user-permissions/invite-user-permission.component.js +0 -46
- package/esm5/lib/components/loading-spinner/loading-spinner.component.js +0 -61
- package/esm5/lib/components/public_api.js +0 -30
- package/esm5/lib/components/selected-case/selected-case.component.js +0 -430
- package/esm5/lib/components/selected-case-confirm/selected-case-confirm.component.js +0 -91
- package/esm5/lib/components/selected-case-list/selected-case-list.component.js +0 -109
- package/esm5/lib/components/service-message/service-message.component.js +0 -46
- package/esm5/lib/components/service-messages/service-messages.component.js +0 -122
- package/esm5/lib/components/share-case/share-case.component.js +0 -223
- package/esm5/lib/components/share-case-confirm/share-case-confirm.component.js +0 -70
- package/esm5/lib/components/tab/tab.component.js +0 -51
- package/esm5/lib/components/tc-confirm/tc-confirm.component.js +0 -42
- package/esm5/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.js +0 -22
- package/esm5/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.js +0 -22
- package/esm5/lib/components/terms-and-conditions/terms-and-conditions.component.js +0 -29
- package/esm5/lib/components/user-details/user-details.component.js +0 -92
- package/esm5/lib/components/user-list/user-list.component.js +0 -43
- package/esm5/lib/components/user-select/user-select.component.js +0 -131
- package/esm5/lib/directives/feature-toggle/feature-toggle.directive.js +0 -104
- package/esm5/lib/directives/index.js +0 -7
- package/esm5/lib/directives/let/let.directive.js +0 -78
- package/esm5/lib/directives/public-api.js +0 -8
- package/esm5/lib/exui-common-lib.module.js +0 -156
- package/esm5/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.js +0 -56
- package/esm5/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.js +0 -36
- package/esm5/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.js +0 -48
- package/esm5/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.js +0 -37
- package/esm5/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.js +0 -49
- package/esm5/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.js +0 -65
- package/esm5/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.js +0 -40
- package/esm5/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.js +0 -66
- package/esm5/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.js +0 -34
- package/esm5/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.js +0 -67
- package/esm5/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.js +0 -36
- package/esm5/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.js +0 -52
- package/esm5/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.js +0 -77
- package/esm5/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.js +0 -50
- package/esm5/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.js +0 -38
- package/esm5/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.js +0 -108
- package/esm5/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.js +0 -40
- package/esm5/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.js +0 -87
- package/esm5/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.js +0 -49
- package/esm5/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.js +0 -41
- package/esm5/lib/gov-ui/components/index.js +0 -7
- package/esm5/lib/gov-ui/components/public_api.js +0 -26
- package/esm5/lib/gov-ui/directives/index.js +0 -7
- package/esm5/lib/gov-ui/directives/public_api.js +0 -7
- package/esm5/lib/gov-ui/directives/remove-host.directive.js +0 -52
- package/esm5/lib/gov-ui/gov-ui.service.js +0 -22
- package/esm5/lib/gov-ui/index.js +0 -7
- package/esm5/lib/gov-ui/models/banner-data-model.js +0 -16
- package/esm5/lib/gov-ui/models/checkboxes-model.js +0 -22
- package/esm5/lib/gov-ui/models/error-messages-model.js +0 -16
- package/esm5/lib/gov-ui/models/gov-ui-config-model.js +0 -36
- package/esm5/lib/gov-ui/models/index.js +0 -7
- package/esm5/lib/gov-ui/models/public_api.js +0 -13
- package/esm5/lib/gov-ui/public_api.js +0 -14
- package/esm5/lib/gov-ui/util/helpers/html-templates.helper.js +0 -57
- package/esm5/lib/gov-ui/validators/checkboxes-be-checked.validator.js +0 -38
- package/esm5/lib/gov-ui/validators/date.validator.js +0 -32
- package/esm5/lib/gov-ui/validators/index.js +0 -7
- package/esm5/lib/gov-ui/validators/public_api.js +0 -12
- package/esm5/lib/gov-ui/validators/radio-group.validator.js +0 -27
- package/esm5/lib/models/badge-colour.enum.js +0 -14
- package/esm5/lib/models/case-share.model.js +0 -26
- package/esm5/lib/models/contact-details.model.js +0 -24
- package/esm5/lib/models/due-date.model.js +0 -8
- package/esm5/lib/models/feature-user.js +0 -28
- package/esm5/lib/models/idle-config.model.js +0 -20
- package/esm5/lib/models/index.js +0 -7
- package/esm5/lib/models/public_api.js +0 -16
- package/esm5/lib/models/tcDocument.model.js +0 -18
- package/esm5/lib/models/timeout-notification.model.js +0 -18
- package/esm5/lib/models/user-details.model.js +0 -22
- package/esm5/lib/models/user.model.js +0 -25
- package/esm5/lib/services/case-sharing-state/case-sharing-state.service.js +0 -289
- package/esm5/lib/services/feature-toggle/feature-toggle.guard.js +0 -83
- package/esm5/lib/services/feature-toggle/feature-toggle.service.js +0 -88
- package/esm5/lib/services/feature-toggle/launch-darkly.service.js +0 -177
- package/esm5/lib/services/google-analytics/google-analytics.service.js +0 -128
- package/esm5/lib/services/google-tag-manager/google-tag-manager.service.js +0 -135
- package/esm5/lib/services/index.js +0 -7
- package/esm5/lib/services/loading/loading.service.js +0 -100
- package/esm5/lib/services/manage-session/manage-session.services.js +0 -111
- package/esm5/lib/services/public-api.js +0 -20
- package/esm5/lib/services/role-guard/role.guard.js +0 -81
- package/esm5/lib/services/role-guard/role.service.js +0 -45
- package/esm5/lib/services/timeout-notifications/timeout-notifications.service.js +0 -190
- package/esm5/lib/window.js +0 -13
- package/esm5/public-api.js +0 -16
- package/fesm2015/hmcts-rpx-xui-common-lib.js +0 -3922
- package/fesm2015/hmcts-rpx-xui-common-lib.js.map +0 -1
- package/fesm5/hmcts-rpx-xui-common-lib.js +0 -4758
- package/fesm5/hmcts-rpx-xui-common-lib.js.map +0 -1
- package/hmcts-rpx-xui-common-lib.d.ts +0 -53
- package/hmcts-rpx-xui-common-lib.metadata.json +0 -1
- package/lib/gov-ui/directives/index.d.ts +0 -1
- package/lib/gov-ui/directives/public_api.d.ts +0 -1
- package/lib/gov-ui/models/banner-data-model.d.ts +0 -4
- package/lib/models/badge-colour.enum.d.ts +0 -6
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaG1jdHMtcnB4LXh1aS1jb21tb24tbGliLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvZXh1aS1jb21tb24tbGliL3NyYy9obWN0cy1ycHgteHVpLWNvbW1vbi1saWIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,486 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "rpx-xui-translation";
|
|
4
|
+
export class AccessibilityComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
AccessibilityComponent.ɵfac = function AccessibilityComponent_Factory(t) { return new (t || AccessibilityComponent)(); };
|
|
9
|
+
AccessibilityComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AccessibilityComponent, selectors: [["xuilib-accessibility"]], decls: 250, vars: 231, consts: [["id", "Accessibility-statement-for-Expert-UI", 1, "govuk-heading-xl"], [1, "govuk-list"], ["href", "accessibility#immigration"], ["href", "accessibility#family"], [1, "govuk-body"], [1, "govuk-list", "govuk-list--bullet"], ["rel", "noopener noreferrer", "target", "_blank", "href", "https://mcmw.abilitynet.org.uk/"], ["id", "How-accessible-this-website-is", 1, "govuk-heading-l"], ["id", "What-to-do-if-you-cannot-access-parts-of-this-website", 1, "govuk-heading-l"], ["href", "mailto:HMCTSforms@justice.gov.uk"], ["id", "Reporting-accessibility-problems-with-this-website", 1, "govuk-heading-l"], ["href", "mailto:customer.service@justice.gov.uk"], ["id", "Enforcement-procedure ", 1, "govuk-heading-l"], ["rel", "noopener noreferrer", "target", "_blank", "href", "https://www.equalityadvisoryservice.com/"], ["id", "Contacting-us-by-phone-or-visiting-us-in-person", 1, "govuk-heading-l"], ["target", "_blank", "href", "https://courttribunalfinder.service.gov.uk/search/"], ["id", "Technical-information-about-this-website\u2019s-accessibility", 1, "govuk-heading-l"], ["rel", "noopener noreferrer", "target", "_blank", "href", "https://www.w3.org/TR/WCAG21/"], ["id", "Non-accessible-content", 1, "govuk-heading-l"], ["id", "Non-compliance-with-the-accessibility-regulations", 1, "govuk-heading-l"], ["id", "immigration", 1, "govuk-heading-m"], ["id", "family", 1, "govuk-heading-m"], [1, "govuk-list", "govuk-list--alpha"], ["id", "Disproportionate burden ", 1, "govuk-heading-m"], ["id", "Content-that\u2019s-not-within-the-scope-of-the-accessibility-regulations", 1, "govuk-heading-m"], ["id", "what-to-improve-accessibility", 1, "govuk-heading-l"], ["id", "preparation-of-this-accessibility-statement", 1, "govuk-heading-l"], ["target", "_blank", "href", "https://digitalaccessibilitycentre.org/"], [1, "govuk-heading-m"]], template: function AccessibilityComponent_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementStart(0, "h1", 0);
|
|
11
|
+
i0.ɵɵtext(1);
|
|
12
|
+
i0.ɵɵpipe(2, "rpxTranslate");
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
i0.ɵɵelementStart(3, "ul", 1)(4, "li")(5, "a", 2);
|
|
15
|
+
i0.ɵɵtext(6);
|
|
16
|
+
i0.ɵɵpipe(7, "rpxTranslate");
|
|
17
|
+
i0.ɵɵelementEnd()();
|
|
18
|
+
i0.ɵɵelementStart(8, "li")(9, "a", 3);
|
|
19
|
+
i0.ɵɵtext(10);
|
|
20
|
+
i0.ɵɵpipe(11, "rpxTranslate");
|
|
21
|
+
i0.ɵɵelementEnd()()();
|
|
22
|
+
i0.ɵɵelementStart(12, "p", 4);
|
|
23
|
+
i0.ɵɵtext(13);
|
|
24
|
+
i0.ɵɵpipe(14, "rpxTranslate");
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
i0.ɵɵelementStart(15, "ul", 5)(16, "li");
|
|
27
|
+
i0.ɵɵtext(17);
|
|
28
|
+
i0.ɵɵpipe(18, "rpxTranslate");
|
|
29
|
+
i0.ɵɵelementEnd();
|
|
30
|
+
i0.ɵɵelementStart(19, "li");
|
|
31
|
+
i0.ɵɵtext(20);
|
|
32
|
+
i0.ɵɵpipe(21, "rpxTranslate");
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
i0.ɵɵelementStart(22, "li");
|
|
35
|
+
i0.ɵɵtext(23);
|
|
36
|
+
i0.ɵɵpipe(24, "rpxTranslate");
|
|
37
|
+
i0.ɵɵelementEnd();
|
|
38
|
+
i0.ɵɵelementStart(25, "li");
|
|
39
|
+
i0.ɵɵtext(26);
|
|
40
|
+
i0.ɵɵpipe(27, "rpxTranslate");
|
|
41
|
+
i0.ɵɵelementEnd();
|
|
42
|
+
i0.ɵɵelementStart(28, "li");
|
|
43
|
+
i0.ɵɵtext(29);
|
|
44
|
+
i0.ɵɵpipe(30, "rpxTranslate");
|
|
45
|
+
i0.ɵɵelementEnd()();
|
|
46
|
+
i0.ɵɵelementStart(31, "p", 4);
|
|
47
|
+
i0.ɵɵtext(32);
|
|
48
|
+
i0.ɵɵpipe(33, "rpxTranslate");
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
i0.ɵɵelementStart(34, "p", 4)(35, "a", 6);
|
|
51
|
+
i0.ɵɵtext(36);
|
|
52
|
+
i0.ɵɵpipe(37, "rpxTranslate");
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
i0.ɵɵtext(38);
|
|
55
|
+
i0.ɵɵpipe(39, "rpxTranslate");
|
|
56
|
+
i0.ɵɵelementEnd();
|
|
57
|
+
i0.ɵɵelementStart(40, "h2", 7);
|
|
58
|
+
i0.ɵɵtext(41);
|
|
59
|
+
i0.ɵɵpipe(42, "rpxTranslate");
|
|
60
|
+
i0.ɵɵelementEnd();
|
|
61
|
+
i0.ɵɵelementStart(43, "p", 4);
|
|
62
|
+
i0.ɵɵtext(44);
|
|
63
|
+
i0.ɵɵpipe(45, "rpxTranslate");
|
|
64
|
+
i0.ɵɵelementEnd();
|
|
65
|
+
i0.ɵɵelementStart(46, "ul", 5)(47, "li");
|
|
66
|
+
i0.ɵɵtext(48);
|
|
67
|
+
i0.ɵɵpipe(49, "rpxTranslate");
|
|
68
|
+
i0.ɵɵelementEnd();
|
|
69
|
+
i0.ɵɵelementStart(50, "li");
|
|
70
|
+
i0.ɵɵtext(51);
|
|
71
|
+
i0.ɵɵpipe(52, "rpxTranslate");
|
|
72
|
+
i0.ɵɵelementEnd();
|
|
73
|
+
i0.ɵɵelementStart(53, "li");
|
|
74
|
+
i0.ɵɵtext(54);
|
|
75
|
+
i0.ɵɵpipe(55, "rpxTranslate");
|
|
76
|
+
i0.ɵɵelementEnd();
|
|
77
|
+
i0.ɵɵelementStart(56, "li");
|
|
78
|
+
i0.ɵɵtext(57);
|
|
79
|
+
i0.ɵɵpipe(58, "rpxTranslate");
|
|
80
|
+
i0.ɵɵelementEnd()();
|
|
81
|
+
i0.ɵɵelementStart(59, "h2", 8);
|
|
82
|
+
i0.ɵɵtext(60);
|
|
83
|
+
i0.ɵɵpipe(61, "rpxTranslate");
|
|
84
|
+
i0.ɵɵelementEnd();
|
|
85
|
+
i0.ɵɵelementStart(62, "p", 4);
|
|
86
|
+
i0.ɵɵtext(63);
|
|
87
|
+
i0.ɵɵpipe(64, "rpxTranslate");
|
|
88
|
+
i0.ɵɵelementEnd();
|
|
89
|
+
i0.ɵɵelementStart(65, "ul", 5)(66, "li");
|
|
90
|
+
i0.ɵɵtext(67);
|
|
91
|
+
i0.ɵɵpipe(68, "rpxTranslate");
|
|
92
|
+
i0.ɵɵelementStart(69, "a", 9);
|
|
93
|
+
i0.ɵɵtext(70, " HMCTSforms@justice.gov.uk");
|
|
94
|
+
i0.ɵɵelementEnd()();
|
|
95
|
+
i0.ɵɵelementStart(71, "li");
|
|
96
|
+
i0.ɵɵtext(72);
|
|
97
|
+
i0.ɵɵpipe(73, "rpxTranslate");
|
|
98
|
+
i0.ɵɵelementEnd();
|
|
99
|
+
i0.ɵɵelementStart(74, "li");
|
|
100
|
+
i0.ɵɵtext(75);
|
|
101
|
+
i0.ɵɵpipe(76, "rpxTranslate");
|
|
102
|
+
i0.ɵɵelementEnd()();
|
|
103
|
+
i0.ɵɵelementStart(77, "p", 4);
|
|
104
|
+
i0.ɵɵtext(78);
|
|
105
|
+
i0.ɵɵpipe(79, "rpxTranslate");
|
|
106
|
+
i0.ɵɵelementEnd();
|
|
107
|
+
i0.ɵɵelementStart(80, "h2", 10);
|
|
108
|
+
i0.ɵɵtext(81);
|
|
109
|
+
i0.ɵɵpipe(82, "rpxTranslate");
|
|
110
|
+
i0.ɵɵelementEnd();
|
|
111
|
+
i0.ɵɵelementStart(83, "p", 4);
|
|
112
|
+
i0.ɵɵtext(84);
|
|
113
|
+
i0.ɵɵpipe(85, "rpxTranslate");
|
|
114
|
+
i0.ɵɵelementEnd();
|
|
115
|
+
i0.ɵɵelementStart(86, "ul", 5)(87, "li");
|
|
116
|
+
i0.ɵɵtext(88);
|
|
117
|
+
i0.ɵɵpipe(89, "rpxTranslate");
|
|
118
|
+
i0.ɵɵelementStart(90, "a", 11);
|
|
119
|
+
i0.ɵɵtext(91, " customer.service@justice.gov.uk");
|
|
120
|
+
i0.ɵɵelementEnd()();
|
|
121
|
+
i0.ɵɵelementStart(92, "li");
|
|
122
|
+
i0.ɵɵtext(93);
|
|
123
|
+
i0.ɵɵpipe(94, "rpxTranslate");
|
|
124
|
+
i0.ɵɵelementEnd()();
|
|
125
|
+
i0.ɵɵelementStart(95, "h2", 12);
|
|
126
|
+
i0.ɵɵtext(96);
|
|
127
|
+
i0.ɵɵpipe(97, "rpxTranslate");
|
|
128
|
+
i0.ɵɵelementEnd();
|
|
129
|
+
i0.ɵɵelementStart(98, "p", 4);
|
|
130
|
+
i0.ɵɵtext(99);
|
|
131
|
+
i0.ɵɵpipe(100, "rpxTranslate");
|
|
132
|
+
i0.ɵɵelementEnd();
|
|
133
|
+
i0.ɵɵelementStart(101, "p", 4);
|
|
134
|
+
i0.ɵɵtext(102);
|
|
135
|
+
i0.ɵɵpipe(103, "rpxTranslate");
|
|
136
|
+
i0.ɵɵelementStart(104, "a", 13);
|
|
137
|
+
i0.ɵɵtext(105);
|
|
138
|
+
i0.ɵɵpipe(106, "rpxTranslate");
|
|
139
|
+
i0.ɵɵelementEnd()();
|
|
140
|
+
i0.ɵɵelementStart(107, "h1", 14);
|
|
141
|
+
i0.ɵɵtext(108);
|
|
142
|
+
i0.ɵɵpipe(109, "rpxTranslate");
|
|
143
|
+
i0.ɵɵelementEnd();
|
|
144
|
+
i0.ɵɵelementStart(110, "p", 4);
|
|
145
|
+
i0.ɵɵtext(111);
|
|
146
|
+
i0.ɵɵpipe(112, "rpxTranslate");
|
|
147
|
+
i0.ɵɵelementEnd();
|
|
148
|
+
i0.ɵɵelementStart(113, "p", 4);
|
|
149
|
+
i0.ɵɵtext(114);
|
|
150
|
+
i0.ɵɵpipe(115, "rpxTranslate");
|
|
151
|
+
i0.ɵɵelementEnd();
|
|
152
|
+
i0.ɵɵelementStart(116, "p", 4);
|
|
153
|
+
i0.ɵɵtext(117);
|
|
154
|
+
i0.ɵɵpipe(118, "rpxTranslate");
|
|
155
|
+
i0.ɵɵelementStart(119, "a", 15);
|
|
156
|
+
i0.ɵɵtext(120);
|
|
157
|
+
i0.ɵɵpipe(121, "rpxTranslate");
|
|
158
|
+
i0.ɵɵelementEnd();
|
|
159
|
+
i0.ɵɵtext(122, ". ");
|
|
160
|
+
i0.ɵɵelementEnd();
|
|
161
|
+
i0.ɵɵelementStart(123, "p", 4);
|
|
162
|
+
i0.ɵɵtext(124);
|
|
163
|
+
i0.ɵɵpipe(125, "rpxTranslate");
|
|
164
|
+
i0.ɵɵelementEnd();
|
|
165
|
+
i0.ɵɵelementStart(126, "h1", 16);
|
|
166
|
+
i0.ɵɵtext(127);
|
|
167
|
+
i0.ɵɵpipe(128, "rpxTranslate");
|
|
168
|
+
i0.ɵɵelementEnd();
|
|
169
|
+
i0.ɵɵelementStart(129, "p", 4);
|
|
170
|
+
i0.ɵɵtext(130);
|
|
171
|
+
i0.ɵɵpipe(131, "rpxTranslate");
|
|
172
|
+
i0.ɵɵelementEnd();
|
|
173
|
+
i0.ɵɵelementStart(132, "p", 4);
|
|
174
|
+
i0.ɵɵtext(133);
|
|
175
|
+
i0.ɵɵpipe(134, "rpxTranslate");
|
|
176
|
+
i0.ɵɵelementStart(135, "a", 17);
|
|
177
|
+
i0.ɵɵtext(136);
|
|
178
|
+
i0.ɵɵpipe(137, "rpxTranslate");
|
|
179
|
+
i0.ɵɵelementEnd();
|
|
180
|
+
i0.ɵɵtext(138);
|
|
181
|
+
i0.ɵɵpipe(139, "rpxTranslate");
|
|
182
|
+
i0.ɵɵelementEnd();
|
|
183
|
+
i0.ɵɵelementStart(140, "h1", 18);
|
|
184
|
+
i0.ɵɵtext(141);
|
|
185
|
+
i0.ɵɵpipe(142, "rpxTranslate");
|
|
186
|
+
i0.ɵɵelementEnd();
|
|
187
|
+
i0.ɵɵelementStart(143, "p", 4);
|
|
188
|
+
i0.ɵɵtext(144);
|
|
189
|
+
i0.ɵɵpipe(145, "rpxTranslate");
|
|
190
|
+
i0.ɵɵelementEnd();
|
|
191
|
+
i0.ɵɵelementStart(146, "h2", 19);
|
|
192
|
+
i0.ɵɵtext(147);
|
|
193
|
+
i0.ɵɵpipe(148, "rpxTranslate");
|
|
194
|
+
i0.ɵɵelementEnd();
|
|
195
|
+
i0.ɵɵelementStart(149, "p", 4);
|
|
196
|
+
i0.ɵɵtext(150);
|
|
197
|
+
i0.ɵɵpipe(151, "rpxTranslate");
|
|
198
|
+
i0.ɵɵelementEnd();
|
|
199
|
+
i0.ɵɵelementStart(152, "p", 4);
|
|
200
|
+
i0.ɵɵtext(153);
|
|
201
|
+
i0.ɵɵpipe(154, "rpxTranslate");
|
|
202
|
+
i0.ɵɵelementEnd();
|
|
203
|
+
i0.ɵɵelementStart(155, "p", 4);
|
|
204
|
+
i0.ɵɵtext(156);
|
|
205
|
+
i0.ɵɵpipe(157, "rpxTranslate");
|
|
206
|
+
i0.ɵɵelementEnd();
|
|
207
|
+
i0.ɵɵelementStart(158, "h3", 20);
|
|
208
|
+
i0.ɵɵtext(159);
|
|
209
|
+
i0.ɵɵpipe(160, "rpxTranslate");
|
|
210
|
+
i0.ɵɵelementEnd();
|
|
211
|
+
i0.ɵɵelementStart(161, "p", 4);
|
|
212
|
+
i0.ɵɵtext(162);
|
|
213
|
+
i0.ɵɵpipe(163, "rpxTranslate");
|
|
214
|
+
i0.ɵɵelementEnd();
|
|
215
|
+
i0.ɵɵelementStart(164, "h3", 21);
|
|
216
|
+
i0.ɵɵtext(165);
|
|
217
|
+
i0.ɵɵpipe(166, "rpxTranslate");
|
|
218
|
+
i0.ɵɵelementEnd();
|
|
219
|
+
i0.ɵɵelementStart(167, "ol", 22)(168, "li");
|
|
220
|
+
i0.ɵɵtext(169);
|
|
221
|
+
i0.ɵɵpipe(170, "rpxTranslate");
|
|
222
|
+
i0.ɵɵelementEnd();
|
|
223
|
+
i0.ɵɵelementStart(171, "li");
|
|
224
|
+
i0.ɵɵtext(172);
|
|
225
|
+
i0.ɵɵpipe(173, "rpxTranslate");
|
|
226
|
+
i0.ɵɵelementEnd();
|
|
227
|
+
i0.ɵɵelementStart(174, "li");
|
|
228
|
+
i0.ɵɵtext(175);
|
|
229
|
+
i0.ɵɵpipe(176, "rpxTranslate");
|
|
230
|
+
i0.ɵɵelementEnd()();
|
|
231
|
+
i0.ɵɵelementStart(177, "h2", 23);
|
|
232
|
+
i0.ɵɵtext(178);
|
|
233
|
+
i0.ɵɵpipe(179, "rpxTranslate");
|
|
234
|
+
i0.ɵɵelementEnd();
|
|
235
|
+
i0.ɵɵelementStart(180, "p", 4);
|
|
236
|
+
i0.ɵɵtext(181);
|
|
237
|
+
i0.ɵɵpipe(182, "rpxTranslate");
|
|
238
|
+
i0.ɵɵelementEnd();
|
|
239
|
+
i0.ɵɵelementStart(183, "ol", 22)(184, "li");
|
|
240
|
+
i0.ɵɵtext(185);
|
|
241
|
+
i0.ɵɵpipe(186, "rpxTranslate");
|
|
242
|
+
i0.ɵɵelementEnd();
|
|
243
|
+
i0.ɵɵelementStart(187, "li");
|
|
244
|
+
i0.ɵɵtext(188);
|
|
245
|
+
i0.ɵɵpipe(189, "rpxTranslate");
|
|
246
|
+
i0.ɵɵelementEnd();
|
|
247
|
+
i0.ɵɵelementStart(190, "li");
|
|
248
|
+
i0.ɵɵtext(191);
|
|
249
|
+
i0.ɵɵpipe(192, "rpxTranslate");
|
|
250
|
+
i0.ɵɵelementEnd();
|
|
251
|
+
i0.ɵɵelementStart(193, "li");
|
|
252
|
+
i0.ɵɵtext(194);
|
|
253
|
+
i0.ɵɵpipe(195, "rpxTranslate");
|
|
254
|
+
i0.ɵɵelementEnd();
|
|
255
|
+
i0.ɵɵelementStart(196, "li");
|
|
256
|
+
i0.ɵɵtext(197);
|
|
257
|
+
i0.ɵɵpipe(198, "rpxTranslate");
|
|
258
|
+
i0.ɵɵelementEnd();
|
|
259
|
+
i0.ɵɵelementStart(199, "li");
|
|
260
|
+
i0.ɵɵtext(200);
|
|
261
|
+
i0.ɵɵpipe(201, "rpxTranslate");
|
|
262
|
+
i0.ɵɵelementEnd();
|
|
263
|
+
i0.ɵɵelementStart(202, "li");
|
|
264
|
+
i0.ɵɵtext(203);
|
|
265
|
+
i0.ɵɵpipe(204, "rpxTranslate");
|
|
266
|
+
i0.ɵɵelementEnd()();
|
|
267
|
+
i0.ɵɵelementStart(205, "h2", 24);
|
|
268
|
+
i0.ɵɵtext(206);
|
|
269
|
+
i0.ɵɵpipe(207, "rpxTranslate");
|
|
270
|
+
i0.ɵɵelementEnd();
|
|
271
|
+
i0.ɵɵelementStart(208, "p", 4);
|
|
272
|
+
i0.ɵɵtext(209);
|
|
273
|
+
i0.ɵɵpipe(210, "rpxTranslate");
|
|
274
|
+
i0.ɵɵelementEnd();
|
|
275
|
+
i0.ɵɵelementStart(211, "p", 4);
|
|
276
|
+
i0.ɵɵtext(212);
|
|
277
|
+
i0.ɵɵpipe(213, "rpxTranslate");
|
|
278
|
+
i0.ɵɵelementEnd();
|
|
279
|
+
i0.ɵɵelementStart(214, "h1", 25);
|
|
280
|
+
i0.ɵɵtext(215);
|
|
281
|
+
i0.ɵɵpipe(216, "rpxTranslate");
|
|
282
|
+
i0.ɵɵelementEnd();
|
|
283
|
+
i0.ɵɵelementStart(217, "p", 4);
|
|
284
|
+
i0.ɵɵtext(218);
|
|
285
|
+
i0.ɵɵpipe(219, "rpxTranslate");
|
|
286
|
+
i0.ɵɵelementEnd();
|
|
287
|
+
i0.ɵɵelementStart(220, "p", 4);
|
|
288
|
+
i0.ɵɵtext(221);
|
|
289
|
+
i0.ɵɵpipe(222, "rpxTranslate");
|
|
290
|
+
i0.ɵɵelementEnd();
|
|
291
|
+
i0.ɵɵelementStart(223, "h1", 26);
|
|
292
|
+
i0.ɵɵtext(224);
|
|
293
|
+
i0.ɵɵpipe(225, "rpxTranslate");
|
|
294
|
+
i0.ɵɵelementEnd();
|
|
295
|
+
i0.ɵɵelementStart(226, "p", 4);
|
|
296
|
+
i0.ɵɵtext(227);
|
|
297
|
+
i0.ɵɵpipe(228, "rpxTranslate");
|
|
298
|
+
i0.ɵɵelementEnd();
|
|
299
|
+
i0.ɵɵelementStart(229, "p", 4);
|
|
300
|
+
i0.ɵɵtext(230);
|
|
301
|
+
i0.ɵɵpipe(231, "rpxTranslate");
|
|
302
|
+
i0.ɵɵelementStart(232, "a", 27);
|
|
303
|
+
i0.ɵɵtext(233);
|
|
304
|
+
i0.ɵɵpipe(234, "rpxTranslate");
|
|
305
|
+
i0.ɵɵelementEnd();
|
|
306
|
+
i0.ɵɵtext(235, ".");
|
|
307
|
+
i0.ɵɵelementEnd();
|
|
308
|
+
i0.ɵɵelementStart(236, "h3", 28);
|
|
309
|
+
i0.ɵɵtext(237);
|
|
310
|
+
i0.ɵɵpipe(238, "rpxTranslate");
|
|
311
|
+
i0.ɵɵelementEnd();
|
|
312
|
+
i0.ɵɵelementStart(239, "p", 4);
|
|
313
|
+
i0.ɵɵtext(240);
|
|
314
|
+
i0.ɵɵpipe(241, "rpxTranslate");
|
|
315
|
+
i0.ɵɵelementEnd();
|
|
316
|
+
i0.ɵɵelementStart(242, "p", 4);
|
|
317
|
+
i0.ɵɵtext(243);
|
|
318
|
+
i0.ɵɵpipe(244, "rpxTranslate");
|
|
319
|
+
i0.ɵɵelementEnd();
|
|
320
|
+
i0.ɵɵelementStart(245, "ol", 5)(246, "li");
|
|
321
|
+
i0.ɵɵtext(247, "Nicola Whitcher - 02380 384324");
|
|
322
|
+
i0.ɵɵelementEnd();
|
|
323
|
+
i0.ɵɵelementStart(248, "li");
|
|
324
|
+
i0.ɵɵtext(249, "Hannah Townley - 02380 384313");
|
|
325
|
+
i0.ɵɵelementEnd()();
|
|
326
|
+
} if (rf & 2) {
|
|
327
|
+
i0.ɵɵadvance(1);
|
|
328
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 77, "Accessibility statement for Expert UI"));
|
|
329
|
+
i0.ɵɵadvance(5);
|
|
330
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 79, "Immigration and Asylum"));
|
|
331
|
+
i0.ɵɵadvance(4);
|
|
332
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(11, 81, "Family Public Law"), " ");
|
|
333
|
+
i0.ɵɵadvance(3);
|
|
334
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(14, 83, "This website is run by HM Courts & Tribunals Service. We want as many people as possible to be able to use this website. For example, you should be able to:"));
|
|
335
|
+
i0.ɵɵadvance(4);
|
|
336
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(18, 85, "change colours, contrast levels and fonts"));
|
|
337
|
+
i0.ɵɵadvance(3);
|
|
338
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(21, 87, "zoom in up to 300% without the text spilling off the screen"));
|
|
339
|
+
i0.ɵɵadvance(3);
|
|
340
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(24, 89, "navigate most of the website using just a keyboard"));
|
|
341
|
+
i0.ɵɵadvance(3);
|
|
342
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(27, 91, "navigate most of the website using speech recognition software"));
|
|
343
|
+
i0.ɵɵadvance(3);
|
|
344
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(30, 93, "listen to most of the website using a screen reader (including the most recent versions of JAWS, NVDA and VoiceOver)"), " ");
|
|
345
|
+
i0.ɵɵadvance(3);
|
|
346
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(33, 95, "We\u2019ve also made the website text as simple as possible to understand."));
|
|
347
|
+
i0.ɵɵadvance(4);
|
|
348
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(37, 97, "AbilityNet"));
|
|
349
|
+
i0.ɵɵadvance(2);
|
|
350
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(39, 99, "has advice on making your device easier to use if you have a disability."), "");
|
|
351
|
+
i0.ɵɵadvance(3);
|
|
352
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(42, 101, "How accessible this website is"));
|
|
353
|
+
i0.ɵɵadvance(3);
|
|
354
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(45, 103, "We know some parts of the website are not fully accessible:"));
|
|
355
|
+
i0.ɵɵadvance(4);
|
|
356
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(49, 105, "some pages are difficult to navigate using just a keyboard"));
|
|
357
|
+
i0.ɵɵadvance(3);
|
|
358
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(52, 107, "some pages can\u2019t be listened to in full using a screen reader"));
|
|
359
|
+
i0.ɵɵadvance(3);
|
|
360
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(55, 109, "some pages have problems with colour contrasts between text and background"));
|
|
361
|
+
i0.ɵɵadvance(3);
|
|
362
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(58, 111, "some PDFs may not be fully accessible to a screen reader"));
|
|
363
|
+
i0.ɵɵadvance(3);
|
|
364
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(61, 113, "Feedback and contact information"));
|
|
365
|
+
i0.ɵɵadvance(3);
|
|
366
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(64, 115, "If you need information on this website in a different format like accessible PDF, large print, easy read, audio recording or braille, you can:"));
|
|
367
|
+
i0.ɵɵadvance(4);
|
|
368
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(68, 117, "email:"), " ");
|
|
369
|
+
i0.ɵɵadvance(5);
|
|
370
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(73, 119, "call:"), " +44 (0) 300 123 1711");
|
|
371
|
+
i0.ɵɵadvance(3);
|
|
372
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(76, 121, "contact your service representative"));
|
|
373
|
+
i0.ɵɵadvance(3);
|
|
374
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(79, 123, "We\u2019ll consider your request and get back to you in 10 working days."));
|
|
375
|
+
i0.ɵɵadvance(3);
|
|
376
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(82, 125, "Reporting accessibility problems with this website"));
|
|
377
|
+
i0.ɵɵadvance(3);
|
|
378
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(85, 127, "We\u2019re always looking to improve the accessibility of this website. If you find any problems not listed on this page or think we\u2019re not meeting accessibility requirements, contact:"));
|
|
379
|
+
i0.ɵɵadvance(4);
|
|
380
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(89, 129, "email:"), " ");
|
|
381
|
+
i0.ɵɵadvance(5);
|
|
382
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(94, 131, "telephone:"), " +44 (0) 300 123 1711");
|
|
383
|
+
i0.ɵɵadvance(3);
|
|
384
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(97, 133, "Enforcement procedure"));
|
|
385
|
+
i0.ɵɵadvance(3);
|
|
386
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(100, 135, "The Equality and Human Rights Commission (EHRC) is responsible for enforcing the Public Sector Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018 (the \u2018accessibility regulations\u2019)."), " ");
|
|
387
|
+
i0.ɵɵadvance(3);
|
|
388
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(103, 137, "If you\u2019re not happy with how we respond to your complaint,"), " ");
|
|
389
|
+
i0.ɵɵadvance(3);
|
|
390
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(106, 139, "contact the Equality Advisory and Support Service (EASS)."));
|
|
391
|
+
i0.ɵɵadvance(3);
|
|
392
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(109, 141, "Contacting us by phone or visiting us in person"));
|
|
393
|
+
i0.ɵɵadvance(3);
|
|
394
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(112, 143, "We provide a text relay service for people who are D/deaf, hearing impaired or have a speech impediment."));
|
|
395
|
+
i0.ɵɵadvance(3);
|
|
396
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(115, 145, "Our offices and tribunal venues have audio induction loops, or if you contact us before your visit we can arrange a British Sign Language (BSL) interpreter. You can also request step-free access or a foreign language interpreter."));
|
|
397
|
+
i0.ɵɵadvance(3);
|
|
398
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(118, 147, "If you have a question about accessibility in our Tribunal venues, you can contact the First-tier Tribunal enquiry line:"), " +44 (0) 300 123 1711. You can ");
|
|
399
|
+
i0.ɵɵadvance(3);
|
|
400
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(121, 149, "find the contact details for court and tribunal venues"));
|
|
401
|
+
i0.ɵɵadvance(4);
|
|
402
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(125, 151, "You can also contact your service representative for more information."));
|
|
403
|
+
i0.ɵɵadvance(3);
|
|
404
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(128, 153, "Technical information about this website\u2019s accessibility"));
|
|
405
|
+
i0.ɵɵadvance(3);
|
|
406
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(131, 155, "HMCTS is committed to making its website accessible, in accordance with the Public Sector Bodies (Websites and Mobile Applications) (No.2) Accessibility Regulations 2018."));
|
|
407
|
+
i0.ɵɵadvance(3);
|
|
408
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(134, 157, "This website is partially compliant with the"), " ");
|
|
409
|
+
i0.ɵɵadvance(3);
|
|
410
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(137, 159, "Web Content Accessibility Guidelines version 2.1"));
|
|
411
|
+
i0.ɵɵadvance(2);
|
|
412
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(139, 161, ", due to the non-compliances listed below."));
|
|
413
|
+
i0.ɵɵadvance(3);
|
|
414
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(142, 163, "Non-accessible content"), " ");
|
|
415
|
+
i0.ɵɵadvance(3);
|
|
416
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(145, 165, "The content listed below is non-compliant for the following reasons."));
|
|
417
|
+
i0.ɵɵadvance(3);
|
|
418
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(148, 167, "Non-compliance with the accessibility regulations"));
|
|
419
|
+
i0.ɵɵadvance(3);
|
|
420
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(151, 169, "Some pages cannot be navigated completely using just a keyboard, so some people won\u2019t be able to tab through the pages. This fails WCAG 2.1 success criterion 2.1 (keyboard accessible)."));
|
|
421
|
+
i0.ɵɵadvance(3);
|
|
422
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(154, 171, "Some pages can\u2019t be listened to in full using a screen reader, so some people won\u2019t be able to access the information. This fails WCAG 2.1 success criterion 1.2.5 (audio description \u2013 prerecorded)."));
|
|
423
|
+
i0.ɵɵadvance(3);
|
|
424
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(157, 173, "Some of the contrast ratios don\u2019t meet the current accessibility requirements. This fails WCAG 2.1 success criterion 1.4.3 (contrast \u2013 minimum)."));
|
|
425
|
+
i0.ɵɵadvance(3);
|
|
426
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(160, 175, "Immigration and Asylum"));
|
|
427
|
+
i0.ɵɵadvance(3);
|
|
428
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(163, 177, "Some of the images on the service include text and are not accessible for some low vision users. We have identified a solution for this issue that we will implement as soon as possible."));
|
|
429
|
+
i0.ɵɵadvance(3);
|
|
430
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(166, 179, "Family Public Law"), " ");
|
|
431
|
+
i0.ɵɵadvance(4);
|
|
432
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(170, 181, "The navigation system used in family public law cannot be rendered well by screen readers, so features can\u2019t be listened to in full"), " ");
|
|
433
|
+
i0.ɵɵadvance(3);
|
|
434
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(173, 183, "Some essential functions within the family public law digital service cannot be accessed properly using screen readers"), " ");
|
|
435
|
+
i0.ɵɵadvance(3);
|
|
436
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(176, 185, "Some complex forms within the service will not be rendered correctly or cannot be listened to by screen readers"), " ");
|
|
437
|
+
i0.ɵɵadvance(3);
|
|
438
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(179, 187, "Disproportionate burden"), " ");
|
|
439
|
+
i0.ɵɵadvance(3);
|
|
440
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(182, 189, "For Manage organisation, Register organisation, Approve organisations and Manage cases, we found the following issues that are currently being triaged to find out if there is a disproportionate burden:"));
|
|
441
|
+
i0.ɵɵadvance(4);
|
|
442
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(186, 191, "Screen readers can\u2019t switch between headers, read content in tabs and buttons"));
|
|
443
|
+
i0.ɵɵadvance(3);
|
|
444
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(189, 193, "Screen readers can\u2019t tab between radio buttons, read links or content"));
|
|
445
|
+
i0.ɵɵadvance(3);
|
|
446
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(192, 195, "Colour contrast ratios uneven between page background and content"));
|
|
447
|
+
i0.ɵɵadvance(3);
|
|
448
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(195, 197, "Some labels, fields, error messages and other content can\u2019t be clearly identified by screen readers and voice activation software"), " ");
|
|
449
|
+
i0.ɵɵadvance(3);
|
|
450
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(198, 199, "Some page headings and titles don\u2019t follow a logical structure for screen readers"));
|
|
451
|
+
i0.ɵɵadvance(3);
|
|
452
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(201, 201, "The navigation of some pages isn\u2019t clear"));
|
|
453
|
+
i0.ɵɵadvance(3);
|
|
454
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(204, 203, "Some headings, links and button labels aren\u2019t clearly descriptive"));
|
|
455
|
+
i0.ɵɵadvance(3);
|
|
456
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(207, 205, "Content that\u2019s not within the scope of the accessibility regulations"), " ");
|
|
457
|
+
i0.ɵɵadvance(3);
|
|
458
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(210, 207, "PDFs, documents and attachments to email notifications published before 23 September 2018 may not meet accessibility standards. For example, they may not be structured so they\u2019re accessible to a screen reader."));
|
|
459
|
+
i0.ɵɵadvance(3);
|
|
460
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(213, 209, "Any new PDFs or Word documents we publish will meet accessibility standards."));
|
|
461
|
+
i0.ɵɵadvance(3);
|
|
462
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(216, 211, "What we\u2019re doing to improve accessibility"));
|
|
463
|
+
i0.ɵɵadvance(3);
|
|
464
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(219, 213, "We\u2019re committed to ensuring our services are accessible to all our users and that they comply with level AA of the Web Content Accessibility Guidelines \u2013 WCAG 2.1."));
|
|
465
|
+
i0.ɵɵadvance(3);
|
|
466
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(222, 215, "We\u2019re actively working to improve the identified issues and make them AA-compliant by 23 September 2020. We\u2019re also continuing to improve all other AAA-level accessibility issues as we iterate the service."));
|
|
467
|
+
i0.ɵɵadvance(3);
|
|
468
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(225, 217, "Preparation of this accessibility statement"));
|
|
469
|
+
i0.ɵɵadvance(3);
|
|
470
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(228, 219, "This statement was prepared on 16 September 2019. It was last reviewed on 16 September 2020."));
|
|
471
|
+
i0.ɵɵadvance(3);
|
|
472
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(231, 221, "This website was last tested on 19 May 2020. The test was carried out by the"), " ");
|
|
473
|
+
i0.ɵɵadvance(3);
|
|
474
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(234, 223, "Digital Accessibility Centre (DAC)"));
|
|
475
|
+
i0.ɵɵadvance(4);
|
|
476
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(238, 225, "Family Private Law:"));
|
|
477
|
+
i0.ɵɵadvance(3);
|
|
478
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(241, 227, "This service has not yet been tested for accessibility issues. In the future, we will conduct an accessibility audit in order to find out if there are any accessibility issues. The accessibility statement will be updated with any relevant changes that we find."));
|
|
479
|
+
i0.ɵɵadvance(3);
|
|
480
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(244, 229, "If there are any issues with accessing information or using this website please contact:"));
|
|
481
|
+
} }, dependencies: [i1.RpxTranslatePipe], styles: [".govuk-list--alpha[_ngcontent-%COMP%]{padding-left:20px;list-style-type:lower-alpha}"] });
|
|
482
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AccessibilityComponent, [{
|
|
483
|
+
type: Component,
|
|
484
|
+
args: [{ selector: 'xuilib-accessibility', template: "<h1 class=\"govuk-heading-xl\" id=\"Accessibility-statement-for-Expert-UI\">{{'Accessibility statement for Expert UI' | rpxTranslate}}</h1>\n\n<ul class=\"govuk-list\">\n <li><a href=\"accessibility#immigration\">{{'Immigration and Asylum' | rpxTranslate}}</a></li>\n <li><a href=\"accessibility#family\">{{'Family Public Law' | rpxTranslate}} </a></li>\n</ul>\n\n<p class=\"govuk-body\">{{'This website is run by HM Courts & Tribunals Service. We want as many people as possible to be\n able to use this website. For example, you should be able to:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'change colours, contrast levels and fonts' | rpxTranslate}}</li>\n <li>{{'zoom in up to 300% without the text spilling off the screen' | rpxTranslate}}</li>\n <li>{{'navigate most of the website using just a keyboard' | rpxTranslate}}</li>\n <li>{{'navigate most of the website using speech recognition software' | rpxTranslate}}</li>\n <li>{{'listen to most of the website using a screen reader (including the most recent versions of JAWS, NVDA and\n VoiceOver)' | rpxTranslate}}\n </li>\n</ul>\n\n<p class=\"govuk-body\">{{'We\\\u2019ve also made the website text as simple as possible to understand.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\"><a rel=\"noopener noreferrer\" target=\"_blank\" href=\"https://mcmw.abilitynet.org.uk/\">{{'AbilityNet' | rpxTranslate}}</a>\n {{'has advice on making your device easier to use if you have a disability.' | rpxTranslate}}</p>\n\n<h2 class=\"govuk-heading-l\" id=\"How-accessible-this-website-is\">{{'How accessible this website is' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'We know some parts of the website are not fully accessible:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'some pages are difficult to navigate using just a keyboard' | rpxTranslate}}</li>\n <li>{{'some pages can\\\u2019t be listened to in full using a screen reader' | rpxTranslate}}</li>\n <li>{{'some pages have problems with colour contrasts between text and background' | rpxTranslate}}</li>\n <li>{{'some PDFs may not be fully accessible to a screen reader' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"What-to-do-if-you-cannot-access-parts-of-this-website\">{{'Feedback and contact\n information' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'If you need information on this website in a different format like accessible PDF, large print,\n easy read, audio recording or braille, you can:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'email:' | rpxTranslate}} <a href=\"mailto:HMCTSforms@justice.gov.uk\"> HMCTSforms@justice.gov.uk</a></li>\n <li>{{'call:' | rpxTranslate}} +44 (0) 300 123 1711</li>\n <li>{{'contact your service representative' | rpxTranslate}}</li>\n</ul>\n\n<p class=\"govuk-body\">{{'We\\\u2019ll consider your request and get back to you in 10 working days.' | rpxTranslate}}</p>\n\n<h2 class=\"govuk-heading-l\" id=\"Reporting-accessibility-problems-with-this-website\">{{'Reporting accessibility problems\n with this website' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'We\\\u2019re always looking to improve the accessibility of this website. If you find any problems not\n listed on this page or think we\\\u2019re not meeting accessibility requirements, contact:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'email:' | rpxTranslate}} <a href=\"mailto:customer.service@justice.gov.uk\"> customer.service@justice.gov.uk</a></li>\n <li>{{'telephone:' | rpxTranslate}} +44 (0) 300 123 1711</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Enforcement-procedure \">{{'Enforcement procedure' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'The Equality and Human Rights Commission (EHRC) is responsible for enforcing the Public Sector\n Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018 (the \\\u2018accessibility\n regulations\\\u2019).' | rpxTranslate}} </p>\n\n<p class=\"govuk-body\">{{'If you\\\u2019re not happy with how we respond to your complaint,' | rpxTranslate}} <a rel=\"noopener noreferrer\"\n target=\"_blank\"\n href=\"https://www.equalityadvisoryservice.com/\">{{'contact\n the Equality Advisory and Support Service (EASS).' | rpxTranslate}}</a></p>\n\n<h1 class=\"govuk-heading-l\" id=\"Contacting-us-by-phone-or-visiting-us-in-person\">{{'Contacting us by phone or visiting us\n in person' | rpxTranslate}}</h1>\n\n<p class=\"govuk-body\">{{'We provide a text relay service for people who are D/deaf, hearing impaired or have a speech\n impediment.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Our offices and tribunal venues have audio induction loops, or if you contact us before your visit\n we can arrange a British Sign Language (BSL) interpreter. You can also request step-free access or a foreign language\n interpreter.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'If you have a question about accessibility in our Tribunal venues, you can contact the First-tier\n Tribunal enquiry line:' | rpxTranslate}} +44 (0) 300 123 1711. You can <a target=\"_blank\"\n href=\"https://courttribunalfinder.service.gov.uk/search/\">{{'find\n the contact details for court and tribunal venues' | rpxTranslate}}</a>. </p>\n\n<p class=\"govuk-body\">{{'You can also contact your service representative for more information.' | rpxTranslate}}</p>\n\n<h1 class=\"govuk-heading-l\" id=\"Technical-information-about-this-website\u2019s-accessibility\">{{'Technical information about\n this website\\\u2019s accessibility' | rpxTranslate}}</h1>\n\n<p class=\"govuk-body\">{{'HMCTS is committed to making its website accessible, in accordance with the Public Sector Bodies\n (Websites and Mobile Applications) (No.2) Accessibility Regulations 2018.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'This website is partially compliant with the' | rpxTranslate}} <a rel=\"noopener noreferrer\" target=\"_blank\"\n href=\"https://www.w3.org/TR/WCAG21/\">{{'Web Content\n Accessibility Guidelines version 2.1' | rpxTranslate}}</a>{{', due to the non-compliances listed below.' | rpxTranslate}}</p>\n\n<h1 class=\"govuk-heading-l\" id=\"Non-accessible-content\">{{'Non-accessible content' | rpxTranslate}} </h1>\n\n<p class=\"govuk-body\">{{'The content listed below is non-compliant for the following reasons.' | rpxTranslate}}</p>\n\n<h2 class=\"govuk-heading-l\" id=\"Non-compliance-with-the-accessibility-regulations\">{{'Non-compliance with the accessibility\n regulations' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'Some pages cannot be navigated completely using just a keyboard, so some people won\\\u2019t be able to\n tab through the pages. This fails WCAG 2.1 success criterion 2.1 (keyboard accessible).' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Some pages can\\\u2019t be listened to in full using a screen reader, so some people won\\\u2019t be able to\n access the information. This fails WCAG 2.1 success criterion 1.2.5 (audio description \u2013 prerecorded).' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Some of the contrast ratios don\\\u2019t meet the current accessibility requirements. This fails WCAG 2.1\n success criterion 1.4.3 (contrast \u2013 minimum).' | rpxTranslate}}</p>\n\n<h3 class=\"govuk-heading-m\" id=\"immigration\">{{'Immigration and Asylum' | rpxTranslate}}</h3>\n\n<p class=\"govuk-body\">{{'Some of the images on the service include text and are not accessible for some low vision users.\n We have identified a solution for this issue that we will implement as soon as possible.' | rpxTranslate}}</p>\n\n<h3 class=\"govuk-heading-m\" id=\"family\">{{'Family Public Law' | rpxTranslate}} </h3>\n\n<ol class=\"govuk-list govuk-list--alpha\">\n <li>{{'The navigation system used in family public law cannot be rendered well by screen readers, so features can\\\u2019t be\n listened to in full' | rpxTranslate}}\n </li>\n <li>{{'Some essential functions within the family public law digital service cannot be accessed properly using screen\n readers' | rpxTranslate}}\n </li>\n <li>{{'Some complex forms within the service will not be rendered correctly or cannot be listened to by screen readers' | rpxTranslate}}\n </li>\n</ol>\n\n<h2 class=\"govuk-heading-m\" id=\"Disproportionate burden \">{{'Disproportionate burden' | rpxTranslate}} </h2>\n\n<p class=\"govuk-body\">{{'For Manage organisation, Register organisation, Approve organisations and Manage cases, we found\n the following issues that are currently being triaged to find out if there is a disproportionate burden:' | rpxTranslate}}</p>\n\n<ol class=\"govuk-list govuk-list--alpha\">\n <li>{{'Screen readers can\\\u2019t switch between headers, read content in tabs and buttons' | rpxTranslate}}</li>\n <li>{{'Screen readers can\\\u2019t tab between radio buttons, read links or content' | rpxTranslate}}</li>\n <li>{{'Colour contrast ratios uneven between page background and content' | rpxTranslate}}</li>\n <li>{{'Some labels, fields, error messages and other content can\\\u2019t be clearly identified by screen readers and voice\n activation software' | rpxTranslate}}\n </li>\n <li>{{'Some page headings and titles don\\\u2019t follow a logical structure for screen readers' | rpxTranslate}}</li>\n <li>{{'The navigation of some pages isn\\\u2019t clear' | rpxTranslate}}</li>\n <li>{{'Some headings, links and button labels aren\\\u2019t clearly descriptive' | rpxTranslate}}</li>\n</ol>\n\n<h2 class=\"govuk-heading-m\" id=\"Content-that\u2019s-not-within-the-scope-of-the-accessibility-regulations\">{{'Content that\\\u2019s not\n within the scope of the accessibility regulations' | rpxTranslate}} </h2>\n\n<p class=\"govuk-body\">{{'PDFs, documents and attachments to email notifications published before 23 September 2018 may not\n meet accessibility standards. For example, they may not be structured so they\\\u2019re accessible to a screen reader.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Any new PDFs or Word documents we publish will meet accessibility standards.' | rpxTranslate}}</p>\n\n<h1 class=\"govuk-heading-l\" id=\"what-to-improve-accessibility\">{{'What we\\\u2019re doing to improve accessibility' | rpxTranslate}}</h1>\n\n<p class=\"govuk-body\">{{'We\\\u2019re committed to ensuring our services are accessible to all our users and that they comply with\n level AA of the Web Content Accessibility Guidelines \u2013 WCAG 2.1.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'We\\\u2019re actively working to improve the identified issues and make them AA-compliant by 23 September\n 2020. We\\\u2019re also continuing to improve all other AAA-level accessibility issues as we iterate the service.' | rpxTranslate}}</p>\n\n<h1 class=\"govuk-heading-l\" id=\"preparation-of-this-accessibility-statement\">{{'Preparation of this accessibility\n statement' | rpxTranslate}}</h1>\n\n<p class=\"govuk-body\">{{'This statement was prepared on 16 September 2019. It was last reviewed on 16 September 2020.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'This website was last tested on 19 May 2020. The test was carried out by the' | rpxTranslate}} <a target=\"_blank\"\n href=\"https://digitalaccessibilitycentre.org/\">{{'Digital\n Accessibility Centre (DAC)' | rpxTranslate}}</a>.</p>\n\n<h3 class=\"govuk-heading-m\">{{'Family Private Law:' | rpxTranslate}}</h3>\n\n<p class=\"govuk-body\">{{'This service has not yet been tested for accessibility issues. In the future, we will conduct an\n accessibility audit in order to find out if there are any accessibility issues. The accessibility statement will be\n updated with any relevant changes that we find.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'If there are any issues with accessing information or using this website please contact:' | rpxTranslate}}</p>\n\n<ol class=\"govuk-list govuk-list--bullet\">\n <li>Nicola Whitcher - 02380 384324</li>\n <li>Hannah Townley - 02380 384313</li>\n</ol>", styles: [".govuk-list--alpha{padding-left:20px;list-style-type:lower-alpha}\n"] }]
|
|
485
|
+
}], function () { return []; }, null); })();
|
|
486
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9leHVpLWNvbW1vbi1saWIvc3JjL2xpYi9jb21wb25lbnRzL2FjY2Vzc2liaWxpdHkvYWNjZXNzaWJpbGl0eS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9leHVpLWNvbW1vbi1saWIvc3JjL2xpYi9jb21wb25lbnRzL2FjY2Vzc2liaWxpdHkvYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFRMUMsTUFBTSxPQUFPLHNCQUFzQjtJQUNqQztJQUNBLENBQUM7OzRGQUZVLHNCQUFzQjt5RUFBdEIsc0JBQXNCO1FDUm5DLDZCQUF3RTtRQUFBLFlBQTBEOztRQUFBLGlCQUFLO1FBRXZJLDZCQUF1QixTQUFBLFdBQUE7UUFDbUIsWUFBMkM7O1FBQUEsaUJBQUksRUFBQTtRQUN2RiwwQkFBSSxXQUFBO1FBQStCLGFBQXVDOztRQUFBLGlCQUFJLEVBQUEsRUFBQTtRQUdoRiw2QkFBc0I7UUFBQSxhQUMyRDs7UUFBQSxpQkFBSTtRQUVyRiw4QkFBMEMsVUFBQTtRQUNwQyxhQUE4RDs7UUFBQSxpQkFBSztRQUN2RSwyQkFBSTtRQUFBLGFBQWdGOztRQUFBLGlCQUFLO1FBQ3pGLDJCQUFJO1FBQUEsYUFBdUU7O1FBQUEsaUJBQUs7UUFDaEYsMkJBQUk7UUFBQSxhQUFtRjs7UUFBQSxpQkFBSztRQUM1RiwyQkFBSTtRQUFBLGFBRUo7O1FBQUEsaUJBQUssRUFBQTtRQUdQLDZCQUFzQjtRQUFBLGFBQTJGOztRQUFBLGlCQUFJO1FBRXJILDZCQUFzQixZQUFBO1FBQW9GLGFBQStCOztRQUFBLGlCQUFJO1FBQzNJLGFBQTZGOztRQUFBLGlCQUFJO1FBRW5HLDhCQUFnRTtRQUFB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b0QsbUdBQ3BEO1FBRVQsZUFDcUY7UUFEckYsK09BQ3FGO1FBRXJGLGVBQ29HO1FBRHBHLHNRQUNvRztRQUVwRyxlQUMyQztRQUQzQyw0TUFDMkM7UUFFcEIsZUFBMkM7UUFBM0Msd0VBQTJDO1FBRWxFLGVBQ3NGO1FBRHRGLDJPQUNzRjtRQUVwRSxlQUF1QztRQUF2Qyw2RUFBdUM7UUFHekUsZUFFSjtRQUZJLG9NQUVKO1FBQ0ksZUFFSjtRQUZJLGtMQUVKO1FBQ0ksZUFDSjtRQURJLDJLQUNKO1FBR3dELGVBQTZDO1FBQTdDLG1GQUE2QztRQUVqRixlQUNzRztRQUR0RywyUEFDc0c7UUFHdEgsZUFBbUc7UUFBbkcsb0lBQW1HO1FBQ25HLGVBQTJGO1FBQTNGLDRIQUEyRjtRQUMzRixlQUFzRjtRQUF0RixtSEFBc0Y7UUFDdEYsZUFFSjtRQUZJLGtNQUVKO1FBQ0ksZUFBdUc7UUFBdkcsd0lBQXVHO1FBQ3ZHLGVBQThEO1FBQTlELCtGQUE4RDtRQUM5RCxlQUF1RjtRQUF2Rix3SEFBdUY7UUFHUyxlQUNoQztRQURnQyxxSUFDaEM7UUFFaEQsZUFDOEc7UUFEOUcsd1FBQzhHO1FBRTlHLGVBQWlHO1FBQWpHLDhIQUFpRztRQUV4RCxlQUErRDtRQUEvRCxnR0FBK0Q7UUFFeEcsZUFDOEQ7UUFEOUQsK05BQzhEO1FBRTlELGVBQ3lHO1FBRHpHLHlRQUN5RztRQUVsRCxlQUNoRDtRQURnRCw2RkFDaEQ7UUFFUCxlQUFpSDtRQUFqSCw4SUFBaUg7UUFFakgsZUFBa0c7UUFBbEcsd0lBQWtHO1FBQzZCLGVBQ3ZHO1FBRHVHLG9GQUN2RztRQUVsQixlQUF3QztRQUF4QyxxRUFBd0M7UUFFOUMsZUFFNkM7UUFGN0Msc1RBRTZDO1FBRTdDLGVBQTZHO1FBQTdHLDBJQUE2Rzs7dUZEN0t0SCxzQkFBc0I7Y0FObEMsU0FBUzsyQkFDSSxzQkFBc0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICd4dWlsaWItYWNjZXNzaWJpbGl0eScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2FjY2Vzc2liaWxpdHkuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2FjY2Vzc2liaWxpdHkuY29tcG9uZW50LnNjc3MnXVxufSlcblxuZXhwb3J0IGNsYXNzIEFjY2Vzc2liaWxpdHlDb21wb25lbnQge1xuICBjb25zdHJ1Y3RvcigpIHtcbiAgfVxufVxuIiwiPGgxIGNsYXNzPVwiZ292dWstaGVhZGluZy14bFwiIGlkPVwiQWNjZXNzaWJpbGl0eS1zdGF0ZW1lbnQtZm9yLUV4cGVydC1VSVwiPnt7J0FjY2Vzc2liaWxpdHkgc3RhdGVtZW50IGZvciBFeHBlcnQgVUknIHwgcnB4VHJhbnNsYXRlfX08L2gxPlxuXG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0XCI+XG4gIDxsaT48YSBocmVmPVwiYWNjZXNzaWJpbGl0eSNpbW1pZ3JhdGlvblwiPnt7J0ltbWlncmF0aW9uIGFuZCBBc3lsdW0nIHwgcnB4VHJhbnNsYXRlfX08L2E+PC9saT5cbiAgPGxpPjxhIGhyZWY9XCJhY2Nlc3NpYmlsaXR5I2ZhbWlseVwiPnt7J0ZhbWlseSBQdWJsaWMgTGF3JyB8IHJweFRyYW5zbGF0ZX19IDwvYT48L2xpPlxuPC91bD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snVGhpcyB3ZWJzaXRlIGlzIHJ1biBieSBITSBDb3VydHMgJiBUcmlidW5hbHMgU2VydmljZS4gV2Ugd2FudCBhcyBtYW55IHBlb3BsZSBhcyBwb3NzaWJsZSB0byBiZVxuICBhYmxlIHRvIHVzZSB0aGlzIHdlYnNpdGUuIEZvciBleGFtcGxlLCB5b3Ugc2hvdWxkIGJlIGFibGUgdG86JyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snY2hhbmdlIGNvbG91cnMsIGNvbnRyYXN0IGxldmVscyBhbmQgZm9udHMnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGk+e3snem9vbSBpbiB1cCB0byAzMDAlIHdpdGhvdXQgdGhlIHRleHQgc3BpbGxpbmcgb2ZmIHRoZSBzY3JlZW4nIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGk+e3snbmF2aWdhdGUgbW9zdCBvZiB0aGUgd2Vic2l0ZSB1c2luZyBqdXN0IGEga2V5Ym9hcmQnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGk+e3snbmF2aWdhdGUgbW9zdCBvZiB0aGUgd2Vic2l0ZSB1c2luZyBzcGVlY2ggcmVjb2duaXRpb24gc29mdHdhcmUnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGk+e3snbGlzdGVuIHRvIG1vc3Qgb2YgdGhlIHdlYnNpdGUgdXNpbmcgYSBzY3JlZW4gcmVhZGVyIChpbmNsdWRpbmcgdGhlIG1vc3QgcmVjZW50IHZlcnNpb25zIG9mIEpBV1MsIE5WREEgYW5kXG4gICAgVm9pY2VPdmVyKScgfCBycHhUcmFuc2xhdGV9fVxuICA8L2xpPlxuPC91bD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snV2VcXOKAmXZlIGFsc28gbWFkZSB0aGUgd2Vic2l0ZSB0ZXh0IGFzIHNpbXBsZSBhcyBwb3NzaWJsZSB0byB1bmRlcnN0YW5kLicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+PGEgcmVsPVwibm9vcGVuZXIgbm9yZWZlcnJlclwiIHRhcmdldD1cIl9ibGFua1wiIGhyZWY9XCJodHRwczovL21jbXcuYWJpbGl0eW5ldC5vcmcudWsvXCI+e3snQWJpbGl0eU5ldCcgfCBycHhUcmFuc2xhdGV9fTwvYT5cbiAge3snaGFzIGFkdmljZSBvbiBtYWtpbmcgeW91ciBkZXZpY2UgZWFzaWVyIHRvIHVzZSBpZiB5b3UgaGF2ZSBhIGRpc2FiaWxpdHkuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIkhvdy1hY2Nlc3NpYmxlLXRoaXMtd2Vic2l0ZS1pc1wiPnt7J0hvdyBhY2Nlc3NpYmxlIHRoaXMgd2Vic2l0ZSBpcycgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1dlIGtub3cgc29tZSBwYXJ0cyBvZiB0aGUgd2Vic2l0ZSBhcmUgbm90IGZ1bGx5IGFjY2Vzc2libGU6JyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snc29tZSBwYWdlcyBhcmUgZGlmZmljdWx0IHRvIG5hdmlnYXRlIHVzaW5nIGp1c3QgYSBrZXlib2FyZCcgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG4gIDxsaT57eydzb21lIHBhZ2VzIGNhblxc4oCZdCBiZSBsaXN0ZW5lZCB0byBpbiBmdWxsIHVzaW5nIGEgc2NyZWVuIHJlYWRlcicgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG4gIDxsaT57eydzb21lIHBhZ2VzIGhhdmUgcHJvYmxlbXMgd2l0aCBjb2xvdXIgY29udHJhc3RzIGJldHdlZW4gdGV4dCBhbmQgYmFja2dyb3VuZCcgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG4gIDxsaT57eydzb21lIFBERnMgbWF5IG5vdCBiZSBmdWxseSBhY2Nlc3NpYmxlIHRvIGEgc2NyZWVuIHJlYWRlcicgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG48L3VsPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIldoYXQtdG8tZG8taWYteW91LWNhbm5vdC1hY2Nlc3MtcGFydHMtb2YtdGhpcy13ZWJzaXRlXCI+e3snRmVlZGJhY2sgYW5kIGNvbnRhY3RcbiAgaW5mb3JtYXRpb24nIHwgcnB4VHJhbnNsYXRlfX08L2gyPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydJZiB5b3UgbmVlZCBpbmZvcm1hdGlvbiBvbiB0aGlzIHdlYnNpdGUgaW4gYSBkaWZmZXJlbnQgZm9ybWF0IGxpa2UgYWNjZXNzaWJsZSBQREYsIGxhcmdlIHByaW50LFxuICBlYXN5IHJlYWQsIGF1ZGlvIHJlY29yZGluZyBvciBicmFpbGxlLCB5b3UgY2FuOicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHVsIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1idWxsZXRcIj5cbiAgPGxpPnt7J2VtYWlsOicgfCBycHhUcmFuc2xhdGV9fSA8YSBocmVmPVwibWFpbHRvOkhNQ1RTZm9ybXNAanVzdGljZS5nb3YudWtcIj4gSE1DVFNmb3Jtc0BqdXN0aWNlLmdvdi51azwvYT48L2xpPlxuICA8bGk+e3snY2FsbDonIHwgcnB4VHJhbnNsYXRlfX0gKzQ0ICgwKSAzMDAgMTIzIDE3MTE8L2xpPlxuICA8bGk+e3snY29udGFjdCB5b3VyIHNlcnZpY2UgcmVwcmVzZW50YXRpdmUnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuPC91bD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snV2VcXOKAmWxsIGNvbnNpZGVyIHlvdXIgcmVxdWVzdCBhbmQgZ2V0IGJhY2sgdG8geW91IGluIDEwIHdvcmtpbmcgZGF5cy4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxoMiBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwiUmVwb3J0aW5nLWFjY2Vzc2liaWxpdHktcHJvYmxlbXMtd2l0aC10aGlzLXdlYnNpdGVcIj57eydSZXBvcnRpbmcgYWNjZXNzaWJpbGl0eSBwcm9ibGVtc1xuICB3aXRoIHRoaXMgd2Vic2l0ZScgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1dlXFzigJlyZSBhbHdheXMgbG9va2luZyB0byBpbXByb3ZlIHRoZSBhY2Nlc3NpYmlsaXR5IG9mIHRoaXMgd2Vic2l0ZS4gSWYgeW91IGZpbmQgYW55IHByb2JsZW1zIG5vdFxuICBsaXN0ZWQgb24gdGhpcyBwYWdlIG9yIHRoaW5rIHdlXFzigJlyZSBub3QgbWVldGluZyBhY2Nlc3NpYmlsaXR5IHJlcXVpcmVtZW50cywgY29udGFjdDonIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjx1bCBjbGFzcz1cImdvdnVrLWxpc3QgZ292dWstbGlzdC0tYnVsbGV0XCI+XG4gIDxsaT57eydlbWFpbDonIHwgcnB4VHJhbnNsYXRlfX0gPGEgaHJlZj1cIm1haWx0bzpjdXN0b21lci5zZXJ2aWNlQGp1c3RpY2UuZ292LnVrXCI+IGN1c3RvbWVyLnNlcnZpY2VAanVzdGljZS5nb3YudWs8L2E+PC9saT5cbiAgPGxpPnt7J3RlbGVwaG9uZTonIHwgcnB4VHJhbnNsYXRlfX0gKzQ0ICgwKSAzMDAgMTIzIDE3MTE8L2xpPlxuPC91bD5cblxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJFbmZvcmNlbWVudC1wcm9jZWR1cmUgXCI+e3snRW5mb3JjZW1lbnQgcHJvY2VkdXJlJyB8IHJweFRyYW5zbGF0ZX19PC9oMj5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snVGhlIEVxdWFsaXR5IGFuZCBIdW1hbiBSaWdodHMgQ29tbWlzc2lvbiAoRUhSQykgaXMgcmVzcG9uc2libGUgZm9yIGVuZm9yY2luZyB0aGUgUHVibGljIFNlY3RvclxuICBCb2RpZXMgKFdlYnNpdGVzIGFuZCBNb2JpbGUgQXBwbGljYXRpb25zKSAoTm8uIDIpIEFjY2Vzc2liaWxpdHkgUmVndWxhdGlvbnMgMjAxOCAodGhlIFxc4oCYYWNjZXNzaWJpbGl0eVxuICByZWd1bGF0aW9uc1xc4oCZKS4nIHwgcnB4VHJhbnNsYXRlfX0gPC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydJZiB5b3VcXOKAmXJlIG5vdCBoYXBweSB3aXRoIGhvdyB3ZSByZXNwb25kIHRvIHlvdXIgY29tcGxhaW50LCcgfCBycHhUcmFuc2xhdGV9fSA8YSByZWw9XCJub29wZW5lciBub3JlZmVycmVyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRhcmdldD1cIl9ibGFua1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBocmVmPVwiaHR0cHM6Ly93d3cuZXF1YWxpdHlhZHZpc29yeXNlcnZpY2UuY29tL1wiPnt7J2NvbnRhY3RcbiAgdGhlIEVxdWFsaXR5IEFkdmlzb3J5IGFuZCBTdXBwb3J0IFNlcnZpY2UgKEVBU1MpLicgfCBycHhUcmFuc2xhdGV9fTwvYT48L3A+XG5cbjxoMSBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwiQ29udGFjdGluZy11cy1ieS1waG9uZS1vci12aXNpdGluZy11cy1pbi1wZXJzb25cIj57eydDb250YWN0aW5nIHVzIGJ5IHBob25lIG9yIHZpc2l0aW5nIHVzXG4gIGluIHBlcnNvbicgfCBycHhUcmFuc2xhdGV9fTwvaDE+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1dlIHByb3ZpZGUgYSB0ZXh0IHJlbGF5IHNlcnZpY2UgZm9yIHBlb3BsZSB3aG8gYXJlIEQvZGVhZiwgaGVhcmluZyBpbXBhaXJlZCBvciBoYXZlIGEgc3BlZWNoXG4gIGltcGVkaW1lbnQuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydPdXIgb2ZmaWNlcyBhbmQgdHJpYnVuYWwgdmVudWVzIGhhdmUgYXVkaW8gaW5kdWN0aW9uIGxvb3BzLCBvciBpZiB5b3UgY29udGFjdCB1cyBiZWZvcmUgeW91ciB2aXNpdFxuICB3ZSBjYW4gYXJyYW5nZSBhIEJyaXRpc2ggU2lnbiBMYW5ndWFnZSAoQlNMKSBpbnRlcnByZXRlci4gWW91IGNhbiBhbHNvIHJlcXVlc3Qgc3RlcC1mcmVlIGFjY2VzcyBvciBhIGZvcmVpZ24gbGFuZ3VhZ2VcbiAgaW50ZXJwcmV0ZXIuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydJZiB5b3UgaGF2ZSBhIHF1ZXN0aW9uIGFib3V0IGFjY2Vzc2liaWxpdHkgaW4gb3VyIFRyaWJ1bmFsIHZlbnVlcywgeW91IGNhbiBjb250YWN0IHRoZSBGaXJzdC10aWVyXG4gIFRyaWJ1bmFsIGVucXVpcnkgbGluZTonIHwgcnB4VHJhbnNsYXRlfX0gKzQ0ICgwKSAzMDAgMTIzIDE3MTEuIFlvdSBjYW4gPGEgdGFyZ2V0PVwiX2JsYW5rXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBocmVmPVwiaHR0cHM6Ly9jb3VydHRyaWJ1bmFsZmluZGVyLnNlcnZpY2UuZ292LnVrL3NlYXJjaC9cIj57eydmaW5kXG4gICAgdGhlIGNvbnRhY3QgZGV0YWlscyBmb3IgY291cnQgYW5kIHRyaWJ1bmFsIHZlbnVlcycgfCBycHhUcmFuc2xhdGV9fTwvYT4uIDwvcD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snWW91IGNhbiBhbHNvIGNvbnRhY3QgeW91ciBzZXJ2aWNlIHJlcHJlc2VudGF0aXZlIGZvciBtb3JlIGluZm9ybWF0aW9uLicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPGgxIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJUZWNobmljYWwtaW5mb3JtYXRpb24tYWJvdXQtdGhpcy13ZWJzaXRl4oCZcy1hY2Nlc3NpYmlsaXR5XCI+e3snVGVjaG5pY2FsIGluZm9ybWF0aW9uIGFib3V0XG4gIHRoaXMgd2Vic2l0ZVxc4oCZcyBhY2Nlc3NpYmlsaXR5JyB8IHJweFRyYW5zbGF0ZX19PC9oMT5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snSE1DVFMgaXMgY29tbWl0dGVkIHRvIG1ha2luZyBpdHMgd2Vic2l0ZSBhY2Nlc3NpYmxlLCBpbiBhY2NvcmRhbmNlIHdpdGggdGhlIFB1YmxpYyBTZWN0b3IgQm9kaWVzXG4gIChXZWJzaXRlcyBhbmQgTW9iaWxlIEFwcGxpY2F0aW9ucykgKE5vLjIpIEFjY2Vzc2liaWxpdHkgUmVndWxhdGlvbnMgMjAxOC4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1RoaXMgd2Vic2l0ZSBpcyBwYXJ0aWFsbHkgY29tcGxpYW50IHdpdGggdGhlJyB8IHJweFRyYW5zbGF0ZX19IDxhIHJlbD1cIm5vb3BlbmVyIG5vcmVmZXJyZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGhyZWY9XCJodHRwczovL3d3dy53My5vcmcvVFIvV0NBRzIxL1wiPnt7J1dlYiBDb250ZW50XG4gIEFjY2Vzc2liaWxpdHkgR3VpZGVsaW5lcyB2ZXJzaW9uIDIuMScgfCBycHhUcmFuc2xhdGV9fTwvYT57eycsIGR1ZSB0byB0aGUgbm9uLWNvbXBsaWFuY2VzIGxpc3RlZCBiZWxvdy4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxoMSBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwiTm9uLWFjY2Vzc2libGUtY29udGVudFwiPnt7J05vbi1hY2Nlc3NpYmxlIGNvbnRlbnQnIHwgcnB4VHJhbnNsYXRlfX0gPC9oMT5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snVGhlIGNvbnRlbnQgbGlzdGVkIGJlbG93IGlzIG5vbi1jb21wbGlhbnQgZm9yIHRoZSBmb2xsb3dpbmcgcmVhc29ucy4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxoMiBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwiTm9uLWNvbXBsaWFuY2Utd2l0aC10aGUtYWNjZXNzaWJpbGl0eS1yZWd1bGF0aW9uc1wiPnt7J05vbi1jb21wbGlhbmNlIHdpdGggdGhlIGFjY2Vzc2liaWxpdHlcbiAgcmVndWxhdGlvbnMnIHwgcnB4VHJhbnNsYXRlfX08L2gyPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydTb21lIHBhZ2VzIGNhbm5vdCBiZSBuYXZpZ2F0ZWQgY29tcGxldGVseSB1c2luZyBqdXN0IGEga2V5Ym9hcmQsIHNvIHNvbWUgcGVvcGxlIHdvblxc4oCZdCBiZSBhYmxlIHRvXG4gIHRhYiB0aHJvdWdoIHRoZSBwYWdlcy4gVGhpcyBmYWlscyBXQ0FHIDIuMSBzdWNjZXNzIGNyaXRlcmlvbiAyLjEgKGtleWJvYXJkIGFjY2Vzc2libGUpLicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snU29tZSBwYWdlcyBjYW5cXOKAmXQgYmUgbGlzdGVuZWQgdG8gaW4gZnVsbCB1c2luZyBhIHNjcmVlbiByZWFkZXIsIHNvIHNvbWUgcGVvcGxlIHdvblxc4oCZdCBiZSBhYmxlIHRvXG4gIGFjY2VzcyB0aGUgaW5mb3JtYXRpb24uIFRoaXMgZmFpbHMgV0NBRyAyLjEgc3VjY2VzcyBjcml0ZXJpb24gMS4yLjUgKGF1ZGlvIGRlc2NyaXB0aW9uIOKAkyBwcmVyZWNvcmRlZCkuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydTb21lIG9mIHRoZSBjb250cmFzdCByYXRpb3MgZG9uXFzigJl0IG1lZXQgdGhlIGN1cnJlbnQgYWNjZXNzaWJpbGl0eSByZXF1aXJlbWVudHMuIFRoaXMgZmFpbHMgV0NBRyAyLjFcbiAgc3VjY2VzcyBjcml0ZXJpb24gMS40LjMgKGNvbnRyYXN0IOKAkyBtaW5pbXVtKS4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxoMyBjbGFzcz1cImdvdnVrLWhlYWRpbmctbVwiIGlkPVwiaW1taWdyYXRpb25cIj57eydJbW1pZ3JhdGlvbiBhbmQgQXN5bHVtJyB8IHJweFRyYW5zbGF0ZX19PC9oMz5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snU29tZSBvZiB0aGUgaW1hZ2VzIG9uIHRoZSBzZXJ2aWNlIGluY2x1ZGUgdGV4dCBhbmQgYXJlIG5vdCBhY2Nlc3NpYmxlIGZvciBzb21lIGxvdyB2aXNpb24gdXNlcnMuXG4gIFdlIGhhdmUgaWRlbnRpZmllZCBhIHNvbHV0aW9uIGZvciB0aGlzIGlzc3VlIHRoYXQgd2Ugd2lsbCBpbXBsZW1lbnQgYXMgc29vbiBhcyBwb3NzaWJsZS4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxoMyBjbGFzcz1cImdvdnVrLWhlYWRpbmctbVwiIGlkPVwiZmFtaWx5XCI+e3snRmFtaWx5IFB1YmxpYyBMYXcnIHwgcnB4VHJhbnNsYXRlfX0gPC9oMz5cblxuPG9sIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1hbHBoYVwiPlxuICA8bGk+e3snVGhlIG5hdmlnYXRpb24gc3lzdGVtIHVzZWQgaW4gZmFtaWx5IHB1YmxpYyBsYXcgY2Fubm90IGJlIHJlbmRlcmVkIHdlbGwgYnkgc2NyZWVuIHJlYWRlcnMsIHNvIGZlYXR1cmVzIGNhblxc4oCZdCBiZVxuICAgIGxpc3RlbmVkIHRvIGluIGZ1bGwnIHwgcnB4VHJhbnNsYXRlfX1cbiAgPC9saT5cbiAgPGxpPnt7J1NvbWUgZXNzZW50aWFsIGZ1bmN0aW9ucyB3aXRoaW4gdGhlIGZhbWlseSBwdWJsaWMgbGF3IGRpZ2l0YWwgc2VydmljZSBjYW5ub3QgYmUgYWNjZXNzZWQgcHJvcGVybHkgdXNpbmcgc2NyZWVuXG4gICAgcmVhZGVycycgfCBycHhUcmFuc2xhdGV9fVxuICA8L2xpPlxuICA8bGk+e3snU29tZSBjb21wbGV4IGZvcm1zIHdpdGhpbiB0aGUgc2VydmljZSB3aWxsIG5vdCBiZSByZW5kZXJlZCBjb3JyZWN0bHkgb3IgY2Fubm90IGJlIGxpc3RlbmVkIHRvIGJ5IHNjcmVlbiByZWFkZXJzJyB8IHJweFRyYW5zbGF0ZX19XG4gIDwvbGk+XG48L29sPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLW1cIiBpZD1cIkRpc3Byb3BvcnRpb25hdGUgYnVyZGVuIFwiPnt7J0Rpc3Byb3BvcnRpb25hdGUgYnVyZGVuJyB8IHJweFRyYW5zbGF0ZX19IDwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J0ZvciBNYW5hZ2Ugb3JnYW5pc2F0aW9uLCBSZWdpc3RlciBvcmdhbmlzYXRpb24sIEFwcHJvdmUgb3JnYW5pc2F0aW9ucyBhbmQgTWFuYWdlIGNhc2VzLCB3ZSBmb3VuZFxuICB0aGUgZm9sbG93aW5nIGlzc3VlcyB0aGF0IGFyZSBjdXJyZW50bHkgYmVpbmcgdHJpYWdlZCB0byBmaW5kIG91dCBpZiB0aGVyZSBpcyBhIGRpc3Byb3BvcnRpb25hdGUgYnVyZGVuOicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPG9sIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1hbHBoYVwiPlxuICA8bGk+e3snU2NyZWVuIHJlYWRlcnMgY2FuXFzigJl0IHN3aXRjaCBiZXR3ZWVuIGhlYWRlcnMsIHJlYWQgY29udGVudCBpbiB0YWJzIGFuZCBidXR0b25zJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J1NjcmVlbiByZWFkZXJzIGNhblxc4oCZdCB0YWIgYmV0d2VlbiByYWRpbyBidXR0b25zLCByZWFkIGxpbmtzIG9yIGNvbnRlbnQnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGk+e3snQ29sb3VyIGNvbnRyYXN0IHJhdGlvcyB1bmV2ZW4gYmV0d2VlbiBwYWdlIGJhY2tncm91bmQgYW5kIGNvbnRlbnQnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGk+e3snU29tZSBsYWJlbHMsIGZpZWxkcywgZXJyb3IgbWVzc2FnZXMgYW5kIG90aGVyIGNvbnRlbnQgY2FuXFzigJl0IGJlIGNsZWFybHkgaWRlbnRpZmllZCBieSBzY3JlZW4gcmVhZGVycyBhbmQgdm9pY2VcbiAgICBhY3RpdmF0aW9uIHNvZnR3YXJlJyB8IHJweFRyYW5zbGF0ZX19XG4gIDwvbGk+XG4gIDxsaT57eydTb21lIHBhZ2UgaGVhZGluZ3MgYW5kIHRpdGxlcyBkb25cXOKAmXQgZm9sbG93IGEgbG9naWNhbCBzdHJ1Y3R1cmUgZm9yIHNjcmVlbiByZWFkZXJzJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J1RoZSBuYXZpZ2F0aW9uIG9mIHNvbWUgcGFnZXMgaXNuXFzigJl0IGNsZWFyJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J1NvbWUgaGVhZGluZ3MsIGxpbmtzIGFuZCBidXR0b24gbGFiZWxzIGFyZW5cXOKAmXQgY2xlYXJseSBkZXNjcmlwdGl2ZScgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG48L29sPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLW1cIiBpZD1cIkNvbnRlbnQtdGhhdOKAmXMtbm90LXdpdGhpbi10aGUtc2NvcGUtb2YtdGhlLWFjY2Vzc2liaWxpdHktcmVndWxhdGlvbnNcIj57eydDb250ZW50IHRoYXRcXOKAmXMgbm90XG4gIHdpdGhpbiB0aGUgc2NvcGUgb2YgdGhlIGFjY2Vzc2liaWxpdHkgcmVndWxhdGlvbnMnIHwgcnB4VHJhbnNsYXRlfX0gPC9oMj5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snUERGcywgZG9jdW1lbnRzIGFuZCBhdHRhY2htZW50cyB0byBlbWFpbCBub3RpZmljYXRpb25zIHB1Ymxpc2hlZCBiZWZvcmUgMjMgU2VwdGVtYmVyIDIwMTggbWF5IG5vdFxuICBtZWV0IGFjY2Vzc2liaWxpdHkgc3RhbmRhcmRzLiBGb3IgZXhhbXBsZSwgdGhleSBtYXkgbm90IGJlIHN0cnVjdHVyZWQgc28gdGhleVxc4oCZcmUgYWNjZXNzaWJsZSB0byBhIHNjcmVlbiByZWFkZXIuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydBbnkgbmV3IFBERnMgb3IgV29yZCBkb2N1bWVudHMgd2UgcHVibGlzaCB3aWxsIG1lZXQgYWNjZXNzaWJpbGl0eSBzdGFuZGFyZHMuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48aDEgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIndoYXQtdG8taW1wcm92ZS1hY2Nlc3NpYmlsaXR5XCI+e3snV2hhdCB3ZVxc4oCZcmUgZG9pbmcgdG8gaW1wcm92ZSBhY2Nlc3NpYmlsaXR5JyB8IHJweFRyYW5zbGF0ZX19PC9oMT5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snV2VcXOKAmXJlIGNvbW1pdHRlZCB0byBlbnN1cmluZyBvdXIgc2VydmljZXMgYXJlIGFjY2Vzc2libGUgdG8gYWxsIG91ciB1c2VycyBhbmQgdGhhdCB0aGV5IGNvbXBseSB3aXRoXG4gIGxldmVsIEFBIG9mIHRoZSBXZWIgQ29udGVudCBBY2Nlc3NpYmlsaXR5IEd1aWRlbGluZXMg4oCTIFdDQUcgMi4xLicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snV2VcXOKAmXJlIGFjdGl2ZWx5IHdvcmtpbmcgdG8gaW1wcm92ZSB0aGUgaWRlbnRpZmllZCBpc3N1ZXMgYW5kIG1ha2UgdGhlbSBBQS1jb21wbGlhbnQgYnkgMjMgU2VwdGVtYmVyXG4gIDIwMjAuIFdlXFzigJlyZSBhbHNvIGNvbnRpbnVpbmcgdG8gaW1wcm92ZSBhbGwgb3RoZXIgQUFBLWxldmVsIGFjY2Vzc2liaWxpdHkgaXNzdWVzIGFzIHdlIGl0ZXJhdGUgdGhlIHNlcnZpY2UuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48aDEgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cInByZXBhcmF0aW9uLW9mLXRoaXMtYWNjZXNzaWJpbGl0eS1zdGF0ZW1lbnRcIj57eydQcmVwYXJhdGlvbiBvZiB0aGlzIGFjY2Vzc2liaWxpdHlcbiAgc3RhdGVtZW50JyB8IHJweFRyYW5zbGF0ZX19PC9oMT5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snVGhpcyBzdGF0ZW1lbnQgd2FzIHByZXBhcmVkIG9uIDE2IFNlcHRlbWJlciAyMDE5LiBJdCB3YXMgbGFzdCByZXZpZXdlZCBvbiAxNiBTZXB0ZW1iZXIgMjAyMC4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1RoaXMgd2Vic2l0ZSB3YXMgbGFzdCB0ZXN0ZWQgb24gMTkgTWF5IDIwMjAuIFRoZSB0ZXN0IHdhcyBjYXJyaWVkIG91dCBieSB0aGUnIHwgcnB4VHJhbnNsYXRlfX0gPGEgdGFyZ2V0PVwiX2JsYW5rXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGhyZWY9XCJodHRwczovL2RpZ2l0YWxhY2Nlc3NpYmlsaXR5Y2VudHJlLm9yZy9cIj57eydEaWdpdGFsXG4gIEFjY2Vzc2liaWxpdHkgQ2VudHJlIChEQUMpJyB8IHJweFRyYW5zbGF0ZX19PC9hPi48L3A+XG5cbjxoMyBjbGFzcz1cImdvdnVrLWhlYWRpbmctbVwiPnt7J0ZhbWlseSBQcml2YXRlIExhdzonIHwgcnB4VHJhbnNsYXRlfX08L2gzPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydUaGlzIHNlcnZpY2UgaGFzIG5vdCB5ZXQgYmVlbiB0ZXN0ZWQgZm9yIGFjY2Vzc2liaWxpdHkgaXNzdWVzLiBJbiB0aGUgZnV0dXJlLCB3ZSB3aWxsIGNvbmR1Y3QgYW5cbiAgYWNjZXNzaWJpbGl0eSBhdWRpdCBpbiBvcmRlciB0byBmaW5kIG91dCBpZiB0aGVyZSBhcmUgYW55IGFjY2Vzc2liaWxpdHkgaXNzdWVzLiBUaGUgYWNjZXNzaWJpbGl0eSBzdGF0ZW1lbnQgd2lsbCBiZVxuICB1cGRhdGVkIHdpdGggYW55IHJlbGV2YW50IGNoYW5nZXMgdGhhdCB3ZSBmaW5kLicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snSWYgdGhlcmUgYXJlIGFueSBpc3N1ZXMgd2l0aCBhY2Nlc3NpbmcgaW5mb3JtYXRpb24gb3IgdXNpbmcgdGhpcyB3ZWJzaXRlIHBsZWFzZSBjb250YWN0OicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPG9sIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1idWxsZXRcIj5cbiAgPGxpPk5pY29sYSBXaGl0Y2hlciAtIDAyMzgwIDM4NDMyNDwvbGk+XG4gIDxsaT5IYW5uYWggVG93bmxleSAtIDAyMzgwIDM4NDMxMzwvbGk+XG48L29sPiJdfQ==
|