@hmcts/media-viewer 2.9.3 → 2.9.4-RC.7

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.
Files changed (105) hide show
  1. package/assets/images/icon-bookmarks-custom.png +0 -0
  2. package/assets/images/icon-bookmarks-position.png +0 -0
  3. package/assets/images/toolbarButton-bookmarkDark.png +0 -0
  4. package/assets/sass/comment-set-panel.scss +1 -0
  5. package/assets/sass/comment.scss +4 -6
  6. package/assets/sass/image-viewer.scss +2 -1
  7. package/assets/sass/pdf-viewer.scss +4 -0
  8. package/assets/sass/toolbar/buttons.scss +24 -0
  9. package/assets/sass/toolbar/main-toolbar.scss +20 -7
  10. package/assets/sass/toolbar/side-bar.scss +17 -17
  11. package/bundles/hmcts-media-viewer.umd.js +744 -324
  12. package/bundles/hmcts-media-viewer.umd.js.map +1 -1
  13. package/bundles/hmcts-media-viewer.umd.min.js +1 -1
  14. package/bundles/hmcts-media-viewer.umd.min.js.map +1 -1
  15. package/esm2015/hmcts-media-viewer.js +53 -52
  16. package/esm2015/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.js +2 -2
  17. package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.js +2 -2
  18. package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.js +2 -2
  19. package/esm2015/lib/annotations/annotation-set/annotation-view/annotation-view.component.js +1 -1
  20. package/esm2015/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.js +3 -2
  21. package/esm2015/lib/annotations/annotations.module.js +3 -1
  22. package/esm2015/lib/annotations/comment-set/comment/comment.component.js +3 -2
  23. package/esm2015/lib/annotations/comment-set/comment/comment.service.js +6 -2
  24. package/esm2015/lib/annotations/comment-set/comment-set-header/comment-set-header.component.js +13 -2
  25. package/esm2015/lib/media-viewer.component.js +4 -2
  26. package/esm2015/lib/print.service.js +4 -2
  27. package/esm2015/lib/redaction/components/redaction.component.js +2 -2
  28. package/esm2015/lib/redaction/services/redaction-api.service.js +7 -1
  29. package/esm2015/lib/redaction/services/redaction.model.js +1 -1
  30. package/esm2015/lib/store/actions/redaction.actions.js +22 -1
  31. package/esm2015/lib/store/effects/redaction.effects.js +18 -4
  32. package/esm2015/lib/store/reducers/bookmarks.reducer.js +3 -2
  33. package/esm2015/lib/store/reducers/redaction.reducer.js +9 -1
  34. package/esm2015/lib/store/selectors/bookmark.selectors.js +2 -2
  35. package/esm2015/lib/toolbar/main-toolbar/main-toolbar.component.js +19 -4
  36. package/esm2015/lib/toolbar/redaction-search-bar/redaction-search-bar.component.js +201 -0
  37. package/esm2015/lib/toolbar/redaction-search-bar/redaction-search.model.js +2 -0
  38. package/esm2015/lib/toolbar/redaction-toolbar/redaction-toolbar.component.js +18 -6
  39. package/esm2015/lib/toolbar/toolbar-event.service.js +9 -1
  40. package/esm2015/lib/toolbar/toolbar.module.js +6 -3
  41. package/esm2015/lib/viewers/image-viewer/image-viewer.component.js +2 -2
  42. package/esm2015/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.js +15 -4
  43. package/esm2015/lib/viewers/pdf-viewer/pdf-viewer.component.js +3 -2
  44. package/esm2015/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.js +70 -5
  45. package/esm2015/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.js +4 -1
  46. package/esm2015/lib/viewers/pdf-viewer/side-bar/side-bar.component.js +24 -19
  47. package/fesm2015/hmcts-media-viewer.js +586 -204
  48. package/fesm2015/hmcts-media-viewer.js.map +1 -1
  49. package/hmcts-media-viewer.d.ts +56 -55
  50. package/hmcts-media-viewer.d.ts.map +1 -1
  51. package/hmcts-media-viewer.metadata.json +1 -1
  52. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -1
  53. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -1
  54. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -1
  55. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -1
  56. package/lib/annotations/annotations.module.d.ts.map +1 -1
  57. package/lib/annotations/comment-set/comment/comment.component.d.ts +2 -0
  58. package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -1
  59. package/lib/annotations/comment-set/comment/comment.service.d.ts +3 -1
  60. package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -1
  61. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +4 -1
  62. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -1
  63. package/lib/media-viewer.component.d.ts +1 -0
  64. package/lib/media-viewer.component.d.ts.map +1 -1
  65. package/lib/media-viewer.module.ngfactory.d.ts.map +1 -1
  66. package/lib/print.service.d.ts.map +1 -1
  67. package/lib/redaction/components/redaction.component.d.ts.map +1 -1
  68. package/lib/redaction/services/redaction-api.service.d.ts +3 -1
  69. package/lib/redaction/services/redaction-api.service.d.ts.map +1 -1
  70. package/lib/redaction/services/redaction.model.d.ts +3 -0
  71. package/lib/redaction/services/redaction.model.d.ts.map +1 -1
  72. package/lib/store/actions/redaction.actions.d.ts +20 -2
  73. package/lib/store/actions/redaction.actions.d.ts.map +1 -1
  74. package/lib/store/effects/redaction.effects.d.ts +4 -1
  75. package/lib/store/effects/redaction.effects.d.ts.map +1 -1
  76. package/lib/store/reducers/bookmarks.reducer.d.ts.map +1 -1
  77. package/lib/store/reducers/redaction.reducer.d.ts.map +1 -1
  78. package/lib/store/selectors/annotation.selectors.d.ts +5 -5
  79. package/lib/store/selectors/redaction.selectors.d.ts +1 -1
  80. package/lib/store/selectors/tag.selectors.d.ts +2 -2
  81. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +3 -1
  82. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -1
  83. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +51 -0
  84. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -0
  85. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ngfactory.d.ts.map +1 -0
  86. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.scss.shim.ngstyle.d.ts.map +1 -0
  87. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts +12 -0
  88. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts.map +1 -0
  89. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +4 -2
  90. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -1
  91. package/lib/toolbar/toolbar-event.service.d.ts +6 -0
  92. package/lib/toolbar/toolbar-event.service.d.ts.map +1 -1
  93. package/lib/toolbar/toolbar.module.d.ts.map +1 -1
  94. package/lib/toolbar/toolbar.module.ngfactory.d.ts.map +1 -1
  95. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts +1 -0
  96. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts.map +1 -1
  97. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +1 -0
  98. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -1
  99. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +17 -4
  100. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -1
  101. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -1
  102. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +7 -4
  103. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -1
  104. package/package.json +5 -4
  105. package/hmcts-media-viewer-v2.9.3.tgz +0 -0
