@hmcts/media-viewer 2.9.4-RC.8 → 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/assets/sass/toolbar/main-toolbar.scss +7 -6
- 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/esm2020/lib/print.service.mjs +30 -0
- 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 +4 -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 -7539
- 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/print.service.js +0 -25
- 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 -55
- 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 -39
- 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 -170
- 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 -6572
- 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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hmcts-media-viewer.d.ts","sourceRoot":"","sources":["../../projects/media-viewer/src/hmcts-media-viewer.ts"],"names":[],"mappings":"AAAA;;GAEG
|
|
1
|
+
{"version":3,"file":"hmcts-media-viewer.d.ts","sourceRoot":"","sources":["../../projects/media-viewer/src/hmcts-media-viewer.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,cAAc,CAAC"}
|
package/index.d.ts
ADDED
|
@@ -2,6 +2,7 @@ import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { ToolbarEventService } from '../../../../toolbar/toolbar.module';
|
|
3
3
|
import { Rectangle } from '../../annotation-view/rectangle/rectangle.model';
|
|
4
4
|
import { HighlightCreateService } from '../highlight-create/highlight-create.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
6
7
|
private readonly toolbarEvents;
|
|
7
8
|
private readonly highlightService;
|
|
@@ -48,5 +49,7 @@ export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
|
48
49
|
createHighlight(): void;
|
|
49
50
|
private resetHighlight;
|
|
50
51
|
private highlightPage;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BoxHighlightCreateComponent, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BoxHighlightCreateComponent, "mv-box-highlight-create", never, { "page": "page"; "pageHeight": "pageHeight"; "pageWidth": "pageWidth"; "rotate": "rotate"; "zoom": "zoom"; "container": "container"; }, { "saveSelection": "saveSelection"; }, never, never, false, never>;
|
|
51
54
|
}
|
|
52
55
|
//# sourceMappingURL=box-highlight-create.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"box-highlight-create.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAE,MAAM,EAAqB,MAAM,eAAe,CAAC;AAGjH,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAC
|
|
1
|
+
{"version":3,"file":"box-highlight-create.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAE,MAAM,EAAqB,MAAM,eAAe,CAAC;AAGjH,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAC;;AAEtF,qBAIa,2BAA4B,YAAW,MAAM,EAAE,SAAS;IA6BvD,OAAO,CAAC,QAAQ,CAAC,aAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA5B1B,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;IAExC,aAAa;oBAAkC,SAAS,EAAE;cAAQ,MAAM;OAAM;IAE1C,SAAS,EAAE,UAAU,CAAC;IAEpE,UAAU,SAAM;IAChB,UAAU,SAAM;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,SAAU;IACzB,SAAS,EAAE,OAAO,CAAC;IAEnB,OAAO,CAAC,aAAa,CAAsB;gBAEd,aAAa,EAAE,mBAAmB,EAC5C,gBAAgB,EAAE,sBAAsB;IAE3D,QAAQ,IAAI,IAAI;IAYhB,WAAW,IAAI,IAAI;IAMnB,aAAa,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE;;;KAAA;IA+BlC,eAAe,CAAC,EAAE,aAAa,EAAE,OAAO,EAAE,OAAO,EAAE;;;;KAAA;IAYnD,eAAe;IAUf,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,aAAa;yCAhHV,2BAA2B;2CAA3B,2BAA2B;CAuHvC"}
|
|
@@ -5,6 +5,7 @@ import { ToolbarEventService } from '../../../../toolbar/toolbar.module';
|
|
|
5
5
|
import * as fromStore from '../../../../store/reducers/reducers';
|
|
6
6
|
import { ViewerEventService } from '../../../../viewers/viewer-event.service';
|
|
7
7
|
import { HighlightCreateService } from './highlight-create.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class HighlightCreateDirective implements OnInit, OnDestroy {
|
|
9
10
|
private element;
|
|
10
11
|
private toolbarEvents;
|
|
@@ -25,5 +26,7 @@ export declare class HighlightCreateDirective implements OnInit, OnDestroy {
|
|
|
25
26
|
private getRectangles;
|
|
26
27
|
private createTextRectangle;
|
|
27
28
|
private removeEnhancedTextModeStyling;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HighlightCreateDirective, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HighlightCreateDirective, "[mvCreateTextHighlight]", never, {}, {}, never, never, false, never>;
|
|
28
31
|
}
|
|
29
32
|
//# sourceMappingURL=highlight-create.directive.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"highlight-create.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEvF,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAGpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;AAEjE,OAAO,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AAE9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC
|
|
1
|
+
{"version":3,"file":"highlight-create.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEvF,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAGpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;AAEjE,OAAO,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AAE9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;;AAEpE,qBAGa,wBAAyB,YAAW,MAAM,EAAE,SAAS;IAU9D,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,KAAK;IAbf,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IAEjB,aAAa,EAAE,YAAY,CAAC;gBAGlB,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,EAChC,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB,EAChC,gBAAgB,EAAE,sBAAsB,EACxC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAGpD,QAAQ;IAQR,WAAW;IAOX,SAAS,CAAC,UAAU,EAAE,UAAU;IAUhC,gBAAgB,CAAC,KAAK,EAAE,UAAU;IAWlC,OAAO,CAAC,aAAa;IAkCrB,OAAO,CAAC,mBAAmB;IAqB3B,OAAO,CAAC,6BAA6B;yCA5G1B,wBAAwB;2CAAxB,wBAAwB;CAyHpC"}
|
|
@@ -2,6 +2,7 @@ import { Store } from '@ngrx/store';
|
|
|
2
2
|
import { Rectangle } from '../../annotation-view/rectangle/rectangle.model';
|
|
3
3
|
import { ToolbarEventService } from '../../../../toolbar/toolbar.module';
|
|
4
4
|
import * as fromStore from '../../../../store/reducers/reducers';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class HighlightCreateService {
|
|
6
7
|
private toolBarEvents;
|
|
7
8
|
private store;
|
|
@@ -9,5 +10,7 @@ export declare class HighlightCreateService {
|
|
|
9
10
|
saveAnnotation(rectangles: Rectangle[], page: number): void;
|
|
10
11
|
applyRotation(pageHeight: any, pageWidth: any, offsetHeight: any, offsetWidth: any, offsetTop: any, offsetLeft: any, rotate: any, zoom: any): any;
|
|
11
12
|
resetHighlight(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HighlightCreateService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HighlightCreateService>;
|
|
12
15
|
}
|
|
13
16
|
//# sourceMappingURL=highlight-create.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"highlight-create.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAK5C,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC
|
|
1
|
+
{"version":3,"file":"highlight-create.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAK5C,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;;AAKjE,qBACa,sBAAsB;IAErB,OAAO,CAAC,aAAa;IAC/B,OAAO,CAAC,KAAK;gBADK,aAAa,EAAE,mBAAmB,EAC5C,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAEpD,cAAc,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,IAAI,EAAE,MAAM;IAsBpD,aAAa,CAAC,UAAU,KAAA,EAAE,SAAS,KAAA,EAAE,YAAY,KAAA,EAAE,WAAW,KAAA,EAAE,SAAS,KAAA,EAAE,UAAU,KAAA,EAAE,MAAM,KAAA,EAAE,IAAI,KAAA;IA6BnG,cAAc;yCAxDH,sBAAsB;6CAAtB,sBAAsB;CA4DlC"}
|
|
@@ -5,6 +5,7 @@ import { SelectionAnnotation } from '../models/event-select.model';
|
|
|
5
5
|
import { CommentService } from '../comment-set/comment/comment.service';
|
|
6
6
|
import { Store } from '@ngrx/store';
|
|
7
7
|
import * as fromStore from '../../store/reducers/reducers';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class AnnotationSetComponent implements OnInit {
|
|
9
10
|
private store;
|
|
10
11
|
private readonly commentService;
|
|
@@ -20,5 +21,7 @@ export declare class AnnotationSetComponent implements OnInit {
|
|
|
20
21
|
onAnnotationUpdate(annotation: Annotation): void;
|
|
21
22
|
onAnnotationDelete(annotation: Annotation): void;
|
|
22
23
|
selectAnnotation(selectedAnnotation: SelectionAnnotation): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationSetComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnotationSetComponent, "mv-annotation-set", never, { "page": "page"; "annotations": "annotations"; "zoom": "zoom"; "rotate": "rotate"; "pageHeight": "pageHeight"; "pageWidth": "pageWidth"; }, {}, never, never, false, never>;
|
|
23
26
|
}
|
|
24
27
|
//# sourceMappingURL=annotation-set.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotation-set.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-set.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC
|
|
1
|
+
{"version":3,"file":"annotation-set.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-set.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;;AAI3D,qBAIa,sBAAuB,YAAW,MAAM;IAYjD,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,cAAc;IAXxB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,UAAU,EAAE,CAAM;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAE3B,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,CAAC,CAAC;gBAG3C,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,cAAc,EAAE,cAAc;IAGjD,QAAQ,IAAI,IAAI;IAIT,kBAAkB,CAAC,UAAU,EAAE,UAAU;IAIzC,kBAAkB,CAAC,UAAU,EAAE,UAAU;IAOhD,gBAAgB,CAAC,kBAAkB,EAAE,mBAAmB;yCA/B7C,sBAAsB;2CAAtB,sBAAsB;CAkClC"}
|
|
@@ -5,6 +5,7 @@ import { Store } from '@ngrx/store';
|
|
|
5
5
|
import * as fromStore from '../../../store/reducers/reducers';
|
|
6
6
|
import { SelectionAnnotation } from '../../models/event-select.model';
|
|
7
7
|
import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class AnnotationViewComponent {
|
|
9
10
|
private readonly toolbarEvents;
|
|
10
11
|
private store;
|
|
@@ -27,5 +28,7 @@ export declare class AnnotationViewComponent {
|
|
|
27
28
|
onRectangleUpdate(rectangle: Rectangle): void;
|
|
28
29
|
deleteHighlight(): void;
|
|
29
30
|
addOrEditComment(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationViewComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnotationViewComponent, "mv-annotation", never, { "annotation": "annotation"; "zoom": "zoom"; "rotate": "rotate"; "selectedAnnoId": "selectedAnnoId"; "pageHeight": "pageHeight"; "pageWidth": "pageWidth"; }, { "update": "update"; "delete": "delete"; "annotationClick": "annotationClick"; }, never, never, false, never>;
|
|
30
33
|
}
|
|
31
34
|
//# sourceMappingURL=annotation-view.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotation-view.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAA4B,UAAU,EAAE,MAAM,eAAe,CAAC;AAE9F,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAExD,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAE9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC
|
|
1
|
+
{"version":3,"file":"annotation-view.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAA4B,UAAU,EAAE,MAAM,eAAe,CAAC;AAE9F,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAExD,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAE9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;;AAG7E,qBAIa,uBAAuB;IAwBhC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IAvBf,IAAa,UAAU,CAAC,KAAK,KAAA,EAE5B;IACD,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IACT,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACxB,IAAa,cAAc,CAAC,UAAU,EAAE;QAAE,YAAY,EAAE,MAAM,CAAA;KAAE,EAK/D;IACQ,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IACjB,MAAM,2BAAkC;IACxC,MAAM,2BAAkC;IACxC,eAAe,oCAA2C;IAEzB,SAAS,EAAE,UAAU,CAAC;gBAG9C,aAAa,EAAE,mBAAmB,EAC3C,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAG7C,QAAQ;IAKR,iBAAiB,CAAC,SAAS,EAAE,SAAS;IAOtC,eAAe;IAIf,gBAAgB;yCA5CZ,uBAAuB;2CAAvB,uBAAuB;CAsEnC"}
|
|
@@ -2,6 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy, SimpleCh
|
|
|
2
2
|
import { Rectangle } from './rectangle.model';
|
|
3
3
|
import { ToolbarEventService } from '../../../../toolbar/toolbar-event.service';
|
|
4
4
|
import { HighlightCreateService } from '../../annotation-create/highlight-create/highlight-create.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class RectangleComponent implements OnChanges, AfterViewInit, OnDestroy {
|
|
6
7
|
private readonly toolbarEvents;
|
|
7
8
|
private readonly highlightService;
|
|
@@ -11,8 +12,8 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
11
12
|
editable: boolean;
|
|
12
13
|
pageHeight: number;
|
|
13
14
|
pageWidth: number;
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
selectEvent: EventEmitter<Rectangle>;
|
|
16
|
+
updateEvent: EventEmitter<Rectangle>;
|
|
16
17
|
viewRect: ElementRef;
|
|
17
18
|
private subscriptions;
|
|
18
19
|
_selected: boolean;
|
|
@@ -34,5 +35,7 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
34
35
|
onUpdate(viewRect: any): void;
|
|
35
36
|
adjustForRotation(rotation: number): void;
|
|
36
37
|
hasRectangleChanged(viewRect: any): boolean;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RectangleComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RectangleComponent, "mv-anno-rectangle", never, { "color": "color"; "zoom": "zoom"; "rotate": "rotate"; "editable": "editable"; "pageHeight": "pageHeight"; "pageWidth": "pageWidth"; "annoRect": "annoRect"; "selected": "selected"; }, { "selectEvent": "selectEvent"; "updateEvent": "updateEvent"; }, never, never, false, never>;
|
|
37
40
|
}
|
|
38
41
|
//# sourceMappingURL=rectangle.component.d.ts.map
|
package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rectangle.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EAET,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,mEAAmE,CAAC
|
|
1
|
+
{"version":3,"file":"rectangle.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EAET,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,mEAAmE,CAAC;;AAE3G,qBAIa,kBAAmB,YAAW,SAAS,EAAE,aAAa,EAAE,SAAS;IAsChE,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IArCpC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAEjB,WAAW,0BAAiC;IAC5C,WAAW,0BAAiC;IAEX,QAAQ,EAAE,UAAU,CAAC;IAEhE,OAAO,CAAC,aAAa,CAAsB;IAC3C,SAAS,EAAE,OAAO,CAAC;IACnB,eAAe,UAAS;IAExB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IAEb,SAAS,EAAE,SAAS,CAAC;IACrB,IACI,QAAQ,CAAC,QAAQ,EAAE,SAAS,EAM/B;IAED,IAAI,QAAQ,IARW,SAAS,CAU/B;gBAG4B,aAAa,EAAE,mBAAmB,EAClC,gBAAgB,EAAE,sBAAsB;IAErE,WAAW,CAAC,OAAO,EAAE,aAAa;IAMlC,eAAe;IAMf,WAAW,IAAI,IAAI;IAKnB,IACI,QAAQ,CAAC,QAAQ,EAAE,OAAO,EAK7B;IAED,IAAI,QAAQ,IAPW,OAAO,CAS7B;IAED,OAAO;IAIP,QAAQ,CAAC,QAAQ,EAAE,GAAG;IAUtB,iBAAiB,CAAC,QAAQ,EAAE,MAAM;IAsBlC,mBAAmB,CAAC,QAAQ,KAAA,GAAG,OAAO;yCA1G3B,kBAAkB;2CAAlB,kBAAkB;CAgH9B"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { Rectangle } from '../annotation-view/rectangle/rectangle.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class CtxToolbarComponent implements OnChanges {
|
|
4
5
|
readonly defaultHeight: any;
|
|
5
6
|
readonly defaultWidth: any;
|
|
@@ -30,5 +31,7 @@ export declare class CtxToolbarComponent implements OnChanges {
|
|
|
30
31
|
setRectangle(): void;
|
|
31
32
|
popupTop(): any;
|
|
32
33
|
popupLeft(): number;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtxToolbarComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CtxToolbarComponent, "mv-ctx-toolbar", never, { "zoom": "zoom"; "rotate": "rotate"; "pageHeight": "pageHeight"; "pageWidth": "pageWidth"; "canHighlight": "canHighlight"; "canBookmark": "canBookmark"; "canComment": "canComment"; "canDelete": "canDelete"; "rectangles": "rectangles"; }, { "createHighlightEvent": "createHighlightEvent"; "deleteHighlightEvent": "deleteHighlightEvent"; "addOrEditCommentEvent": "addOrEditCommentEvent"; "createBookmarkEvent": "createBookmarkEvent"; }, never, never, false, never>;
|
|
33
36
|
}
|
|
34
37
|
//# sourceMappingURL=ctx-toolbar.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ctx-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,SAAS,EAET,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC
|
|
1
|
+
{"version":3,"file":"ctx-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,SAAS,EAET,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;;AAEzE,qBAIa,mBAAoB,YAAW,SAAS;IAEnD,QAAQ,CAAC,aAAa,MAAC;IACvB,QAAQ,CAAC,YAAY,MAAC;IAEb,IAAI,MAAC;IACL,MAAM,MAAC;IACP,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAElB,YAAY,EAAE,OAAO,CAAC;IACtB,WAAW,EAAE,OAAO,CAAC;IACrB,UAAU,EAAE,OAAO,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;IAElB,oBAAoB,oBAAsB;IAC1C,oBAAoB,oBAAsB;IAC1C,qBAAqB,oBAAsB;IAC3C,mBAAmB,0BAAiC;IAE9D,SAAS,EAAE,SAAS,CAAC;IACrB,WAAW,EAAE,SAAS,EAAE,CAAC;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;;IAOb,WAAW,CAAC,OAAO,EAAE,aAAa;IAMlC,IAAa,UAAU,CAAC,UAAU,EAAE,SAAS,EAAE,EAK9C;IAED,IAAI,UAAU,IAPsB,SAAS,EAAE,CAS9C;IAED,eAAe;IAKf,eAAe;IAIf,gBAAgB;IAShB,cAAc;IAKd,YAAY;IAwBZ,QAAQ;IAKR,SAAS;yCAnGE,mBAAmB;2CAAnB,mBAAmB;CA6G/B"}
|
|
@@ -6,6 +6,7 @@ import { HighlightCreateService } from '../annotation-create/highlight-create/hi
|
|
|
6
6
|
import { Rectangle } from '../annotation-view/rectangle/rectangle.model';
|
|
7
7
|
import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
|
|
8
8
|
import { Highlight, ViewerEventService } from '../../../viewers/viewer-event.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class MetadataLayerComponent implements OnInit, OnDestroy {
|
|
10
11
|
private store;
|
|
11
12
|
private readonly highlightService;
|
|
@@ -30,5 +31,7 @@ export declare class MetadataLayerComponent implements OnInit, OnDestroy {
|
|
|
30
31
|
rectangles: Rectangle[];
|
|
31
32
|
page: any;
|
|
32
33
|
}): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataLayerComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataLayerComponent, "mv-metadata-layer", never, { "zoom": "zoom"; "rotate": "rotate"; }, {}, never, never, false, never>;
|
|
33
36
|
}
|
|
34
37
|
//# sourceMappingURL=metadata-layer.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metadata-layer.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gEAAgE,CAAC;AACxG,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;AAGzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC
|
|
1
|
+
{"version":3,"file":"metadata-layer.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gEAAgE,CAAC;AACxG,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;AAGzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;;AAEtF,qBAIa,sBAAuB,YAAW,MAAM,EAAE,SAAS;IAe5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAhBtB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IAExB,KAAK,EAAE,GAAG,EAAE,CAAM;IAClB,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAE5B,QAAQ,UAAS;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,SAAS,EAAE,CAAC;IAExB,OAAO,CAAC,cAAc,CAAe;gBAG3B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,gBAAgB,EAAE,sBAAsB,EACxC,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB;IAEnD,QAAQ,IAAI,IAAI;IAWhB,WAAW,IAAI,IAAI;IAInB,kBAAkB,CAAC,SAAS,EAAE,SAAS;IAQvC,mBAAmB;IAInB,eAAe;IAMf,cAAc,CAAC,SAAS,EAAE,SAAS;IAoBnC,cAAc,CAAC,EAAE,UAAU,EAAE,IAAI,EAAE,EAAE;QAAE,UAAU,EAAE,SAAS,EAAE,CAAC;QAAC,IAAI,EAAE,GAAG,CAAA;KAAE;yCAzEhE,sBAAsB;2CAAtB,sBAAsB;CA6ElC"}
|
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./annotation-set/metadata-layer/metadata-layer.component";
|
|
3
|
+
import * as i2 from "./annotation-set/annotation-view/annotation-view.component";
|
|
4
|
+
import * as i3 from "./annotation-set/annotation-create/box-highlight-create/box-highlight-create.component";
|
|
5
|
+
import * as i4 from "./annotation-set/annotation-set.component";
|
|
6
|
+
import * as i5 from "./annotation-set/annotation-view/rectangle/rectangle.component";
|
|
7
|
+
import * as i6 from "./comment-set/comment/comment.component";
|
|
8
|
+
import * as i7 from "./comment-set/comment-set-header/comment-set-header.component";
|
|
9
|
+
import * as i8 from "./comment-set/comment-set-header/comment-search/comment-search.component";
|
|
10
|
+
import * as i9 from "./comment-set/comment/text-highlight/text-highlight.directive";
|
|
11
|
+
import * as i10 from "./annotation-set/ctx-toolbar/ctx-toolbar.component";
|
|
12
|
+
import * as i11 from "./comment-set/comment-set.component";
|
|
13
|
+
import * as i12 from "./comment-set/comment-navigate/comments-navigate.component";
|
|
14
|
+
import * as i13 from "./comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive";
|
|
15
|
+
import * as i14 from "./comments-summary/comments-summary.component";
|
|
16
|
+
import * as i15 from "./tags/tags.component";
|
|
17
|
+
import * as i16 from "./pipes/date/date.pipe";
|
|
18
|
+
import * as i17 from "./comment-set/comment-set-header/comment-filter/comment-filter.component";
|
|
19
|
+
import * as i18 from "./pipes/filter/filter.pipe";
|
|
20
|
+
import * as i19 from "./pipes/unsnake/unsnake.pipe";
|
|
21
|
+
import * as i20 from "@angular/cdk/a11y";
|
|
22
|
+
import * as i21 from "@angular/common";
|
|
23
|
+
import * as i22 from "@angular/forms";
|
|
24
|
+
import * as i23 from "@angular/common/http";
|
|
25
|
+
import * as i24 from "mutable-div";
|
|
26
|
+
import * as i25 from "ngx-chips";
|
|
27
|
+
import * as i26 from "@angular/router";
|
|
28
|
+
import * as i27 from "@swimlane/ngx-datatable";
|
|
29
|
+
import * as i28 from "../shared/shared.module";
|
|
1
30
|
export declare class AnnotationsModule {
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationsModule, never>;
|
|
32
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnnotationsModule, [typeof i1.MetadataLayerComponent, typeof i2.AnnotationViewComponent, typeof i3.BoxHighlightCreateComponent, typeof i4.AnnotationSetComponent, typeof i5.RectangleComponent, typeof i6.CommentComponent, typeof i7.CommentSetHeaderComponent, typeof i8.CommentSearchComponent, typeof i9.TextHighlightDirective, typeof i10.CtxToolbarComponent, typeof i11.CommentSetComponent, typeof i12.CommentsNavigateComponent, typeof i13.TextareaAutoExpandDirective, typeof i14.CommentsSummaryComponent, typeof i15.TagsComponent, typeof i16.MomentDatePipe, typeof i17.CommentFilterComponent, typeof i18.FilterPipe, typeof i19.UnsnakePipe], [typeof i20.A11yModule, typeof i21.CommonModule, typeof i22.FormsModule, typeof i23.HttpClientModule, typeof i24.MutableDivModule, typeof i25.TagInputModule, typeof i26.RouterModule, typeof i22.ReactiveFormsModule, typeof i27.NgxDatatableModule, typeof i28.SharedModule], [typeof i2.AnnotationViewComponent, typeof i3.BoxHighlightCreateComponent, typeof i4.AnnotationSetComponent, typeof i11.CommentSetComponent, typeof i7.CommentSetHeaderComponent, typeof i8.CommentSearchComponent, typeof i14.CommentsSummaryComponent, typeof i15.TagsComponent, typeof i17.CommentFilterComponent, typeof i16.MomentDatePipe, typeof i18.FilterPipe, typeof i19.UnsnakePipe, typeof i1.MetadataLayerComponent]>;
|
|
33
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AnnotationsModule>;
|
|
2
34
|
}
|
|
3
35
|
//# sourceMappingURL=annotations.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotations.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/annotations/annotations.module.ts"],"names":[],"mappings":"AAsCA,
|
|
1
|
+
{"version":3,"file":"annotations.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/annotations/annotations.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA,qBA0Da,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAI"}
|
|
@@ -9,6 +9,7 @@ import { Observable } from 'rxjs';
|
|
|
9
9
|
import { Store } from '@ngrx/store';
|
|
10
10
|
import * as fromStore from '../../../store/reducers/reducers';
|
|
11
11
|
import { Annotation } from '../../annotation-set/annotation-view/annotation.model';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class CommentComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
13
14
|
private store;
|
|
14
15
|
private readonly commentService;
|
|
@@ -62,5 +63,7 @@ export declare class CommentComponent implements OnInit, OnDestroy, AfterContent
|
|
|
62
63
|
reRenderComments(): void;
|
|
63
64
|
get commentTop(): number;
|
|
64
65
|
get height(): number;
|
|
66
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentComponent, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentComponent, "mv-anno-comment", never, { "rotate": "rotate"; "zoom": "zoom"; "index": "index"; "page": "page"; "comment": "comment"; "annotation": "annotation"; }, { "commentClick": "commentClick"; "renderComments": "renderComments"; "delete": "delete"; "updated": "updated"; "changes": "changes"; }, never, never, false, never>;
|
|
65
68
|
}
|
|
66
69
|
//# sourceMappingURL=comment.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAEhB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,OAAO,EAAC,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAC,IAAI,EAAC,MAAM,yBAAyB,CAAC;AAE7C,OAAO,EAAC,mBAAmB,EAAC,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAC,cAAc,EAAC,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAC,YAAY,EAAC,MAAM,mCAAmC,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAClC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC
|
|
1
|
+
{"version":3,"file":"comment.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAEhB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,OAAO,EAAC,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAC,IAAI,EAAC,MAAM,yBAAyB,CAAC;AAE7C,OAAO,EAAC,mBAAmB,EAAC,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAC,cAAc,EAAC,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAC,YAAY,EAAC,MAAM,mCAAmC,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAClC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;;AAEnF,qBAIa,gBAAiB,YAAW,MAAM,EAAE,SAAS,EAAE,gBAAgB;IAwCxE,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,YAAY;IAxCtB,UAAU,SAAQ;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,IAAI,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,IAAI,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,MAAC;IACX,oBAAoB,SAAK;IACzB,OAAO,MAAC;IACR,QAAQ,MAAC;IACT,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,UAAS;IAC1B,QAAQ,EAAE,OAAO,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,SAAS,EAAE,CAAC;IAC7B,gBAAgB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAE;IAI7B,YAAY,oCAA2C;IACvD,cAAc,wBAA+B;IAC7C,MAAM,wBAA+B;IACrC,OAAO;iBAA8B,OAAO;cAAQ,SAAS,EAAE;OAAK;IACpE,OAAO,wBAA+B;IACvC,MAAM,SAAK;IACX,IAAI,SAAK;IACT,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IAEc,IAAI,EAAE,UAAU,CAAC;IACN,eAAe,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAExF,OAAO,CAAC,aAAa,CAAe;gBAG1B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,cAAc,EAAE,cAAc,EACvC,YAAY,EAAE,YAAY;IAIpC,QAAQ,IAAI,IAAI;IAOhB,kBAAkB,IAAI,IAAI;IAM1B,WAAW,IAAI,IAAI;IAInB,IACI,OAAO,CAAC,OAAO,EAAE,OAAO,EAqB3B;IAED,IAAI,OAAO,IAvBU,OAAO,CAyB3B;IAED,IACI,UAAU,CAAC,UAAU,EAAE,UAAU,EAcpC;IAED,IAAI,QAAQ,IAAI,OAAO,CAEtB;IAED,eAAe,CAAC,cAAc,KAAA;IAM9B,cAAc;IAcP,UAAU;IAiBjB,cAAc;IAQd,gBAAgB;IAIhB,IAAI,UAAU,IAAI,MAAM,CAEvB;IAGD,IAAI,MAAM,WAET;yCAxKU,gBAAgB;2CAAhB,gBAAgB;CAyK5B"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
2
|
-
import { CommentSetComponent } from '../comment-set.component';
|
|
2
|
+
import type { CommentSetComponent } from '../comment-set.component';
|
|
3
3
|
import { Annotation } from '../../annotation-set/annotation-view/annotation.model';
|
|
4
|
-
import { CommentComponent } from './comment.component';
|
|
4
|
+
import type { CommentComponent } from './comment.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CommentService {
|
|
6
7
|
readonly unsavedChanges: Subject<boolean>;
|
|
7
8
|
readonly marginToCommentEmitter: BehaviorSubject<boolean>;
|
|
@@ -15,5 +16,7 @@ export declare class CommentService {
|
|
|
15
16
|
resetCommentSet(): void;
|
|
16
17
|
allCommentsSaved(): void;
|
|
17
18
|
createMarginToCommentEvent(margin: boolean): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommentService>;
|
|
18
21
|
}
|
|
19
22
|
//# sourceMappingURL=comment.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"comment.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC5D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAG5D,qBACa,cAAc;IAEzB,SAAgB,cAAc,mBAA0B;IACxD,SAAgB,sBAAsB,2BAAuC;IAC7E,mBAAmB,EAAE,mBAAmB,CAAC;IAEzC,aAAa,CAAC,mBAAmB,KAAA;IAIjC,eAAe,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAIvC,iBAAiB,IAAI,UAAU,CAAC,OAAO,CAAC;IAIxC,kBAAkB,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO;IAQnD,2BAA2B,CAAC,UAAU,EAAE,UAAU,EAAE,iBAAiB,EAAE,OAAO,GAAG,IAAI;IAMrF,UAAU,CAAC,UAAU,EAAE,UAAU,GAAG,gBAAgB;IAKpD,eAAe,IAAI,IAAI;IAIvB,gBAAgB,IAAI,IAAI;IAIxB,0BAA0B,CAAC,MAAM,EAAE,OAAO;yCA7C/B,cAAc;6CAAd,cAAc;CAgD1B"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AfterViewChecked, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TextHighlightDirective implements AfterViewChecked {
|
|
3
4
|
private element;
|
|
4
5
|
textToHighlight: string;
|
|
@@ -7,5 +8,7 @@ export declare class TextHighlightDirective implements AfterViewChecked {
|
|
|
7
8
|
highlightInputText(textToHighlight: string): void;
|
|
8
9
|
resetHighlight(): void;
|
|
9
10
|
private highlightPattern;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextHighlightDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextHighlightDirective, "[mvTextHighlight]", never, { "textToHighlight": "textToHighlight"; }, {}, never, never, false, never>;
|
|
10
13
|
}
|
|
11
14
|
//# sourceMappingURL=text-highlight.directive.d.ts.map
|
package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text-highlight.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAa,UAAU,EAAS,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"text-highlight.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAa,UAAU,EAAS,MAAM,eAAe,CAAC;;AAE/E,qBAGa,sBAAuB,YAAW,gBAAgB;IAIjD,OAAO,CAAC,OAAO;IAFlB,eAAe,EAAE,MAAM,CAAC;gBAEb,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC;IAEpD,kBAAkB,IAAI,IAAI;IAM1B,kBAAkB,CAAC,eAAe,EAAE,MAAM;IAY1C,cAAc;IAWd,OAAO,CAAC,gBAAgB;yCAnCb,sBAAsB;2CAAtB,sBAAsB;CAsClC"}
|
package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { AfterContentChecked, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TextareaAutoExpandDirective implements AfterContentChecked {
|
|
3
4
|
private el;
|
|
4
5
|
constructor(el: ElementRef);
|
|
5
6
|
ngAfterContentChecked(): void;
|
|
6
7
|
onMouseDown(): void;
|
|
7
8
|
adjustHeight(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaAutoExpandDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextareaAutoExpandDirective, "[mvTextAreaAutoExpand]", never, {}, {}, never, never, false, never>;
|
|
8
11
|
}
|
|
9
12
|
//# sourceMappingURL=textarea-auto-expand.directive.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"textarea-auto-expand.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAa,UAAU,EAAgB,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"textarea-auto-expand.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAa,UAAU,EAAgB,MAAM,eAAe,CAAC;;AAEzF,qBAGa,2BAA4B,YAAW,mBAAmB;IAEzD,OAAO,CAAC,EAAE;gBAAF,EAAE,EAAE,UAAU;IAGlC,qBAAqB,IAAI,IAAI;IAIN,WAAW;IAIlC,YAAY,IAAI,IAAI;yCAbT,2BAA2B;2CAA3B,2BAA2B;CAoBvC"}
|
|
@@ -4,6 +4,7 @@ import { Annotation } from '../../annotation-set/annotation-view/annotation.mode
|
|
|
4
4
|
import { Store } from '@ngrx/store';
|
|
5
5
|
import * as fromStore from '../../../store/reducers/reducers';
|
|
6
6
|
import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class CommentsNavigateComponent implements OnChanges {
|
|
8
9
|
private store;
|
|
9
10
|
readonly toolbarEvents: ToolbarEventService;
|
|
@@ -21,5 +22,7 @@ export declare class CommentsNavigateComponent implements OnChanges {
|
|
|
21
22
|
x: number;
|
|
22
23
|
y: number;
|
|
23
24
|
};
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsNavigateComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsNavigateComponent, "mv-comments-navigate", never, { "annotationList": "annotationList"; "autoSelect": "autoSelect"; }, {}, never, never, false, never>;
|
|
24
27
|
}
|
|
25
28
|
//# sourceMappingURL=comments-navigate.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comments-navigate.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,aAAa,EAAqB,MAAM,eAAe,CAAC;AAC9F,OAAO,EAAE,SAAS,EAAE,MAAM,gEAAgE,CAAC;AAC3F,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAClC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAE9D,OAAO,EAAC,mBAAmB,EAAC,MAAM,wCAAwC,CAAC
|
|
1
|
+
{"version":3,"file":"comments-navigate.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,aAAa,EAAqB,MAAM,eAAe,CAAC;AAC9F,OAAO,EAAE,SAAS,EAAE,MAAM,gEAAgE,CAAC;AAC3F,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAClC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAE9D,OAAO,EAAC,mBAAmB,EAAC,MAAM,wCAAwC,CAAC;;AAE3E,qBAKa,yBAA0B,YAAW,SAAS;IAQ7C,OAAO,CAAC,KAAK;aAAuD,aAAa,EAAE,mBAAmB;IANlG,cAAc,EAAE,UAAU,EAAE,CAAC;IACpC,UAAU,UAAS;IAE5B,cAAc,EAAE,GAAG,EAAE,CAAM;IAC3B,KAAK,SAAK;gBAEU,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EAAkB,aAAa,EAAE,mBAAmB;IAElH,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,kBAAkB,IAAI,IAAI;IAqB1B,YAAY,CAAC,cAAc,KAAA,EAAE,cAAc,KAAA;IAc3C,QAAQ;IAaR,QAAQ;IAaR,cAAc,CAAC,UAAU,EAAE,SAAS,EAAE;;;;yCA7E3B,yBAAyB;2CAAzB,yBAAyB;CAiFrC"}
|
package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts
CHANGED
|
@@ -2,22 +2,25 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
3
|
import * as fromStore from '../../../../store/reducers/reducers';
|
|
4
4
|
import { Observable, Subscription } from 'rxjs';
|
|
5
|
-
import {
|
|
5
|
+
import { UntypedFormGroup, UntypedFormBuilder } from '@angular/forms';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class CommentFilterComponent implements OnInit, OnDestroy {
|
|
7
8
|
private store;
|
|
8
9
|
private fb;
|
|
9
|
-
tagGroup:
|
|
10
|
+
tagGroup: UntypedFormGroup;
|
|
10
11
|
$subscriptions: Subscription;
|
|
11
12
|
filter$: Observable<string[]>;
|
|
12
13
|
allTags$: Observable<any>;
|
|
13
14
|
searchValue: string;
|
|
14
15
|
isPreview: boolean;
|
|
15
|
-
constructor(store: Store<fromStore.State>, fb:
|
|
16
|
+
constructor(store: Store<fromStore.State>, fb: UntypedFormBuilder);
|
|
16
17
|
ngOnInit(): void;
|
|
17
18
|
buildFrom(): void;
|
|
18
19
|
onClearFilters(): void;
|
|
19
20
|
ngOnDestroy(): void;
|
|
20
21
|
onRemoveFilter(tagName: any): void;
|
|
21
22
|
onToggleFilterView(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentFilterComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentFilterComponent, "mv-comment-filter", never, {}, {}, never, never, false, never>;
|
|
22
25
|
}
|
|
23
26
|
//# sourceMappingURL=comment-filter.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment-filter.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAoB,MAAM,eAAe,CAAC;AAE9E,OAAO,EAAS,KAAK,EAAC,MAAM,aAAa,CAAC;AAC1C,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;AAGjE,OAAO,EAAC,UAAU,EAAE,YAAY,EAAC,MAAM,MAAM,CAAC;AAC9C,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"comment-filter.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAoB,MAAM,eAAe,CAAC;AAE9E,OAAO,EAAS,KAAK,EAAC,MAAM,aAAa,CAAC;AAC1C,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;AAGjE,OAAO,EAAC,UAAU,EAAE,YAAY,EAAC,MAAM,MAAM,CAAC;AAC9C,OAAO,EAAC,gBAAgB,EAAE,kBAAkB,EAAqB,MAAM,gBAAgB,CAAC;;AAIxF,qBAKa,sBAAuB,YAAW,MAAM,EAAE,SAAS;IAQ5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,EAAE;IARZ,QAAQ,EAAE,gBAAgB,CAAC;IAC3B,cAAc,EAAE,YAAY,CAAC;IAC7B,OAAO,EAAE,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC;IAC9B,QAAQ,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAC1B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,UAAS;gBAER,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EAC7B,EAAE,EAAE,kBAAkB;IAEhC,QAAQ,IAAI,IAAI;IAahB,SAAS;IAUT,cAAc;IAKd,WAAW,IAAI,IAAI;IAInB,cAAc,CAAC,OAAO,KAAA;IAKtB,kBAAkB;yCAhDP,sBAAsB;2CAAtB,sBAAsB;CAqDlC"}
|
package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { Annotation } from '../../../annotation-set/annotation-view/annotation.model';
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import * as fromStore from '../../../../store/reducers/reducers';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CommentSearchComponent implements AfterViewInit, OnDestroy {
|
|
6
7
|
private store;
|
|
7
8
|
readonly annotations: Annotation[];
|
|
@@ -14,5 +15,7 @@ export declare class CommentSearchComponent implements AfterViewInit, OnDestroy
|
|
|
14
15
|
ngOnDestroy(): void;
|
|
15
16
|
searchComments(searchText: string): void;
|
|
16
17
|
clearSearch(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentSearchComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentSearchComponent, "mv-comment-search", never, { "annotations": "annotations"; }, {}, never, never, false, never>;
|
|
17
20
|
}
|
|
18
21
|
//# sourceMappingURL=comment-search.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment-search.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAS,SAAS,EAAgC,MAAM,eAAe,CAAC;AACrH,OAAO,EAAE,UAAU,EAAE,MAAM,0DAA0D,CAAC;AACtF,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC
|
|
1
|
+
{"version":3,"file":"comment-search.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAS,SAAS,EAAgC,MAAM,eAAe,CAAC;AACrH,OAAO,EAAE,UAAU,EAAE,MAAM,0DAA0D,CAAC;AACtF,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;;AAGjE,qBAKa,sBAAuB,YAAW,aAAa,EAAE,SAAS;IAUzD,OAAO,CAAC,KAAK;IARzB,SAAyB,WAAW,EAAE,UAAU,EAAE,CAAC;IAER,WAAW,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IAErF,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,UAAU,EAAE,CAAM;IACjC,WAAW,SAAK;gBAEI,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAE9D,eAAe,IAAI,IAAI;IAMvB,WAAW,IAAI,IAAI;IAKnB,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAcxC,WAAW;yCArCA,sBAAsB;2CAAtB,sBAAsB;CA2ClC"}
|
|
@@ -5,6 +5,7 @@ import * as fromStore from '../../../store/reducers/reducers';
|
|
|
5
5
|
import { Subscription } from 'rxjs';
|
|
6
6
|
import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
|
|
7
7
|
import { CommentService } from '../comment/comment.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class CommentSetHeaderComponent implements OnInit, OnDestroy {
|
|
9
10
|
private store;
|
|
10
11
|
private commentService;
|
|
@@ -26,5 +27,7 @@ export declare class CommentSetHeaderComponent implements OnInit, OnDestroy {
|
|
|
26
27
|
selectTab(tab: string): void;
|
|
27
28
|
toggleCommentsPanel(): void;
|
|
28
29
|
ngOnDestroy(): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentSetHeaderComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentSetHeaderComponent, "mv-comment-set-header", never, { "showCommentSummary": "showCommentSummary"; }, { "showCommentSummaryDialog": "showCommentSummaryDialog"; }, never, never, false, never>;
|
|
29
32
|
}
|
|
30
33
|
//# sourceMappingURL=comment-set-header.component.d.ts.map
|
package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment-set-header.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAA6B,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAiB,YAAY,EAAE,MAAM,MAAM,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC
|
|
1
|
+
{"version":3,"file":"comment-set-header.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAA6B,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAiB,YAAY,EAAE,MAAM,MAAM,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;;AAE5D,qBAKa,yBAA0B,YAAW,MAAM,EAAE,SAAS;IAYrD,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,cAAc;IACf,aAAa,EAAE,mBAAmB;IAZrC,kBAAkB,EAAE,OAAO,CAAC;IAC5C,SAA0B,wBAAwB,oBAAsB;IAExE,eAAe,EAAE,OAAO,CAAC;IACzB,IAAI,EAAE;QAAC,UAAU,CAAC,EAAE,OAAO,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC,EAAE,CAAM;IACnD,WAAW,SAAM;IACjB,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,UAAU,EAAE,CAAC;IAC7B,cAAc,EAAE,YAAY,CAAC;gBAET,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EAC7B,cAAc,EAAE,cAAc,EAC/B,aAAa,EAAE,mBAAmB;IAErD,QAAQ,IAAI,IAAI;IAeT,qBAAqB,IAAI,IAAI;IAIpC,SAAS,CAAC,GAAG,EAAE,MAAM;IAWd,mBAAmB;IAI1B,WAAW,IAAI,IAAI;yCAlDR,yBAAyB;2CAAzB,yBAAyB;CAqDrC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CommentComponent } from './comment/comment.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CommentSetRenderService {
|
|
3
4
|
redrawComponents(commentComponents: CommentComponent[], pageHeights: any[], rotate: number, zoom: number): void;
|
|
4
5
|
sortComponents(commentComponents: CommentComponent[], pageHeights: any[], rotate: number, zoom: number): CommentComponent[];
|
|
@@ -8,5 +9,7 @@ export declare class CommentSetRenderService {
|
|
|
8
9
|
private top;
|
|
9
10
|
private height;
|
|
10
11
|
private difference;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentSetRenderService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommentSetRenderService>;
|
|
11
14
|
}
|
|
12
15
|
//# sourceMappingURL=comment-set-render.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment-set-render.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-render.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC
|
|
1
|
+
{"version":3,"file":"comment-set-render.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-render.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;;AAE/D,qBACa,uBAAuB;IAElC,gBAAgB,CAAC,iBAAiB,EAAE,gBAAgB,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;IAQxG,cAAc,CAAC,iBAAiB,EAAE,gBAAgB,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;IAQtG,OAAO,CAAC,mBAAmB;IAS3B,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,GAAG;IAUX,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,UAAU;yCApDP,uBAAuB;6CAAvB,uBAAuB;CAqDnC"}
|
|
@@ -11,6 +11,7 @@ import * as fromStore from '../../store/reducers/reducers';
|
|
|
11
11
|
import { TagsModel } from '../models/tags.model';
|
|
12
12
|
import { SelectionAnnotation } from '../models/event-select.model';
|
|
13
13
|
import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
14
15
|
export declare class CommentSetComponent implements OnInit, OnDestroy, OnChanges {
|
|
15
16
|
private store;
|
|
16
17
|
private readonly commentService;
|
|
@@ -49,5 +50,7 @@ export declare class CommentSetComponent implements OnInit, OnDestroy, OnChanges
|
|
|
49
50
|
onContainerClick(e: any): void;
|
|
50
51
|
clearSelection(): void;
|
|
51
52
|
allCommentsSaved(): void;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentSetComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentSetComponent, "mv-comment-set", never, { "annotationSet": "annotationSet"; "zoom": "zoom"; "rotate": "rotate"; "height": "height"; "pageHeights": "pageHeights"; "contentScrollTop": "contentScrollTop"; }, {}, never, never, false, never>;
|
|
52
55
|
}
|
|
53
56
|
//# sourceMappingURL=comment-set.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment-set.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACH,SAAS,EAChB,SAAS,EACT,MAAM,EACN,SAAS,EAAE,aAAa,EAGzB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,EAAE,UAAU,EAAE,MAAM,oDAAoD,CAAC;AAChF,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAG3D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC
|
|
1
|
+
{"version":3,"file":"comment-set.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACH,SAAS,EAChB,SAAS,EACT,MAAM,EACN,SAAS,EAAE,aAAa,EAGzB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,EAAE,UAAU,EAAE,MAAM,oDAAoD,CAAC;AAChF,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAG3D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAE1E,qBAIa,mBAAoB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IAqB1D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAtBjC,aAAa,EAAE,aAAa,CAAC;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,QAAM;IACjB,gBAAgB,EAAE,MAAM,CAAC;IAElC,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,IAAI,EAAE,SAAS,EAAE,CAAC;IAClB,OAAO,CAAC,aAAa,CAAsB;IACpC,SAAS,EAAE,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IACpC,aAAa,EAAE,UAAU,CAAC;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAAA;KAAE,CAAC,CAAC;IAEtB,SAAS,EAAE,UAAU,CAAC,cAAc,CAAC,CAAC;IAC1C,KAAK,EAAE,UAAU,CAAC,cAAc,CAAC,CAAC;IACrC,iBAAiB,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAC;IAEjF,iBAAiB,EAAE,OAAO,CAAC;gBAEP,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,cAAc,EAAE,cAAc,EAC9B,aAAa,EAAE,uBAAuB,EACtC,aAAa,EAAE,mBAAmB;IAI/D,QAAQ;IAYR,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAWzC,WAAW;IAMJ,QAAQ,CAAC,YAAY,EAAE,mBAAmB;IAI1C,eAAe,CAAC,OAAO,EAAE,OAAO;IAWvC,cAAc;IAOd,OAAO,CAAC,cAAc;IAMf,eAAe,CAAC,OAAO,EAAE;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,SAAS,EAAE,CAAA;KAAC;IAY9D,kBAAkB,CAAC,UAAU,EAAE,UAAU;IAIhD,gBAAgB,CAAC,CAAC,KAAA;IAMlB,cAAc;IAId,gBAAgB;yCA/GL,mBAAmB;2CAAnB,mBAAmB;CAkH/B"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { ElementRef, OnInit, OnDestroy } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { Store } from '@ngrx/store';
|
|
5
5
|
import { PrintService } from '../../print.service';
|
|
6
6
|
import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
|
|
7
7
|
import * as fromStore from '../../store/reducers/reducers';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class CommentsSummaryComponent implements OnInit, OnDestroy {
|
|
9
10
|
private store;
|
|
10
11
|
private readonly printService;
|
|
@@ -15,7 +16,7 @@ export declare class CommentsSummaryComponent implements OnInit, OnDestroy {
|
|
|
15
16
|
container: ElementRef;
|
|
16
17
|
commentsTable: ElementRef;
|
|
17
18
|
comments$: Observable<any>;
|
|
18
|
-
filtersFg:
|
|
19
|
+
filtersFg: UntypedFormGroup;
|
|
19
20
|
private $subscriptions;
|
|
20
21
|
allTags$: Observable<{
|
|
21
22
|
key: string;
|
|
@@ -23,7 +24,7 @@ export declare class CommentsSummaryComponent implements OnInit, OnDestroy {
|
|
|
23
24
|
}[]>;
|
|
24
25
|
showFilters: boolean;
|
|
25
26
|
hasFilter: boolean;
|
|
26
|
-
constructor(store: Store<fromStore.AnnotationSetState>, printService: PrintService, toolbarEvents: ToolbarEventService, fb:
|
|
27
|
+
constructor(store: Store<fromStore.AnnotationSetState>, printService: PrintService, toolbarEvents: ToolbarEventService, fb: UntypedFormBuilder);
|
|
27
28
|
ngOnInit(): void;
|
|
28
29
|
buildCheckBoxForm(): void;
|
|
29
30
|
onClearFilters(): void;
|
|
@@ -33,5 +34,7 @@ export declare class CommentsSummaryComponent implements OnInit, OnDestroy {
|
|
|
33
34
|
onPrint(): void;
|
|
34
35
|
navigateToPage(pageNumber: number): void;
|
|
35
36
|
ngOnDestroy(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsSummaryComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsSummaryComponent, "mv-comments-summary", never, { "title": "title"; "contentType": "contentType"; }, {}, never, never, false, never>;
|
|
36
39
|
}
|
|
37
40
|
//# sourceMappingURL=comments-summary.component.d.ts.map
|