@hmcts/media-viewer 2.9.5 → 2.10.0
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 -1
- package/assets/sass/tags.scss +1 -1
- package/esm2020/hmcts-media-viewer.mjs +5 -0
- package/esm2020/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +116 -0
- package/esm2020/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +109 -0
- package/esm2020/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +75 -0
- package/esm2020/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
- package/esm2020/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
- package/esm2020/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
- package/esm2020/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +118 -0
- package/esm2020/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +87 -0
- package/esm2020/lib/annotations/annotations.module.mjs +158 -0
- package/esm2020/lib/annotations/comment-set/comment/comment.component.mjs +176 -0
- package/esm2020/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
- package/esm2020/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
- package/esm2020/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
- package/esm2020/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
- package/esm2020/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +61 -0
- package/esm2020/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +53 -0
- package/esm2020/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +68 -0
- package/esm2020/lib/annotations/comment-set/comment-set-render.service.mjs +54 -0
- package/esm2020/lib/annotations/comment-set/comment-set.component.mjs +123 -0
- package/esm2020/lib/annotations/comments-summary/comments-summary.component.mjs +113 -0
- package/esm2020/lib/annotations/pipes/date/date.pipe.mjs +26 -0
- package/esm2020/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
- package/esm2020/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
- package/esm2020/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
- package/esm2020/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
- package/esm2020/lib/annotations/services/tags/tags.services.mjs +41 -0
- package/esm2020/lib/annotations/tags/tags.component.mjs +53 -0
- package/esm2020/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
- package/esm2020/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
- package/esm2020/lib/icp/icp-follower.service.mjs +60 -0
- package/esm2020/lib/icp/icp-presenter.service.mjs +55 -0
- package/esm2020/lib/icp/icp-session-api.service.mjs +21 -0
- package/esm2020/lib/icp/icp-update.service.mjs +57 -0
- package/esm2020/lib/icp/icp.service.mjs +93 -0
- package/esm2020/lib/icp/participants-list/participants-list.component.mjs +30 -0
- package/esm2020/lib/icp/socket.service.mjs +118 -0
- package/esm2020/lib/media-viewer.component.mjs +244 -0
- package/esm2020/lib/media-viewer.module.mjs +151 -0
- package/{esm2015/lib/print.service.js → esm2020/lib/print.service.mjs} +9 -7
- package/esm2020/lib/redaction/components/redaction.component.mjs +91 -0
- package/esm2020/lib/redaction/services/redaction-api.service.mjs +50 -0
- package/esm2020/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
- package/esm2020/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
- package/esm2020/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
- package/esm2020/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
- package/esm2020/lib/shared/shared.module.mjs +53 -0
- package/esm2020/lib/shared/util/services/number.helper.service.mjs +23 -0
- package/{esm2015/lib/store/bookmarks-store-utils.js → esm2020/lib/store/bookmarks-store-utils.mjs} +1 -3
- package/esm2020/lib/store/effects/annotation.effects.mjs +44 -0
- package/esm2020/lib/store/effects/bookmarks.effects.mjs +44 -0
- package/esm2020/lib/store/effects/document.effects.mjs +44 -0
- package/esm2020/lib/store/effects/icp.effects.mjs +26 -0
- package/esm2020/lib/store/effects/redaction.effects.mjs +67 -0
- package/esm2020/lib/store/reducers/annotations.reducer.mjs +183 -0
- package/esm2020/lib/store/reducers/bookmarks.reducer.mjs +116 -0
- package/esm2020/lib/store/reducers/document.reducer.mjs +135 -0
- package/esm2020/lib/store/reducers/icp.reducer.mjs +56 -0
- package/esm2020/lib/store/reducers/redaction.reducer.mjs +116 -0
- package/esm2020/lib/store/reducers/tags.reducer.mjs +93 -0
- package/esm2020/lib/store/selectors/annotation.selectors.mjs +81 -0
- package/esm2020/lib/store/selectors/bookmark.selectors.mjs +36 -0
- package/{esm2015/lib/store/selectors/document.selectors.js → esm2020/lib/store/selectors/document.selectors.mjs} +3 -6
- package/esm2020/lib/store/selectors/icp.selectors.mjs +13 -0
- package/{esm2015/lib/store/selectors/redaction.selectors.js → esm2020/lib/store/selectors/redaction.selectors.mjs} +6 -10
- package/{esm2015/lib/store/selectors/tag.selectors.js → esm2020/lib/store/selectors/tag.selectors.mjs} +4 -7
- package/esm2020/lib/store/store-utils.mjs +131 -0
- package/esm2020/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +41 -0
- package/esm2020/lib/toolbar/main-toolbar/main-toolbar.component.mjs +188 -0
- package/esm2020/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +199 -0
- package/esm2020/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +66 -0
- package/esm2020/lib/toolbar/search-bar/search-bar.component.mjs +105 -0
- package/esm2020/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
- package/{esm2015/lib/toolbar/toolbar-event.service.js → esm2020/lib/toolbar/toolbar-event.service.mjs} +7 -5
- package/esm2020/lib/toolbar/toolbar.module.mjs +67 -0
- package/esm2020/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +78 -0
- package/esm2020/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
- package/esm2020/lib/viewers/grab-n-drag.directive.mjs +57 -0
- package/esm2020/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
- package/esm2020/lib/viewers/multimedia-player/multimedia-player.component.mjs +58 -0
- package/esm2020/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +193 -0
- package/esm2020/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
- package/esm2020/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +230 -0
- package/esm2020/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +192 -0
- package/esm2020/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
- package/esm2020/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +77 -0
- package/esm2020/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
- package/esm2020/lib/viewers/rotation-persist/rotation-persist.directive.mjs +64 -0
- package/esm2020/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
- package/esm2020/lib/viewers/viewer-event.service.mjs +30 -0
- package/esm2020/lib/viewers/viewer-util.service.mjs +20 -0
- package/esm2020/public_api.mjs +32 -0
- package/fesm2015/hmcts-media-viewer.mjs +6602 -0
- package/fesm2015/hmcts-media-viewer.mjs.map +1 -0
- package/fesm2020/hmcts-media-viewer.mjs +6893 -0
- package/fesm2020/hmcts-media-viewer.mjs.map +1 -0
- package/hmcts-media-viewer.d.ts.map +1 -1
- package/index.d.ts +6 -0
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +3 -0
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +3 -0
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +3 -0
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-set.component.d.ts +3 -0
- package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +3 -0
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +5 -2
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +3 -0
- package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +3 -0
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -1
- package/lib/annotations/annotations.module.d.ts +32 -0
- package/lib/annotations/annotations.module.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment/comment.component.d.ts +3 -0
- package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment/comment.service.d.ts +5 -2
- package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +3 -0
- package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +3 -0
- package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +3 -0
- package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +6 -3
- package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +3 -0
- package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +3 -0
- package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment-set-render.service.d.ts +3 -0
- package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -1
- package/lib/annotations/comment-set/comment-set.component.d.ts +3 -0
- package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -1
- package/lib/annotations/comments-summary/comments-summary.component.d.ts +6 -3
- package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -1
- package/lib/annotations/pipes/date/date.pipe.d.ts +3 -0
- package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -1
- package/lib/annotations/pipes/filter/filter.pipe.d.ts +3 -0
- package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -1
- package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +3 -0
- package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -1
- package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +3 -0
- package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -1
- package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +3 -0
- package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -1
- package/lib/annotations/services/tags/tags.services.d.ts +3 -0
- package/lib/annotations/services/tags/tags.services.d.ts.map +1 -1
- package/lib/annotations/tags/tags.component.d.ts +6 -3
- package/lib/annotations/tags/tags.component.d.ts.map +1 -1
- package/lib/bookmark/components/bookmark-icons.component.d.ts +3 -0
- package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -1
- package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +3 -0
- package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -1
- package/lib/icp/icp-follower.service.d.ts +3 -0
- package/lib/icp/icp-follower.service.d.ts.map +1 -1
- package/lib/icp/icp-presenter.service.d.ts +3 -0
- package/lib/icp/icp-presenter.service.d.ts.map +1 -1
- package/lib/icp/icp-session-api.service.d.ts +3 -0
- package/lib/icp/icp-session-api.service.d.ts.map +1 -1
- package/lib/icp/icp-update.service.d.ts +3 -0
- package/lib/icp/icp-update.service.d.ts.map +1 -1
- package/lib/icp/icp.service.d.ts +3 -0
- package/lib/icp/icp.service.d.ts.map +1 -1
- package/lib/icp/participants-list/participants-list.component.d.ts +3 -0
- package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -1
- package/lib/icp/socket.service.d.ts +3 -0
- package/lib/icp/socket.service.d.ts.map +1 -1
- package/lib/media-viewer.component.d.ts +3 -0
- package/lib/media-viewer.component.d.ts.map +1 -1
- package/lib/media-viewer.module.d.ts +31 -0
- package/lib/media-viewer.module.d.ts.map +1 -1
- package/lib/print.service.d.ts +3 -0
- package/lib/print.service.d.ts.map +1 -1
- package/lib/redaction/components/redaction.component.d.ts +3 -0
- package/lib/redaction/components/redaction.component.d.ts.map +1 -1
- package/lib/redaction/services/redaction-api.service.d.ts +3 -0
- package/lib/redaction/services/redaction-api.service.d.ts.map +1 -1
- package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +3 -0
- package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -1
- package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +3 -0
- package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -1
- package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +3 -0
- package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -1
- package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +3 -0
- package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -1
- package/lib/shared/shared.module.d.ts +11 -0
- package/lib/shared/shared.module.d.ts.map +1 -1
- package/lib/shared/util/services/number.helper.service.d.ts +3 -0
- package/lib/shared/util/services/number.helper.service.d.ts.map +1 -1
- package/lib/store/actions/annotation.actions.d.ts +1 -1
- package/lib/store/actions/annotation.actions.d.ts.map +1 -1
- package/lib/store/actions/bookmark.actions.d.ts +1 -1
- package/lib/store/actions/bookmark.actions.d.ts.map +1 -1
- package/lib/store/actions/document.actions.d.ts +1 -1
- package/lib/store/actions/document.actions.d.ts.map +1 -1
- package/lib/store/actions/icp.actions.d.ts +1 -1
- package/lib/store/actions/icp.actions.d.ts.map +1 -1
- package/lib/store/actions/redaction.actions.d.ts +1 -1
- package/lib/store/actions/redaction.actions.d.ts.map +1 -1
- package/lib/store/actions/tag.actions.d.ts +1 -1
- package/lib/store/actions/tag.actions.d.ts.map +1 -1
- package/lib/store/effects/annotation.effects.d.ts +6 -3
- package/lib/store/effects/annotation.effects.d.ts.map +1 -1
- package/lib/store/effects/bookmarks.effects.d.ts +8 -5
- package/lib/store/effects/bookmarks.effects.d.ts.map +1 -1
- package/lib/store/effects/document.effects.d.ts +6 -3
- package/lib/store/effects/document.effects.d.ts.map +1 -1
- package/lib/store/effects/icp.effects.d.ts +5 -2
- package/lib/store/effects/icp.effects.d.ts.map +1 -1
- package/lib/store/effects/redaction.effects.d.ts +9 -6
- package/lib/store/effects/redaction.effects.d.ts.map +1 -1
- package/lib/store/selectors/annotation.selectors.d.ts +70 -27
- package/lib/store/selectors/annotation.selectors.d.ts.map +1 -1
- package/lib/store/selectors/bookmark.selectors.d.ts +18 -10
- package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -1
- package/lib/store/selectors/document.selectors.d.ts +13 -11
- package/lib/store/selectors/document.selectors.d.ts.map +1 -1
- package/lib/store/selectors/icp.selectors.d.ts +9 -8
- package/lib/store/selectors/icp.selectors.d.ts.map +1 -1
- package/lib/store/selectors/redaction.selectors.d.ts +17 -11
- package/lib/store/selectors/redaction.selectors.d.ts.map +1 -1
- package/lib/store/selectors/tag.selectors.d.ts +14 -12
- package/lib/store/selectors/tag.selectors.d.ts.map +1 -1
- package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +3 -0
- package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -1
- package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +3 -0
- package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -1
- package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +5 -2
- package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -1
- package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +3 -0
- package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -1
- package/lib/toolbar/search-bar/search-bar.component.d.ts +3 -0
- package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -1
- package/lib/toolbar/toolbar-button-visibility.service.d.ts +3 -0
- package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -1
- package/lib/toolbar/toolbar-event.service.d.ts +5 -2
- package/lib/toolbar/toolbar-event.service.d.ts.map +1 -1
- package/lib/toolbar/toolbar.module.d.ts +13 -0
- package/lib/toolbar/toolbar.module.d.ts.map +1 -1
- package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +3 -0
- package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -1
- package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +3 -0
- package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -1
- package/lib/viewers/grab-n-drag.directive.d.ts +3 -0
- package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -1
- package/lib/viewers/image-viewer/image-viewer.component.d.ts +3 -0
- package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -1
- package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +3 -0
- package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -1
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +3 -0
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -1
- package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +3 -0
- package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -1
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +5 -2
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -1
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +3 -0
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -1
- package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +3 -0
- package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -1
- package/lib/viewers/rotation-persist/rotation-api.service.d.ts +3 -0
- package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -1
- package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +3 -0
- package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -1
- package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +3 -0
- package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -1
- package/lib/viewers/viewer-event.service.d.ts +3 -0
- package/lib/viewers/viewer-event.service.d.ts.map +1 -1
- package/lib/viewers/viewer-util.service.d.ts +3 -0
- package/lib/viewers/viewer-util.service.d.ts.map +1 -1
- package/package.json +34 -22
- package/public_api.d.ts +1 -0
- package/public_api.d.ts.map +1 -1
- package/bundles/hmcts-media-viewer.umd.js +0 -7552
- package/bundles/hmcts-media-viewer.umd.js.map +0 -1
- package/bundles/hmcts-media-viewer.umd.min.js +0 -2
- package/bundles/hmcts-media-viewer.umd.min.js.map +0 -1
- package/esm2015/hmcts-media-viewer.js +0 -64
- package/esm2015/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.js +0 -113
- package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.js +0 -111
- package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.js +0 -61
- package/esm2015/lib/annotations/annotation-set/annotation-set.component.js +0 -47
- package/esm2015/lib/annotations/annotation-set/annotation-view/annotation-view.component.js +0 -86
- package/esm2015/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.js +0 -108
- package/esm2015/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.js +0 -107
- package/esm2015/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.js +0 -81
- package/esm2015/lib/annotations/annotations.module.js +0 -103
- package/esm2015/lib/annotations/comment-set/comment/comment.component.js +0 -162
- package/esm2015/lib/annotations/comment-set/comment/comment.service.js +0 -47
- package/esm2015/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.js +0 -48
- package/esm2015/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.js +0 -31
- package/esm2015/lib/annotations/comment-set/comment-navigate/comments-navigate.component.js +0 -95
- package/esm2015/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.js +0 -60
- package/esm2015/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.js +0 -53
- package/esm2015/lib/annotations/comment-set/comment-set-header/comment-set-header.component.js +0 -68
- package/esm2015/lib/annotations/comment-set/comment-set-render.service.js +0 -51
- package/esm2015/lib/annotations/comment-set/comment-set.component.js +0 -110
- package/esm2015/lib/annotations/comments-summary/comments-summary.component.js +0 -106
- package/esm2015/lib/annotations/pipes/date/date.pipe.js +0 -22
- package/esm2015/lib/annotations/pipes/filter/filter.pipe.js +0 -28
- package/esm2015/lib/annotations/pipes/unsnake/unsnake.pipe.js +0 -12
- package/esm2015/lib/annotations/services/annotation-api/annotation-api.service.js +0 -59
- package/esm2015/lib/annotations/services/bookmarks-api/bookmarks-api.service.js +0 -46
- package/esm2015/lib/annotations/services/tags/tags.services.js +0 -36
- package/esm2015/lib/annotations/tags/tags.component.js +0 -52
- package/esm2015/lib/bookmark/components/bookmark-icons.component.js +0 -26
- package/esm2015/lib/icp/confirm-exit/confirm-action-dialog.component.js +0 -25
- package/esm2015/lib/icp/icp-follower.service.js +0 -63
- package/esm2015/lib/icp/icp-presenter.service.js +0 -57
- package/esm2015/lib/icp/icp-session-api.service.js +0 -22
- package/esm2015/lib/icp/icp-update.service.js +0 -56
- package/esm2015/lib/icp/icp.service.js +0 -98
- package/esm2015/lib/icp/participants-list/participants-list.component.js +0 -32
- package/esm2015/lib/icp/socket.service.js +0 -117
- package/esm2015/lib/media-viewer.component.js +0 -210
- package/esm2015/lib/media-viewer.module.js +0 -102
- package/esm2015/lib/redaction/components/redaction.component.js +0 -97
- package/esm2015/lib/redaction/services/redaction-api.service.js +0 -51
- package/esm2015/lib/shared/gov-uk-date/gov-uk-date.component.js +0 -21
- package/esm2015/lib/shared/gov-uk-error-message/gov-uk-error-message.component.js +0 -27
- package/esm2015/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.js +0 -42
- package/esm2015/lib/shared/gov-uk-label/gov-uk-label.component.js +0 -32
- package/esm2015/lib/shared/shared.module.js +0 -34
- package/esm2015/lib/shared/util/services/number.helper.service.js +0 -23
- package/esm2015/lib/store/effects/annotation.effects.js +0 -58
- package/esm2015/lib/store/effects/bookmarks.effects.js +0 -66
- package/esm2015/lib/store/effects/document.effects.js +0 -59
- package/esm2015/lib/store/effects/icp.effects.js +0 -37
- package/esm2015/lib/store/effects/redaction.effects.js +0 -94
- package/esm2015/lib/store/reducers/annotations.reducer.js +0 -115
- package/esm2015/lib/store/reducers/bookmarks.reducer.js +0 -80
- package/esm2015/lib/store/reducers/document.reducer.js +0 -100
- package/esm2015/lib/store/reducers/icp.reducer.js +0 -40
- package/esm2015/lib/store/reducers/redaction.reducer.js +0 -75
- package/esm2015/lib/store/reducers/tags.reducer.js +0 -67
- package/esm2015/lib/store/selectors/annotation.selectors.js +0 -84
- package/esm2015/lib/store/selectors/bookmark.selectors.js +0 -41
- package/esm2015/lib/store/selectors/icp.selectors.js +0 -18
- package/esm2015/lib/store/store-utils.js +0 -105
- package/esm2015/lib/toolbar/icp-toolbar/icp-toolbar.component.js +0 -43
- package/esm2015/lib/toolbar/main-toolbar/main-toolbar.component.js +0 -175
- package/esm2015/lib/toolbar/redaction-search-bar/redaction-search-bar.component.js +0 -201
- package/esm2015/lib/toolbar/redaction-toolbar/redaction-toolbar.component.js +0 -70
- package/esm2015/lib/toolbar/search-bar/search-bar.component.js +0 -102
- package/esm2015/lib/toolbar/toolbar-button-visibility.service.js +0 -92
- package/esm2015/lib/toolbar/toolbar.module.js +0 -45
- package/esm2015/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.js +0 -72
- package/esm2015/lib/viewers/convertible-content-viewer/document-conversion-api.service.js +0 -23
- package/esm2015/lib/viewers/grab-n-drag.directive.js +0 -51
- package/esm2015/lib/viewers/image-viewer/image-viewer.component.js +0 -164
- package/esm2015/lib/viewers/multimedia-player/multimedia-player.component.js +0 -54
- package/esm2015/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.js +0 -203
- package/esm2015/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.js +0 -43
- package/esm2015/lib/viewers/pdf-viewer/pdf-viewer.component.js +0 -220
- package/esm2015/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.js +0 -179
- package/esm2015/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.js +0 -44
- package/esm2015/lib/viewers/pdf-viewer/side-bar/side-bar.component.js +0 -72
- package/esm2015/lib/viewers/rotation-persist/rotation-api.service.js +0 -28
- package/esm2015/lib/viewers/rotation-persist/rotation-persist.directive.js +0 -67
- package/esm2015/lib/viewers/unsupported-viewer/unsupported-viewer.component.js +0 -47
- package/esm2015/lib/viewers/viewer-event.service.js +0 -30
- package/esm2015/lib/viewers/viewer-util.service.js +0 -23
- package/esm2015/public_api.js +0 -31
- package/fesm2015/hmcts-media-viewer.js +0 -6585
- package/fesm2015/hmcts-media-viewer.js.map +0 -1
- package/hmcts-media-viewer.d.ts +0 -69
- package/hmcts-media-viewer.metadata.json +0 -1
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotation-set/annotation-set.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/annotations.module.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment/comment.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment/comment.service.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment-set-render.service.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comment-set/comment-set.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/comments-summary/comments-summary.component.ngfactory.d.ts.map +0 -1
- package/lib/annotations/pipes/date/date.pipe.ngfactory.d.ts.map +0 -1
- package/lib/annotations/pipes/filter/filter.pipe.ngfactory.d.ts.map +0 -1
- package/lib/annotations/pipes/unsnake/unsnake.pipe.ngfactory.d.ts.map +0 -1
- package/lib/annotations/services/annotation-api/annotation-api.service.ngfactory.d.ts.map +0 -1
- package/lib/annotations/services/bookmarks-api/bookmarks-api.service.ngfactory.d.ts.map +0 -1
- package/lib/annotations/services/tags/tags.services.ngfactory.d.ts.map +0 -1
- package/lib/annotations/tags/tags.component.ngfactory.d.ts.map +0 -1
- package/lib/bookmark/components/bookmark-icons.component.ngfactory.d.ts.map +0 -1
- package/lib/icp/confirm-exit/confirm-action-dialog.component.ngfactory.d.ts.map +0 -1
- package/lib/icp/icp-follower.service.ngfactory.d.ts.map +0 -1
- package/lib/icp/icp-presenter.service.ngfactory.d.ts.map +0 -1
- package/lib/icp/icp-session-api.service.ngfactory.d.ts.map +0 -1
- package/lib/icp/icp-update.service.ngfactory.d.ts.map +0 -1
- package/lib/icp/icp.service.ngfactory.d.ts.map +0 -1
- package/lib/icp/participants-list/participants-list.component.ngfactory.d.ts.map +0 -1
- package/lib/icp/socket.service.ngfactory.d.ts.map +0 -1
- package/lib/media-viewer.component.ngfactory.d.ts.map +0 -1
- package/lib/media-viewer.module.ngfactory.d.ts.map +0 -1
- package/lib/print.service.ngfactory.d.ts.map +0 -1
- package/lib/redaction/components/redaction.component.ngfactory.d.ts.map +0 -1
- package/lib/redaction/services/redaction-api.service.ngfactory.d.ts.map +0 -1
- package/lib/shared/gov-uk-date/gov-uk-date.component.ngfactory.d.ts.map +0 -1
- package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.ngfactory.d.ts.map +0 -1
- package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.ngfactory.d.ts.map +0 -1
- package/lib/shared/gov-uk-label/gov-uk-label.component.ngfactory.d.ts.map +0 -1
- package/lib/shared/shared.module.ngfactory.d.ts.map +0 -1
- package/lib/shared/util/services/number.helper.service.ngfactory.d.ts.map +0 -1
- package/lib/store/effects/annotation.effects.ngfactory.d.ts.map +0 -1
- package/lib/store/effects/bookmarks.effects.ngfactory.d.ts.map +0 -1
- package/lib/store/effects/document.effects.ngfactory.d.ts.map +0 -1
- package/lib/store/effects/icp.effects.ngfactory.d.ts.map +0 -1
- package/lib/store/effects/redaction.effects.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/icp-toolbar/icp-toolbar.component.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/main-toolbar/main-toolbar.component.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/search-bar/search-bar.component.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/toolbar-button-visibility.service.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/toolbar-event.service.ngfactory.d.ts.map +0 -1
- package/lib/toolbar/toolbar.module.ngfactory.d.ts.map +0 -1
- package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/convertible-content-viewer/document-conversion-api.service.ngfactory.d.ts.map +0 -1
- package/lib/viewers/grab-n-drag.directive.ngfactory.d.ts.map +0 -1
- package/lib/viewers/image-viewer/image-viewer.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/multimedia-player/multimedia-player.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ngfactory.d.ts.map +0 -1
- package/lib/viewers/pdf-viewer/pdf-viewer.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/pdf-viewer/side-bar/side-bar.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/rotation-persist/rotation-api.service.ngfactory.d.ts.map +0 -1
- package/lib/viewers/rotation-persist/rotation-persist.directive.ngfactory.d.ts.map +0 -1
- package/lib/viewers/unsupported-viewer/unsupported-viewer.component.ngfactory.d.ts.map +0 -1
- package/lib/viewers/viewer-event.service.ngfactory.d.ts.map +0 -1
- package/lib/viewers/viewer-util.service.ngfactory.d.ts.map +0 -1
- /package/{esm2015/lib/annotations/annotation-set/annotation-set.model.js → esm2020/lib/annotations/annotation-set/annotation-set.model.mjs} +0 -0
- /package/{esm2015/lib/annotations/annotation-set/annotation-view/annotation.model.js → esm2020/lib/annotations/annotation-set/annotation-view/annotation.model.mjs} +0 -0
- /package/{esm2015/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.js → esm2020/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.mjs} +0 -0
- /package/{esm2015/lib/annotations/comment-set/comment/comment.model.js → esm2020/lib/annotations/comment-set/comment/comment.model.mjs} +0 -0
- /package/{esm2015/lib/annotations/models/api-persisted.model.js → esm2020/lib/annotations/models/api-persisted.model.mjs} +0 -0
- /package/{esm2015/lib/annotations/models/event-select.model.js → esm2020/lib/annotations/models/event-select.model.mjs} +0 -0
- /package/{esm2015/lib/annotations/models/tags.model.js → esm2020/lib/annotations/models/tags.model.mjs} +0 -0
- /package/{esm2015/lib/annotations/models/user.model.js → esm2020/lib/annotations/models/user.model.mjs} +0 -0
- /package/{esm2015/lib/icp/icp.events.js → esm2020/lib/icp/icp.events.mjs} +0 -0
- /package/{esm2015/lib/icp/icp.interfaces.js → esm2020/lib/icp/icp.interfaces.mjs} +0 -0
- /package/{esm2015/lib/redaction/services/redaction.model.js → esm2020/lib/redaction/services/redaction.model.mjs} +0 -0
- /package/{esm2015/lib/shared/util/helpers/html-templates.helper.js → esm2020/lib/shared/util/helpers/html-templates.helper.mjs} +0 -0
- /package/{esm2015/lib/store/actions/annotation.actions.js → esm2020/lib/store/actions/annotation.actions.mjs} +0 -0
- /package/{esm2015/lib/store/actions/bookmark.actions.js → esm2020/lib/store/actions/bookmark.actions.mjs} +0 -0
- /package/{esm2015/lib/store/actions/document.actions.js → esm2020/lib/store/actions/document.actions.mjs} +0 -0
- /package/{esm2015/lib/store/actions/icp.actions.js → esm2020/lib/store/actions/icp.actions.mjs} +0 -0
- /package/{esm2015/lib/store/actions/redaction.actions.js → esm2020/lib/store/actions/redaction.actions.mjs} +0 -0
- /package/{esm2015/lib/store/actions/tag.actions.js → esm2020/lib/store/actions/tag.actions.mjs} +0 -0
- /package/{esm2015/lib/store/effects/index.js → esm2020/lib/store/effects/index.mjs} +0 -0
- /package/{esm2015/lib/store/models/bookmarks.interface.js → esm2020/lib/store/models/bookmarks.interface.mjs} +0 -0
- /package/{esm2015/lib/store/models/filters.interface.js → esm2020/lib/store/models/filters.interface.mjs} +0 -0
- /package/{esm2015/lib/store/reducers/reducers.js → esm2020/lib/store/reducers/reducers.mjs} +0 -0
- /package/{esm2015/lib/toolbar/icp-event.service.js → esm2020/lib/toolbar/icp-event.service.mjs} +0 -0
- /package/{esm2015/lib/toolbar/redaction-search-bar/redaction-search.model.js → esm2020/lib/toolbar/redaction-search-bar/redaction-search.model.mjs} +0 -0
- /package/{esm2015/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.js → esm2020/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.mjs} +0 -0
- /package/{esm2015/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.js → esm2020/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.mjs} +0 -0
- /package/{esm2015/lib/viewers/rotation-persist/rotation.model.js → esm2020/lib/viewers/rotation-persist/rotation.model.mjs} +0 -0
- /package/{esm2015/lib/viewers/viewer-exception.model.js → esm2020/lib/viewers/viewer-exception.model.mjs} +0 -0
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
import * as fromFeature from '../reducers/reducers';
|
|
2
|
-
export declare const getDocumentState: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentState,
|
|
2
|
+
export declare const getDocumentState: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentState, (s1: fromFeature.State) => fromFeature.DocumentState>;
|
|
3
3
|
export declare const getPages: import("@ngrx/store").MemoizedSelector<object, {
|
|
4
4
|
[id: string]: fromFeature.DocumentPages;
|
|
5
|
-
},
|
|
5
|
+
}, (s1: fromFeature.DocumentState) => {
|
|
6
6
|
[id: string]: fromFeature.DocumentPages;
|
|
7
|
-
}
|
|
8
|
-
export declare const getPageList: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentPages[],
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export declare const
|
|
7
|
+
}>;
|
|
8
|
+
export declare const getPageList: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentPages[], (s1: {
|
|
9
|
+
[id: string]: fromFeature.DocumentPages;
|
|
10
|
+
}) => fromFeature.DocumentPages[]>;
|
|
11
|
+
export declare const getDocumentId: import("@ngrx/store").MemoizedSelector<object, string, (s1: fromFeature.DocumentState) => string>;
|
|
12
|
+
export declare const getPdfPosition: import("@ngrx/store").MemoizedSelector<object, fromFeature.PdfPosition, (s1: fromFeature.DocumentState) => fromFeature.PdfPosition>;
|
|
13
|
+
export declare const getPageDifference: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromFeature.DocumentState) => boolean>;
|
|
12
14
|
export declare const getConvertedDocument: import("@ngrx/store").MemoizedSelector<object, {
|
|
13
15
|
url: string;
|
|
14
16
|
error: string;
|
|
15
|
-
},
|
|
17
|
+
}, (s1: fromFeature.DocumentState) => {
|
|
16
18
|
url: string;
|
|
17
19
|
error: string;
|
|
18
|
-
}
|
|
19
|
-
export declare const getRotation: import("@ngrx/store").MemoizedSelector<object, number,
|
|
20
|
-
export declare const rotationLoaded: import("@ngrx/store").MemoizedSelector<object, boolean,
|
|
20
|
+
}>;
|
|
21
|
+
export declare const getRotation: import("@ngrx/store").MemoizedSelector<object, number, (s1: fromFeature.DocumentState) => number>;
|
|
22
|
+
export declare const rotationLoaded: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromFeature.DocumentState) => boolean>;
|
|
21
23
|
//# sourceMappingURL=document.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/document.selectors.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"document.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/document.selectors.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,iIAG5B,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;EAGpB,CAAC;AAEF,eAAO,MAAM,WAAW;;kCAGvB,CAAC;AAEF,eAAO,MAAM,aAAa,mGAGzB,CAAC;AAEF,eAAO,MAAM,cAAc,qIAG1B,CAAC;AAEF,eAAO,MAAM,iBAAiB,qGAG7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;EAGhC,CAAC;AAEF,eAAO,MAAM,WAAW,mGAGvB,CAAC;AAEF,eAAO,MAAM,cAAc,qGAG1B,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
1
|
+
import * as fromFeature from '../reducers/reducers';
|
|
2
|
+
export declare const getIcpState: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpState, (s1: fromFeature.State) => import("../../icp/icp.interfaces").IcpState>;
|
|
3
|
+
export declare const getIcpSession: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpSession, (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpSession>;
|
|
4
|
+
export declare const getCaseId: import("@ngrx/store").MemoizedSelector<object, string, (s1: import("../../icp/icp.interfaces").IcpSession) => string>;
|
|
5
|
+
export declare const getPresenter: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant, (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpParticipant>;
|
|
6
|
+
export declare const getPresenterName: import("@ngrx/store").MemoizedSelector<object, string, (s1: import("../../icp/icp.interfaces").IcpParticipant) => string>;
|
|
7
|
+
export declare const getClient: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant, (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpParticipant>;
|
|
8
|
+
export declare const isPresenter: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: import("../../icp/icp.interfaces").IcpParticipant, s2: import("../../icp/icp.interfaces").IcpParticipant) => boolean>;
|
|
9
|
+
export declare const getParticipants: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant[], (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpParticipant[]>;
|
|
9
10
|
//# sourceMappingURL=icp.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icp.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/icp.selectors.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icp.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/icp.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,WAAW,qKAGvB,CAAC;AAEF,eAAO,MAAM,aAAa,mMAGzB,CAAC;AAEF,eAAO,MAAM,SAAS,uHAGrB,CAAC;AAEF,eAAO,MAAM,YAAY,2MAGxB,CAAC;AAEF,eAAO,MAAM,gBAAgB,2HAG5B,CAAC;AAEF,eAAO,MAAM,SAAS,2MAGrB,CAAC;AAEF,eAAO,MAAM,WAAW,oLAIvB,CAAC;AAEF,eAAO,MAAM,eAAe,+MAG3B,CAAC"}
|
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
import * as fromFeature from '../reducers/reducers';
|
|
2
|
-
export declare const getRedactionState: import("@ngrx/store").MemoizedSelector<object, fromFeature.RedactionState,
|
|
2
|
+
export declare const getRedactionState: import("@ngrx/store").MemoizedSelector<object, fromFeature.RedactionState, (s1: fromFeature.State) => fromFeature.RedactionState>;
|
|
3
3
|
export declare const getRedactionPages: import("@ngrx/store").MemoizedSelector<object, {
|
|
4
4
|
[id: string]: any;
|
|
5
|
-
},
|
|
5
|
+
}, (s1: fromFeature.RedactionState) => {
|
|
6
6
|
[id: string]: any;
|
|
7
|
-
}
|
|
8
|
-
export declare const getSelected: import("@ngrx/store").MemoizedSelector<object, {} | import("
|
|
7
|
+
}>;
|
|
8
|
+
export declare const getSelected: import("@ngrx/store").MemoizedSelector<object, {} | import("../../annotations/models/event-select.model").SelectionAnnotation, (s1: fromFeature.RedactionState) => {} | import("../../annotations/models/event-select.model").SelectionAnnotation>;
|
|
9
9
|
export declare const getRedactedDocumentInfo: import("@ngrx/store").MemoizedSelector<object, {
|
|
10
10
|
blob: Blob;
|
|
11
11
|
filename: string;
|
|
12
|
-
},
|
|
12
|
+
}, (s1: fromFeature.RedactionState) => {
|
|
13
13
|
blob: Blob;
|
|
14
14
|
filename: string;
|
|
15
|
-
}
|
|
15
|
+
}>;
|
|
16
16
|
export declare const getRedactionEnt: import("@ngrx/store").MemoizedSelector<object, {
|
|
17
17
|
[id: string]: import("../../redaction/services/redaction.model").Redaction;
|
|
18
|
-
},
|
|
18
|
+
}, (s1: fromFeature.RedactionState) => {
|
|
19
19
|
[id: string]: import("../../redaction/services/redaction.model").Redaction;
|
|
20
|
-
}
|
|
20
|
+
}>;
|
|
21
21
|
export declare const getRedactionArray: import("@ngrx/store").MemoizedSelector<object, {
|
|
22
22
|
redactions: import("../../redaction/services/redaction.model").Redaction[];
|
|
23
23
|
documentId: string;
|
|
24
|
-
},
|
|
24
|
+
}, (s1: {
|
|
25
|
+
[id: string]: import("../../redaction/services/redaction.model").Redaction;
|
|
26
|
+
}, s2: string) => {
|
|
25
27
|
redactions: import("../../redaction/services/redaction.model").Redaction[];
|
|
26
28
|
documentId: string;
|
|
27
|
-
}
|
|
28
|
-
export declare const getRedactionsPerPage: import("@ngrx/store").MemoizedSelector<object, any[],
|
|
29
|
+
}>;
|
|
30
|
+
export declare const getRedactionsPerPage: import("@ngrx/store").MemoizedSelector<object, any[], (s1: {
|
|
31
|
+
[id: string]: fromFeature.DocumentPages;
|
|
32
|
+
}, s2: {
|
|
33
|
+
[id: string]: any;
|
|
34
|
+
}) => any[]>;
|
|
29
35
|
//# sourceMappingURL=redaction.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redaction.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/redaction.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAIpD,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"redaction.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/redaction.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAIpD,eAAO,MAAM,iBAAiB,mIAG7B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;EAG7B,CAAC;AAEF,eAAO,MAAM,WAAW,oPAGvB,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;EAGnC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;EAG3B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;EAO7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;YAgBhC,CAAC"}
|
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
import * as fromFeature from '../reducers/reducers';
|
|
2
|
-
export declare const getTagsRootState: import("@ngrx/store").MemoizedSelector<object, fromFeature.TagsState,
|
|
2
|
+
export declare const getTagsRootState: import("@ngrx/store").MemoizedSelector<object, fromFeature.TagsState, (s1: fromFeature.State) => fromFeature.TagsState>;
|
|
3
3
|
export declare const getTagEntities: import("@ngrx/store").MemoizedSelector<object, {
|
|
4
4
|
[id: string]: string[];
|
|
5
|
-
},
|
|
5
|
+
}, (s1: fromFeature.TagsState) => {
|
|
6
6
|
[id: string]: string[];
|
|
7
|
-
}
|
|
8
|
-
export declare const getTagFilters: import("@ngrx/store").MemoizedSelector<object, string[],
|
|
7
|
+
}>;
|
|
8
|
+
export declare const getTagFilters: import("@ngrx/store").MemoizedSelector<object, string[], (s1: fromFeature.TagsState) => string[]>;
|
|
9
9
|
export declare const getTagFiltered: import("@ngrx/store").MemoizedSelector<object, {
|
|
10
10
|
[id: string]: string[];
|
|
11
|
-
},
|
|
11
|
+
}, (s1: fromFeature.TagsState) => {
|
|
12
12
|
[id: string]: string[];
|
|
13
|
-
}
|
|
13
|
+
}>;
|
|
14
14
|
export declare const getFilteredPageEntities: import("@ngrx/store").MemoizedSelector<object, {
|
|
15
|
-
[id: string]: import("
|
|
16
|
-
},
|
|
17
|
-
[id: string]: import("
|
|
18
|
-
}
|
|
15
|
+
[id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
|
|
16
|
+
}, (s1: fromFeature.TagsState) => {
|
|
17
|
+
[id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
|
|
18
|
+
}>;
|
|
19
19
|
export declare const getAllTagsArr: import("@ngrx/store").MemoizedSelector<object, {
|
|
20
20
|
key: string;
|
|
21
21
|
length: number;
|
|
22
|
-
}[],
|
|
22
|
+
}[], (s1: {
|
|
23
|
+
[id: string]: string[];
|
|
24
|
+
}) => {
|
|
23
25
|
key: string;
|
|
24
26
|
length: number;
|
|
25
|
-
}[]
|
|
27
|
+
}[]>;
|
|
26
28
|
//# sourceMappingURL=tag.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tag.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/tag.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"tag.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/tag.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,yHAG5B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;EAG1B,CAAC;AAEF,eAAO,MAAM,aAAa,mGAGzB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;EAG1B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;EAGnC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;IAQzB,CAAC"}
|
|
@@ -2,6 +2,7 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { ToolbarEventService } from '../toolbar-event.service';
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import { IcpState } from '../../icp/icp.interfaces';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class IcpToolbarComponent implements OnInit, OnDestroy {
|
|
6
7
|
readonly toolbarEventService: ToolbarEventService;
|
|
7
8
|
private store;
|
|
@@ -15,5 +16,7 @@ export declare class IcpToolbarComponent implements OnInit, OnDestroy {
|
|
|
15
16
|
stopPresenting(): void;
|
|
16
17
|
leaveIcpSession(): void;
|
|
17
18
|
showParticipantsList(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IcpToolbarComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IcpToolbarComponent, "mv-icp-toolbar", never, {}, {}, never, never, false, never>;
|
|
18
21
|
}
|
|
19
22
|
//# sourceMappingURL=icp-toolbar.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icp-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/icp-toolbar/icp-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC
|
|
1
|
+
{"version":3,"file":"icp-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/icp-toolbar/icp-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;;AAEpD,qBAIa,mBAAoB,YAAW,MAAM,EAAE,SAAS;aAO/B,mBAAmB,EAAE,mBAAmB;IACxD,OAAO,CAAC,KAAK;IANzB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,OAAO,CAAC;IAErB,OAAO,CAAC,aAAa,CAAe;gBAER,mBAAmB,EAAE,mBAAmB,EAChD,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAE1C,QAAQ;IAOR,WAAW;IAIX,OAAO;IAIP,cAAc;IAId,eAAe;IAIf,oBAAoB;yCAjCT,mBAAmB;2CAAnB,mBAAmB;CAoC/B"}
|
|
@@ -3,6 +3,7 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from
|
|
|
3
3
|
import { ToolbarEventService } from '../toolbar-event.service';
|
|
4
4
|
import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
|
|
5
5
|
import { NumberHelperService } from '../../../lib/shared/util/services/number.helper.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class MainToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
7
8
|
readonly toolbarEvents: ToolbarEventService;
|
|
8
9
|
readonly toolbarButtons: ToolbarButtonVisibilityService;
|
|
@@ -55,5 +56,7 @@ export declare class MainToolbarComponent implements OnInit, OnDestroy, AfterVie
|
|
|
55
56
|
isPdf(): boolean;
|
|
56
57
|
toggleSearchBar(): void;
|
|
57
58
|
toggleMoreOptions(): void;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainToolbarComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainToolbarComponent, "mv-main-toolbar", never, { "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "contentType": "contentType"; }, {}, never, never, false, never>;
|
|
58
61
|
}
|
|
59
62
|
//# sourceMappingURL=main-toolbar.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/main-toolbar/main-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EACL,aAAa,EACb,iBAAiB,EAEjB,UAAU,EAGV,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC
|
|
1
|
+
{"version":3,"file":"main-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/main-toolbar/main-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EACL,aAAa,EACb,iBAAiB,EAEjB,UAAU,EAGV,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;;AAE9F,qBAIa,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,aAAa;aAyCzD,aAAa,EAAE,mBAAmB;aAClC,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,YAAY;IA1CtB,iBAAiB,UAAS;IAC1B,gBAAgB,UAAS;IACzB,SAAS,UAAS;IAClB,WAAW,MAAQ;IAEuB,UAAU,EAAE,UAAU,CAAC;IACpB,aAAa,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IACxC,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAE1F,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAsB;IAE7C,UAAU,UAAS;IACnB,gBAAgB,UAAS;IACzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,mBAAmB,EAAE,OAAO,CAAC;IAE7B,UAAU,SAAK;IACf,SAAS,SAAK;IACd,kBAAkB,UAAS;IAC3B,qBAAqB,2BAY1B;IAEK,UAAU,WAAmD;IAEpE,eAAe,SAAK;IACpB,mBAAmB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAM;gBAGjC,aAAa,EAAE,mBAAmB,EAClC,cAAc,EAAE,8BAA8B,EAC7C,GAAG,EAAE,iBAAiB,EACtB,YAAY,EAAE,mBAAmB;IAI7C,QAAQ;IAqBR,WAAW,IAAI,IAAI;IAMnB,eAAe;IASf,QAAQ;IAMR,cAAc,CAAC,KAAK,EAAE,aAAa;IAKnC,sBAAsB;IAGtB,iBAAiB;IAIjB,kBAAkB;IASlB,sBAAsB;IAStB,gBAAgB;IAKhB,kBAAkB;IAIlB,kBAAkB;IAIlB,uBAAuB,CAAC,UAAU,EAAE,MAAM;IAWjD,OAAO,CAAC,cAAc;IAIf,MAAM,CAAC,QAAQ,EAAE,MAAM;IAIvB,SAAS;IAIT,YAAY;IAIZ,IAAI,CAAC,UAAU,EAAE,MAAM;IAIvB,QAAQ,CAAC,UAAU,EAAE,MAAM;IAK3B,mBAAmB;IAInB,eAAe;IAIf,eAAe;IAIf,KAAK;IAIL,eAAe;IAIf,iBAAiB;yCA7Lb,oBAAoB;2CAApB,oBAAoB;CAqMhC"}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { RedactRectangle } from './redaction-search.model';
|
|
2
|
-
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
|
|
4
4
|
import { ToolbarEventService } from '../toolbar-event.service';
|
|
5
5
|
import { Store } from '@ngrx/store';
|
|
6
6
|
import * as fromStore from '../../store/reducers/reducers';
|
|
7
7
|
import { HighlightCreateService } from '../../annotations/annotation-set/annotation-create/highlight-create/highlight-create.service';
|
|
8
|
-
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class RedactionSearchBarComponent implements OnInit, OnDestroy {
|
|
9
10
|
private store;
|
|
10
11
|
readonly toolbarButtons: ToolbarButtonVisibilityService;
|
|
11
12
|
readonly toolbarEvents: ToolbarEventService;
|
|
@@ -47,5 +48,7 @@ export declare class RedactionSearchBarComponent implements OnInit {
|
|
|
47
48
|
toggleSearchBar(): void;
|
|
48
49
|
private getRectangles;
|
|
49
50
|
private createTextRectangle;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RedactionSearchBarComponent, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RedactionSearchBarComponent, "mv-redaction-search-bar", never, {}, {}, never, never, false, never>;
|
|
50
53
|
}
|
|
51
54
|
//# sourceMappingURL=redaction-search-bar.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redaction-search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAmB,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC5E,OAAO,EAAa,UAAU,EAAwB,MAAM,EAAa,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"redaction-search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAmB,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC5E,OAAO,EAAa,UAAU,EAAwB,SAAS,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAE1G,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,KAAK,EAAU,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAK3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,8FAA8F,CAAC;;AAEtI,qBAKa,2BAA4B,YAAW,MAAM,EAAE,SAAS;IA2BjE,OAAO,CAAC,KAAK;aACG,cAAc,EAAE,8BAA8B;aAC9C,aAAa,EAAE,mBAAmB;aAClC,gBAAgB,EAAE,sBAAsB;IA5BhB,SAAS,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IAElF,YAAY,UAAQ;IACpB,SAAS,UAAS;IAClB,SAAS,UAAS;IAClB,WAAW,SAAM;IACjB,UAAU,SAAM;IAChB,WAAW,SAAK;IAChB,cAAc,EAAE,eAAe,EAAE,CAAM;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,eAAe,EAAE,OAAO,CAAC;IACzB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,aAAa,CAAC,EAAE,MAAM,CAAC;IAGvB,OAAO,CAAC,YAAY,CAAe;IACnC,OAAO,CAAC,UAAU,CAAS;IACpB,qBAAqB,UAAS;gBAG3B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EACrB,cAAc,EAAE,8BAA8B,EAC9C,aAAa,EAAE,mBAAmB,EAClC,gBAAgB,EAAE,sBAAsB;IAGnD,QAAQ,IAAI,IAAI;IAgBvB,WAAW,IAAI,IAAI;IAKZ,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAQ9C,MAAM,CAAC,KAAK,GAAE,OAAc,GAAG,IAAI;IAkBnC,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,qBAAqB;IAqB7B,kBAAkB;IAKlB,OAAO,CAAC,qBAAqB;IAO7B,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,qBAAqB;IAwB7B,OAAO,CAAC,mBAAmB;IAIpB,gBAAgB,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIxC,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIvC,eAAe;IAItB,OAAO,CAAC,aAAa;IAmCrB,OAAO,CAAC,mBAAmB;yCA/MhB,2BAA2B;2CAA3B,2BAA2B;CAmOvC"}
|
|
@@ -3,6 +3,7 @@ import { ToolbarEventService } from '../toolbar-event.service';
|
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import * as fromStore from '../../store/reducers/reducers';
|
|
5
5
|
import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class RedactionToolbarComponent implements OnInit, OnDestroy {
|
|
7
8
|
readonly toolbarEventService: ToolbarEventService;
|
|
8
9
|
readonly toolbarButtons: ToolbarButtonVisibilityService;
|
|
@@ -23,5 +24,7 @@ export declare class RedactionToolbarComponent implements OnInit, OnDestroy {
|
|
|
23
24
|
toggleRedactBar(): void;
|
|
24
25
|
redactPage(): void;
|
|
25
26
|
ngOnDestroy(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RedactionToolbarComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RedactionToolbarComponent, "mv-redaction-toolbar", never, { "showRedactSearch": "showRedactSearch"; }, {}, never, never, false, never>;
|
|
26
29
|
}
|
|
27
30
|
//# sourceMappingURL=redaction-toolbar.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redaction-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAE3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC
|
|
1
|
+
{"version":3,"file":"redaction-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAE3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;;AAGtF,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;aAUrC,mBAAmB,EAAE,mBAAmB;aAClD,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,KAAK;IAVN,gBAAgB,EAAE,OAAO,CAAC;IAEnC,OAAO,UAAS;IAChB,aAAa,UAAS;IAEtB,OAAO,CAAC,aAAa,CAAsB;IAC3C,sBAAsB,EAAE,OAAO,CAAC;gBAEJ,mBAAmB,EAAE,mBAAmB,EAClD,cAAc,EAAE,8BAA8B,EACtD,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAEpD,QAAQ,IAAI,IAAI;IAShB,iBAAiB;IAIjB,uBAAuB;IAIvB,cAAc;IAId,aAAa;IAKb,SAAS;IAIT,MAAM;IAIN,eAAe;IAIf,UAAU;IAKV,WAAW,IAAI,IAAI;yCAzDR,yBAAyB;2CAAzB,yBAAyB;CA8DrC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
|
|
3
3
|
import { ToolbarEventService } from '../toolbar-event.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
5
6
|
readonly toolbarButtons: ToolbarButtonVisibilityService;
|
|
6
7
|
readonly toolbarEvents: ToolbarEventService;
|
|
@@ -26,5 +27,7 @@ export declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
|
26
27
|
onEnterKeyPress(e: KeyboardEvent): void;
|
|
27
28
|
toggleAdvancedSearch(): void;
|
|
28
29
|
toggleSearchBar(): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "mv-search-bar", never, {}, {}, never, never, false, never>;
|
|
29
32
|
}
|
|
30
33
|
//# sourceMappingURL=search-bar.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/search-bar/search-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,MAAM,EAAa,SAAS,EAAE,MAAM,eAAe,CAAC;AAClG,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAsB,mBAAmB,EAAE,MAAM,0BAA0B,CAAC
|
|
1
|
+
{"version":3,"file":"search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/search-bar/search-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,MAAM,EAAa,SAAS,EAAE,MAAM,eAAe,CAAC;AAClG,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAsB,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;;AAGnF,qBAIa,kBAAmB,YAAW,MAAM,EAAE,SAAS;aAiBxC,cAAc,EAAE,8BAA8B;aAC9C,aAAa,EAAE,mBAAmB;IAhBV,SAAS,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IACxC,QAAQ,EAAE,UAAU,CAAC,iBAAiB,CAAC,CAAC;IAElF,YAAY,UAAQ;IACpB,SAAS,UAAS;IAClB,SAAS,UAAS;IAClB,WAAW,SAAM;IACjB,UAAU,SAAM;IAChB,WAAW,SAAK;IAEhB,OAAO,CAAC,aAAa,CAAsB;IAEpC,qBAAqB,UAAS;gBAGnB,cAAc,EAAE,8BAA8B,EAC9C,aAAa,EAAE,mBAAmB;IAG7C,QAAQ,IAAI,IAAI;IAMvB,WAAW,IAAI,IAAI;IAOZ,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IASvC,UAAU,IAAI,IAAI;IAWlB,UAAU,IAAI,IAAI;IAWlB,MAAM,IAAI,IAAI;IAWrB,OAAO,CAAC,qBAAqB;IAYtB,gBAAgB,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIxC,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAKvC,oBAAoB,IAAI,IAAI;IAI5B,eAAe;yCArGX,kBAAkB;2CAAlB,kBAAkB;CAwG9B"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class ToolbarButtonVisibilityService {
|
|
2
3
|
showPrint: boolean;
|
|
3
4
|
showDownload: boolean;
|
|
@@ -19,6 +20,8 @@ export declare class ToolbarButtonVisibilityService {
|
|
|
19
20
|
* Reset the visibility of all buttons to false then set the value from the options
|
|
20
21
|
*/
|
|
21
22
|
setup(options: Partial<ToolbarButtonVisibilityService>): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarButtonVisibilityService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarButtonVisibilityService>;
|
|
22
25
|
}
|
|
23
26
|
/**
|
|
24
27
|
* Default toolbar state for the PDF viewer
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbar-button-visibility.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-button-visibility.service.ts"],"names":[],"mappings":"AAGA,qBACa,8BAA8B;IAElC,SAAS,UAAS;IAClB,YAAY,UAAS;IACrB,cAAc,UAAS;IACvB,QAAQ,UAAS;IACjB,UAAU,UAAS;IACnB,oBAAoB,UAAS;IAC7B,UAAU,UAAS;IACnB,YAAY,UAAS;IACrB,YAAY,UAAS;IACrB,mBAAmB,UAAS;IAC5B,cAAc,UAAS;IACvB,aAAa,UAAS;IACtB,WAAW,UAAS;IACpB,kBAAkB,UAAS;IAC3B,mBAAmB,UAAS;IAC5B,sBAAsB,UAAS;IAEtC;;OAEG;IACI,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,8BAA8B,CAAC,GAAG,IAAI;
|
|
1
|
+
{"version":3,"file":"toolbar-button-visibility.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-button-visibility.service.ts"],"names":[],"mappings":";AAGA,qBACa,8BAA8B;IAElC,SAAS,UAAS;IAClB,YAAY,UAAS;IACrB,cAAc,UAAS;IACvB,QAAQ,UAAS;IACjB,UAAU,UAAS;IACnB,oBAAoB,UAAS;IAC7B,UAAU,UAAS;IACnB,YAAY,UAAS;IACrB,YAAY,UAAS;IACrB,mBAAmB,UAAS;IAC5B,cAAc,UAAS;IACvB,aAAa,UAAS;IACtB,WAAW,UAAS;IACpB,kBAAkB,UAAS;IAC3B,mBAAmB,UAAS;IAC5B,sBAAsB,UAAS;IAEtC;;OAEG;IACI,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,8BAA8B,CAAC,GAAG,IAAI;yCAtBzD,8BAA8B;6CAA9B,8BAA8B;CA4C1C;AAED;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;CAY7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;CAQ/B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,wBAAwB;;CAEpC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;CAGrC,CAAC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
2
2
|
import * as icpEvents from './icp-event.service';
|
|
3
3
|
import { RedactionSearch } from './redaction-search-bar/redaction-search.model';
|
|
4
|
-
|
|
5
|
-
export
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export type HighlightMode = boolean;
|
|
6
|
+
export type DrawMode = boolean;
|
|
6
7
|
export interface SearchOperation {
|
|
7
8
|
searchTerm: string;
|
|
8
9
|
highlightAll: boolean;
|
|
@@ -77,5 +78,7 @@ export declare class ToolbarEventService {
|
|
|
77
78
|
redactPage(): void;
|
|
78
79
|
toggleCommentsPanel(isVisible: boolean): void;
|
|
79
80
|
toggleParticipantsList(isVisible: boolean): void;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarEventService, never>;
|
|
82
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarEventService>;
|
|
80
83
|
}
|
|
81
84
|
//# sourceMappingURL=toolbar-event.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbar-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC5D,OAAO,KAAK,SAAS,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC
|
|
1
|
+
{"version":3,"file":"toolbar-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./search-bar/search-bar.component";
|
|
3
|
+
import * as i2 from "./main-toolbar/main-toolbar.component";
|
|
4
|
+
import * as i3 from "./redaction-toolbar/redaction-toolbar.component";
|
|
5
|
+
import * as i4 from "./icp-toolbar/icp-toolbar.component";
|
|
6
|
+
import * as i5 from "./redaction-search-bar/redaction-search-bar.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/cdk/overlay";
|
|
10
|
+
import * as i9 from "@angular/router";
|
|
1
11
|
export { ToolbarButtonVisibilityService } from './toolbar-button-visibility.service';
|
|
2
12
|
export { ToolbarEventService } from './toolbar-event.service';
|
|
3
13
|
export declare class ToolbarModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof i1.SearchBarComponent, typeof i2.MainToolbarComponent, typeof i3.RedactionToolbarComponent, typeof i4.IcpToolbarComponent, typeof i5.RedactionSearchBarComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.OverlayModule, typeof i9.RouterModule], [typeof i2.MainToolbarComponent, typeof i1.SearchBarComponent, typeof i3.RedactionToolbarComponent, typeof i4.IcpToolbarComponent, typeof i5.RedactionSearchBarComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarModule>;
|
|
4
17
|
}
|
|
5
18
|
//# sourceMappingURL=toolbar.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AACrF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAK9D,qBA0Ba,aAAa;CAAI"}
|
|
1
|
+
{"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts"],"names":[],"mappings":";;;;;;;;;;AAUA,OAAO,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AACrF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAK9D,qBA0Ba,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAI"}
|
|
@@ -3,6 +3,7 @@ import { ResponseType, ViewerException } from '../viewer-exception.model';
|
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import * as fromStore from '../../store/reducers/document.reducer';
|
|
5
5
|
import { AnnotationSet } from '../../annotations/annotation-set/annotation-set.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ConvertibleContentViewerComponent implements OnInit, OnDestroy {
|
|
7
8
|
private store;
|
|
8
9
|
originalUrl: any;
|
|
@@ -23,5 +24,7 @@ export declare class ConvertibleContentViewerComponent implements OnInit, OnDest
|
|
|
23
24
|
onLoadException(exception: ViewerException): void;
|
|
24
25
|
onDocumentTitleChange(title: string): void;
|
|
25
26
|
private extractDMStoreDocId;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConvertibleContentViewerComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConvertibleContentViewerComponent, "mv-conversion-viewer", never, { "originalUrl": "originalUrl"; "downloadFileName": "downloadFileName"; "height": "height"; "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "annotationSet": "annotationSet"; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
|
|
26
29
|
}
|
|
27
30
|
//# sourceMappingURL=convertible-content-viewer.component.d.ts.map
|
package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"convertible-content-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAA6B,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AAInE,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC
|
|
1
|
+
{"version":3,"file":"convertible-content-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAA6B,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AAInE,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;;AAGtF,qBAKa,iCAAkC,YAAW,MAAM,EAAE,SAAS;IAmB7D,OAAO,CAAC,KAAK;IAjBhB,WAAW,MAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IAEzB,MAAM,MAAC;IAEP,iBAAiB,EAAE,OAAO,CAAC;IAC3B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,aAAa,EAAE,aAAa,GAAG,IAAI,CAAC;IAGnC,eAAe,6BAAoC;IACnD,eAAe,gCAAuC;IACtD,aAAa,uBAA8B;IAErD,OAAO,CAAC,aAAa,CAAe;IACpC,YAAY,EAAE,MAAM,CAAC;gBAED,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,aAAa,CAAC;IAGzD,QAAQ,IAAI,IAAI;IAahB,WAAW,IAAI,IAAI;IAInB,WAAW,CAAC,MAAM,EAAE,YAAY;IAIhC,eAAe,CAAC,SAAS,EAAE,eAAe;IAI1C,qBAAqB,CAAC,KAAK,EAAE,MAAM;IAKnC,OAAO,CAAC,mBAAmB;yCApDhB,iCAAiC;2CAAjC,iCAAiC;CA6D7C"}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DocumentConversionApiService {
|
|
4
5
|
private readonly httpClient;
|
|
5
6
|
private documentConversionUrl;
|
|
6
7
|
constructor(httpClient: HttpClient);
|
|
7
8
|
convert(documentId: any): Observable<HttpResponse<Blob>>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentConversionApiService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentConversionApiService>;
|
|
8
11
|
}
|
|
9
12
|
//# sourceMappingURL=document-conversion-api.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document-conversion-api.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/document-conversion-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC
|
|
1
|
+
{"version":3,"file":"document-conversion-api.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/document-conversion-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;;AAGtC,qBACa,4BAA4B;IAI3B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAFvC,OAAO,CAAC,qBAAqB,CAA2B;gBAE3B,UAAU,EAAE,UAAU;IAE5C,OAAO,CAAC,UAAU,KAAA,GAAG,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;yCAN/C,4BAA4B;6CAA5B,4BAA4B;CAexC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class GrabNDragDirective {
|
|
3
4
|
private el;
|
|
4
5
|
originalPosition: {
|
|
@@ -12,5 +13,7 @@ export declare class GrabNDragDirective {
|
|
|
12
13
|
onPointerDown(event: PointerEvent): void;
|
|
13
14
|
onPointerMove(event: PointerEvent): void;
|
|
14
15
|
onWindowPointerUp(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GrabNDragDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GrabNDragDirective, "[mvGrabNDrag]", never, { "dragEnabled": "dragEnabled"; "dragX": "dragX"; }, {}, never, never, false, never>;
|
|
15
18
|
}
|
|
16
19
|
//# sourceMappingURL=grab-n-drag.directive.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grab-n-drag.directive.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/grab-n-drag.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAuB,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"grab-n-drag.directive.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/grab-n-drag.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAuB,MAAM,eAAe,CAAC;;AAG3E,qBAGa,kBAAkB;IAQjB,OAAO,CAAC,EAAE;IANtB,gBAAgB,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAChD,OAAO,CAAC,WAAW,CAAS;IAEnB,WAAW,UAAS;IACpB,KAAK,EAAE,OAAO,CAAC;gBAEJ,EAAE,EAAE,UAAU;IAIlC,aAAa,CAAC,KAAK,EAAE,YAAY;IAYjC,aAAa,CAAC,KAAK,EAAE,YAAY;IAcC,iBAAiB;yCAtCxC,kBAAkB;2CAAlB,kBAAkB;CAyC9B"}
|
|
@@ -8,6 +8,7 @@ import { ToolbarButtonVisibilityService } from '../../toolbar/toolbar-button-vis
|
|
|
8
8
|
import { Store } from '@ngrx/store';
|
|
9
9
|
import * as fromStore from '../../store/reducers/reducers';
|
|
10
10
|
import { ViewerEventService } from '../viewer-event.service';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class ImageViewerComponent implements OnInit, OnDestroy, OnChanges {
|
|
12
13
|
private store;
|
|
13
14
|
private readonly printService;
|
|
@@ -50,5 +51,7 @@ export declare class ImageViewerComponent implements OnInit, OnDestroy, OnChange
|
|
|
50
51
|
onLoad(img: any): void;
|
|
51
52
|
initAnnoPage(img: any): void;
|
|
52
53
|
toggleCommentsSummary(): void;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageViewerComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageViewerComponent, "mv-image-viewer", never, { "url": "url"; "downloadFileName": "downloadFileName"; "enableAnnotations": "enableAnnotations"; "annotationSet": "annotationSet"; "height": "height"; }, { "mediaLoadStatus": "mediaLoadStatus"; "imageViewerException": "imageViewerException"; }, never, never, false, never>;
|
|
53
56
|
}
|
|
54
57
|
//# sourceMappingURL=image-viewer.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/image-viewer/image-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,YAAY,EAGZ,SAAS,EACT,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAG3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC
|
|
1
|
+
{"version":3,"file":"image-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/image-viewer/image-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,YAAY,EAGZ,SAAS,EACT,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAG3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;;AAE7D,qBAIa,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IA+BrE,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;aAClB,aAAa,EAAE,mBAAmB;aAClC,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,YAAY;IAlCb,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IAEzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,aAAa,EAAE,aAAa,GAAG,IAAI,CAAC;IAEpC,MAAM,EAAE,MAAM,CAAC;IAEd,eAAe,6BAAoC;IACnD,oBAAoB,gCAAuC;IAErE,YAAY,EAAE,MAAM,CAAC;IAEc,GAAG,EAAE,UAAU,CAAC;IACnD,QAAQ,SAAK;IACb,IAAI,SAAK;IAET,OAAO,CAAC,aAAa,CAAsB;IAC3C,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,QAAQ,CAAe;IAE/B,iBAAiB,EAAE,OAAO,CAAC;IAC3B,eAAe,UAAS;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;gBAGP,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,YAAY,EAAE,YAAY,EAC1B,iBAAiB,EAAE,iBAAiB,EACrC,aAAa,EAAE,mBAAmB,EAClC,cAAc,EAAE,8BAA8B,EACtD,YAAY,EAAE,kBAAkB;IAG1C,QAAQ,IAAI,IAAI;IAahB,kBAAkB,CAAC,KAAK,EAAE,UAAU;IAcpC,WAAW,IAAI,IAAI;IAQnB,WAAW,CAAC,OAAO,EAAE,aAAa;IAOlC,OAAO,CAAC,WAAW;YAKL,OAAO;YAQP,QAAQ;IAQtB,OAAO,CAAC,QAAQ;IAWhB,YAAY,CAAC,SAAS,KAAA;IAQtB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,SAAI;IAO3C,WAAW,CAAC,GAAG,KAAA;IAcf,MAAM,CAAC,GAAG,EAAE,GAAG;IAKf,YAAY,CAAC,GAAG,EAAE,GAAG;IAoBrB,qBAAqB;yCAvKV,oBAAoB;2CAApB,oBAAoB;CA0KhC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, OnInit, OnDestroy, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
|
|
3
3
|
import { ResponseType } from '../viewer-exception.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class MultimediaPlayerComponent implements OnInit, OnChanges, OnDestroy {
|
|
5
6
|
readonly toolbarEvents: ToolbarEventService;
|
|
6
7
|
url: string;
|
|
@@ -18,5 +19,7 @@ export declare class MultimediaPlayerComponent implements OnInit, OnChanges, OnD
|
|
|
18
19
|
reloadVideo(): void;
|
|
19
20
|
onSuccess(): void;
|
|
20
21
|
onError(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultimediaPlayerComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultimediaPlayerComponent, "mv-multimedia-player", never, { "url": "url"; "downloadFileName": "downloadFileName"; "multimediaOn": "multimediaOn"; }, { "loadStatus": "loadStatus"; }, never, never, false, never>;
|
|
21
24
|
}
|
|
22
25
|
//# sourceMappingURL=multimedia-player.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multimedia-player.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/multimedia-player/multimedia-player.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAEV,MAAM,EAEN,SAAS,EAET,YAAY,EACZ,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC
|
|
1
|
+
{"version":3,"file":"multimedia-player.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/multimedia-player/multimedia-player.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAEV,MAAM,EAEN,SAAS,EAET,YAAY,EACZ,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;;AAEzD,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;aAgB1D,aAAa,EAAE,mBAAmB;IAd3C,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,OAAO,CAAC;IAErB,UAAU,6BAAoC;IAEZ,YAAY,EAAE,UAAU,CAAC;IAC1B,WAAW,EAAE,UAAU,CAAC;IAEnE,WAAW,SAAa;IAExB,OAAO,CAAC,YAAY,CAAe;gBAGjB,aAAa,EAAE,mBAAmB;IAG7C,QAAQ,IAAI,IAAI;IAMhB,WAAW,CAAC,OAAO,EAAE,aAAa;IAMzC,WAAW,IAAI,IAAI;IAInB,WAAW;IAOX,SAAS;IAIT,OAAO;yCA9CI,yBAAyB;2CAAzB,yBAAyB;CAiDrC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { PdfJsWrapper } from './pdf-js-wrapper';
|
|
3
3
|
import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class PdfJsWrapperFactory {
|
|
5
6
|
private readonly toolbarEvents;
|
|
6
7
|
private linkService;
|
|
@@ -9,5 +10,7 @@ export declare class PdfJsWrapperFactory {
|
|
|
9
10
|
constructor(toolbarEvents: ToolbarEventService);
|
|
10
11
|
create(container: ElementRef): PdfJsWrapper;
|
|
11
12
|
pdfWrapper(): PdfJsWrapper;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdfJsWrapperFactory, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PdfJsWrapperFactory>;
|
|
12
15
|
}
|
|
13
16
|
//# sourceMappingURL=pdf-js-wrapper.provider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pdf-js-wrapper.provider.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAc,MAAM,eAAe,CAAC;AACvD,OAAO,EAAkC,YAAY,EAAC,MAAM,kBAAkB,CAAC;AAE/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC
|
|
1
|
+
{"version":3,"file":"pdf-js-wrapper.provider.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAc,MAAM,eAAe,CAAC;AACvD,OAAO,EAAkC,YAAY,EAAC,MAAM,kBAAkB,CAAC;AAE/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;;AAI7E,qBACa,mBAAmB;IAMlB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAJ1C,OAAO,CAAC,WAAW,CAA6B;IAChD,OAAO,CAAC,QAAQ,CAAuB;IACvC,OAAO,CAAC,YAAY,CAAe;gBAEN,aAAa,EAAE,mBAAmB;IAKxD,MAAM,CAAC,SAAS,EAAE,UAAU,GAAG,YAAY;IAiClD,UAAU;yCA5CC,mBAAmB;6CAAnB,mBAAmB;CA+C/B"}
|
|
@@ -12,6 +12,7 @@ import * as fromStore from '../../store/reducers/reducers';
|
|
|
12
12
|
import { IcpState } from '../../icp/icp.interfaces';
|
|
13
13
|
import { ViewerEventService } from '../viewer-event.service';
|
|
14
14
|
import { IcpService } from '../../icp/icp.service';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class PdfViewerComponent implements AfterContentInit, OnChanges, OnDestroy {
|
|
16
17
|
private store;
|
|
17
18
|
private icpStore;
|
|
@@ -72,5 +73,7 @@ export declare class PdfViewerComponent implements AfterContentInit, OnChanges,
|
|
|
72
73
|
calculateZoomValue(zoomValue: any, increment?: number): number;
|
|
73
74
|
private goToDestination;
|
|
74
75
|
getCurrentPageNumber(): number;
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdfViewerComponent, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdfViewerComponent, "mv-pdf-viewer", never, { "downloadUrl": "downloadUrl"; "url": "url"; "downloadFileName": "downloadFileName"; "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "annotationSet": "annotationSet"; "enableRedactSearch": "enableRedactSearch"; "height": "height"; "caseId": "caseId"; "searchBarHidden": "searchBarHidden"; }, { "mediaLoadStatus": "mediaLoadStatus"; "pdfViewerException": "pdfViewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
|
|
75
78
|
}
|
|
76
79
|
//# sourceMappingURL=pdf-viewer.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pdf-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAEhB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EAET,aAAa,EAGd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAkB,eAAe,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAEjF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AAEjG,OAAO,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAC;AAChE,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAM3D,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC
|
|
1
|
+
{"version":3,"file":"pdf-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-viewer.component.ts"],"names":[],"mappings":"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"}
|