@@ -2,67 +2,68 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public_api';
5
- export { HighlightCreateDirective as ɵch } from './lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive';
6
- export { HighlightCreateService as ɵu } from './lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service';
7
- export { Annotation as ɵcr } from './lib/annotations/annotation-set/annotation-view/annotation.model';
8
- export { RectangleComponent as ɵx } from './lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component';
9
- export { CtxToolbarComponent as ɵbb } from './lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component';
10
- export { CommentsNavigateComponent as ɵbd } from './lib/annotations/comment-set/comment-navigate/comments-navigate.component';
11
- export { CommentSetRenderService as ɵbc } from './lib/annotations/comment-set/comment-set-render.service';
12
- export { CommentComponent as ɵy } from './lib/annotations/comment-set/comment/comment.component';
13
- export { Comment as ɵcs } from './lib/annotations/comment-set/comment/comment.model';
14
- export { CommentService as ɵw } from './lib/annotations/comment-set/comment/comment.service';
15
- export { TextHighlightDirective as ɵba } from './lib/annotations/comment-set/comment/text-highlight/text-highlight.directive';
16
- export { TextareaAutoExpandDirective as ɵbe } from './lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive';
17
- export { SelectionAnnotation as ɵct } from './lib/annotations/models/event-select.model';
18
- export { BookmarksApiService as ɵbg } from './lib/annotations/services/bookmarks-api/bookmarks-api.service';
19
- export { TagsServices as ɵz } from './lib/annotations/services/tags/tags.services';
20
- export { BookmarkIconsComponent as ɵck } from './lib/bookmark/components/bookmark-icons.component';
21
- export { ConfirmActionDialogComponent as ɵci } from './lib/icp/confirm-exit/confirm-action-dialog.component';
22
- export { IcpFollowerService as ɵbw } from './lib/icp/icp-follower.service';
23
- export { IcpPresenterService as ɵbv } from './lib/icp/icp-presenter.service';
24
- export { IcpSessionApiService as ɵbp } from './lib/icp/icp-session-api.service';
25
- export { IcpUpdateService as ɵbq } from './lib/icp/icp-update.service';
5
+ export { HighlightCreateDirective as ɵci } from './lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive';
6
+ export { HighlightCreateService as ɵq } from './lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service';
7
+ export { Annotation as ɵcs } from './lib/annotations/annotation-set/annotation-view/annotation.model';
8
+ export { RectangleComponent as ɵy } from './lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component';
9
+ export { CtxToolbarComponent as ɵbc } from './lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component';
10
+ export { CommentsNavigateComponent as ɵbe } from './lib/annotations/comment-set/comment-navigate/comments-navigate.component';
11
+ export { CommentSetRenderService as ɵbd } from './lib/annotations/comment-set/comment-set-render.service';
12
+ export { CommentComponent as ɵz } from './lib/annotations/comment-set/comment/comment.component';
13
+ export { Comment as ɵct } from './lib/annotations/comment-set/comment/comment.model';
14
+ export { CommentService as ɵx } from './lib/annotations/comment-set/comment/comment.service';
15
+ export { TextHighlightDirective as ɵbb } from './lib/annotations/comment-set/comment/text-highlight/text-highlight.directive';
16
+ export { TextareaAutoExpandDirective as ɵbf } from './lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive';
17
+ export { SelectionAnnotation as ɵcu } from './lib/annotations/models/event-select.model';
18
+ export { BookmarksApiService as ɵbh } from './lib/annotations/services/bookmarks-api/bookmarks-api.service';
19
+ export { TagsServices as ɵba } from './lib/annotations/services/tags/tags.services';
20
+ export { BookmarkIconsComponent as ɵcl } from './lib/bookmark/components/bookmark-icons.component';
21
+ export { ConfirmActionDialogComponent as ɵcj } from './lib/icp/confirm-exit/confirm-action-dialog.component';
22
+ export { IcpFollowerService as ɵbx } from './lib/icp/icp-follower.service';
23
+ export { IcpPresenterService as ɵbw } from './lib/icp/icp-presenter.service';
24
+ export { IcpSessionApiService as ɵbq } from './lib/icp/icp-session-api.service';
25
+ export { IcpUpdateService as ɵbr } from './lib/icp/icp-update.service';
26
26
  export { IcpState as ɵo } from './lib/icp/icp.interfaces';
