@hmcts/media-viewer 4.1.9-cme-776-angular-20 → 4.1.9
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/assets/all.scss +1 -0
- package/assets/sass/tooltip.scss +50 -0
- package/esm2022/hmcts-media-viewer.mjs +5 -0
- package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +122 -0
- package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +120 -0
- package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +101 -0
- package/esm2022/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
- package/esm2022/lib/annotations/annotation-set/annotation-set.model.mjs +2 -0
- package/esm2022/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
- package/esm2022/lib/annotations/annotation-set/annotation-view/annotation.model.mjs +2 -0
- package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
- package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.mjs +2 -0
- package/esm2022/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +119 -0
- package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +86 -0
- package/esm2022/lib/annotations/annotations.module.mjs +162 -0
- package/esm2022/lib/annotations/comment-set/comment/comment.component.mjs +178 -0
- package/esm2022/lib/annotations/comment-set/comment/comment.model.mjs +2 -0
- package/esm2022/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
- package/esm2022/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
- package/esm2022/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
- package/esm2022/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
- package/esm2022/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +62 -0
- package/esm2022/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +54 -0
- package/esm2022/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +72 -0
- package/esm2022/lib/annotations/comment-set/comment-set-render.service.mjs +55 -0
- package/esm2022/lib/annotations/comment-set/comment-set.component.mjs +123 -0
- package/esm2022/lib/annotations/comments-summary/comments-summary.component.mjs +120 -0
- package/esm2022/lib/annotations/models/api-persisted.model.mjs +2 -0
- package/esm2022/lib/annotations/models/event-select.model.mjs +2 -0
- package/esm2022/lib/annotations/models/tags.model.mjs +2 -0
- package/esm2022/lib/annotations/models/user.model.mjs +2 -0
- package/esm2022/lib/annotations/pipes/date/date.pipe.mjs +26 -0
- package/esm2022/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
- package/esm2022/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
- package/esm2022/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
- package/esm2022/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
- package/esm2022/lib/annotations/services/tags/tags.services.mjs +41 -0
- package/esm2022/lib/annotations/tags/tags.component.mjs +53 -0
- package/esm2022/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
- package/esm2022/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
- package/esm2022/lib/icp/icp-follower.service.mjs +65 -0
- package/esm2022/lib/icp/icp-presenter.service.mjs +56 -0
- package/esm2022/lib/icp/icp-session-api.service.mjs +28 -0
- package/esm2022/lib/icp/icp-update.service.mjs +73 -0
- package/esm2022/lib/icp/icp.events.mjs +15 -0
- package/esm2022/lib/icp/icp.interfaces.mjs +2 -0
- package/esm2022/lib/icp/icp.service.mjs +98 -0
- package/esm2022/lib/icp/participants-list/participants-list.component.mjs +32 -0
- package/esm2022/lib/icp/socket.service.mjs +128 -0
- package/esm2022/lib/media-viewer.component.mjs +247 -0
- package/esm2022/lib/media-viewer.module.mjs +139 -0
- package/esm2022/lib/print.service.mjs +32 -0
- package/esm2022/lib/redaction/components/redaction.component.mjs +91 -0
- package/esm2022/lib/redaction/services/redaction-api.service.mjs +50 -0
- package/esm2022/lib/redaction/services/redaction.model.mjs +2 -0
- package/esm2022/lib/shared/directives/tooltip-dismiss.directive.mjs +36 -0
- package/esm2022/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
- package/esm2022/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
- package/esm2022/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
- package/esm2022/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
- package/esm2022/lib/shared/shared.module.mjs +53 -0
- package/esm2022/lib/shared/util/helpers/html-templates.helper.mjs +29 -0
- package/esm2022/lib/shared/util/services/number.helper.service.mjs +23 -0
- package/esm2022/lib/store/actions/annotation.actions.mjs +119 -0
- package/esm2022/lib/store/actions/bookmark.actions.mjs +112 -0
- package/esm2022/lib/store/actions/document.actions.mjs +91 -0
- package/esm2022/lib/store/actions/icp.actions.mjs +56 -0
- package/esm2022/lib/store/actions/redaction.actions.mjs +132 -0
- package/esm2022/lib/store/actions/tag.actions.mjs +21 -0
- package/esm2022/lib/store/bookmarks-store-utils.mjs +49 -0
- package/esm2022/lib/store/effects/annotation.effects.mjs +51 -0
- package/esm2022/lib/store/effects/bookmarks.effects.mjs +44 -0
- package/esm2022/lib/store/effects/document.effects.mjs +44 -0
- package/esm2022/lib/store/effects/icp.effects.mjs +26 -0
- package/esm2022/lib/store/effects/index.mjs +7 -0
- package/esm2022/lib/store/effects/redaction.effects.mjs +67 -0
- package/esm2022/lib/store/models/bookmarks.interface.mjs +2 -0
- package/esm2022/lib/store/models/filters.interface.mjs +2 -0
- package/esm2022/lib/store/reducers/annotations.reducer.mjs +208 -0
- package/esm2022/lib/store/reducers/bookmarks.reducer.mjs +125 -0
- package/esm2022/lib/store/reducers/document.reducer.mjs +158 -0
- package/esm2022/lib/store/reducers/icp.reducer.mjs +56 -0
- package/esm2022/lib/store/reducers/redaction.reducer.mjs +116 -0
- package/esm2022/lib/store/reducers/reducers.mjs +23 -0
- package/esm2022/lib/store/reducers/tags.reducer.mjs +93 -0
- package/esm2022/lib/store/selectors/annotation.selectors.mjs +81 -0
- package/esm2022/lib/store/selectors/bookmark.selectors.mjs +37 -0
- package/esm2022/lib/store/selectors/document.selectors.mjs +13 -0
- package/esm2022/lib/store/selectors/icp.selectors.mjs +13 -0
- package/esm2022/lib/store/selectors/redaction.selectors.mjs +26 -0
- package/esm2022/lib/store/selectors/tag.selectors.mjs +15 -0
- package/esm2022/lib/store/store-utils.mjs +131 -0
- package/esm2022/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +46 -0
- package/esm2022/lib/toolbar/icp-event.service.mjs +44 -0
- package/esm2022/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +43 -0
- package/esm2022/lib/toolbar/main-toolbar/main-toolbar.component.mjs +207 -0
- package/esm2022/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +237 -0
- package/esm2022/lib/toolbar/redaction-search-bar/redaction-search.model.mjs +2 -0
- package/esm2022/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +69 -0
- package/esm2022/lib/toolbar/search-bar/search-bar.component.mjs +109 -0
- package/esm2022/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
- package/esm2022/lib/toolbar/toolbar-event.service.mjs +178 -0
- package/esm2022/lib/toolbar/toolbar.module.mjs +75 -0
- package/esm2022/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +82 -0
- package/esm2022/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
- package/esm2022/lib/viewers/grab-n-drag.directive.mjs +57 -0
- package/esm2022/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
- package/esm2022/lib/viewers/multimedia-player/multimedia-player.component.mjs +59 -0
- package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +266 -0
- package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
- package/esm2022/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +242 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +379 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.mjs +2 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.mjs +2 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +99 -0
- package/esm2022/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
- package/esm2022/lib/viewers/rotation-persist/rotation-persist.directive.mjs +61 -0
- package/esm2022/lib/viewers/rotation-persist/rotation.model.mjs +2 -0
- package/esm2022/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
- package/esm2022/lib/viewers/viewer-event.service.mjs +34 -0
- package/esm2022/lib/viewers/viewer-exception.model.mjs +13 -0
- package/esm2022/lib/viewers/viewer-util.service.mjs +20 -0
- package/esm2022/public_api.mjs +33 -0
- package/fesm2022/hmcts-media-viewer.mjs +320 -295
- package/fesm2022/hmcts-media-viewer.mjs.map +1 -1
- package/hmcts-media-viewer.d.ts.map +1 -0
- package/index.d.ts +4 -2305
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +48 -0
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +32 -0
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +18 -0
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-set.component.d.ts +27 -0
- package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-set.model.d.ts +7 -0
- package/lib/annotations/annotation-set/annotation-set.model.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +34 -0
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts +16 -0
- package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +41 -0
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts +9 -0
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts.map +1 -0
- package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +37 -0
- package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -0
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +37 -0
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -0
- package/lib/annotations/annotations.module.d.ts +36 -0
- package/lib/annotations/annotations.module.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment/comment.component.d.ts +69 -0
- package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment/comment.model.d.ts +13 -0
- package/lib/annotations/comment-set/comment/comment.model.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment/comment.service.d.ts +22 -0
- package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +14 -0
- package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +12 -0
- package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +28 -0
- package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +26 -0
- package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +21 -0
- package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +36 -0
- package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment-set-render.service.d.ts +15 -0
- package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -0
- package/lib/annotations/comment-set/comment-set.component.d.ts +56 -0
- package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -0
- package/lib/annotations/comments-summary/comments-summary.component.d.ts +42 -0
- package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -0
- package/lib/annotations/models/api-persisted.model.d.ts +11 -0
- package/lib/annotations/models/api-persisted.model.d.ts.map +1 -0
- package/lib/annotations/models/event-select.model.d.ts +6 -0
- package/lib/annotations/models/event-select.model.d.ts.map +1 -0
- package/lib/annotations/models/tags.model.d.ts +7 -0
- package/lib/annotations/models/tags.model.d.ts.map +1 -0
- package/lib/annotations/models/user.model.d.ts +6 -0
- package/lib/annotations/models/user.model.d.ts.map +1 -0
- package/lib/annotations/pipes/date/date.pipe.d.ts +16 -0
- package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -0
- package/lib/annotations/pipes/filter/filter.pipe.d.ts +8 -0
- package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -0
- package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +8 -0
- package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -0
- package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +28 -0
- package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -0
- package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +21 -0
- package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -0
- package/lib/annotations/services/tags/tags.services.d.ts +18 -0
- package/lib/annotations/services/tags/tags.services.d.ts.map +1 -0
- package/lib/annotations/tags/tags.component.d.ts +28 -0
- package/lib/annotations/tags/tags.component.d.ts.map +1 -0
- package/lib/bookmark/components/bookmark-icons.component.d.ts +19 -0
- package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -0
- package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +11 -0
- package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -0
- package/lib/icp/icp-follower.service.d.ts +26 -0
- package/lib/icp/icp-follower.service.d.ts.map +1 -0
- package/lib/icp/icp-presenter.service.d.ts +25 -0
- package/lib/icp/icp-presenter.service.d.ts.map +1 -0
- package/lib/icp/icp-session-api.service.d.ts +15 -0
- package/lib/icp/icp-session-api.service.d.ts.map +1 -0
- package/lib/icp/icp-update.service.d.ts +22 -0
- package/lib/icp/icp-update.service.d.ts.map +1 -0
- package/lib/icp/icp.events.d.ts +14 -0
- package/lib/icp/icp.events.d.ts.map +1 -0
- package/lib/icp/icp.interfaces.d.ts +23 -0
- package/lib/icp/icp.interfaces.d.ts.map +1 -0
- package/lib/icp/icp.service.d.ts +40 -0
- package/lib/icp/icp.service.d.ts.map +1 -0
- package/lib/icp/participants-list/participants-list.component.d.ts +23 -0
- package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -0
- package/lib/icp/socket.service.d.ts +29 -0
- package/lib/icp/socket.service.d.ts.map +1 -0
- package/lib/media-viewer.component.d.ts +72 -0
- package/lib/media-viewer.component.d.ts.map +1 -0
- package/lib/media-viewer.module.d.ts +36 -0
- package/lib/media-viewer.module.d.ts.map +1 -0
- package/lib/print.service.d.ts +8 -0
- package/lib/print.service.d.ts.map +1 -0
- package/lib/redaction/components/redaction.component.d.ts +42 -0
- package/lib/redaction/components/redaction.component.d.ts.map +1 -0
- package/lib/redaction/services/redaction-api.service.d.ts +20 -0
- package/lib/redaction/services/redaction-api.service.d.ts.map +1 -0
- package/lib/redaction/services/redaction.model.d.ts +11 -0
- package/lib/redaction/services/redaction.model.d.ts.map +1 -0
- package/lib/shared/directives/tooltip-dismiss.directive.d.ts +11 -0
- package/lib/shared/directives/tooltip-dismiss.directive.d.ts.map +1 -0
- package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +15 -0
- package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -0
- package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +11 -0
- package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -0
- package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +16 -0
- package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -0
- package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +14 -0
- package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -0
- package/lib/shared/shared.module.d.ts +14 -0
- package/lib/shared/shared.module.d.ts.map +1 -0
- package/lib/shared/util/helpers/html-templates.helper.d.ts +9 -0
- package/lib/shared/util/helpers/html-templates.helper.d.ts.map +1 -0
- package/lib/shared/util/services/number.helper.service.d.ts +11 -0
- package/lib/shared/util/services/number.helper.service.d.ts.map +1 -0
- package/lib/store/actions/annotation.actions.d.ts +126 -0
- package/lib/store/actions/annotation.actions.d.ts.map +1 -0
- package/lib/store/actions/bookmark.actions.d.ts +117 -0
- package/lib/store/actions/bookmark.actions.d.ts.map +1 -0
- package/lib/store/actions/document.actions.d.ts +90 -0
- package/lib/store/actions/document.actions.d.ts.map +1 -0
- package/lib/store/actions/icp.actions.d.ts +75 -0
- package/lib/store/actions/icp.actions.d.ts.map +1 -0
- package/lib/store/actions/redaction.actions.d.ts +127 -0
- package/lib/store/actions/redaction.actions.d.ts.map +1 -0
- package/lib/store/actions/tag.actions.d.ts +30 -0
- package/lib/store/actions/tag.actions.d.ts.map +1 -0
- package/lib/store/bookmarks-store-utils.d.ts +9 -0
- package/lib/store/bookmarks-store-utils.d.ts.map +1 -0
- package/lib/store/effects/annotation.effects.d.ts +16 -0
- package/lib/store/effects/annotation.effects.d.ts.map +1 -0
- package/lib/store/effects/bookmarks.effects.d.ts +21 -0
- package/lib/store/effects/bookmarks.effects.d.ts.map +1 -0
- package/lib/store/effects/document.effects.d.ts +17 -0
- package/lib/store/effects/document.effects.d.ts.map +1 -0
- package/lib/store/effects/icp.effects.d.ts +16 -0
- package/lib/store/effects/icp.effects.d.ts.map +1 -0
- package/lib/store/effects/index.d.ts +2 -0
- package/lib/store/effects/index.d.ts.map +1 -0
- package/lib/store/effects/redaction.effects.d.ts +20 -0
- package/lib/store/effects/redaction.effects.d.ts.map +1 -0
- package/lib/store/models/bookmarks.interface.d.ts +31 -0
- package/lib/store/models/bookmarks.interface.d.ts.map +1 -0
- package/lib/store/models/filters.interface.d.ts +8 -0
- package/lib/store/models/filters.interface.d.ts.map +1 -0
- package/lib/store/reducers/annotations.reducer.d.ts +48 -0
- package/lib/store/reducers/annotations.reducer.d.ts.map +1 -0
- package/lib/store/reducers/bookmarks.reducer.d.ts +27 -0
- package/lib/store/reducers/bookmarks.reducer.d.ts.map +1 -0
- package/lib/store/reducers/document.reducer.d.ts +52 -0
- package/lib/store/reducers/document.reducer.d.ts.map +1 -0
- package/lib/store/reducers/icp.reducer.d.ts +9 -0
- package/lib/store/reducers/icp.reducer.d.ts.map +1 -0
- package/lib/store/reducers/redaction.reducer.d.ts +32 -0
- package/lib/store/reducers/redaction.reducer.d.ts.map +1 -0
- package/lib/store/reducers/reducers.d.ts +24 -0
- package/lib/store/reducers/reducers.d.ts.map +1 -0
- package/lib/store/reducers/tags.reducer.d.ts +32 -0
- package/lib/store/reducers/tags.reducer.d.ts.map +1 -0
- package/lib/store/selectors/annotation.selectors.d.ts +136 -0
- package/lib/store/selectors/annotation.selectors.d.ts.map +1 -0
- package/lib/store/selectors/bookmark.selectors.d.ts +38 -0
- package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -0
- package/lib/store/selectors/document.selectors.d.ts +23 -0
- package/lib/store/selectors/document.selectors.d.ts.map +1 -0
- package/lib/store/selectors/icp.selectors.d.ts +10 -0
- package/lib/store/selectors/icp.selectors.d.ts.map +1 -0
- package/lib/store/selectors/redaction.selectors.d.ts +35 -0
- package/lib/store/selectors/redaction.selectors.d.ts.map +1 -0
- package/lib/store/selectors/tag.selectors.d.ts +28 -0
- package/lib/store/selectors/tag.selectors.d.ts.map +1 -0
- package/lib/store/store-utils.d.ts +25 -0
- package/lib/store/store-utils.d.ts.map +1 -0
- package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts +20 -0
- package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts.map +1 -0
- package/lib/toolbar/icp-event.service.d.ts +21 -0
- package/lib/toolbar/icp-event.service.d.ts.map +1 -0
- package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +24 -0
- package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -0
- package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +69 -0
- package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -0
- package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +60 -0
- package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -0
- package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts +12 -0
- package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts.map +1 -0
- package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +30 -0
- package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -0
- package/lib/toolbar/search-bar/search-bar.component.d.ts +34 -0
- package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -0
- package/lib/toolbar/toolbar-button-visibility.service.d.ts +67 -0
- package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -0
- package/lib/toolbar/toolbar-event.service.d.ts +96 -0
- package/lib/toolbar/toolbar-event.service.d.ts.map +1 -0
- package/lib/toolbar/toolbar.module.d.ts +20 -0
- package/lib/toolbar/toolbar.module.d.ts.map +1 -0
- package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +31 -0
- package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -0
- package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +12 -0
- package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -0
- package/lib/viewers/grab-n-drag.directive.d.ts +19 -0
- package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -0
- package/lib/viewers/image-viewer/image-viewer.component.d.ts +57 -0
- package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -0
- package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +25 -0
- package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts +69 -0
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +17 -0
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +82 -0
- package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +82 -0
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts +22 -0
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +20 -0
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts +14 -0
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts.map +1 -0
- package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +42 -0
- package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -0
- package/lib/viewers/rotation-persist/rotation-api.service.d.ts +14 -0
- package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -0
- package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +27 -0
- package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -0
- package/lib/viewers/rotation-persist/rotation.model.d.ts +5 -0
- package/lib/viewers/rotation-persist/rotation.model.d.ts.map +1 -0
- package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +23 -0
- package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -0
- package/lib/viewers/viewer-event.service.d.ts +23 -0
- package/lib/viewers/viewer-event.service.d.ts.map +1 -0
- package/lib/viewers/viewer-exception.model.d.ts +15 -0
- package/lib/viewers/viewer-exception.model.d.ts.map +1 -0
- package/lib/viewers/viewer-util.service.d.ts +10 -0
- package/lib/viewers/viewer-util.service.d.ts.map +1 -0
- package/package.json +12 -10
- package/public_api.d.ts +30 -0
- package/public_api.d.ts.map +1 -0
- package/index.d.ts.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rotation-api.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;;AAE5C,qBACa,kBAAkB;IAK3B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAHtB,cAAc,SAAuB;gBAGzB,UAAU,EAAE,UAAU;IAGlC,WAAW,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAMnE,YAAY,CAAC,OAAO,EAAE,QAAQ,GAAG,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;yCAd/D,kBAAkB;6CAAlB,kBAAkB;CAwB9B"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Store } from '@ngrx/store';
|
|
3
|
+
import { ResponseType } from '../viewer-exception.model';
|
|
4
|
+
import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
|
|
5
|
+
import * as fromStore from '../../store/reducers/reducers';
|
|
6
|
+
import { ToolbarButtonVisibilityService } from '../../toolbar/toolbar-button-visibility.service';
|
|
7
|
+
import { Subscription } from 'rxjs';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class RotationPersistDirective implements OnInit, OnDestroy {
|
|
10
|
+
private el;
|
|
11
|
+
private store;
|
|
12
|
+
readonly toolbarButtons: ToolbarButtonVisibilityService;
|
|
13
|
+
private toolbarEvents;
|
|
14
|
+
documentId: string;
|
|
15
|
+
rotation: number;
|
|
16
|
+
savedRotation: number;
|
|
17
|
+
$subscriptions: Subscription;
|
|
18
|
+
constructor(el: ElementRef, store: Store<fromStore.DocumentState>, toolbarButtons: ToolbarButtonVisibilityService, toolbarEvents: ToolbarEventService);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngOnDestroy(): void;
|
|
21
|
+
onMediaLoad(status: ResponseType): void;
|
|
22
|
+
private onRotate;
|
|
23
|
+
private saveRotation;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RotationPersistDirective, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RotationPersistDirective, "[mvRotationPersist]", never, {}, {}, never, never, false, never>;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=rotation-persist.directive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rotation-persist.directive.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation-persist.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEvF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAI5C,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AACjG,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;;AAGpC,qBAGa,wBAAyB,YAAW,MAAM,EAAE,SAAS;IAQpD,OAAO,CAAC,EAAE;IACpB,OAAO,CAAC,KAAK;aACG,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,aAAa;IATvB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,SAAK;IACb,aAAa,SAAK;IAElB,cAAc,EAAE,YAAY,CAAC;gBAET,EAAE,EAAE,UAAU,EACxB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,aAAa,CAAC,EAC7B,cAAc,EAAE,8BAA8B,EACtD,aAAa,EAAE,mBAAmB;IAG5C,QAAQ;IAQR,WAAW;IAKX,WAAW,CAAC,MAAM,EAAE,YAAY;IAahC,OAAO,CAAC,QAAQ;IAKhB,OAAO,CAAC,YAAY;yCA7CT,wBAAwB;2CAAxB,wBAAwB;CAoDpC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rotation.model.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ElementRef, OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
|
|
3
|
+
import { ResponseType, ViewerException } from '../viewer-exception.model';
|
|
4
|
+
import { ViewerUtilService } from '../viewer-util.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class UnsupportedViewerComponent implements OnInit, OnDestroy {
|
|
7
|
+
readonly toolbarEvents: ToolbarEventService;
|
|
8
|
+
private readonly viewerUtilService;
|
|
9
|
+
url: string;
|
|
10
|
+
downloadFileName: string;
|
|
11
|
+
typeException: boolean;
|
|
12
|
+
loadStatus: EventEmitter<ResponseType>;
|
|
13
|
+
unsupportedViewerException: EventEmitter<ViewerException>;
|
|
14
|
+
downloadLink: ElementRef;
|
|
15
|
+
private subscriptions;
|
|
16
|
+
private viewerException;
|
|
17
|
+
constructor(toolbarEvents: ToolbarEventService, viewerUtilService: ViewerUtilService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UnsupportedViewerComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UnsupportedViewerComponent, "mv-unsupported-viewer", never, { "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "typeException": { "alias": "typeException"; "required": false; }; }, { "loadStatus": "loadStatus"; "unsupportedViewerException": "unsupportedViewerException"; }, never, never, false, never>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=unsupported-viewer.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unsupported-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/unsupported-viewer/unsupported-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAS,MAAM,EAAa,SAAS,EAAU,YAAY,EAAE,MAAM,eAAe,CAAC;AACjH,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;;AAE3D,qBAIa,0BAA2B,YAAW,MAAM,EAAE,SAAS;aAehD,aAAa,EAAE,mBAAmB;IAClD,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAd3B,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,EAAE,OAAO,CAAC;IAEtB,UAAU,6BAAoC;IAC9C,0BAA0B,gCAAuC;IAE/B,YAAY,EAAE,UAAU,CAAC;IAErE,OAAO,CAAC,aAAa,CAAsB;IAC3C,OAAO,CAAC,eAAe,CAAkB;gBAGvB,aAAa,EAAE,mBAAmB,EACjC,iBAAiB,EAAE,iBAAiB;IAGhD,QAAQ,IAAI,IAAI;IAmBvB,WAAW,IAAI,IAAI;yCAtCR,0BAA0B;2CAA1B,0BAA0B;CA4CtC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import { Rectangle } from '../annotations/annotation-set/annotation-view/rectangle/rectangle.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface Highlight {
|
|
5
|
+
page: number;
|
|
6
|
+
rectangles: Rectangle[];
|
|
7
|
+
}
|
|
8
|
+
export declare class ViewerEventService {
|
|
9
|
+
readonly textHighlight: Subject<Highlight>;
|
|
10
|
+
readonly boxHighlight: Subject<Highlight>;
|
|
11
|
+
readonly ctxToolbarCleared: Subject<void>;
|
|
12
|
+
readonly navigationEvent: Subject<any[]>;
|
|
13
|
+
readonly navigationEventICP: Subject<any[]>;
|
|
14
|
+
constructor();
|
|
15
|
+
textSelected(selectionData: Highlight): void;
|
|
16
|
+
boxSelected(selectionData: Highlight): void;
|
|
17
|
+
clearCtxToolbar(): void;
|
|
18
|
+
goToDestination(destination: any[]): void;
|
|
19
|
+
goToDestinationICP(destination: any[]): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewerEventService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ViewerEventService>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=viewer-event.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewer-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-event.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,yEAAyE,CAAC;;AAEpG,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,SAAS,EAAE,CAAC;CACzB;AAED,qBACa,kBAAkB;IAE7B,SAAgB,aAAa,qBAA4B;IACzD,SAAgB,YAAY,qBAA4B;IACxD,SAAgB,iBAAiB,gBAAuB;IACxD,SAAgB,eAAe,iBAAwB;IACvD,SAAgB,kBAAkB,iBAAwB;;IAInD,YAAY,CAAC,aAAa,EAAE,SAAS,GAAG,IAAI;IAI5C,WAAW,CAAC,aAAa,EAAE,SAAS,GAAG,IAAI;IAI3C,eAAe,IAAI,IAAI;IAKvB,eAAe,CAAC,WAAW,EAAE,GAAG,EAAE;IAIlC,kBAAkB,CAAC,WAAW,EAAE,GAAG,EAAE;yCA3BjC,kBAAkB;6CAAlB,kBAAkB;CA8B9B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum ResponseType {
|
|
2
|
+
SUCCESS = "SUCCESS",
|
|
3
|
+
FAILURE = "FAILURE",
|
|
4
|
+
UNSUPPORTED = "UNSUPPORTED"
|
|
5
|
+
}
|
|
6
|
+
export interface ExceptionDetail {
|
|
7
|
+
httpResponseCode?: string;
|
|
8
|
+
message?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class ViewerException {
|
|
11
|
+
exceptionType?: string;
|
|
12
|
+
detail?: ExceptionDetail;
|
|
13
|
+
constructor(exceptionType?: string, detail?: ExceptionDetail);
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=viewer-exception.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewer-exception.model.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-exception.model.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IACtB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,WAAW,gBAAgB;CAC5B;AAED,MAAM,WAAW,eAAe;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,eAAe;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,eAAe,CAAC;gBAEb,aAAa,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,eAAe;CAI7D"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ViewerUtilService {
|
|
4
|
+
private http;
|
|
5
|
+
constructor(http: HttpClient);
|
|
6
|
+
validateFile(url: string): import("rxjs").Observable<Object>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewerUtilService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ViewerUtilService>;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=viewer-util.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewer-util.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-util.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;;AAElD,qBAGa,iBAAiB;IAE1B,OAAO,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAGnB,YAAY,CAAC,GAAG,EAAE,MAAM;yCALpB,iBAAiB;6CAAjB,iBAAiB;CAQ7B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmcts/media-viewer",
|
|
3
|
-
"version": "4.1.9
|
|
3
|
+
"version": "4.1.9",
|
|
4
4
|
"description": "Media Viewer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Angular",
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"uuid": "^11.0.3"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@angular/animations": "^
|
|
29
|
-
"@angular/common": "^
|
|
30
|
-
"@angular/core": "^
|
|
31
|
-
"@angular/forms": "^
|
|
28
|
+
"@angular/animations": "^17.3.8",
|
|
29
|
+
"@angular/common": "^17.3.8",
|
|
30
|
+
"@angular/core": "^17.3.8",
|
|
31
|
+
"@angular/forms": "^17.3.8",
|
|
32
32
|
"@angular/material": "^17.3.8",
|
|
33
|
-
"@angular/platform-browser": "^
|
|
34
|
-
"@ngrx/effects": "^
|
|
35
|
-
"@ngrx/router-store": "^
|
|
36
|
-
"@ngrx/store": "^
|
|
37
|
-
"@ngrx/store-devtools": "^
|
|
33
|
+
"@angular/platform-browser": "^17.3.8",
|
|
34
|
+
"@ngrx/effects": "^17.0.0",
|
|
35
|
+
"@ngrx/router-store": "^17.0.0",
|
|
36
|
+
"@ngrx/store": "^17.0.0",
|
|
37
|
+
"@ngrx/store-devtools": "^17.0.0"
|
|
38
38
|
},
|
|
39
39
|
"packageManager": "yarn@4.5.0",
|
|
40
40
|
"module": "fesm2022/hmcts-media-viewer.mjs",
|
|
@@ -45,6 +45,8 @@
|
|
|
45
45
|
},
|
|
46
46
|
".": {
|
|
47
47
|
"types": "./index.d.ts",
|
|
48
|
+
"esm2022": "./esm2022/hmcts-media-viewer.mjs",
|
|
49
|
+
"esm": "./esm2022/hmcts-media-viewer.mjs",
|
|
48
50
|
"default": "./fesm2022/hmcts-media-viewer.mjs"
|
|
49
51
|
}
|
|
50
52
|
},
|
package/public_api.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export * from './lib/media-viewer.module';
|
|
2
|
+
export * from './lib/toolbar/toolbar.module';
|
|
3
|
+
export * from './lib/annotations/services/annotation-api/annotation-api.service';
|
|
4
|
+
export * from './lib/annotations/annotations.module';
|
|
5
|
+
export * from './lib/viewers/viewer-exception.model';
|
|
6
|
+
export * from './lib/store/reducers/annotations.reducer';
|
|
7
|
+
export * from './lib/store/selectors/annotation.selectors';
|
|
8
|
+
export * from './lib/store/actions/annotation.actions';
|
|
9
|
+
export * from './lib/store/effects/annotation.effects';
|
|
10
|
+
export * from './lib/media-viewer.component';
|
|
11
|
+
export * from './lib/toolbar/highlight-toolbar/highlight-toolbar.component';
|
|
12
|
+
export * from './lib/toolbar/main-toolbar/main-toolbar.component';
|
|
13
|
+
export * from './lib/toolbar/search-bar/search-bar.component';
|
|
14
|
+
export * from './lib/toolbar/redaction-toolbar/redaction-toolbar.component';
|
|
15
|
+
export * from './lib/toolbar/redaction-search-bar/redaction-search-bar.component';
|
|
16
|
+
export * from './lib/toolbar/icp-toolbar/icp-toolbar.component';
|
|
17
|
+
export * from './lib/annotations/annotation-set/annotation-view/annotation-view.component';
|
|
18
|
+
export * from './lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component';
|
|
19
|
+
export * from './lib/annotations/annotation-set/annotation-set.component';
|
|
20
|
+
export * from './lib/annotations/comment-set/comment-set.component';
|
|
21
|
+
export * from './lib/annotations/comment-set/comment-set-header/comment-set-header.component';
|
|
22
|
+
export * from './lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component';
|
|
23
|
+
export * from './lib/annotations/comments-summary/comments-summary.component';
|
|
24
|
+
export * from './lib/annotations/tags/tags.component';
|
|
25
|
+
export * from './lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component';
|
|
26
|
+
export * from './lib/annotations/annotation-set/metadata-layer/metadata-layer.component';
|
|
27
|
+
export * from './lib/annotations/pipes/filter/filter.pipe';
|
|
28
|
+
export * from './lib/annotations/pipes/unsnake/unsnake.pipe';
|
|
29
|
+
export * from './lib/annotations/pipes/date/date.pipe';
|
|
30
|
+
//# sourceMappingURL=public_api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../projects/media-viewer/src/public_api.ts"],"names":[],"mappings":"AAIA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kEAAkE,CAAC;AACjF,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wCAAwC,CAAC;AACvD,cAAc,wCAAwC,CAAC;AACvD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mDAAmD,CAAC;AAClE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mEAAmE,CAAC;AAClF,cAAc,iDAAiD,CAAC;AAChE,cAAc,4EAA4E,CAAC;AAC3F,cAAc,wGAAwG,CAAC;AACvH,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qDAAqD,CAAC;AACpE,cAAc,+EAA+E,CAAC;AAC9F,cAAc,0FAA0F,CAAC;AACzG,cAAc,+DAA+D,CAAC;AAC9E,cAAc,uCAAuC,CAAC;AACtD,cAAc,0FAA0F,CAAC;AACzG,cAAc,0EAA0E,CAAC;AACzF,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC"}
|
package/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.ts","../../projects/media-viewer/src/lib/annotations/models/user.model.ts","../../projects/media-viewer/src/lib/annotations/models/api-persisted.model.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.ts","../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search.model.ts","../../projects/media-viewer/src/lib/toolbar/icp-event.service.ts","../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts","../../projects/media-viewer/src/lib/store/reducers/document.reducer.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ts","../../projects/media-viewer/src/lib/annotations/models/tags.model.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.model.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation.model.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-set.model.ts","../../projects/media-viewer/src/lib/print.service.ts","../../projects/media-viewer/src/lib/viewers/viewer-exception.model.ts","../../projects/media-viewer/src/lib/toolbar/toolbar-button-visibility.service.ts","../../projects/media-viewer/src/lib/annotations/models/event-select.model.ts","../../projects/media-viewer/src/lib/store/models/filters.interface.ts","../../projects/media-viewer/src/lib/store/actions/annotation.actions.ts","../../projects/media-viewer/src/lib/store/reducers/annotations.reducer.ts","../../projects/media-viewer/src/lib/store/reducers/tags.reducer.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.ts","../../projects/media-viewer/src/lib/store/reducers/bookmarks.reducer.ts","../../projects/media-viewer/src/lib/redaction/services/redaction.model.ts","../../projects/media-viewer/src/lib/store/reducers/redaction.reducer.ts","../../projects/media-viewer/src/lib/icp/icp.interfaces.ts","../../projects/media-viewer/src/lib/store/reducers/reducers.ts","../../projects/media-viewer/src/lib/viewers/viewer-event.service.ts","../../projects/media-viewer/src/lib/icp/icp.events.ts","../../projects/media-viewer/src/lib/icp/socket.service.ts","../../projects/media-viewer/src/lib/icp/icp-update.service.ts","../../projects/media-viewer/src/lib/icp/icp-presenter.service.ts","../../projects/media-viewer/src/lib/icp/icp-follower.service.ts","../../projects/media-viewer/src/lib/icp/icp.service.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-viewer.component.ts","../../projects/media-viewer/src/lib/store/models/bookmarks.interface.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/side-bar.component.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.ts","../../projects/media-viewer/src/lib/viewers/viewer-util.service.ts","../../projects/media-viewer/src/lib/viewers/image-viewer/image-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/unsupported-viewer/unsupported-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/multimedia-player/multimedia-player.component.ts","../../projects/media-viewer/src/lib/annotations/services/annotation-api/annotation-api.service.ts","../../projects/media-viewer/src/lib/annotations/services/tags/tags.services.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-render.service.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.service.ts","../../projects/media-viewer/src/lib/media-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/grab-n-drag.directive.ts","../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation-persist.directive.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.ts","../../projects/media-viewer/src/lib/icp/confirm-exit/confirm-action-dialog.component.ts","../../projects/media-viewer/src/lib/redaction/components/redaction.component.ts","../../projects/media-viewer/src/lib/bookmark/components/bookmark-icons.component.ts","../../projects/media-viewer/src/lib/icp/participants-list/participants-list.component.ts","../../projects/media-viewer/src/lib/toolbar/search-bar/search-bar.component.ts","../../projects/media-viewer/src/lib/shared/util/services/number.helper.service.ts","../../projects/media-viewer/src/lib/toolbar/main-toolbar/main-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/icp-toolbar/icp-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ts","../../projects/media-viewer/src/lib/toolbar/highlight-toolbar/highlight-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation-view.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-set.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.ts","../../projects/media-viewer/src/lib/annotations/comments-summary/comments-summary.component.ts","../../projects/media-viewer/src/lib/annotations/tags/tags.component.ts","../../projects/media-viewer/src/lib/annotations/pipes/date/date.pipe.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ts","../../projects/media-viewer/src/lib/annotations/pipes/filter/filter.pipe.ts","../../projects/media-viewer/src/lib/annotations/pipes/unsnake/unsnake.pipe.ts","../../projects/media-viewer/src/lib/shared/gov-uk-date/gov-uk-date.component.ts","../../projects/media-viewer/src/lib/shared/gov-uk-error-message/gov-uk-error-message.component.ts","../../projects/media-viewer/src/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.ts","../../projects/media-viewer/src/lib/shared/gov-uk-label/gov-uk-label.component.ts","../../projects/media-viewer/src/lib/shared/shared.module.ts","../../projects/media-viewer/src/lib/annotations/annotations.module.ts","../../projects/media-viewer/src/lib/media-viewer.module.ts","../../projects/media-viewer/src/lib/store/selectors/annotation.selectors.ts","../../projects/media-viewer/src/lib/store/effects/annotation.effects.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
|