@hmcts/media-viewer 4.0.2 → 4.0.4
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/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +116 -0
- package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +109 -0
- package/{esm2020 → esm2022}/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +5 -5
- package/esm2022/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
- package/esm2022/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
- package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
- package/esm2022/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +118 -0
- package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +86 -0
- package/{esm2020 → esm2022}/lib/annotations/annotations.module.mjs +61 -61
- package/esm2022/lib/annotations/comment-set/comment/comment.component.mjs +177 -0
- package/esm2022/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
- package/esm2022/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
- package/{esm2020 → esm2022}/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +5 -5
- package/esm2022/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
- package/{esm2020 → esm2022}/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +5 -5
- package/esm2022/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +54 -0
- package/esm2022/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +68 -0
- package/esm2022/lib/annotations/comment-set/comment-set-render.service.mjs +54 -0
- package/esm2022/lib/annotations/comment-set/comment-set.component.mjs +123 -0
- package/esm2022/lib/annotations/comments-summary/comments-summary.component.mjs +120 -0
- package/{esm2020 → esm2022}/lib/annotations/pipes/date/date.pipe.mjs +4 -4
- package/esm2022/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
- package/{esm2020 → esm2022}/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +4 -4
- package/{esm2020 → esm2022}/lib/annotations/services/annotation-api/annotation-api.service.mjs +5 -5
- package/{esm2020 → esm2022}/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +5 -5
- package/{esm2020 → esm2022}/lib/annotations/services/tags/tags.services.mjs +5 -5
- package/esm2022/lib/annotations/tags/tags.component.mjs +53 -0
- package/{esm2020 → esm2022}/lib/bookmark/components/bookmark-icons.component.mjs +5 -5
- package/{esm2020 → esm2022}/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +5 -5
- package/esm2022/lib/icp/icp-follower.service.mjs +60 -0
- package/esm2022/lib/icp/icp-presenter.service.mjs +55 -0
- package/{esm2020 → esm2022}/lib/icp/icp-session-api.service.mjs +5 -5
- package/esm2022/lib/icp/icp-update.service.mjs +65 -0
- package/esm2022/lib/icp/icp.service.mjs +95 -0
- package/{esm2020 → esm2022}/lib/icp/participants-list/participants-list.component.mjs +5 -5
- package/esm2022/lib/icp/socket.service.mjs +118 -0
- package/esm2022/lib/media-viewer.component.mjs +244 -0
- package/{esm2020 → esm2022}/lib/media-viewer.module.mjs +55 -55
- package/{esm2020 → esm2022}/lib/print.service.mjs +4 -4
- package/esm2022/lib/redaction/components/redaction.component.mjs +91 -0
- package/{esm2020 → esm2022}/lib/redaction/services/redaction-api.service.mjs +5 -5
- package/{esm2020 → esm2022}/lib/shared/gov-uk-date/gov-uk-date.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +7 -7
- package/{esm2020 → esm2022}/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/shared/gov-uk-label/gov-uk-label.component.mjs +7 -7
- package/{esm2020 → esm2022}/lib/shared/shared.module.mjs +19 -19
- package/esm2022/lib/shared/util/helpers/html-templates.helper.mjs +18 -0
- package/{esm2020 → esm2022}/lib/shared/util/services/number.helper.service.mjs +5 -5
- package/esm2022/lib/store/bookmarks-store-utils.mjs +49 -0
- package/esm2022/lib/store/effects/annotation.effects.mjs +51 -0
- package/esm2022/lib/store/effects/bookmarks.effects.mjs +44 -0
- package/{esm2020 → esm2022}/lib/store/effects/document.effects.mjs +5 -5
- package/{esm2020 → esm2022}/lib/store/effects/icp.effects.mjs +5 -5
- package/{esm2020 → esm2022}/lib/store/effects/redaction.effects.mjs +5 -5
- package/esm2022/lib/store/reducers/annotations.reducer.mjs +208 -0
- package/esm2022/lib/store/reducers/bookmarks.reducer.mjs +116 -0
- package/esm2022/lib/store/reducers/document.reducer.mjs +135 -0
- package/esm2022/lib/store/reducers/icp.reducer.mjs +56 -0
- package/esm2022/lib/store/reducers/redaction.reducer.mjs +116 -0
- package/esm2022/lib/store/reducers/tags.reducer.mjs +93 -0
- package/esm2022/lib/store/selectors/annotation.selectors.mjs +81 -0
- package/{esm2020 → esm2022}/lib/store/selectors/bookmark.selectors.mjs +1 -1
- package/{esm2020 → esm2022}/lib/store/selectors/redaction.selectors.mjs +1 -1
- package/esm2022/lib/store/store-utils.mjs +131 -0
- package/esm2022/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +44 -0
- package/{esm2020 → esm2022}/lib/toolbar/icp-event.service.mjs +1 -1
- package/{esm2020 → esm2022}/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +5 -5
- package/esm2022/lib/toolbar/main-toolbar/main-toolbar.component.mjs +189 -0
- package/esm2022/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +236 -0
- package/esm2022/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +68 -0
- package/esm2022/lib/toolbar/search-bar/search-bar.component.mjs +109 -0
- package/esm2022/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
- package/esm2022/lib/toolbar/toolbar-event.service.mjs +178 -0
- package/{esm2020 → esm2022}/lib/toolbar/toolbar.module.mjs +25 -25
- package/esm2022/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +82 -0
- package/{esm2020 → esm2022}/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +5 -5
- package/esm2022/lib/viewers/grab-n-drag.directive.mjs +57 -0
- package/esm2022/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
- package/esm2022/lib/viewers/multimedia-player/multimedia-player.component.mjs +59 -0
- package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +210 -0
- package/{esm2020 → esm2022}/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +5 -5
- package/esm2022/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +236 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +352 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
- package/esm2022/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +78 -0
- package/{esm2020 → esm2022}/lib/viewers/rotation-persist/rotation-api.service.mjs +5 -5
- package/esm2022/lib/viewers/rotation-persist/rotation-persist.directive.mjs +61 -0
- package/esm2022/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
- package/{esm2020 → esm2022}/lib/viewers/viewer-event.service.mjs +5 -5
- package/{esm2020 → esm2022}/lib/viewers/viewer-util.service.mjs +5 -5
- package/{fesm2020 → fesm2022}/hmcts-media-viewer.mjs +445 -445
- package/fesm2022/hmcts-media-viewer.mjs.map +1 -0
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +1 -1
- package/lib/annotations/annotation-set/annotation-set.component.d.ts +1 -1
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +1 -1
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +1 -1
- package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +1 -1
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +1 -1
- package/lib/annotations/comment-set/comment/comment.component.d.ts +1 -1
- package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +1 -1
- package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +1 -1
- package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +1 -1
- package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +1 -1
- package/lib/annotations/comment-set/comment-set.component.d.ts +1 -1
- package/lib/annotations/comments-summary/comments-summary.component.d.ts +1 -1
- package/lib/annotations/tags/tags.component.d.ts +1 -1
- package/lib/bookmark/components/bookmark-icons.component.d.ts +1 -1
- package/lib/icp/socket.service.d.ts +6 -6
- package/lib/icp/socket.service.d.ts.map +1 -1
- package/lib/media-viewer.component.d.ts +1 -2
- package/lib/media-viewer.component.d.ts.map +1 -1
- package/lib/redaction/components/redaction.component.d.ts +1 -1
- package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +1 -1
- package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +1 -1
- package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +1 -1
- package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +1 -1
- package/lib/store/bookmarks-store-utils.d.ts.map +1 -1
- package/lib/toolbar/icp-event.service.d.ts +4 -4
- package/lib/toolbar/icp-event.service.d.ts.map +1 -1
- package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +1 -1
- package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +1 -1
- package/lib/toolbar/toolbar-event.service.d.ts +6 -6
- package/lib/toolbar/toolbar-event.service.d.ts.map +1 -1
- package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +1 -1
- package/lib/viewers/grab-n-drag.directive.d.ts +1 -1
- package/lib/viewers/image-viewer/image-viewer.component.d.ts +1 -1
- package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +1 -1
- package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts.map +1 -1
- package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +1 -1
- package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +1 -1
- package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +1 -1
- package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +1 -1
- package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +1 -1
- package/lib/viewers/viewer-event.service.d.ts +1 -1
- package/lib/viewers/viewer-event.service.d.ts.map +1 -1
- package/package.json +16 -23
- package/esm2020/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +0 -116
- package/esm2020/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +0 -109
- package/esm2020/lib/annotations/annotation-set/annotation-set.component.mjs +0 -50
- package/esm2020/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +0 -94
- package/esm2020/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +0 -116
- package/esm2020/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +0 -118
- package/esm2020/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +0 -86
- package/esm2020/lib/annotations/comment-set/comment/comment.component.mjs +0 -177
- package/esm2020/lib/annotations/comment-set/comment/comment.service.mjs +0 -50
- package/esm2020/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +0 -47
- package/esm2020/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +0 -91
- package/esm2020/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +0 -54
- package/esm2020/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +0 -68
- package/esm2020/lib/annotations/comment-set/comment-set-render.service.mjs +0 -54
- package/esm2020/lib/annotations/comment-set/comment-set.component.mjs +0 -123
- package/esm2020/lib/annotations/comments-summary/comments-summary.component.mjs +0 -120
- package/esm2020/lib/annotations/pipes/filter/filter.pipe.mjs +0 -32
- package/esm2020/lib/annotations/tags/tags.component.mjs +0 -53
- package/esm2020/lib/icp/icp-follower.service.mjs +0 -60
- package/esm2020/lib/icp/icp-presenter.service.mjs +0 -55
- package/esm2020/lib/icp/icp-update.service.mjs +0 -65
- package/esm2020/lib/icp/icp.service.mjs +0 -95
- package/esm2020/lib/icp/socket.service.mjs +0 -118
- package/esm2020/lib/media-viewer.component.mjs +0 -245
- package/esm2020/lib/redaction/components/redaction.component.mjs +0 -91
- package/esm2020/lib/shared/util/helpers/html-templates.helper.mjs +0 -18
- package/esm2020/lib/store/bookmarks-store-utils.mjs +0 -49
- package/esm2020/lib/store/effects/annotation.effects.mjs +0 -51
- package/esm2020/lib/store/effects/bookmarks.effects.mjs +0 -44
- package/esm2020/lib/store/reducers/annotations.reducer.mjs +0 -208
- package/esm2020/lib/store/reducers/bookmarks.reducer.mjs +0 -116
- package/esm2020/lib/store/reducers/document.reducer.mjs +0 -135
- package/esm2020/lib/store/reducers/icp.reducer.mjs +0 -56
- package/esm2020/lib/store/reducers/redaction.reducer.mjs +0 -116
- package/esm2020/lib/store/reducers/tags.reducer.mjs +0 -93
- package/esm2020/lib/store/selectors/annotation.selectors.mjs +0 -81
- package/esm2020/lib/store/store-utils.mjs +0 -131
- package/esm2020/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +0 -44
- package/esm2020/lib/toolbar/main-toolbar/main-toolbar.component.mjs +0 -189
- package/esm2020/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +0 -236
- package/esm2020/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +0 -68
- package/esm2020/lib/toolbar/search-bar/search-bar.component.mjs +0 -109
- package/esm2020/lib/toolbar/toolbar-button-visibility.service.mjs +0 -94
- package/esm2020/lib/toolbar/toolbar-event.service.mjs +0 -178
- package/esm2020/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +0 -82
- package/esm2020/lib/viewers/grab-n-drag.directive.mjs +0 -57
- package/esm2020/lib/viewers/image-viewer/image-viewer.component.mjs +0 -166
- package/esm2020/lib/viewers/multimedia-player/multimedia-player.component.mjs +0 -59
- package/esm2020/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +0 -209
- package/esm2020/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +0 -236
- package/esm2020/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +0 -352
- package/esm2020/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +0 -49
- package/esm2020/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +0 -78
- package/esm2020/lib/viewers/rotation-persist/rotation-persist.directive.mjs +0 -61
- package/esm2020/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +0 -49
- package/fesm2015/hmcts-media-viewer.mjs +0 -6953
- package/fesm2015/hmcts-media-viewer.mjs.map +0 -1
- package/fesm2020/hmcts-media-viewer.mjs.map +0 -1
- /package/{esm2020 → esm2022}/hmcts-media-viewer.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/annotation-set/annotation-set.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/annotation-set/annotation-view/annotation.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/comment-set/comment/comment.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/models/api-persisted.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/models/event-select.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/models/tags.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/annotations/models/user.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/icp/icp.events.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/icp/icp.interfaces.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/redaction/services/redaction.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/actions/annotation.actions.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/actions/bookmark.actions.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/actions/document.actions.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/actions/icp.actions.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/actions/redaction.actions.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/actions/tag.actions.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/effects/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/models/bookmarks.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/models/filters.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/reducers/reducers.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/selectors/document.selectors.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/selectors/icp.selectors.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/selectors/tag.selectors.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/toolbar/redaction-search-bar/redaction-search.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/viewers/rotation-persist/rotation.model.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/viewers/viewer-exception.model.mjs +0 -0
- /package/{esm2020 → esm2022}/public_api.mjs +0 -0
|
@@ -50,6 +50,6 @@ export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
|
50
50
|
private resetHighlight;
|
|
51
51
|
private highlightPage;
|
|
52
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>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BoxHighlightCreateComponent, "mv-box-highlight-create", never, { "page": { "alias": "page"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "container": { "alias": "container"; "required": false; }; }, { "saveSelection": "saveSelection"; }, never, never, false, never>;
|
|
54
54
|
}
|
|
55
55
|
//# sourceMappingURL=box-highlight-create.component.d.ts.map
|
|
@@ -22,6 +22,6 @@ export declare class AnnotationSetComponent implements OnInit {
|
|
|
22
22
|
onAnnotationDelete(annotation: Annotation): void;
|
|
23
23
|
selectAnnotation(selectedAnnotation: SelectionAnnotation): void;
|
|
24
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>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnotationSetComponent, "mv-annotation-set", never, { "page": { "alias": "page"; "required": false; }; "annotations": { "alias": "annotations"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
26
|
}
|
|
27
27
|
//# sourceMappingURL=annotation-set.component.d.ts.map
|
|
@@ -29,6 +29,6 @@ export declare class AnnotationViewComponent {
|
|
|
29
29
|
deleteHighlight(): void;
|
|
30
30
|
addOrEditComment(): void;
|
|
31
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>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnotationViewComponent, "mv-annotation", never, { "annotation": { "alias": "annotation"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "selectedAnnoId": { "alias": "selectedAnnoId"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; }, { "update": "update"; "delete": "delete"; "annotationClick": "annotationClick"; }, never, never, false, never>;
|
|
33
33
|
}
|
|
34
34
|
//# sourceMappingURL=annotation-view.component.d.ts.map
|
|
@@ -36,6 +36,6 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
36
36
|
adjustForRotation(rotation: number): void;
|
|
37
37
|
hasRectangleChanged(viewRect: any): boolean;
|
|
38
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>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RectangleComponent, "mv-anno-rectangle", never, { "color": { "alias": "color"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; "annoRect": { "alias": "annoRect"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "selectEvent": "selectEvent"; "updateEvent": "updateEvent"; }, never, never, false, never>;
|
|
40
40
|
}
|
|
41
41
|
//# sourceMappingURL=rectangle.component.d.ts.map
|
|
@@ -32,6 +32,6 @@ export declare class CtxToolbarComponent implements OnChanges {
|
|
|
32
32
|
popupTop(): any;
|
|
33
33
|
popupLeft(): number;
|
|
34
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>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CtxToolbarComponent, "mv-ctx-toolbar", never, { "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; "canHighlight": { "alias": "canHighlight"; "required": false; }; "canBookmark": { "alias": "canBookmark"; "required": false; }; "canComment": { "alias": "canComment"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "rectangles": { "alias": "rectangles"; "required": false; }; }, { "createHighlightEvent": "createHighlightEvent"; "deleteHighlightEvent": "deleteHighlightEvent"; "addOrEditCommentEvent": "addOrEditCommentEvent"; "createBookmarkEvent": "createBookmarkEvent"; }, never, never, false, never>;
|
|
36
36
|
}
|
|
37
37
|
//# sourceMappingURL=ctx-toolbar.component.d.ts.map
|
|
@@ -32,6 +32,6 @@ export declare class MetadataLayerComponent implements OnInit, OnDestroy {
|
|
|
32
32
|
page: any;
|
|
33
33
|
}): void;
|
|
34
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>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataLayerComponent, "mv-metadata-layer", never, { "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; }, {}, never, never, false, never>;
|
|
36
36
|
}
|
|
37
37
|
//# sourceMappingURL=metadata-layer.component.d.ts.map
|
|
@@ -64,6 +64,6 @@ export declare class CommentComponent implements OnInit, OnDestroy, AfterContent
|
|
|
64
64
|
get commentTop(): number;
|
|
65
65
|
get height(): number;
|
|
66
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>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentComponent, "mv-anno-comment", never, { "rotate": { "alias": "rotate"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "index": { "alias": "index"; "required": false; }; "page": { "alias": "page"; "required": false; }; "comment": { "alias": "comment"; "required": false; }; "annotation": { "alias": "annotation"; "required": false; }; }, { "commentClick": "commentClick"; "renderComments": "renderComments"; "delete": "delete"; "updated": "updated"; "changes": "changes"; }, never, never, false, never>;
|
|
68
68
|
}
|
|
69
69
|
//# sourceMappingURL=comment.component.d.ts.map
|
|
@@ -9,6 +9,6 @@ export declare class TextHighlightDirective implements AfterViewChecked {
|
|
|
9
9
|
resetHighlight(): void;
|
|
10
10
|
private highlightPattern;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextHighlightDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextHighlightDirective, "[mvTextHighlight]", never, { "textToHighlight": "textToHighlight"; }, {}, never, never, false, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextHighlightDirective, "[mvTextHighlight]", never, { "textToHighlight": { "alias": "textToHighlight"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
13
|
}
|
|
14
14
|
//# sourceMappingURL=text-highlight.directive.d.ts.map
|
|
@@ -23,6 +23,6 @@ export declare class CommentsNavigateComponent implements OnChanges {
|
|
|
23
23
|
y: number;
|
|
24
24
|
};
|
|
25
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>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsNavigateComponent, "mv-comments-navigate", never, { "annotationList": { "alias": "annotationList"; "required": false; }; "autoSelect": { "alias": "autoSelect"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
27
|
}
|
|
28
28
|
//# sourceMappingURL=comments-navigate.component.d.ts.map
|
package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts
CHANGED
|
@@ -16,6 +16,6 @@ export declare class CommentSearchComponent implements AfterViewInit, OnDestroy
|
|
|
16
16
|
searchComments(searchText: string): void;
|
|
17
17
|
clearSearch(): void;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentSearchComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentSearchComponent, "mv-comment-search", never, { "annotations": "annotations"; }, {}, never, never, false, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentSearchComponent, "mv-comment-search", never, { "annotations": { "alias": "annotations"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
20
|
}
|
|
21
21
|
//# sourceMappingURL=comment-search.component.d.ts.map
|
|
@@ -28,6 +28,6 @@ export declare class CommentSetHeaderComponent implements OnInit, OnDestroy {
|
|
|
28
28
|
toggleCommentsPanel(): void;
|
|
29
29
|
ngOnDestroy(): void;
|
|
30
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>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentSetHeaderComponent, "mv-comment-set-header", never, { "showCommentSummary": { "alias": "showCommentSummary"; "required": false; }; }, { "showCommentSummaryDialog": "showCommentSummaryDialog"; }, never, never, false, never>;
|
|
32
32
|
}
|
|
33
33
|
//# sourceMappingURL=comment-set-header.component.d.ts.map
|
|
@@ -51,6 +51,6 @@ export declare class CommentSetComponent implements OnInit, OnDestroy, OnChanges
|
|
|
51
51
|
clearSelection(): void;
|
|
52
52
|
allCommentsSaved(): void;
|
|
53
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>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentSetComponent, "mv-comment-set", never, { "annotationSet": { "alias": "annotationSet"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "height": { "alias": "height"; "required": false; }; "pageHeights": { "alias": "pageHeights"; "required": false; }; "contentScrollTop": { "alias": "contentScrollTop"; "required": false; }; }, {}, never, never, false, never>;
|
|
55
55
|
}
|
|
56
56
|
//# sourceMappingURL=comment-set.component.d.ts.map
|
|
@@ -37,6 +37,6 @@ export declare class CommentsSummaryComponent implements OnInit, OnDestroy {
|
|
|
37
37
|
navigateToPage(pageNumber: number): void;
|
|
38
38
|
ngOnDestroy(): void;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsSummaryComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsSummaryComponent, "mv-comments-summary", never, { "title": "title"; "contentType": "contentType"; }, {}, never, never, false, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsSummaryComponent, "mv-comments-summary", never, { "title": { "alias": "title"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; }, {}, never, never, false, never>;
|
|
41
41
|
}
|
|
42
42
|
//# sourceMappingURL=comments-summary.component.d.ts.map
|
|
@@ -23,6 +23,6 @@ export declare class TagsComponent {
|
|
|
23
23
|
private minLength;
|
|
24
24
|
private maxLength20;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagsComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "mv-tags", never, { "tagItems": "tagItems"; "userId": "userId"; "editable": "editable"; "annoId": "annoId"; }, {}, never, never, false, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "mv-tags", never, { "tagItems": { "alias": "tagItems"; "required": false; }; "userId": { "alias": "userId"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "annoId": { "alias": "annoId"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
27
|
}
|
|
28
28
|
//# sourceMappingURL=tags.component.d.ts.map
|
|
@@ -14,6 +14,6 @@ export declare class BookmarkIconsComponent implements OnInit {
|
|
|
14
14
|
constructor(store: Store<fromStore.State>);
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkIconsComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BookmarkIconsComponent, "mv-bookmark-icons", never, { "zoom": "zoom"; "rotate": "rotate"; }, {}, never, never, false, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BookmarkIconsComponent, "mv-bookmark-icons", never, { "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
18
|
}
|
|
19
19
|
//# sourceMappingURL=bookmark-icons.component.d.ts.map
|
|
@@ -6,12 +6,12 @@ export declare class SocketService implements OnDestroy {
|
|
|
6
6
|
private socket;
|
|
7
7
|
subscription: Subscription;
|
|
8
8
|
connected$: BehaviorSubject<boolean>;
|
|
9
|
-
sessionJoined$: Subject<
|
|
10
|
-
presenterUpdated$: Subject<
|
|
11
|
-
clientDisconnected$: Subject<
|
|
12
|
-
participantUpdated$: Subject<
|
|
13
|
-
newParticipantJoined$: Subject<
|
|
14
|
-
screenUpdated$: Subject<
|
|
9
|
+
sessionJoined$: Subject<void>;
|
|
10
|
+
presenterUpdated$: Subject<void>;
|
|
11
|
+
clientDisconnected$: Subject<void>;
|
|
12
|
+
participantUpdated$: Subject<void>;
|
|
13
|
+
newParticipantJoined$: Subject<void>;
|
|
14
|
+
screenUpdated$: Subject<void>;
|
|
15
15
|
constructor();
|
|
16
16
|
ngOnDestroy(): void;
|
|
17
17
|
connect(url: string): Subscription;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"socket.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/socket.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,eAAe,EAAQ,UAAU,EAAM,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;;AAGzC,qBACa,aAAc,YAAW,SAAS;IAE7C,OAAO,CAAC,MAAM,CAAY;IAC1B,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,2BAAuC;IACjD,cAAc,
|
|
1
|
+
{"version":3,"file":"socket.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/socket.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,eAAe,EAAQ,UAAU,EAAM,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;;AAGzC,qBACa,aAAc,YAAW,SAAS;IAE7C,OAAO,CAAC,MAAM,CAAY;IAC1B,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,2BAAuC;IACjD,cAAc,gBAAuB;IACrC,iBAAiB,gBAAuB;IACxC,mBAAmB,gBAAuB;IAC1C,mBAAmB,gBAAuB;IAC1C,qBAAqB,gBAAuB;IAC5C,cAAc,gBAAuB;;IAIrC,WAAW;IAIX,OAAO,CAAC,GAAG,EAAE,MAAM;IAyBnB,SAAS,IAAI,UAAU,CAAC,OAAO,CAAC;IAIhC,IAAI,CAAC,OAAO,KAAA;IAIZ,KAAK,CAAC,OAAO,KAAA;IAKb,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IAQ7B,MAAM,CAAC,KAAK,EAAE,SAAS,GAAG,UAAU,CAAC,GAAG,CAAC;IA0BzC,oBAAoB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IA6BjD,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC;yCAvHxC,aAAa;6CAAb,aAAa;CA2HzB"}
|
|
@@ -6,7 +6,6 @@ import { ToolbarEventService } from './toolbar/toolbar-event.service';
|
|
|
6
6
|
import { AnnotationApiService } from './annotations/services/annotation-api/annotation-api.service';
|
|
7
7
|
import { ResponseType, ViewerException } from './viewers/viewer-exception.model';
|
|
8
8
|
import { CommentService } from './annotations/comment-set/comment/comment.service';
|
|
9
|
-
import 'hammerjs';
|
|
10
9
|
import { Store } from '@ngrx/store';
|
|
11
10
|
import * as fromStore from './store/reducers/reducers';
|
|
12
11
|
import * as i0 from "@angular/core";
|
|
@@ -66,6 +65,6 @@ export declare class MediaViewerComponent implements OnChanges, OnDestroy, After
|
|
|
66
65
|
private extractDMStoreDocId;
|
|
67
66
|
detectOs(): void;
|
|
68
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<MediaViewerComponent, never>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MediaViewerComponent, "mv-media-viewer", never, { "url": "url"; "downloadFileName": "downloadFileName"; "contentType": "contentType"; "showToolbar": "showToolbar"; "toolbarButtonOverrides": "toolbarButtonOverrides"; "height": "height"; "width": "width"; "enableAnnotations": "enableAnnotations"; "annotationApiUrl": "annotationApiUrl"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "multimediaPlayerEnabled": "multimediaPlayerEnabled"; "enableRedactSearch": "enableRedactSearch"; "caseId": "caseId"; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "toolbarEventsOutput": "toolbarEventsOutput"; "unsavedChanges": "unsavedChanges"; }, never, never, false, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MediaViewerComponent, "mv-media-viewer", never, { "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "toolbarButtonOverrides": { "alias": "toolbarButtonOverrides"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "enableAnnotations": { "alias": "enableAnnotations"; "required": false; }; "annotationApiUrl": { "alias": "annotationApiUrl"; "required": false; }; "enableRedactions": { "alias": "enableRedactions"; "required": false; }; "enableICP": { "alias": "enableICP"; "required": false; }; "multimediaPlayerEnabled": { "alias": "multimediaPlayerEnabled"; "required": false; }; "enableRedactSearch": { "alias": "enableRedactSearch"; "required": false; }; "caseId": { "alias": "caseId"; "required": false; }; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "toolbarEventsOutput": "toolbarEventsOutput"; "unsavedChanges": "unsavedChanges"; }, never, never, false, never>;
|
|
70
69
|
}
|
|
71
70
|
//# sourceMappingURL=media-viewer.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"media-viewer.component.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAAE,gBAAgB,EAClC,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EAET,aAAa,EAGd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAIL,8BAA8B,EAC/B,MAAM,6CAA6C,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,mDAAmD,CAAC;AAClF,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,8DAA8D,CAAC;AACpG,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,cAAc,EAAE,MAAM,mDAAmD,CAAC;AACnF,OAAO,
|
|
1
|
+
{"version":3,"file":"media-viewer.component.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -37,6 +37,6 @@ export declare class RedactionComponent implements OnInit, OnDestroy {
|
|
|
37
37
|
filename: any;
|
|
38
38
|
}): void;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<RedactionComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RedactionComponent, "mv-redactions", never, { "zoom": "zoom"; "rotate": "rotate"; }, {}, never, never, false, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RedactionComponent, "mv-redactions", never, { "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; }, {}, never, never, false, never>;
|
|
41
41
|
}
|
|
42
42
|
//# sourceMappingURL=redaction.component.d.ts.map
|
|
@@ -10,6 +10,6 @@ export declare class GovUkDateComponent {
|
|
|
10
10
|
};
|
|
11
11
|
formGroup: any;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<GovUkDateComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkDateComponent, "mv-gov-uk-date", never, { "config": "config"; "errorMessage": "errorMessage"; "formGroup": "formGroup"; }, {}, never, never, false, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkDateComponent, "mv-gov-uk-date", never, { "config": { "alias": "config"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
14
|
}
|
|
15
15
|
//# sourceMappingURL=gov-uk-date.component.d.ts.map
|
|
@@ -6,6 +6,6 @@ export declare class GovUkErrorMessageComponent {
|
|
|
6
6
|
};
|
|
7
7
|
errorMessage: any;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<GovUkErrorMessageComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkErrorMessageComponent, " mv-gov-uk-error-message", never, { "config": "config"; "errorMessage": "errorMessage"; }, {}, never, never, false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkErrorMessageComponent, " mv-gov-uk-error-message", never, { "config": { "alias": "config"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
11
11
|
//# sourceMappingURL=gov-uk-error-message.component.d.ts.map
|
|
@@ -11,6 +11,6 @@ export declare class GovUkFieldsetComponent {
|
|
|
11
11
|
errorMessage: string[];
|
|
12
12
|
setDescribedBy(): string;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<GovUkFieldsetComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkFieldsetComponent, "mv-gov-uk-fieldset", never, { "config": "config"; "isHeading": "isHeading"; "errorMessage": "errorMessage"; }, {}, never, ["*"], false, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkFieldsetComponent, "mv-gov-uk-fieldset", never, { "config": { "alias": "config"; "required": false; }; "isHeading": { "alias": "isHeading"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
15
15
|
}
|
|
16
16
|
//# sourceMappingURL=gov-uk-fieldset.component.d.ts.map
|
|
@@ -9,6 +9,6 @@ export declare class GovUkLabelComponent {
|
|
|
9
9
|
classes: string;
|
|
10
10
|
};
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<GovUkLabelComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkLabelComponent, "mv-gov-label", never, { "config": "config"; }, {}, never, never, false, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GovUkLabelComponent, "mv-gov-label", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
13
|
}
|
|
14
14
|
//# sourceMappingURL=gov-uk-label.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookmarks-store-utils.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/store/bookmarks-store-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,+DAA+D,CAAC;AAEzF,eAAO,MAAM,mBAAmB,cAAe,QAAQ,EAAE,QAWxD,CAAC;AAEF,eAAO,MAAM,wBAAwB,cAAe,QAAQ,EAAE
|
|
1
|
+
{"version":3,"file":"bookmarks-store-utils.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/store/bookmarks-store-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,+DAA+D,CAAC;AAEzF,eAAO,MAAM,mBAAmB,cAAe,QAAQ,EAAE,QAWxD,CAAC;AAEF,eAAO,MAAM,wBAAwB,cAAe,QAAQ,EAAE,KAAG;IAAC,CAAC,EAAE,EAAE,MAAM,GAAG,QAAQ,CAAA;CAKvF,CAAC;AAiBF,eAAO,MAAM,qBAAqB,aAAc;IAAE,CAAC,EAAE,EAAE,MAAM,GAAG,QAAQ,CAAA;CAAE,UAgBzE,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BehaviorSubject, Subject } from 'rxjs';
|
|
2
2
|
export declare const enabled: BehaviorSubject<boolean>;
|
|
3
|
-
export declare const sessionLaunch: Subject<
|
|
4
|
-
export declare const becomingPresenter: Subject<
|
|
5
|
-
export declare const stoppingPresenting: Subject<
|
|
3
|
+
export declare const sessionLaunch: Subject<void>;
|
|
4
|
+
export declare const becomingPresenter: Subject<void>;
|
|
5
|
+
export declare const stoppingPresenting: Subject<void>;
|
|
6
6
|
export declare const leavingSession: BehaviorSubject<boolean>;
|
|
7
|
-
export declare const sessionExitConfirmed: Subject<
|
|
7
|
+
export declare const sessionExitConfirmed: Subject<void>;
|
|
8
8
|
export declare const participantsListVisible: BehaviorSubject<boolean>;
|
|
9
9
|
export declare const launchSession: () => void;
|
|
10
10
|
export declare const enable: () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icp-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/icp-event.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAE9C,eAAO,MAAM,OAAO,0BAA6B,CAAC;AAClD,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"icp-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/icp-event.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAE9C,eAAO,MAAM,OAAO,0BAA6B,CAAC;AAClD,eAAO,MAAM,aAAa,eAAsB,CAAC;AACjD,eAAO,MAAM,iBAAiB,eAAsB,CAAC;AACrD,eAAO,MAAM,kBAAkB,eAAsB,CAAC;AACtD,eAAO,MAAM,cAAc,0BAA6B,CAAC;AACzD,eAAO,MAAM,oBAAoB,eAAsB,CAAC;AACxD,eAAO,MAAM,uBAAuB,0BAA6B,CAAC;AAEpE,eAAO,MAAM,aAAa,YAEzB,CAAC;AAEF,eAAO,MAAM,MAAM,YAGlB,CAAC;AAEF,eAAO,MAAM,eAAe,YAE3B,CAAC;AAEF,eAAO,MAAM,cAAc,YAE1B,CAAC;AAEF,eAAO,MAAM,YAAY,YAExB,CAAC;AAEF,eAAO,MAAM,WAAW,YAIvB,CAAC"}
|
|
@@ -57,6 +57,6 @@ export declare class MainToolbarComponent implements OnInit, OnDestroy, AfterVie
|
|
|
57
57
|
toggleSearchBar(): void;
|
|
58
58
|
toggleMoreOptions(): void;
|
|
59
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainToolbarComponent, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainToolbarComponent, "mv-main-toolbar", never, { "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "contentType": "contentType"; }, {}, never, never, false, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainToolbarComponent, "mv-main-toolbar", never, { "enableAnnotations": { "alias": "enableAnnotations"; "required": false; }; "enableRedactions": { "alias": "enableRedactions"; "required": false; }; "enableICP": { "alias": "enableICP"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; }, {}, never, never, false, never>;
|
|
61
61
|
}
|
|
62
62
|
//# sourceMappingURL=main-toolbar.component.d.ts.map
|
|
@@ -25,6 +25,6 @@ export declare class RedactionToolbarComponent implements OnInit, OnDestroy {
|
|
|
25
25
|
redactPage(): void;
|
|
26
26
|
ngOnDestroy(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<RedactionToolbarComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RedactionToolbarComponent, "mv-redaction-toolbar", never, { "showRedactSearch": "showRedactSearch"; }, {}, never, never, false, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RedactionToolbarComponent, "mv-redaction-toolbar", never, { "showRedactSearch": { "alias": "showRedactSearch"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
29
|
}
|
|
30
30
|
//# sourceMappingURL=redaction-toolbar.component.d.ts.map
|
|
@@ -36,19 +36,19 @@ export declare class ToolbarEventService {
|
|
|
36
36
|
readonly stepZoomSubject: Subject<number>;
|
|
37
37
|
readonly zoomValueSubject: BehaviorSubject<number>;
|
|
38
38
|
readonly pageCountSubject: Subject<number>;
|
|
39
|
-
readonly printSubject: Subject<
|
|
40
|
-
readonly downloadSubject: Subject<
|
|
39
|
+
readonly printSubject: Subject<void>;
|
|
40
|
+
readonly downloadSubject: Subject<void>;
|
|
41
41
|
readonly setCurrentPageSubject: Subject<number>;
|
|
42
42
|
readonly setCurrentPageInputValueSubject: Subject<number>;
|
|
43
43
|
readonly changePageByDeltaSubject: Subject<number>;
|
|
44
44
|
readonly showCommentSummary: BehaviorSubject<boolean>;
|
|
45
45
|
readonly grabNDrag: BehaviorSubject<boolean>;
|
|
46
|
-
readonly saveRotationSubject: Subject<
|
|
46
|
+
readonly saveRotationSubject: Subject<void>;
|
|
47
47
|
readonly redactionMode: BehaviorSubject<boolean>;
|
|
48
48
|
readonly redactionPreview: Subject<boolean>;
|
|
49
|
-
readonly applyRedactToDocument: Subject<
|
|
50
|
-
readonly clearAllRedactMarkers: Subject<
|
|
51
|
-
readonly redactWholePage: Subject<
|
|
49
|
+
readonly applyRedactToDocument: Subject<void>;
|
|
50
|
+
readonly clearAllRedactMarkers: Subject<void>;
|
|
51
|
+
readonly redactWholePage: Subject<void>;
|
|
52
52
|
readonly redactionSerachSubject: Subject<RedactionSearch>;
|
|
53
53
|
readonly redactAllInProgressSubject: BehaviorSubject<boolean>;
|
|
54
54
|
readonly openRedactionSearch: BehaviorSubject<SearchMode>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbar-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC5D,OAAO,KAAK,SAAS,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;;AAGhF,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC;AACpC,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAC;AAC/B,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,OAAO,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,OAAO,CAAC;CAChB;AACD,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,OAAO,CAAC;CACrB;AAED,oBAAY,UAAU;IACpB,MAAM,WAAW;IACjB,SAAS,cAAc;CACxB;AAED,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,UAAU,CAAC;IACrB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED,qBACa,mBAAmB;IAE9B,SAAgB,oBAAoB,2BAA6C;IACjF,SAAgB,uBAAuB,2BAA6C;IACpF,SAAgB,eAAe,2BAAwC;IACvE,SAAgB,aAAa,kBAAyB;IACtD,SAAgB,aAAa,2BAAkC;IAC/D,SAAgB,yBAAyB,8BAAqC;IAC9E,SAAgB,WAAW,kBAAyB;IACpD,SAAgB,eAAe,kBAAyB;IACxD,SAAgB,gBAAgB,0BAAkC;IAClE,SAAgB,gBAAgB,kBAAyB;IACzD,SAAgB,YAAY,
|
|
1
|
+
{"version":3,"file":"toolbar-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -26,6 +26,6 @@ export declare class ConvertibleContentViewerComponent implements OnInit, OnDest
|
|
|
26
26
|
onDocumentTitleChange(title: string): void;
|
|
27
27
|
private extractDMStoreDocId;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConvertibleContentViewerComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConvertibleContentViewerComponent, "mv-conversion-viewer", never, { "originalUrl": "originalUrl"; "downloadFileName": "downloadFileName"; "height": "height"; "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "annotationSet": "annotationSet"; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConvertibleContentViewerComponent, "mv-conversion-viewer", never, { "originalUrl": { "alias": "originalUrl"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "height": { "alias": "height"; "required": false; }; "enableAnnotations": { "alias": "enableAnnotations"; "required": false; }; "enableRedactions": { "alias": "enableRedactions"; "required": false; }; "annotationSet": { "alias": "annotationSet"; "required": false; }; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
|
|
30
30
|
}
|
|
31
31
|
//# sourceMappingURL=convertible-content-viewer.component.d.ts.map
|
|
@@ -14,6 +14,6 @@ export declare class GrabNDragDirective {
|
|
|
14
14
|
onPointerMove(event: PointerEvent): void;
|
|
15
15
|
onWindowPointerUp(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<GrabNDragDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GrabNDragDirective, "[mvGrabNDrag]", never, { "dragEnabled": "dragEnabled"; "dragX": "dragX"; }, {}, never, never, false, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GrabNDragDirective, "[mvGrabNDrag]", never, { "dragEnabled": { "alias": "dragEnabled"; "required": false; }; "dragX": { "alias": "dragX"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
18
|
}
|
|
19
19
|
//# sourceMappingURL=grab-n-drag.directive.d.ts.map
|
|
@@ -52,6 +52,6 @@ export declare class ImageViewerComponent implements OnInit, OnDestroy, OnChange
|
|
|
52
52
|
initAnnoPage(img: any): void;
|
|
53
53
|
toggleCommentsSummary(): void;
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageViewerComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImageViewerComponent, "mv-image-viewer", never, { "url": "url"; "downloadFileName": "downloadFileName"; "enableAnnotations": "enableAnnotations"; "annotationSet": "annotationSet"; "height": "height"; }, { "mediaLoadStatus": "mediaLoadStatus"; "imageViewerException": "imageViewerException"; }, never, never, false, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageViewerComponent, "mv-image-viewer", never, { "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "enableAnnotations": { "alias": "enableAnnotations"; "required": false; }; "annotationSet": { "alias": "annotationSet"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, { "mediaLoadStatus": "mediaLoadStatus"; "imageViewerException": "imageViewerException"; }, never, never, false, never>;
|
|
56
56
|
}
|
|
57
57
|
//# sourceMappingURL=image-viewer.component.d.ts.map
|
|
@@ -20,6 +20,6 @@ export declare class MultimediaPlayerComponent implements OnInit, OnChanges, OnD
|
|
|
20
20
|
onSuccess(): void;
|
|
21
21
|
onError(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultimediaPlayerComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultimediaPlayerComponent, "mv-multimedia-player", never, { "url": "url"; "downloadFileName": "downloadFileName"; "multimediaOn": "multimediaOn"; }, { "loadStatus": "loadStatus"; }, never, never, false, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultimediaPlayerComponent, "mv-multimedia-player", never, { "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "multimediaOn": { "alias": "multimediaOn"; "required": false; }; }, { "loadStatus": "loadStatus"; }, never, never, false, never>;
|
|
24
24
|
}
|
|
25
25
|
//# sourceMappingURL=multimedia-player.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pdf-js-wrapper.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0CAA0C,CAAC;AAGnE,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,6BAA6B,CAAC;AACrC,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC/B,OAAO,EAAE,eAAe,EAAsB,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAClH,OAAO,EAAE,WAAW,EAAE,MAAM,0CAA0C,CAAC;AAcvE,qBAAa,YAAY;IAOrB,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;aACd,gBAAgB,EAAE,OAAO,CAAC,MAAM,CAAC;aACjC,oBAAoB,EAAE,OAAO,CAAC,oBAAoB,CAAC;aACnD,cAAc,EAAE,OAAO,CAAC,GAAG,CAAC;aAC5B,aAAa,EAAE,OAAO,CAAC,OAAO,EAAE,CAAC;aACjC,kBAAkB,EAAE,OAAO,CAAC,KAAK,CAAC;aAClC,YAAY,EAAE,OAAO,CAAC,SAAS,EAAE,CAAC;aAClC,eAAe,EAAE,OAAO,CAAC;QAAE,QAAQ,EAAE,WAAW,CAAA;KAAE,CAAC;IAdrE,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,eAAe,CAAY;gBAGhB,SAAS,EAAE,SAAS,EACpB,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,mBAAmB,EACnC,gBAAgB,EAAE,OAAO,CAAC,MAAM,CAAC,EACjC,oBAAoB,EAAE,OAAO,CAAC,oBAAoB,CAAC,EACnD,cAAc,EAAE,OAAO,CAAC,GAAG,CAAC,EAC5B,aAAa,EAAE,OAAO,CAAC,OAAO,EAAE,CAAC,EACjC,kBAAkB,EAAE,OAAO,CAAC,KAAK,CAAC,EAClC,YAAY,EAAE,OAAO,CAAC,SAAS,EAAE,CAAC,EAClC,eAAe,EAAE,OAAO,CAAC;QAAE,QAAQ,EAAE,WAAW,CAAA;KAAE,CAAC;IAqBrE,iBAAiB,CAAC,KAAK,EAAE,GAAG;IAe5B,OAAO,CAAC,gBAAgB;IAaX,YAAY,CAAC,WAAW,EAAE,MAAM;IAgD7C,OAAO,CAAC,iBAAiB;
|
|
1
|
+
{"version":3,"file":"pdf-js-wrapper.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.ts"],"names":[],"mappings":"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"}
|
|
@@ -74,6 +74,6 @@ export declare class PdfViewerComponent implements AfterContentInit, OnChanges,
|
|
|
74
74
|
private goToDestination;
|
|
75
75
|
getCurrentPageNumber(): number;
|
|
76
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdfViewerComponent, never>;
|
|
77
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PdfViewerComponent, "mv-pdf-viewer", never, { "downloadUrl": "downloadUrl"; "url": "url"; "downloadFileName": "downloadFileName"; "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "annotationSet": "annotationSet"; "enableRedactSearch": "enableRedactSearch"; "height": "height"; "caseId": "caseId"; "searchBarHidden": "searchBarHidden"; }, { "mediaLoadStatus": "mediaLoadStatus"; "pdfViewerException": "pdfViewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdfViewerComponent, "mv-pdf-viewer", never, { "downloadUrl": { "alias": "downloadUrl"; "required": false; }; "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "enableAnnotations": { "alias": "enableAnnotations"; "required": false; }; "enableRedactions": { "alias": "enableRedactions"; "required": false; }; "enableICP": { "alias": "enableICP"; "required": false; }; "annotationSet": { "alias": "annotationSet"; "required": false; }; "enableRedactSearch": { "alias": "enableRedactSearch"; "required": false; }; "height": { "alias": "height"; "required": false; }; "caseId": { "alias": "caseId"; "required": false; }; "searchBarHidden": { "alias": "searchBarHidden"; "required": false; }; }, { "mediaLoadStatus": "mediaLoadStatus"; "pdfViewerException": "pdfViewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
|
|
78
78
|
}
|
|
79
79
|
//# sourceMappingURL=pdf-viewer.component.d.ts.map
|
|
@@ -73,6 +73,6 @@ export declare class BookmarksComponent implements OnInit, OnDestroy {
|
|
|
73
73
|
rebuildTreeForData(data: any): void;
|
|
74
74
|
isToNodeChildOfFromNode(fromNodeChildren: Bookmark[], toNode: Bookmark): boolean;
|
|
75
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookmarksComponent, never>;
|
|
76
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BookmarksComponent, "mv-bookmarks", never, { "bookmarkNodes": "bookmarkNodes"; "zoom": "zoom"; "rotate": "rotate"; }, { "goToDestination": "goToDestination"; }, never, never, false, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BookmarksComponent, "mv-bookmarks", never, { "bookmarkNodes": { "alias": "bookmarkNodes"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; }, { "goToDestination": "goToDestination"; }, never, never, false, never>;
|
|
77
77
|
}
|
|
78
78
|
//# sourceMappingURL=bookmarks.component.d.ts.map
|
|
@@ -15,6 +15,6 @@ export declare class OutlineItemComponent implements OnInit {
|
|
|
15
15
|
findEndPage(next: Outline): number;
|
|
16
16
|
showHighlightOutlineCss(): "highlightedOutlineItem" | "outlineItem";
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<OutlineItemComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OutlineItemComponent, "mv-outline-item", never, { "outline": "outline"; "currentPageNumber": "currentPageNumber"; "isCurrentSection": "isCurrentSection"; "endPage": "endPage"; }, { "navigationEvent": "navigationEvent"; }, never, never, false, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OutlineItemComponent, "mv-outline-item", never, { "outline": { "alias": "outline"; "required": false; }; "currentPageNumber": { "alias": "currentPageNumber"; "required": false; }; "isCurrentSection": { "alias": "isCurrentSection"; "required": false; }; "endPage": { "alias": "endPage"; "required": false; }; }, { "navigationEvent": "navigationEvent"; }, never, never, false, never>;
|
|
19
19
|
}
|
|
20
20
|
//# sourceMappingURL=outline-item.component.d.ts.map
|
|
@@ -31,6 +31,6 @@ export declare class SideBarComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
31
31
|
isViewedItem(current: Outline, next: Outline): boolean;
|
|
32
32
|
findEndPage(next: Outline): number;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<SideBarComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SideBarComponent, "mv-side-bar", never, { "annotationsEnabled": "annotationsEnabled"; "outline": "outline"; "url": "url"; "zoom": "zoom"; "rotate": "rotate"; "currentPageNumber": "currentPageNumber"; }, {}, never, never, false, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideBarComponent, "mv-side-bar", never, { "annotationsEnabled": { "alias": "annotationsEnabled"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "url": { "alias": "url"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "currentPageNumber": { "alias": "currentPageNumber"; "required": false; }; }, {}, never, never, false, never>;
|
|
35
35
|
}
|
|
36
36
|
//# sourceMappingURL=side-bar.component.d.ts.map
|
|
@@ -18,6 +18,6 @@ export declare class UnsupportedViewerComponent implements OnInit, OnDestroy {
|
|
|
18
18
|
ngOnInit(): void;
|
|
19
19
|
ngOnDestroy(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<UnsupportedViewerComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UnsupportedViewerComponent, "mv-unsupported-viewer", never, { "url": "url"; "downloadFileName": "downloadFileName"; "typeException": "typeException"; }, { "loadStatus": "loadStatus"; "unsupportedViewerException": "unsupportedViewerException"; }, never, never, false, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UnsupportedViewerComponent, "mv-unsupported-viewer", never, { "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "typeException": { "alias": "typeException"; "required": false; }; }, { "loadStatus": "loadStatus"; "unsupportedViewerException": "unsupportedViewerException"; }, never, never, false, never>;
|
|
22
22
|
}
|
|
23
23
|
//# sourceMappingURL=unsupported-viewer.component.d.ts.map
|
|
@@ -8,7 +8,7 @@ export interface Highlight {
|
|
|
8
8
|
export declare class ViewerEventService {
|
|
9
9
|
readonly textHighlight: Subject<Highlight>;
|
|
10
10
|
readonly boxHighlight: Subject<Highlight>;
|
|
11
|
-
readonly ctxToolbarCleared: Subject<
|
|
11
|
+
readonly ctxToolbarCleared: Subject<void>;
|
|
12
12
|
readonly navigationEvent: Subject<any[]>;
|
|
13
13
|
constructor();
|
|
14
14
|
textSelected(selectionData: Highlight): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"viewer-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-event.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,yEAAyE,CAAC;;AAEpG,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,SAAS,EAAE,CAAC;CACzB;AAED,qBACa,kBAAkB;IAE7B,SAAgB,aAAa,qBAA4B;IACzD,SAAgB,YAAY,qBAA4B;IACxD,SAAgB,iBAAiB,
|
|
1
|
+
{"version":3,"file":"viewer-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-event.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,yEAAyE,CAAC;;AAEpG,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,SAAS,EAAE,CAAC;CACzB;AAED,qBACa,kBAAkB;IAE7B,SAAgB,aAAa,qBAA4B;IACzD,SAAgB,YAAY,qBAA4B;IACxD,SAAgB,iBAAiB,gBAAuB;IACxD,SAAgB,eAAe,iBAAwB;;IAIhD,YAAY,CAAC,aAAa,EAAE,SAAS,GAAG,IAAI;IAI5C,WAAW,CAAC,aAAa,EAAE,SAAS,GAAG,IAAI;IAI3C,eAAe,IAAI,IAAI;IAKvB,eAAe,CAAC,WAAW,EAAE,GAAG,EAAE;yCAtB9B,kBAAkB;6CAAlB,kBAAkB;CAyB9B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmcts/media-viewer",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"description": "Media Viewer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Angular",
|
|
@@ -18,31 +18,26 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@swimlane/ngx-datatable": "^20.0.0",
|
|
21
|
-
"
|
|
22
|
-
"mutable-div": "^1.0.0",
|
|
21
|
+
"mutable-div": "^2.0.0",
|
|
23
22
|
"pdfjs-dist": "2.5.207",
|
|
24
23
|
"socket.io-client": "^3.1.1",
|
|
25
24
|
"tslib": "^2.3.0",
|
|
26
25
|
"uuid": "^3.4.0"
|
|
27
26
|
},
|
|
28
27
|
"peerDependencies": {
|
|
29
|
-
"@angular/animations": "^
|
|
30
|
-
"@angular/common": "^
|
|
31
|
-
"@angular/core": "^
|
|
32
|
-
"@angular/forms": "^
|
|
33
|
-
"@angular/material": "^
|
|
34
|
-
"@angular/platform-browser": "^
|
|
35
|
-
"@ngrx/effects": "^
|
|
36
|
-
"@ngrx/router-store": "^
|
|
37
|
-
"@ngrx/store": "^
|
|
38
|
-
"@ngrx/store-devtools": "^
|
|
28
|
+
"@angular/animations": "^17.3.8",
|
|
29
|
+
"@angular/common": "^17.3.8",
|
|
30
|
+
"@angular/core": "^17.3.8",
|
|
31
|
+
"@angular/forms": "^17.3.8",
|
|
32
|
+
"@angular/material": "^17.3.8",
|
|
33
|
+
"@angular/platform-browser": "^17.3.8",
|
|
34
|
+
"@ngrx/effects": "^17.0.0",
|
|
35
|
+
"@ngrx/router-store": "^17.0.0",
|
|
36
|
+
"@ngrx/store": "^17.0.0",
|
|
37
|
+
"@ngrx/store-devtools": "^17.0.0"
|
|
39
38
|
},
|
|
40
39
|
"packageManager": "yarn@3.8.1",
|
|
41
|
-
"module": "
|
|
42
|
-
"es2020": "fesm2020/hmcts-media-viewer.mjs",
|
|
43
|
-
"esm2020": "esm2020/hmcts-media-viewer.mjs",
|
|
44
|
-
"fesm2020": "fesm2020/hmcts-media-viewer.mjs",
|
|
45
|
-
"fesm2015": "fesm2015/hmcts-media-viewer.mjs",
|
|
40
|
+
"module": "fesm2022/hmcts-media-viewer.mjs",
|
|
46
41
|
"typings": "index.d.ts",
|
|
47
42
|
"exports": {
|
|
48
43
|
"./package.json": {
|
|
@@ -50,11 +45,9 @@
|
|
|
50
45
|
},
|
|
51
46
|
".": {
|
|
52
47
|
"types": "./index.d.ts",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"node": "./fesm2015/hmcts-media-viewer.mjs",
|
|
57
|
-
"default": "./fesm2020/hmcts-media-viewer.mjs"
|
|
48
|
+
"esm2022": "./esm2022/hmcts-media-viewer.mjs",
|
|
49
|
+
"esm": "./esm2022/hmcts-media-viewer.mjs",
|
|
50
|
+
"default": "./fesm2022/hmcts-media-viewer.mjs"
|
|
58
51
|
}
|
|
59
52
|
},
|
|
60
53
|
"sideEffects": false
|