27
- export { IcpService as ɵbu } from './lib/icp/icp.service';
28
- export { ParticipantsListComponent as ɵcl } from './lib/icp/participants-list/participants-list.component';
29
- export { SocketService as ɵbr } from './lib/icp/socket.service';
30
- export { PrintService as ɵbf } from './lib/print.service';
31
- export { RedactionComponent as ɵcj } from './lib/redaction/components/redaction.component';
32
- export { RedactionApiService as ɵbk } from './lib/redaction/services/redaction-api.service';
33
- export { GovUkDateComponent as ɵq } from './lib/shared/gov-uk-date/gov-uk-date.component';
34
- export { GovUkErrorMessageComponent as ɵr } from './lib/shared/gov-uk-error-message/gov-uk-error-message.component';
35
- export { GovUkFieldsetComponent as ɵs } from './lib/shared/gov-uk-fieldset/gov-uk-fieldset.component';
36
- export { GovUkLabelComponent as ɵt } from './lib/shared/gov-uk-label/gov-uk-label.component';
37
- export { SharedModule as ɵp } from './lib/shared/shared.module';
27
+ export { IcpService as ɵbv } from './lib/icp/icp.service';
28
+ export { ParticipantsListComponent as ɵcm } from './lib/icp/participants-list/participants-list.component';
29
+ export { SocketService as ɵbs } from './lib/icp/socket.service';
30
+ export { PrintService as ɵbg } from './lib/print.service';
31
+ export { RedactionComponent as ɵck } from './lib/redaction/components/redaction.component';
32
+ export { RedactionApiService as ɵbl } from './lib/redaction/services/redaction-api.service';
33
+ export { GovUkDateComponent as ɵs } from './lib/shared/gov-uk-date/gov-uk-date.component';
34
+ export { GovUkErrorMessageComponent as ɵt } from './lib/shared/gov-uk-error-message/gov-uk-error-message.component';
35
+ export { GovUkFieldsetComponent as ɵu } from './lib/shared/gov-uk-fieldset/gov-uk-fieldset.component';
36
+ export { GovUkLabelComponent as ɵv } from './lib/shared/gov-uk-label/gov-uk-label.component';
37
+ export { SharedModule as ɵr } from './lib/shared/shared.module';
38
38
  export { NumberHelperService as ɵa } from './lib/shared/util/services/number.helper.service';
39
- export { BookmarksEffects as ɵbi } from './lib/store/effects/bookmarks.effects';
40
- export { DocumentEffects as ɵbl } from './lib/store/effects/document.effects';
41
- export { IcpEffects as ɵbo } from './lib/store/effects/icp.effects';
42
- export { effects as ɵbh } from './lib/store/effects/index';
43
- export { RedactionEffects as ɵbj } from './lib/store/effects/redaction.effects';
44
- export { Filters as ɵcu } from './lib/store/models/filters.interface';
39
+ export { BookmarksEffects as ɵbj } from './lib/store/effects/bookmarks.effects';
40
+ export { DocumentEffects as ɵbm } from './lib/store/effects/document.effects';
41
+ export { IcpEffects as ɵbp } from './lib/store/effects/icp.effects';
42
+ export { effects as ɵbi } from './lib/store/effects/index';
43
+ export { RedactionEffects as ɵbk } from './lib/store/effects/redaction.effects';
44
+ export { Filters as ɵcv } from './lib/store/models/filters.interface';
45
45
  export { BookmarksState as ɵk, bookmarksReducer as ɵl } from './lib/store/reducers/bookmarks.reducer';
46
46
  export { DocumentState as ɵe, docReducer as ɵf, getDocPages as ɵg } from './lib/store/reducers/document.reducer';
47
47
  export { icpReducer as ɵn } from './lib/store/reducers/icp.reducer';
48
48
  export { redactionReducer as ɵm } from './lib/store/reducers/redaction.reducer';
49
49
  export { State as ɵb, getMVState as ɵd, reducers as ɵc } from './lib/store/reducers/reducers';
50
50
  export { getFilteredComments as ɵi, getFilteredPageEnt as ɵj, tagsReducer as ɵh } from './lib/store/reducers/tags.reducer';
51
- export { getDocumentState as ɵcm, getPages as ɵcn } from './lib/store/selectors/document.selectors';
52
- export { getFilteredPageEntities as ɵcq, getTagFiltered as ɵcp, getTagsRootState as ɵco } from './lib/store/selectors/tag.selectors';
53
- export { ConvertibleContentViewerComponent as ɵce } from './lib/viewers/convertible-content-viewer/convertible-content-viewer.component';
54
- export { DocumentConversionApiService as ɵbm } from './lib/viewers/convertible-content-viewer/document-conversion-api.service';
55
- export { GrabNDragDirective as ɵcf } from './lib/viewers/grab-n-drag.directive';
56
- export { ImageViewerComponent as ɵca } from './lib/viewers/image-viewer/image-viewer.component';
57
- export { MultimediaPlayerComponent as ɵcd } from './lib/viewers/multimedia-player/multimedia-player.component';
58
- export { PdfJsWrapperFactory as ɵbt } from './lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider';
59
- export { PdfViewerComponent as ɵbs } from './lib/viewers/pdf-viewer/pdf-viewer.component';
60
- export { BookmarksComponent as ɵby } from './lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component';
61
- export { OutlineItemComponent as ɵbz } from './lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component';
62
- export { SideBarComponent as ɵbx } from './lib/viewers/pdf-viewer/side-bar/side-bar.component';
63
- export { RotationApiService as ɵbn } from './lib/viewers/rotation-persist/rotation-api.service';
64
- export { RotationPersistDirective as ɵcg } from './lib/viewers/rotation-persist/rotation-persist.directive';
65
- export { UnsupportedViewerComponent as ɵcc } from './lib/viewers/unsupported-viewer/unsupported-viewer.component';
66
- export { ViewerEventService as ɵv } from './lib/viewers/viewer-event.service';
67
- export { ViewerUtilService as ɵcb } from './lib/viewers/viewer-util.service';
51
+ export { getDocumentState as ɵcn, getPages as ɵco } from './lib/store/selectors/document.selectors';
52
+ export { getFilteredPageEntities as ɵcr, getTagFiltered as ɵcq, getTagsRootState as ɵcp } from './lib/store/selectors/tag.selectors';
53
+ export { RedactionSearchBarComponent as ɵp } from './lib/toolbar/redaction-search-bar/redaction-search-bar.component';
54
+ export { ConvertibleContentViewerComponent as ɵcf } from './lib/viewers/convertible-content-viewer/convertible-content-viewer.component';
55
+ export { DocumentConversionApiService as ɵbn } from './lib/viewers/convertible-content-viewer/document-conversion-api.service';
56
+ export { GrabNDragDirective as ɵcg } from './lib/viewers/grab-n-drag.directive';
57
+ export { ImageViewerComponent as ɵcb } from './lib/viewers/image-viewer/image-viewer.component';
58
+ export { MultimediaPlayerComponent as ɵce } from './lib/viewers/multimedia-player/multimedia-player.component';
59
+ export { PdfJsWrapperFactory as ɵbu } from './lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider';
60
+ export { PdfViewerComponent as ɵbt } from './lib/viewers/pdf-viewer/pdf-viewer.component';
61
+ export { BookmarksComponent as ɵbz } from './lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component';
62
+ export { OutlineItemComponent as ɵca } from './lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component';
63
+ export { SideBarComponent as ɵby } from './lib/viewers/pdf-viewer/side-bar/side-bar.component';
64
+ export { RotationApiService as ɵbo } from './lib/viewers/rotation-persist/rotation-api.service';
65
+ export { RotationPersistDirective as ɵch } from './lib/viewers/rotation-persist/rotation-persist.directive';
66
+ export { UnsupportedViewerComponent as ɵcd } from './lib/viewers/unsupported-viewer/unsupported-viewer.component';
67
+ export { ViewerEventService as ɵw } from './lib/viewers/viewer-event.service';
68
+ export { ViewerUtilService as ɵcc } from './lib/viewers/viewer-util.service';
68
69
  //# sourceMappingURL=hmcts-media-viewer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"hmcts-media-viewer.d.ts","sourceRoot":"","sources":["../../projects/media-viewer/src/hmcts-media-viewer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"hmcts-media-viewer.d.ts","sourceRoot":"","sources":["../../projects/media-viewer/src/hmcts-media-viewer.ts"],"names":[],"mappings":"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"}