@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.
Files changed (477) hide show
  1. package/assets/all.scss +1 -1
  2. package/assets/sass/tags.scss +1 -1
  3. package/assets/sass/toolbar/main-toolbar.scss +7 -6
  4. package/esm2020/hmcts-media-viewer.mjs +5 -0
  5. package/esm2020/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +116 -0
  6. package/esm2020/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +109 -0
  7. package/esm2020/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +75 -0
  8. package/esm2020/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
  9. package/esm2020/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
  10. package/esm2020/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
  11. package/esm2020/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +118 -0
  12. package/esm2020/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +87 -0
  13. package/esm2020/lib/annotations/annotations.module.mjs +158 -0
  14. package/esm2020/lib/annotations/comment-set/comment/comment.component.mjs +176 -0
  15. package/esm2020/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
  16. package/esm2020/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
  17. package/esm2020/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
  18. package/esm2020/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
  19. package/esm2020/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +61 -0
  20. package/esm2020/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +53 -0
  21. package/esm2020/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +68 -0
  22. package/esm2020/lib/annotations/comment-set/comment-set-render.service.mjs +54 -0
  23. package/esm2020/lib/annotations/comment-set/comment-set.component.mjs +123 -0
  24. package/esm2020/lib/annotations/comments-summary/comments-summary.component.mjs +113 -0
  25. package/esm2020/lib/annotations/pipes/date/date.pipe.mjs +26 -0
  26. package/esm2020/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
  27. package/esm2020/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
  28. package/esm2020/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
  29. package/esm2020/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
  30. package/esm2020/lib/annotations/services/tags/tags.services.mjs +41 -0
  31. package/esm2020/lib/annotations/tags/tags.component.mjs +53 -0
  32. package/esm2020/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
  33. package/esm2020/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
  34. package/esm2020/lib/icp/icp-follower.service.mjs +60 -0
  35. package/esm2020/lib/icp/icp-presenter.service.mjs +55 -0
  36. package/esm2020/lib/icp/icp-session-api.service.mjs +21 -0
  37. package/esm2020/lib/icp/icp-update.service.mjs +57 -0
  38. package/esm2020/lib/icp/icp.service.mjs +93 -0
  39. package/esm2020/lib/icp/participants-list/participants-list.component.mjs +30 -0
  40. package/esm2020/lib/icp/socket.service.mjs +118 -0
  41. package/esm2020/lib/media-viewer.component.mjs +244 -0
  42. package/esm2020/lib/media-viewer.module.mjs +151 -0
  43. package/esm2020/lib/print.service.mjs +30 -0
  44. package/esm2020/lib/redaction/components/redaction.component.mjs +91 -0
  45. package/esm2020/lib/redaction/services/redaction-api.service.mjs +50 -0
  46. package/esm2020/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
  47. package/esm2020/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
  48. package/esm2020/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
  49. package/esm2020/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
  50. package/esm2020/lib/shared/shared.module.mjs +53 -0
  51. package/esm2020/lib/shared/util/services/number.helper.service.mjs +23 -0
  52. package/{esm2015/lib/store/bookmarks-store-utils.js → esm2020/lib/store/bookmarks-store-utils.mjs} +1 -3
  53. package/esm2020/lib/store/effects/annotation.effects.mjs +44 -0
  54. package/esm2020/lib/store/effects/bookmarks.effects.mjs +44 -0
  55. package/esm2020/lib/store/effects/document.effects.mjs +44 -0
  56. package/esm2020/lib/store/effects/icp.effects.mjs +26 -0
  57. package/esm2020/lib/store/effects/redaction.effects.mjs +67 -0
  58. package/esm2020/lib/store/reducers/annotations.reducer.mjs +183 -0
  59. package/esm2020/lib/store/reducers/bookmarks.reducer.mjs +116 -0
  60. package/esm2020/lib/store/reducers/document.reducer.mjs +135 -0
  61. package/esm2020/lib/store/reducers/icp.reducer.mjs +56 -0
  62. package/esm2020/lib/store/reducers/redaction.reducer.mjs +116 -0
  63. package/esm2020/lib/store/reducers/tags.reducer.mjs +93 -0
  64. package/esm2020/lib/store/selectors/annotation.selectors.mjs +81 -0
  65. package/esm2020/lib/store/selectors/bookmark.selectors.mjs +36 -0
  66. package/{esm2015/lib/store/selectors/document.selectors.js → esm2020/lib/store/selectors/document.selectors.mjs} +3 -6
  67. package/esm2020/lib/store/selectors/icp.selectors.mjs +13 -0
  68. package/{esm2015/lib/store/selectors/redaction.selectors.js → esm2020/lib/store/selectors/redaction.selectors.mjs} +6 -10
  69. package/{esm2015/lib/store/selectors/tag.selectors.js → esm2020/lib/store/selectors/tag.selectors.mjs} +4 -7
  70. package/esm2020/lib/store/store-utils.mjs +131 -0
  71. package/esm2020/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +41 -0
  72. package/esm2020/lib/toolbar/main-toolbar/main-toolbar.component.mjs +188 -0
  73. package/esm2020/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +199 -0
  74. package/esm2020/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +66 -0
  75. package/esm2020/lib/toolbar/search-bar/search-bar.component.mjs +105 -0
  76. package/esm2020/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
  77. package/{esm2015/lib/toolbar/toolbar-event.service.js → esm2020/lib/toolbar/toolbar-event.service.mjs} +7 -5
  78. package/esm2020/lib/toolbar/toolbar.module.mjs +67 -0
  79. package/esm2020/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +78 -0
  80. package/esm2020/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
  81. package/esm2020/lib/viewers/grab-n-drag.directive.mjs +57 -0
  82. package/esm2020/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
  83. package/esm2020/lib/viewers/multimedia-player/multimedia-player.component.mjs +58 -0
  84. package/esm2020/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +193 -0
  85. package/esm2020/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
  86. package/esm2020/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +230 -0
  87. package/esm2020/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +192 -0
  88. package/esm2020/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
  89. package/esm2020/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +77 -0
  90. package/esm2020/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
  91. package/esm2020/lib/viewers/rotation-persist/rotation-persist.directive.mjs +64 -0
  92. package/esm2020/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
  93. package/esm2020/lib/viewers/viewer-event.service.mjs +30 -0
  94. package/esm2020/lib/viewers/viewer-util.service.mjs +20 -0
  95. package/esm2020/public_api.mjs +32 -0
  96. package/fesm2015/hmcts-media-viewer.mjs +6602 -0
  97. package/fesm2015/hmcts-media-viewer.mjs.map +1 -0
  98. package/fesm2020/hmcts-media-viewer.mjs +6893 -0
  99. package/fesm2020/hmcts-media-viewer.mjs.map +1 -0
  100. package/hmcts-media-viewer.d.ts.map +1 -1
  101. package/index.d.ts +6 -0
  102. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +3 -0
  103. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -1
  104. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +3 -0
  105. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -1
  106. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +3 -0
  107. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -1
  108. package/lib/annotations/annotation-set/annotation-set.component.d.ts +3 -0
  109. package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -1
  110. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +3 -0
  111. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -1
  112. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +5 -2
  113. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -1
  114. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +3 -0
  115. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -1
  116. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +3 -0
  117. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -1
  118. package/lib/annotations/annotations.module.d.ts +32 -0
  119. package/lib/annotations/annotations.module.d.ts.map +1 -1
  120. package/lib/annotations/comment-set/comment/comment.component.d.ts +3 -0
  121. package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -1
  122. package/lib/annotations/comment-set/comment/comment.service.d.ts +5 -2
  123. package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -1
  124. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +3 -0
  125. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -1
  126. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +3 -0
  127. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -1
  128. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +3 -0
  129. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -1
  130. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +6 -3
  131. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -1
  132. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +3 -0
  133. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -1
  134. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +3 -0
  135. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -1
  136. package/lib/annotations/comment-set/comment-set-render.service.d.ts +3 -0
  137. package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -1
  138. package/lib/annotations/comment-set/comment-set.component.d.ts +3 -0
  139. package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -1
  140. package/lib/annotations/comments-summary/comments-summary.component.d.ts +6 -3
  141. package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -1
  142. package/lib/annotations/pipes/date/date.pipe.d.ts +3 -0
  143. package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -1
  144. package/lib/annotations/pipes/filter/filter.pipe.d.ts +3 -0
  145. package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -1
  146. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +3 -0
  147. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -1
  148. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +3 -0
  149. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -1
  150. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +3 -0
  151. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -1
  152. package/lib/annotations/services/tags/tags.services.d.ts +3 -0
  153. package/lib/annotations/services/tags/tags.services.d.ts.map +1 -1
  154. package/lib/annotations/tags/tags.component.d.ts +6 -3
  155. package/lib/annotations/tags/tags.component.d.ts.map +1 -1
  156. package/lib/bookmark/components/bookmark-icons.component.d.ts +3 -0
  157. package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -1
  158. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +3 -0
  159. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -1
  160. package/lib/icp/icp-follower.service.d.ts +3 -0
  161. package/lib/icp/icp-follower.service.d.ts.map +1 -1
  162. package/lib/icp/icp-presenter.service.d.ts +3 -0
  163. package/lib/icp/icp-presenter.service.d.ts.map +1 -1
  164. package/lib/icp/icp-session-api.service.d.ts +3 -0
  165. package/lib/icp/icp-session-api.service.d.ts.map +1 -1
  166. package/lib/icp/icp-update.service.d.ts +3 -0
  167. package/lib/icp/icp-update.service.d.ts.map +1 -1
  168. package/lib/icp/icp.service.d.ts +3 -0
  169. package/lib/icp/icp.service.d.ts.map +1 -1
  170. package/lib/icp/participants-list/participants-list.component.d.ts +3 -0
  171. package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -1
  172. package/lib/icp/socket.service.d.ts +3 -0
  173. package/lib/icp/socket.service.d.ts.map +1 -1
  174. package/lib/media-viewer.component.d.ts +3 -0
  175. package/lib/media-viewer.component.d.ts.map +1 -1
  176. package/lib/media-viewer.module.d.ts +31 -0
  177. package/lib/media-viewer.module.d.ts.map +1 -1
  178. package/lib/print.service.d.ts +3 -0
  179. package/lib/print.service.d.ts.map +1 -1
  180. package/lib/redaction/components/redaction.component.d.ts +3 -0
  181. package/lib/redaction/components/redaction.component.d.ts.map +1 -1
  182. package/lib/redaction/services/redaction-api.service.d.ts +3 -0
  183. package/lib/redaction/services/redaction-api.service.d.ts.map +1 -1
  184. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +3 -0
  185. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -1
  186. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +3 -0
  187. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -1
  188. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +3 -0
  189. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -1
  190. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +3 -0
  191. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -1
  192. package/lib/shared/shared.module.d.ts +11 -0
  193. package/lib/shared/shared.module.d.ts.map +1 -1
  194. package/lib/shared/util/services/number.helper.service.d.ts +3 -0
  195. package/lib/shared/util/services/number.helper.service.d.ts.map +1 -1
  196. package/lib/store/actions/annotation.actions.d.ts +1 -1
  197. package/lib/store/actions/annotation.actions.d.ts.map +1 -1
  198. package/lib/store/actions/bookmark.actions.d.ts +1 -1
  199. package/lib/store/actions/bookmark.actions.d.ts.map +1 -1
  200. package/lib/store/actions/document.actions.d.ts +1 -1
  201. package/lib/store/actions/document.actions.d.ts.map +1 -1
  202. package/lib/store/actions/icp.actions.d.ts +1 -1
  203. package/lib/store/actions/icp.actions.d.ts.map +1 -1
  204. package/lib/store/actions/redaction.actions.d.ts +1 -1
  205. package/lib/store/actions/redaction.actions.d.ts.map +1 -1
  206. package/lib/store/actions/tag.actions.d.ts +1 -1
  207. package/lib/store/actions/tag.actions.d.ts.map +1 -1
  208. package/lib/store/effects/annotation.effects.d.ts +6 -3
  209. package/lib/store/effects/annotation.effects.d.ts.map +1 -1
  210. package/lib/store/effects/bookmarks.effects.d.ts +8 -5
  211. package/lib/store/effects/bookmarks.effects.d.ts.map +1 -1
  212. package/lib/store/effects/document.effects.d.ts +6 -3
  213. package/lib/store/effects/document.effects.d.ts.map +1 -1
  214. package/lib/store/effects/icp.effects.d.ts +5 -2
  215. package/lib/store/effects/icp.effects.d.ts.map +1 -1
  216. package/lib/store/effects/redaction.effects.d.ts +9 -6
  217. package/lib/store/effects/redaction.effects.d.ts.map +1 -1
  218. package/lib/store/selectors/annotation.selectors.d.ts +70 -27
  219. package/lib/store/selectors/annotation.selectors.d.ts.map +1 -1
  220. package/lib/store/selectors/bookmark.selectors.d.ts +18 -10
  221. package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -1
  222. package/lib/store/selectors/document.selectors.d.ts +13 -11
  223. package/lib/store/selectors/document.selectors.d.ts.map +1 -1
  224. package/lib/store/selectors/icp.selectors.d.ts +9 -8
  225. package/lib/store/selectors/icp.selectors.d.ts.map +1 -1
  226. package/lib/store/selectors/redaction.selectors.d.ts +17 -11
  227. package/lib/store/selectors/redaction.selectors.d.ts.map +1 -1
  228. package/lib/store/selectors/tag.selectors.d.ts +14 -12
  229. package/lib/store/selectors/tag.selectors.d.ts.map +1 -1
  230. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +3 -0
  231. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -1
  232. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +4 -0
  233. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -1
  234. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +5 -2
  235. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -1
  236. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +3 -0
  237. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -1
  238. package/lib/toolbar/search-bar/search-bar.component.d.ts +3 -0
  239. package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -1
  240. package/lib/toolbar/toolbar-button-visibility.service.d.ts +3 -0
  241. package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -1
  242. package/lib/toolbar/toolbar-event.service.d.ts +5 -2
  243. package/lib/toolbar/toolbar-event.service.d.ts.map +1 -1
  244. package/lib/toolbar/toolbar.module.d.ts +13 -0
  245. package/lib/toolbar/toolbar.module.d.ts.map +1 -1
  246. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +3 -0
  247. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -1
  248. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +3 -0
  249. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -1
  250. package/lib/viewers/grab-n-drag.directive.d.ts +3 -0
  251. package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -1
  252. package/lib/viewers/image-viewer/image-viewer.component.d.ts +3 -0
  253. package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -1
  254. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +3 -0
  255. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -1
  256. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +3 -0
  257. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -1
  258. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +3 -0
  259. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -1
  260. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +5 -2
  261. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -1
  262. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +3 -0
  263. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -1
  264. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +3 -0
  265. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -1
  266. package/lib/viewers/rotation-persist/rotation-api.service.d.ts +3 -0
  267. package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -1
  268. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +3 -0
  269. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -1
  270. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +3 -0
  271. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -1
  272. package/lib/viewers/viewer-event.service.d.ts +3 -0
  273. package/lib/viewers/viewer-event.service.d.ts.map +1 -1
  274. package/lib/viewers/viewer-util.service.d.ts +3 -0
  275. package/lib/viewers/viewer-util.service.d.ts.map +1 -1
  276. package/package.json +34 -22
  277. package/public_api.d.ts +1 -0
  278. package/public_api.d.ts.map +1 -1
  279. package/bundles/hmcts-media-viewer.umd.js +0 -7539
  280. package/bundles/hmcts-media-viewer.umd.js.map +0 -1
  281. package/bundles/hmcts-media-viewer.umd.min.js +0 -2
  282. package/bundles/hmcts-media-viewer.umd.min.js.map +0 -1
  283. package/esm2015/hmcts-media-viewer.js +0 -64
  284. package/esm2015/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.js +0 -113
  285. package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.js +0 -111
  286. package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.js +0 -61
  287. package/esm2015/lib/annotations/annotation-set/annotation-set.component.js +0 -47
  288. package/esm2015/lib/annotations/annotation-set/annotation-view/annotation-view.component.js +0 -86
  289. package/esm2015/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.js +0 -108
  290. package/esm2015/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.js +0 -107
  291. package/esm2015/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.js +0 -81
  292. package/esm2015/lib/annotations/annotations.module.js +0 -103
  293. package/esm2015/lib/annotations/comment-set/comment/comment.component.js +0 -162
  294. package/esm2015/lib/annotations/comment-set/comment/comment.service.js +0 -47
  295. package/esm2015/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.js +0 -48
  296. package/esm2015/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.js +0 -31
  297. package/esm2015/lib/annotations/comment-set/comment-navigate/comments-navigate.component.js +0 -95
  298. package/esm2015/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.js +0 -60
  299. package/esm2015/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.js +0 -53
  300. package/esm2015/lib/annotations/comment-set/comment-set-header/comment-set-header.component.js +0 -68
  301. package/esm2015/lib/annotations/comment-set/comment-set-render.service.js +0 -51
  302. package/esm2015/lib/annotations/comment-set/comment-set.component.js +0 -110
  303. package/esm2015/lib/annotations/comments-summary/comments-summary.component.js +0 -106
  304. package/esm2015/lib/annotations/pipes/date/date.pipe.js +0 -22
  305. package/esm2015/lib/annotations/pipes/filter/filter.pipe.js +0 -28
  306. package/esm2015/lib/annotations/pipes/unsnake/unsnake.pipe.js +0 -12
  307. package/esm2015/lib/annotations/services/annotation-api/annotation-api.service.js +0 -59
  308. package/esm2015/lib/annotations/services/bookmarks-api/bookmarks-api.service.js +0 -46
  309. package/esm2015/lib/annotations/services/tags/tags.services.js +0 -36
  310. package/esm2015/lib/annotations/tags/tags.component.js +0 -52
  311. package/esm2015/lib/bookmark/components/bookmark-icons.component.js +0 -26
  312. package/esm2015/lib/icp/confirm-exit/confirm-action-dialog.component.js +0 -25
  313. package/esm2015/lib/icp/icp-follower.service.js +0 -63
  314. package/esm2015/lib/icp/icp-presenter.service.js +0 -57
  315. package/esm2015/lib/icp/icp-session-api.service.js +0 -22
  316. package/esm2015/lib/icp/icp-update.service.js +0 -56
  317. package/esm2015/lib/icp/icp.service.js +0 -98
  318. package/esm2015/lib/icp/participants-list/participants-list.component.js +0 -32
  319. package/esm2015/lib/icp/socket.service.js +0 -117
  320. package/esm2015/lib/media-viewer.component.js +0 -210
  321. package/esm2015/lib/media-viewer.module.js +0 -102
  322. package/esm2015/lib/print.service.js +0 -25
  323. package/esm2015/lib/redaction/components/redaction.component.js +0 -97
  324. package/esm2015/lib/redaction/services/redaction-api.service.js +0 -51
  325. package/esm2015/lib/shared/gov-uk-date/gov-uk-date.component.js +0 -21
  326. package/esm2015/lib/shared/gov-uk-error-message/gov-uk-error-message.component.js +0 -27
  327. package/esm2015/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.js +0 -42
  328. package/esm2015/lib/shared/gov-uk-label/gov-uk-label.component.js +0 -32
  329. package/esm2015/lib/shared/shared.module.js +0 -34
  330. package/esm2015/lib/shared/util/services/number.helper.service.js +0 -23
  331. package/esm2015/lib/store/effects/annotation.effects.js +0 -55
  332. package/esm2015/lib/store/effects/bookmarks.effects.js +0 -66
  333. package/esm2015/lib/store/effects/document.effects.js +0 -59
  334. package/esm2015/lib/store/effects/icp.effects.js +0 -37
  335. package/esm2015/lib/store/effects/redaction.effects.js +0 -94
  336. package/esm2015/lib/store/reducers/annotations.reducer.js +0 -115
  337. package/esm2015/lib/store/reducers/bookmarks.reducer.js +0 -80
  338. package/esm2015/lib/store/reducers/document.reducer.js +0 -100
  339. package/esm2015/lib/store/reducers/icp.reducer.js +0 -40
  340. package/esm2015/lib/store/reducers/redaction.reducer.js +0 -75
  341. package/esm2015/lib/store/reducers/tags.reducer.js +0 -67
  342. package/esm2015/lib/store/selectors/annotation.selectors.js +0 -84
  343. package/esm2015/lib/store/selectors/bookmark.selectors.js +0 -39
  344. package/esm2015/lib/store/selectors/icp.selectors.js +0 -18
  345. package/esm2015/lib/store/store-utils.js +0 -105
  346. package/esm2015/lib/toolbar/icp-toolbar/icp-toolbar.component.js +0 -43
  347. package/esm2015/lib/toolbar/main-toolbar/main-toolbar.component.js +0 -170
  348. package/esm2015/lib/toolbar/redaction-search-bar/redaction-search-bar.component.js +0 -201
  349. package/esm2015/lib/toolbar/redaction-toolbar/redaction-toolbar.component.js +0 -70
  350. package/esm2015/lib/toolbar/search-bar/search-bar.component.js +0 -102
  351. package/esm2015/lib/toolbar/toolbar-button-visibility.service.js +0 -92
  352. package/esm2015/lib/toolbar/toolbar.module.js +0 -45
  353. package/esm2015/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.js +0 -72
  354. package/esm2015/lib/viewers/convertible-content-viewer/document-conversion-api.service.js +0 -23
  355. package/esm2015/lib/viewers/grab-n-drag.directive.js +0 -51
  356. package/esm2015/lib/viewers/image-viewer/image-viewer.component.js +0 -164
  357. package/esm2015/lib/viewers/multimedia-player/multimedia-player.component.js +0 -54
  358. package/esm2015/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.js +0 -203
  359. package/esm2015/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.js +0 -43
  360. package/esm2015/lib/viewers/pdf-viewer/pdf-viewer.component.js +0 -220
  361. package/esm2015/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.js +0 -179
  362. package/esm2015/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.js +0 -44
  363. package/esm2015/lib/viewers/pdf-viewer/side-bar/side-bar.component.js +0 -72
  364. package/esm2015/lib/viewers/rotation-persist/rotation-api.service.js +0 -28
  365. package/esm2015/lib/viewers/rotation-persist/rotation-persist.directive.js +0 -67
  366. package/esm2015/lib/viewers/unsupported-viewer/unsupported-viewer.component.js +0 -47
  367. package/esm2015/lib/viewers/viewer-event.service.js +0 -30
  368. package/esm2015/lib/viewers/viewer-util.service.js +0 -23
  369. package/esm2015/public_api.js +0 -31
  370. package/fesm2015/hmcts-media-viewer.js +0 -6572
  371. package/fesm2015/hmcts-media-viewer.js.map +0 -1
  372. package/hmcts-media-viewer.d.ts +0 -69
  373. package/hmcts-media-viewer.metadata.json +0 -1
  374. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ngfactory.d.ts.map +0 -1
  375. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.ngfactory.d.ts.map +0 -1
  376. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ngfactory.d.ts.map +0 -1
  377. package/lib/annotations/annotation-set/annotation-set.component.ngfactory.d.ts.map +0 -1
  378. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.ngfactory.d.ts.map +0 -1
  379. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ngfactory.d.ts.map +0 -1
  380. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.ngfactory.d.ts.map +0 -1
  381. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ngfactory.d.ts.map +0 -1
  382. package/lib/annotations/annotations.module.ngfactory.d.ts.map +0 -1
  383. package/lib/annotations/comment-set/comment/comment.component.ngfactory.d.ts.map +0 -1
  384. package/lib/annotations/comment-set/comment/comment.service.ngfactory.d.ts.map +0 -1
  385. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.ngfactory.d.ts.map +0 -1
  386. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.ngfactory.d.ts.map +0 -1
  387. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ngfactory.d.ts.map +0 -1
  388. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ngfactory.d.ts.map +0 -1
  389. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ngfactory.d.ts.map +0 -1
  390. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ngfactory.d.ts.map +0 -1
  391. package/lib/annotations/comment-set/comment-set-render.service.ngfactory.d.ts.map +0 -1
  392. package/lib/annotations/comment-set/comment-set.component.ngfactory.d.ts.map +0 -1
  393. package/lib/annotations/comments-summary/comments-summary.component.ngfactory.d.ts.map +0 -1
  394. package/lib/annotations/pipes/date/date.pipe.ngfactory.d.ts.map +0 -1
  395. package/lib/annotations/pipes/filter/filter.pipe.ngfactory.d.ts.map +0 -1
  396. package/lib/annotations/pipes/unsnake/unsnake.pipe.ngfactory.d.ts.map +0 -1
  397. package/lib/annotations/services/annotation-api/annotation-api.service.ngfactory.d.ts.map +0 -1
  398. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.ngfactory.d.ts.map +0 -1
  399. package/lib/annotations/services/tags/tags.services.ngfactory.d.ts.map +0 -1
  400. package/lib/annotations/tags/tags.component.ngfactory.d.ts.map +0 -1
  401. package/lib/bookmark/components/bookmark-icons.component.ngfactory.d.ts.map +0 -1
  402. package/lib/icp/confirm-exit/confirm-action-dialog.component.ngfactory.d.ts.map +0 -1
  403. package/lib/icp/icp-follower.service.ngfactory.d.ts.map +0 -1
  404. package/lib/icp/icp-presenter.service.ngfactory.d.ts.map +0 -1
  405. package/lib/icp/icp-session-api.service.ngfactory.d.ts.map +0 -1
  406. package/lib/icp/icp-update.service.ngfactory.d.ts.map +0 -1
  407. package/lib/icp/icp.service.ngfactory.d.ts.map +0 -1
  408. package/lib/icp/participants-list/participants-list.component.ngfactory.d.ts.map +0 -1
  409. package/lib/icp/socket.service.ngfactory.d.ts.map +0 -1
  410. package/lib/media-viewer.component.ngfactory.d.ts.map +0 -1
  411. package/lib/media-viewer.module.ngfactory.d.ts.map +0 -1
  412. package/lib/print.service.ngfactory.d.ts.map +0 -1
  413. package/lib/redaction/components/redaction.component.ngfactory.d.ts.map +0 -1
  414. package/lib/redaction/services/redaction-api.service.ngfactory.d.ts.map +0 -1
  415. package/lib/shared/gov-uk-date/gov-uk-date.component.ngfactory.d.ts.map +0 -1
  416. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.ngfactory.d.ts.map +0 -1
  417. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.ngfactory.d.ts.map +0 -1
  418. package/lib/shared/gov-uk-label/gov-uk-label.component.ngfactory.d.ts.map +0 -1
  419. package/lib/shared/shared.module.ngfactory.d.ts.map +0 -1
  420. package/lib/shared/util/services/number.helper.service.ngfactory.d.ts.map +0 -1
  421. package/lib/store/effects/annotation.effects.ngfactory.d.ts.map +0 -1
  422. package/lib/store/effects/bookmarks.effects.ngfactory.d.ts.map +0 -1
  423. package/lib/store/effects/document.effects.ngfactory.d.ts.map +0 -1
  424. package/lib/store/effects/icp.effects.ngfactory.d.ts.map +0 -1
  425. package/lib/store/effects/redaction.effects.ngfactory.d.ts.map +0 -1
  426. package/lib/toolbar/icp-toolbar/icp-toolbar.component.ngfactory.d.ts.map +0 -1
  427. package/lib/toolbar/main-toolbar/main-toolbar.component.ngfactory.d.ts.map +0 -1
  428. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ngfactory.d.ts.map +0 -1
  429. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.scss.shim.ngstyle.d.ts.map +0 -1
  430. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ngfactory.d.ts.map +0 -1
  431. package/lib/toolbar/search-bar/search-bar.component.ngfactory.d.ts.map +0 -1
  432. package/lib/toolbar/toolbar-button-visibility.service.ngfactory.d.ts.map +0 -1
  433. package/lib/toolbar/toolbar-event.service.ngfactory.d.ts.map +0 -1
  434. package/lib/toolbar/toolbar.module.ngfactory.d.ts.map +0 -1
  435. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ngfactory.d.ts.map +0 -1
  436. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.ngfactory.d.ts.map +0 -1
  437. package/lib/viewers/grab-n-drag.directive.ngfactory.d.ts.map +0 -1
  438. package/lib/viewers/image-viewer/image-viewer.component.ngfactory.d.ts.map +0 -1
  439. package/lib/viewers/multimedia-player/multimedia-player.component.ngfactory.d.ts.map +0 -1
  440. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ngfactory.d.ts.map +0 -1
  441. package/lib/viewers/pdf-viewer/pdf-viewer.component.ngfactory.d.ts.map +0 -1
  442. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.ngfactory.d.ts.map +0 -1
  443. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.ngfactory.d.ts.map +0 -1
  444. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.ngfactory.d.ts.map +0 -1
  445. package/lib/viewers/rotation-persist/rotation-api.service.ngfactory.d.ts.map +0 -1
  446. package/lib/viewers/rotation-persist/rotation-persist.directive.ngfactory.d.ts.map +0 -1
  447. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.ngfactory.d.ts.map +0 -1
  448. package/lib/viewers/viewer-event.service.ngfactory.d.ts.map +0 -1
  449. package/lib/viewers/viewer-util.service.ngfactory.d.ts.map +0 -1
  450. /package/{esm2015/lib/annotations/annotation-set/annotation-set.model.js → esm2020/lib/annotations/annotation-set/annotation-set.model.mjs} +0 -0
  451. /package/{esm2015/lib/annotations/annotation-set/annotation-view/annotation.model.js → esm2020/lib/annotations/annotation-set/annotation-view/annotation.model.mjs} +0 -0
  452. /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
  453. /package/{esm2015/lib/annotations/comment-set/comment/comment.model.js → esm2020/lib/annotations/comment-set/comment/comment.model.mjs} +0 -0
  454. /package/{esm2015/lib/annotations/models/api-persisted.model.js → esm2020/lib/annotations/models/api-persisted.model.mjs} +0 -0
  455. /package/{esm2015/lib/annotations/models/event-select.model.js → esm2020/lib/annotations/models/event-select.model.mjs} +0 -0
  456. /package/{esm2015/lib/annotations/models/tags.model.js → esm2020/lib/annotations/models/tags.model.mjs} +0 -0
  457. /package/{esm2015/lib/annotations/models/user.model.js → esm2020/lib/annotations/models/user.model.mjs} +0 -0
  458. /package/{esm2015/lib/icp/icp.events.js → esm2020/lib/icp/icp.events.mjs} +0 -0
  459. /package/{esm2015/lib/icp/icp.interfaces.js → esm2020/lib/icp/icp.interfaces.mjs} +0 -0
  460. /package/{esm2015/lib/redaction/services/redaction.model.js → esm2020/lib/redaction/services/redaction.model.mjs} +0 -0
  461. /package/{esm2015/lib/shared/util/helpers/html-templates.helper.js → esm2020/lib/shared/util/helpers/html-templates.helper.mjs} +0 -0
  462. /package/{esm2015/lib/store/actions/annotation.actions.js → esm2020/lib/store/actions/annotation.actions.mjs} +0 -0
  463. /package/{esm2015/lib/store/actions/bookmark.actions.js → esm2020/lib/store/actions/bookmark.actions.mjs} +0 -0
  464. /package/{esm2015/lib/store/actions/document.actions.js → esm2020/lib/store/actions/document.actions.mjs} +0 -0
  465. /package/{esm2015/lib/store/actions/icp.actions.js → esm2020/lib/store/actions/icp.actions.mjs} +0 -0
  466. /package/{esm2015/lib/store/actions/redaction.actions.js → esm2020/lib/store/actions/redaction.actions.mjs} +0 -0
  467. /package/{esm2015/lib/store/actions/tag.actions.js → esm2020/lib/store/actions/tag.actions.mjs} +0 -0
  468. /package/{esm2015/lib/store/effects/index.js → esm2020/lib/store/effects/index.mjs} +0 -0
  469. /package/{esm2015/lib/store/models/bookmarks.interface.js → esm2020/lib/store/models/bookmarks.interface.mjs} +0 -0
  470. /package/{esm2015/lib/store/models/filters.interface.js → esm2020/lib/store/models/filters.interface.mjs} +0 -0
  471. /package/{esm2015/lib/store/reducers/reducers.js → esm2020/lib/store/reducers/reducers.mjs} +0 -0
  472. /package/{esm2015/lib/toolbar/icp-event.service.js → esm2020/lib/toolbar/icp-event.service.mjs} +0 -0
  473. /package/{esm2015/lib/toolbar/redaction-search-bar/redaction-search.model.js → esm2020/lib/toolbar/redaction-search-bar/redaction-search.model.mjs} +0 -0
  474. /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
  475. /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
  476. /package/{esm2015/lib/viewers/rotation-persist/rotation.model.js → esm2020/lib/viewers/rotation-persist/rotation.model.mjs} +0 -0
  477. /package/{esm2015/lib/viewers/viewer-exception.model.js → esm2020/lib/viewers/viewer-exception.model.mjs} +0 -0
@@ -1,21 +1,23 @@
1
1
  import * as fromFeature from '../reducers/reducers';
2
- export declare const getDocumentState: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentState, import("@ngrx/store").DefaultProjectorFn<fromFeature.DocumentState>>;
2
+ export declare const getDocumentState: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentState, (s1: fromFeature.State) => fromFeature.DocumentState>;
3
3
  export declare const getPages: import("@ngrx/store").MemoizedSelector<object, {
4
4
  [id: string]: fromFeature.DocumentPages;
5
- }, import("@ngrx/store").DefaultProjectorFn<{
5
+ }, (s1: fromFeature.DocumentState) => {
6
6
  [id: string]: fromFeature.DocumentPages;
7
- }>>;
8
- export declare const getPageList: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentPages[], import("@ngrx/store").DefaultProjectorFn<fromFeature.DocumentPages[]>>;
9
- export declare const getDocumentId: import("@ngrx/store").MemoizedSelector<object, string, import("@ngrx/store").DefaultProjectorFn<string>>;
10
- export declare const getPdfPosition: import("@ngrx/store").MemoizedSelector<object, fromFeature.PdfPosition, import("@ngrx/store").DefaultProjectorFn<fromFeature.PdfPosition>>;
11
- export declare const getPageDifference: import("@ngrx/store").MemoizedSelector<object, boolean, import("@ngrx/store").DefaultProjectorFn<boolean>>;
7
+ }>;
8
+ export declare const getPageList: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentPages[], (s1: {
9
+ [id: string]: fromFeature.DocumentPages;
10
+ }) => fromFeature.DocumentPages[]>;
11
+ export declare const getDocumentId: import("@ngrx/store").MemoizedSelector<object, string, (s1: fromFeature.DocumentState) => string>;
12
+ export declare const getPdfPosition: import("@ngrx/store").MemoizedSelector<object, fromFeature.PdfPosition, (s1: fromFeature.DocumentState) => fromFeature.PdfPosition>;
13
+ export declare const getPageDifference: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromFeature.DocumentState) => boolean>;
12
14
  export declare const getConvertedDocument: import("@ngrx/store").MemoizedSelector<object, {
13
15
  url: string;
14
16
  error: string;
15
- }, import("@ngrx/store").DefaultProjectorFn<{
17
+ }, (s1: fromFeature.DocumentState) => {
16
18
  url: string;
17
19
  error: string;
18
- }>>;
19
- export declare const getRotation: import("@ngrx/store").MemoizedSelector<object, number, import("@ngrx/store").DefaultProjectorFn<number>>;
20
- export declare const rotationLoaded: import("@ngrx/store").MemoizedSelector<object, boolean, import("@ngrx/store").DefaultProjectorFn<boolean>>;
20
+ }>;
21
+ export declare const getRotation: import("@ngrx/store").MemoizedSelector<object, number, (s1: fromFeature.DocumentState) => number>;
22
+ export declare const rotationLoaded: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromFeature.DocumentState) => boolean>;
21
23
  //# sourceMappingURL=document.selectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"document.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/document.selectors.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,gJAG5B,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;GAGpB,CAAC;AAEF,eAAO,MAAM,WAAW,oJAGvB,CAAC;AAEF,eAAO,MAAM,aAAa,0GAGzB,CAAC;AAEF,eAAO,MAAM,cAAc,4IAG1B,CAAC;AAEF,eAAO,MAAM,iBAAiB,4GAG7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;GAGhC,CAAC;AAEF,eAAO,MAAM,WAAW,0GAGvB,CAAC;AAEF,eAAO,MAAM,cAAc,4GAG1B,CAAC"}
1
+ {"version":3,"file":"document.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/document.selectors.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,iIAG5B,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;EAGpB,CAAC;AAEF,eAAO,MAAM,WAAW;;kCAGvB,CAAC;AAEF,eAAO,MAAM,aAAa,mGAGzB,CAAC;AAEF,eAAO,MAAM,cAAc,qIAG1B,CAAC;AAEF,eAAO,MAAM,iBAAiB,qGAG7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;EAGhC,CAAC;AAEF,eAAO,MAAM,WAAW,mGAGvB,CAAC;AAEF,eAAO,MAAM,cAAc,qGAG1B,CAAC"}
@@ -1,9 +1,10 @@
1
- export declare const getIcpState: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpState, import("@ngrx/store").DefaultProjectorFn<import("../../icp/icp.interfaces").IcpState>>;
2
- export declare const getIcpSession: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpSession, import("@ngrx/store").DefaultProjectorFn<import("../../icp/icp.interfaces").IcpSession>>;
3
- export declare const getCaseId: import("@ngrx/store").MemoizedSelector<object, string, import("@ngrx/store").DefaultProjectorFn<string>>;
4
- export declare const getPresenter: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant, import("@ngrx/store").DefaultProjectorFn<import("../../icp/icp.interfaces").IcpParticipant>>;
5
- export declare const getPresenterName: import("@ngrx/store").MemoizedSelector<object, string, import("@ngrx/store").DefaultProjectorFn<string>>;
6
- export declare const getClient: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant, import("@ngrx/store").DefaultProjectorFn<import("../../icp/icp.interfaces").IcpParticipant>>;
7
- export declare const isPresenter: import("@ngrx/store").MemoizedSelector<object, boolean, import("@ngrx/store").DefaultProjectorFn<boolean>>;
8
- export declare const getParticipants: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant[], import("@ngrx/store").DefaultProjectorFn<import("../../icp/icp.interfaces").IcpParticipant[]>>;
1
+ import * as fromFeature from '../reducers/reducers';
2
+ export declare const getIcpState: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpState, (s1: fromFeature.State) => import("../../icp/icp.interfaces").IcpState>;
3
+ export declare const getIcpSession: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpSession, (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpSession>;
4
+ export declare const getCaseId: import("@ngrx/store").MemoizedSelector<object, string, (s1: import("../../icp/icp.interfaces").IcpSession) => string>;
5
+ export declare const getPresenter: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant, (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpParticipant>;
6
+ export declare const getPresenterName: import("@ngrx/store").MemoizedSelector<object, string, (s1: import("../../icp/icp.interfaces").IcpParticipant) => string>;
7
+ export declare const getClient: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant, (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpParticipant>;
8
+ export declare const isPresenter: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: import("../../icp/icp.interfaces").IcpParticipant, s2: import("../../icp/icp.interfaces").IcpParticipant) => boolean>;
9
+ export declare const getParticipants: import("@ngrx/store").MemoizedSelector<object, import("../../icp/icp.interfaces").IcpParticipant[], (s1: import("../../icp/icp.interfaces").IcpState) => import("../../icp/icp.interfaces").IcpParticipant[]>;
9
10
  //# sourceMappingURL=icp.selectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"icp.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/icp.selectors.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,oLAGvB,CAAC;AAEF,eAAO,MAAM,aAAa,wLAGzB,CAAC;AAEF,eAAO,MAAM,SAAS,0GAGrB,CAAC;AAEF,eAAO,MAAM,YAAY,gMAGxB,CAAC;AAEF,eAAO,MAAM,gBAAgB,0GAG5B,CAAC;AAEF,eAAO,MAAM,SAAS,gMAGrB,CAAC;AAEF,eAAO,MAAM,WAAW,4GAIvB,CAAC;AAEF,eAAO,MAAM,eAAe,oMAG3B,CAAC"}
1
+ {"version":3,"file":"icp.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/icp.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,WAAW,qKAGvB,CAAC;AAEF,eAAO,MAAM,aAAa,mMAGzB,CAAC;AAEF,eAAO,MAAM,SAAS,uHAGrB,CAAC;AAEF,eAAO,MAAM,YAAY,2MAGxB,CAAC;AAEF,eAAO,MAAM,gBAAgB,2HAG5B,CAAC;AAEF,eAAO,MAAM,SAAS,2MAGrB,CAAC;AAEF,eAAO,MAAM,WAAW,oLAIvB,CAAC;AAEF,eAAO,MAAM,eAAe,+MAG3B,CAAC"}
@@ -1,29 +1,35 @@
1
1
  import * as fromFeature from '../reducers/reducers';
2
- export declare const getRedactionState: import("@ngrx/store").MemoizedSelector<object, fromFeature.RedactionState, import("@ngrx/store").DefaultProjectorFn<fromFeature.RedactionState>>;
2
+ export declare const getRedactionState: import("@ngrx/store").MemoizedSelector<object, fromFeature.RedactionState, (s1: fromFeature.State) => fromFeature.RedactionState>;
3
3
  export declare const getRedactionPages: import("@ngrx/store").MemoizedSelector<object, {
4
4
  [id: string]: any;
5
- }, import("@ngrx/store").DefaultProjectorFn<{
5
+ }, (s1: fromFeature.RedactionState) => {
6
6
  [id: string]: any;
7
- }>>;
8
- export declare const getSelected: import("@ngrx/store").MemoizedSelector<object, {} | import("../../../hmcts-media-viewer").ɵcu, import("@ngrx/store").DefaultProjectorFn<{} | import("../../../hmcts-media-viewer").ɵcu>>;
7
+ }>;
8
+ export declare const getSelected: import("@ngrx/store").MemoizedSelector<object, {} | import("../../annotations/models/event-select.model").SelectionAnnotation, (s1: fromFeature.RedactionState) => {} | import("../../annotations/models/event-select.model").SelectionAnnotation>;
9
9
  export declare const getRedactedDocumentInfo: import("@ngrx/store").MemoizedSelector<object, {
10
10
  blob: Blob;
11
11
  filename: string;
12
- }, import("@ngrx/store").DefaultProjectorFn<{
12
+ }, (s1: fromFeature.RedactionState) => {
13
13
  blob: Blob;
14
14
  filename: string;
15
- }>>;
15
+ }>;
16
16
  export declare const getRedactionEnt: import("@ngrx/store").MemoizedSelector<object, {
17
17
  [id: string]: import("../../redaction/services/redaction.model").Redaction;
18
- }, import("@ngrx/store").DefaultProjectorFn<{
18
+ }, (s1: fromFeature.RedactionState) => {
19
19
  [id: string]: import("../../redaction/services/redaction.model").Redaction;
20
- }>>;
20
+ }>;
21
21
  export declare const getRedactionArray: import("@ngrx/store").MemoizedSelector<object, {
22
22
  redactions: import("../../redaction/services/redaction.model").Redaction[];
23
23
  documentId: string;
24
- }, import("@ngrx/store").DefaultProjectorFn<{
24
+ }, (s1: {
25
+ [id: string]: import("../../redaction/services/redaction.model").Redaction;
26
+ }, s2: string) => {
25
27
  redactions: import("../../redaction/services/redaction.model").Redaction[];
26
28
  documentId: string;
27
- }>>;
28
- export declare const getRedactionsPerPage: import("@ngrx/store").MemoizedSelector<object, any[], import("@ngrx/store").DefaultProjectorFn<any[]>>;
29
+ }>;
30
+ export declare const getRedactionsPerPage: import("@ngrx/store").MemoizedSelector<object, any[], (s1: {
31
+ [id: string]: fromFeature.DocumentPages;
32
+ }, s2: {
33
+ [id: string]: any;
34
+ }) => any[]>;
29
35
  //# sourceMappingURL=redaction.selectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"redaction.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/redaction.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAIpD,eAAO,MAAM,iBAAiB,kJAG7B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;GAG7B,CAAC;AAEF,eAAO,MAAM,WAAW,0LAGvB,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;GAGnC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;GAG3B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;GAO7B,CAAC;AAEF,eAAO,MAAM,oBAAoB,wGAgBhC,CAAC"}
1
+ {"version":3,"file":"redaction.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/redaction.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAIpD,eAAO,MAAM,iBAAiB,mIAG7B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;EAG7B,CAAC;AAEF,eAAO,MAAM,WAAW,oPAGvB,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;EAGnC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;EAG3B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;EAO7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;YAgBhC,CAAC"}
@@ -1,26 +1,28 @@
1
1
  import * as fromFeature from '../reducers/reducers';
2
- export declare const getTagsRootState: import("@ngrx/store").MemoizedSelector<object, fromFeature.TagsState, import("@ngrx/store").DefaultProjectorFn<fromFeature.TagsState>>;
2
+ export declare const getTagsRootState: import("@ngrx/store").MemoizedSelector<object, fromFeature.TagsState, (s1: fromFeature.State) => fromFeature.TagsState>;
3
3
  export declare const getTagEntities: import("@ngrx/store").MemoizedSelector<object, {
4
4
  [id: string]: string[];
5
- }, import("@ngrx/store").DefaultProjectorFn<{
5
+ }, (s1: fromFeature.TagsState) => {
6
6
  [id: string]: string[];
7
- }>>;
8
- export declare const getTagFilters: import("@ngrx/store").MemoizedSelector<object, string[], import("@ngrx/store").DefaultProjectorFn<string[]>>;
7
+ }>;
8
+ export declare const getTagFilters: import("@ngrx/store").MemoizedSelector<object, string[], (s1: fromFeature.TagsState) => string[]>;
9
9
  export declare const getTagFiltered: import("@ngrx/store").MemoizedSelector<object, {
10
10
  [id: string]: string[];
11
- }, import("@ngrx/store").DefaultProjectorFn<{
11
+ }, (s1: fromFeature.TagsState) => {
12
12
  [id: string]: string[];
13
- }>>;
13
+ }>;
14
14
  export declare const getFilteredPageEntities: import("@ngrx/store").MemoizedSelector<object, {
15
- [id: string]: import("../../../hmcts-media-viewer").ɵcs[];
16
- }, import("@ngrx/store").DefaultProjectorFn<{
17
- [id: string]: import("../../../hmcts-media-viewer").ɵcs[];
18
- }>>;
15
+ [id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
16
+ }, (s1: fromFeature.TagsState) => {
17
+ [id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
18
+ }>;
19
19
  export declare const getAllTagsArr: import("@ngrx/store").MemoizedSelector<object, {
20
20
  key: string;
21
21
  length: number;
22
- }[], import("@ngrx/store").DefaultProjectorFn<{
22
+ }[], (s1: {
23
+ [id: string]: string[];
24
+ }) => {
23
25
  key: string;
24
26
  length: number;
25
- }[]>>;
27
+ }[]>;
26
28
  //# sourceMappingURL=tag.selectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tag.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/tag.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,wIAG5B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;GAG1B,CAAC;AAEF,eAAO,MAAM,aAAa,8GAGzB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;GAG1B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;GAGnC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;KAQzB,CAAC"}
1
+ {"version":3,"file":"tag.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/tag.selectors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAGpD,eAAO,MAAM,gBAAgB,yHAG5B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;EAG1B,CAAC;AAEF,eAAO,MAAM,aAAa,mGAGzB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;EAG1B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;EAGnC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;IAQzB,CAAC"}
@@ -2,6 +2,7 @@ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { ToolbarEventService } from '../toolbar-event.service';
3
3
  import { Store } from '@ngrx/store';
4
4
  import { IcpState } from '../../icp/icp.interfaces';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class IcpToolbarComponent implements OnInit, OnDestroy {
6
7
  readonly toolbarEventService: ToolbarEventService;
7
8
  private store;
@@ -15,5 +16,7 @@ export declare class IcpToolbarComponent implements OnInit, OnDestroy {
15
16
  stopPresenting(): void;
16
17
  leaveIcpSession(): void;
17
18
  showParticipantsList(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpToolbarComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<IcpToolbarComponent, "mv-icp-toolbar", never, {}, {}, never, never, false, never>;
18
21
  }
19
22
  //# sourceMappingURL=icp-toolbar.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"icp-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/icp-toolbar/icp-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEpD,qBAIa,mBAAoB,YAAW,MAAM,EAAE,SAAS;aAO/B,mBAAmB,EAAE,mBAAmB;IACxD,OAAO,CAAC,KAAK;IANzB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,OAAO,CAAC;IAErB,OAAO,CAAC,aAAa,CAAe;gBAER,mBAAmB,EAAE,mBAAmB,EAChD,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAE1C,QAAQ;IAOR,WAAW;IAIX,OAAO;IAIP,cAAc;IAId,eAAe;IAIf,oBAAoB;CAGrB"}
1
+ {"version":3,"file":"icp-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/icp-toolbar/icp-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;;AAEpD,qBAIa,mBAAoB,YAAW,MAAM,EAAE,SAAS;aAO/B,mBAAmB,EAAE,mBAAmB;IACxD,OAAO,CAAC,KAAK;IANzB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,OAAO,CAAC;IAErB,OAAO,CAAC,aAAa,CAAe;gBAER,mBAAmB,EAAE,mBAAmB,EAChD,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAE1C,QAAQ;IAOR,WAAW;IAIX,OAAO;IAIP,cAAc;IAId,eAAe;IAIf,oBAAoB;yCAjCT,mBAAmB;2CAAnB,mBAAmB;CAoC/B"}
@@ -3,6 +3,7 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from
3
3
  import { ToolbarEventService } from '../toolbar-event.service';
4
4
  import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
5
5
  import { NumberHelperService } from '../../../lib/shared/util/services/number.helper.service';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class MainToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
7
8
  readonly toolbarEvents: ToolbarEventService;
8
9
  readonly toolbarButtons: ToolbarButtonVisibilityService;
@@ -34,6 +35,7 @@ export declare class MainToolbarComponent implements OnInit, OnDestroy, AfterVie
34
35
  ngOnDestroy(): void;
35
36
  ngAfterViewInit(): void;
36
37
  onResize(): void;
38
+ onControlPrint(event: KeyboardEvent): void;
37
39
  onClickHighlightToggle(): void;
38
40
  onClickDrawToggle(): void;
39
41
  toggleIndexSideBar(): void;
@@ -54,5 +56,7 @@ export declare class MainToolbarComponent implements OnInit, OnDestroy, AfterVie
54
56
  isPdf(): boolean;
55
57
  toggleSearchBar(): void;
56
58
  toggleMoreOptions(): void;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<MainToolbarComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<MainToolbarComponent, "mv-main-toolbar", never, { "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "contentType": "contentType"; }, {}, never, never, false, never>;
57
61
  }
58
62
  //# sourceMappingURL=main-toolbar.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"main-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/main-toolbar/main-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EACL,aAAa,EACb,iBAAiB,EAEjB,UAAU,EAGV,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;AAE9F,qBAIa,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,aAAa;aAyCzD,aAAa,EAAE,mBAAmB;aAClC,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,YAAY;IA1CtB,iBAAiB,UAAS;IAC1B,gBAAgB,UAAS;IACzB,SAAS,UAAS;IAClB,WAAW,MAAQ;IAEuB,UAAU,EAAE,UAAU,CAAC;IACpB,aAAa,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IACxC,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAE1F,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAsB;IAE7C,UAAU,UAAS;IACnB,gBAAgB,UAAS;IACzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,mBAAmB,EAAE,OAAO,CAAC;IAE7B,UAAU,SAAK;IACf,SAAS,SAAK;IACd,kBAAkB,UAAS;IAC3B,qBAAqB,2BAY1B;IAEK,UAAU,WAAmD;IAEpE,eAAe,SAAK;IACpB,mBAAmB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAM;gBAGjC,aAAa,EAAE,mBAAmB,EAClC,cAAc,EAAE,8BAA8B,EAC7C,GAAG,EAAE,iBAAiB,EACtB,YAAY,EAAE,mBAAmB;IAI7C,QAAQ;IAqBR,WAAW,IAAI,IAAI;IAMnB,eAAe;IASf,QAAQ;IAIR,sBAAsB;IAGtB,iBAAiB;IAIjB,kBAAkB;IASlB,sBAAsB;IAStB,gBAAgB;IAKhB,kBAAkB;IAIlB,kBAAkB;IAIlB,uBAAuB,CAAC,UAAU,EAAE,MAAM;IAWjD,OAAO,CAAC,cAAc;IAIf,MAAM,CAAC,QAAQ,EAAE,MAAM;IAIvB,SAAS;IAIT,YAAY;IAIZ,IAAI,CAAC,UAAU,EAAE,MAAM;IAIvB,QAAQ,CAAC,UAAU,EAAE,MAAM;IAK3B,mBAAmB;IAInB,eAAe;IAIf,eAAe;IAIf,KAAK;IAIL,eAAe;IAIf,iBAAiB;CAQzB"}
1
+ {"version":3,"file":"main-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/main-toolbar/main-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EACL,aAAa,EACb,iBAAiB,EAEjB,UAAU,EAGV,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;;AAE9F,qBAIa,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,aAAa;aAyCzD,aAAa,EAAE,mBAAmB;aAClC,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,YAAY;IA1CtB,iBAAiB,UAAS;IAC1B,gBAAgB,UAAS;IACzB,SAAS,UAAS;IAClB,WAAW,MAAQ;IAEuB,UAAU,EAAE,UAAU,CAAC;IACpB,aAAa,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IACxC,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAE1F,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAsB;IAE7C,UAAU,UAAS;IACnB,gBAAgB,UAAS;IACzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,mBAAmB,EAAE,OAAO,CAAC;IAE7B,UAAU,SAAK;IACf,SAAS,SAAK;IACd,kBAAkB,UAAS;IAC3B,qBAAqB,2BAY1B;IAEK,UAAU,WAAmD;IAEpE,eAAe,SAAK;IACpB,mBAAmB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAM;gBAGjC,aAAa,EAAE,mBAAmB,EAClC,cAAc,EAAE,8BAA8B,EAC7C,GAAG,EAAE,iBAAiB,EACtB,YAAY,EAAE,mBAAmB;IAI7C,QAAQ;IAqBR,WAAW,IAAI,IAAI;IAMnB,eAAe;IASf,QAAQ;IAMR,cAAc,CAAC,KAAK,EAAE,aAAa;IAKnC,sBAAsB;IAGtB,iBAAiB;IAIjB,kBAAkB;IASlB,sBAAsB;IAStB,gBAAgB;IAKhB,kBAAkB;IAIlB,kBAAkB;IAIlB,uBAAuB,CAAC,UAAU,EAAE,MAAM;IAWjD,OAAO,CAAC,cAAc;IAIf,MAAM,CAAC,QAAQ,EAAE,MAAM;IAIvB,SAAS;IAIT,YAAY;IAIZ,IAAI,CAAC,UAAU,EAAE,MAAM;IAIvB,QAAQ,CAAC,UAAU,EAAE,MAAM;IAK3B,mBAAmB;IAInB,eAAe;IAIf,eAAe;IAIf,KAAK;IAIL,eAAe;IAIf,iBAAiB;yCA7Lb,oBAAoB;2CAApB,oBAAoB;CAqMhC"}
@@ -1,11 +1,12 @@
1
1
  import { RedactRectangle } from './redaction-search.model';
2
- import { ElementRef, OnInit } from '@angular/core';
2
+ import { ElementRef, OnDestroy, OnInit } from '@angular/core';
3
3
  import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
4
4
  import { ToolbarEventService } from '../toolbar-event.service';
5
5
  import { Store } from '@ngrx/store';
6
6
  import * as fromStore from '../../store/reducers/reducers';
7
7
  import { HighlightCreateService } from '../../annotations/annotation-set/annotation-create/highlight-create/highlight-create.service';
8
- export declare class RedactionSearchBarComponent implements OnInit {
8
+ import * as i0 from "@angular/core";
9
+ export declare class RedactionSearchBarComponent implements OnInit, OnDestroy {
9
10
  private store;
10
11
  readonly toolbarButtons: ToolbarButtonVisibilityService;
11
12
  readonly toolbarEvents: ToolbarEventService;
@@ -47,5 +48,7 @@ export declare class RedactionSearchBarComponent implements OnInit {
47
48
  toggleSearchBar(): void;
48
49
  private getRectangles;
49
50
  private createTextRectangle;
51
+ static ɵfac: i0.ɵɵFactoryDeclaration<RedactionSearchBarComponent, never>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<RedactionSearchBarComponent, "mv-redaction-search-bar", never, {}, {}, never, never, false, never>;
50
53
  }
51
54
  //# sourceMappingURL=redaction-search-bar.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"redaction-search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAmB,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC5E,OAAO,EAAa,UAAU,EAAwB,MAAM,EAAa,MAAM,eAAe,CAAC;AAE/F,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,KAAK,EAAU,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAK3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,8FAA8F,CAAC;AAEtI,qBAKa,2BAA4B,YAAW,MAAM;IA2BtD,OAAO,CAAC,KAAK;aACG,cAAc,EAAE,8BAA8B;aAC9C,aAAa,EAAE,mBAAmB;aAClC,gBAAgB,EAAE,sBAAsB;IA5BhB,SAAS,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IAElF,YAAY,UAAQ;IACpB,SAAS,UAAS;IAClB,SAAS,UAAS;IAClB,WAAW,SAAM;IACjB,UAAU,SAAM;IAChB,WAAW,SAAK;IAChB,cAAc,EAAE,eAAe,EAAE,CAAM;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,eAAe,EAAE,OAAO,CAAC;IACzB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,aAAa,CAAC,EAAE,MAAM,CAAC;IAGvB,OAAO,CAAC,YAAY,CAAe;IACnC,OAAO,CAAC,UAAU,CAAS;IACpB,qBAAqB,UAAS;gBAG3B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EACrB,cAAc,EAAE,8BAA8B,EAC9C,aAAa,EAAE,mBAAmB,EAClC,gBAAgB,EAAE,sBAAsB;IAGnD,QAAQ,IAAI,IAAI;IAgBvB,WAAW,IAAI,IAAI;IAKZ,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAQ9C,MAAM,CAAC,KAAK,GAAE,OAAc,GAAG,IAAI;IAkBnC,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,qBAAqB;IAqB7B,kBAAkB;IAKlB,OAAO,CAAC,qBAAqB;IAO7B,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,qBAAqB;IAwB7B,OAAO,CAAC,mBAAmB;IAIpB,gBAAgB,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIxC,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIvC,eAAe;IAItB,OAAO,CAAC,aAAa;IAmCrB,OAAO,CAAC,mBAAmB;CAoB5B"}
1
+ {"version":3,"file":"redaction-search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAmB,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC5E,OAAO,EAAa,UAAU,EAAwB,SAAS,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAE1G,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,KAAK,EAAU,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAK3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,8FAA8F,CAAC;;AAEtI,qBAKa,2BAA4B,YAAW,MAAM,EAAE,SAAS;IA2BjE,OAAO,CAAC,KAAK;aACG,cAAc,EAAE,8BAA8B;aAC9C,aAAa,EAAE,mBAAmB;aAClC,gBAAgB,EAAE,sBAAsB;IA5BhB,SAAS,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IAElF,YAAY,UAAQ;IACpB,SAAS,UAAS;IAClB,SAAS,UAAS;IAClB,WAAW,SAAM;IACjB,UAAU,SAAM;IAChB,WAAW,SAAK;IAChB,cAAc,EAAE,eAAe,EAAE,CAAM;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,eAAe,EAAE,OAAO,CAAC;IACzB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,aAAa,CAAC,EAAE,MAAM,CAAC;IAGvB,OAAO,CAAC,YAAY,CAAe;IACnC,OAAO,CAAC,UAAU,CAAS;IACpB,qBAAqB,UAAS;gBAG3B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EACrB,cAAc,EAAE,8BAA8B,EAC9C,aAAa,EAAE,mBAAmB,EAClC,gBAAgB,EAAE,sBAAsB;IAGnD,QAAQ,IAAI,IAAI;IAgBvB,WAAW,IAAI,IAAI;IAKZ,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAQ9C,MAAM,CAAC,KAAK,GAAE,OAAc,GAAG,IAAI;IAkBnC,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,qBAAqB;IAqB7B,kBAAkB;IAKlB,OAAO,CAAC,qBAAqB;IAO7B,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,qBAAqB;IAwB7B,OAAO,CAAC,mBAAmB;IAIpB,gBAAgB,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIxC,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIvC,eAAe;IAItB,OAAO,CAAC,aAAa;IAmCrB,OAAO,CAAC,mBAAmB;yCA/MhB,2BAA2B;2CAA3B,2BAA2B;CAmOvC"}
@@ -3,6 +3,7 @@ import { ToolbarEventService } from '../toolbar-event.service';
3
3
  import { Store } from '@ngrx/store';
4
4
  import * as fromStore from '../../store/reducers/reducers';
5
5
  import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class RedactionToolbarComponent implements OnInit, OnDestroy {
7
8
  readonly toolbarEventService: ToolbarEventService;
8
9
  readonly toolbarButtons: ToolbarButtonVisibilityService;
@@ -23,5 +24,7 @@ export declare class RedactionToolbarComponent implements OnInit, OnDestroy {
23
24
  toggleRedactBar(): void;
24
25
  redactPage(): void;
25
26
  ngOnDestroy(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<RedactionToolbarComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<RedactionToolbarComponent, "mv-redaction-toolbar", never, { "showRedactSearch": "showRedactSearch"; }, {}, never, never, false, never>;
26
29
  }
27
30
  //# sourceMappingURL=redaction-toolbar.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"redaction-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAE3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AAGtF,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;aAUrC,mBAAmB,EAAE,mBAAmB;aAClD,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,KAAK;IAVN,gBAAgB,EAAE,OAAO,CAAC;IAEnC,OAAO,UAAS;IAChB,aAAa,UAAS;IAEtB,OAAO,CAAC,aAAa,CAAsB;IAC3C,sBAAsB,EAAE,OAAO,CAAC;gBAEJ,mBAAmB,EAAE,mBAAmB,EAClD,cAAc,EAAE,8BAA8B,EACtD,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAEpD,QAAQ,IAAI,IAAI;IAShB,iBAAiB;IAIjB,uBAAuB;IAIvB,cAAc;IAId,aAAa;IAKb,SAAS;IAIT,MAAM;IAIN,eAAe;IAIf,UAAU;IAKV,WAAW,IAAI,IAAI;CAKpB"}
1
+ {"version":3,"file":"redaction-toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAE3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;;AAGtF,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;aAUrC,mBAAmB,EAAE,mBAAmB;aAClD,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,KAAK;IAVN,gBAAgB,EAAE,OAAO,CAAC;IAEnC,OAAO,UAAS;IAChB,aAAa,UAAS;IAEtB,OAAO,CAAC,aAAa,CAAsB;IAC3C,sBAAsB,EAAE,OAAO,CAAC;gBAEJ,mBAAmB,EAAE,mBAAmB,EAClD,cAAc,EAAE,8BAA8B,EACtD,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAEpD,QAAQ,IAAI,IAAI;IAShB,iBAAiB;IAIjB,uBAAuB;IAIvB,cAAc;IAId,aAAa;IAKb,SAAS;IAIT,MAAM;IAIN,eAAe;IAIf,UAAU;IAKV,WAAW,IAAI,IAAI;yCAzDR,yBAAyB;2CAAzB,yBAAyB;CA8DrC"}
@@ -1,6 +1,7 @@
1
1
  import { ElementRef, OnInit, OnDestroy } from '@angular/core';
2
2
  import { ToolbarButtonVisibilityService } from '../toolbar-button-visibility.service';
3
3
  import { ToolbarEventService } from '../toolbar-event.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class SearchBarComponent implements OnInit, OnDestroy {
5
6
  readonly toolbarButtons: ToolbarButtonVisibilityService;
6
7
  readonly toolbarEvents: ToolbarEventService;
@@ -26,5 +27,7 @@ export declare class SearchBarComponent implements OnInit, OnDestroy {
26
27
  onEnterKeyPress(e: KeyboardEvent): void;
27
28
  toggleAdvancedSearch(): void;
28
29
  toggleSearchBar(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "mv-search-bar", never, {}, {}, never, never, false, never>;
29
32
  }
30
33
  //# sourceMappingURL=search-bar.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/search-bar/search-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,MAAM,EAAa,SAAS,EAAE,MAAM,eAAe,CAAC;AAClG,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAsB,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAGnF,qBAIa,kBAAmB,YAAW,MAAM,EAAE,SAAS;aAiBxC,cAAc,EAAE,8BAA8B;aAC9C,aAAa,EAAE,mBAAmB;IAhBV,SAAS,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IACxC,QAAQ,EAAE,UAAU,CAAC,iBAAiB,CAAC,CAAC;IAElF,YAAY,UAAQ;IACpB,SAAS,UAAS;IAClB,SAAS,UAAS;IAClB,WAAW,SAAM;IACjB,UAAU,SAAM;IAChB,WAAW,SAAK;IAEhB,OAAO,CAAC,aAAa,CAAsB;IAEpC,qBAAqB,UAAS;gBAGnB,cAAc,EAAE,8BAA8B,EAC9C,aAAa,EAAE,mBAAmB;IAG7C,QAAQ,IAAI,IAAI;IAMvB,WAAW,IAAI,IAAI;IAOZ,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IASvC,UAAU,IAAI,IAAI;IAWlB,UAAU,IAAI,IAAI;IAWlB,MAAM,IAAI,IAAI;IAWrB,OAAO,CAAC,qBAAqB;IAYtB,gBAAgB,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIxC,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAKvC,oBAAoB,IAAI,IAAI;IAI5B,eAAe;CAGvB"}
1
+ {"version":3,"file":"search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/toolbar/search-bar/search-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,MAAM,EAAa,SAAS,EAAE,MAAM,eAAe,CAAC;AAClG,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAsB,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;;AAGnF,qBAIa,kBAAmB,YAAW,MAAM,EAAE,SAAS;aAiBxC,cAAc,EAAE,8BAA8B;aAC9C,aAAa,EAAE,mBAAmB;IAhBV,SAAS,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IACxC,QAAQ,EAAE,UAAU,CAAC,iBAAiB,CAAC,CAAC;IAElF,YAAY,UAAQ;IACpB,SAAS,UAAS;IAClB,SAAS,UAAS;IAClB,WAAW,SAAM;IACjB,UAAU,SAAM;IAChB,WAAW,SAAK;IAEhB,OAAO,CAAC,aAAa,CAAsB;IAEpC,qBAAqB,UAAS;gBAGnB,cAAc,EAAE,8BAA8B,EAC9C,aAAa,EAAE,mBAAmB;IAG7C,QAAQ,IAAI,IAAI;IAMvB,WAAW,IAAI,IAAI;IAOZ,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IASvC,UAAU,IAAI,IAAI;IAWlB,UAAU,IAAI,IAAI;IAWlB,MAAM,IAAI,IAAI;IAWrB,OAAO,CAAC,qBAAqB;IAYtB,gBAAgB,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAIxC,eAAe,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAKvC,oBAAoB,IAAI,IAAI;IAI5B,eAAe;yCArGX,kBAAkB;2CAAlB,kBAAkB;CAwG9B"}
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class ToolbarButtonVisibilityService {
2
3
  showPrint: boolean;
3
4
  showDownload: boolean;
@@ -19,6 +20,8 @@ export declare class ToolbarButtonVisibilityService {
19
20
  * Reset the visibility of all buttons to false then set the value from the options
20
21
  */
21
22
  setup(options: Partial<ToolbarButtonVisibilityService>): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarButtonVisibilityService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarButtonVisibilityService>;
22
25
  }
23
26
  /**
24
27
  * Default toolbar state for the PDF viewer
@@ -1 +1 @@
1
- {"version":3,"file":"toolbar-button-visibility.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-button-visibility.service.ts"],"names":[],"mappings":"AAGA,qBACa,8BAA8B;IAElC,SAAS,UAAS;IAClB,YAAY,UAAS;IACrB,cAAc,UAAS;IACvB,QAAQ,UAAS;IACjB,UAAU,UAAS;IACnB,oBAAoB,UAAS;IAC7B,UAAU,UAAS;IACnB,YAAY,UAAS;IACrB,YAAY,UAAS;IACrB,mBAAmB,UAAS;IAC5B,cAAc,UAAS;IACvB,aAAa,UAAS;IACtB,WAAW,UAAS;IACpB,kBAAkB,UAAS;IAC3B,mBAAmB,UAAS;IAC5B,sBAAsB,UAAS;IAEtC;;OAEG;IACI,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,8BAA8B,CAAC,GAAG,IAAI;CAsBrE;AAED;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;CAY7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;CAQ/B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,wBAAwB;;CAEpC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;CAGrC,CAAC"}
1
+ {"version":3,"file":"toolbar-button-visibility.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-button-visibility.service.ts"],"names":[],"mappings":";AAGA,qBACa,8BAA8B;IAElC,SAAS,UAAS;IAClB,YAAY,UAAS;IACrB,cAAc,UAAS;IACvB,QAAQ,UAAS;IACjB,UAAU,UAAS;IACnB,oBAAoB,UAAS;IAC7B,UAAU,UAAS;IACnB,YAAY,UAAS;IACrB,YAAY,UAAS;IACrB,mBAAmB,UAAS;IAC5B,cAAc,UAAS;IACvB,aAAa,UAAS;IACtB,WAAW,UAAS;IACpB,kBAAkB,UAAS;IAC3B,mBAAmB,UAAS;IAC5B,sBAAsB,UAAS;IAEtC;;OAEG;IACI,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,8BAA8B,CAAC,GAAG,IAAI;yCAtBzD,8BAA8B;6CAA9B,8BAA8B;CA4C1C;AAED;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;CAY7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;CAQ/B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,wBAAwB;;CAEpC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;CAGrC,CAAC"}
@@ -1,8 +1,9 @@
1
1
  import { BehaviorSubject, Observable, Subject } from 'rxjs';
2
2
  import * as icpEvents from './icp-event.service';
3
3
  import { RedactionSearch } from './redaction-search-bar/redaction-search.model';
4
- export declare type HighlightMode = boolean;
5
- export declare type DrawMode = boolean;
4
+ import * as i0 from "@angular/core";
5
+ export type HighlightMode = boolean;
6
+ export type DrawMode = boolean;
6
7
  export interface SearchOperation {
7
8
  searchTerm: string;
8
9
  highlightAll: boolean;
@@ -77,5 +78,7 @@ export declare class ToolbarEventService {
77
78
  redactPage(): void;
78
79
  toggleCommentsPanel(isVisible: boolean): void;
79
80
  toggleParticipantsList(isVisible: boolean): void;
81
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarEventService, never>;
82
+ static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarEventService>;
80
83
  }
81
84
  //# sourceMappingURL=toolbar-event.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbar-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"toolbar-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./search-bar/search-bar.component";
3
+ import * as i2 from "./main-toolbar/main-toolbar.component";
4
+ import * as i3 from "./redaction-toolbar/redaction-toolbar.component";
5
+ import * as i4 from "./icp-toolbar/icp-toolbar.component";
6
+ import * as i5 from "./redaction-search-bar/redaction-search-bar.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "@angular/forms";
9
+ import * as i8 from "@angular/cdk/overlay";
10
+ import * as i9 from "@angular/router";
1
11
  export { ToolbarButtonVisibilityService } from './toolbar-button-visibility.service';
2
12
  export { ToolbarEventService } from './toolbar-event.service';
3
13
  export declare class ToolbarModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof i1.SearchBarComponent, typeof i2.MainToolbarComponent, typeof i3.RedactionToolbarComponent, typeof i4.IcpToolbarComponent, typeof i5.RedactionSearchBarComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.OverlayModule, typeof i9.RouterModule], [typeof i2.MainToolbarComponent, typeof i1.SearchBarComponent, typeof i3.RedactionToolbarComponent, typeof i4.IcpToolbarComponent, typeof i5.RedactionSearchBarComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarModule>;
4
17
  }
5
18
  //# sourceMappingURL=toolbar.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AACrF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAK9D,qBA0Ba,aAAa;CAAI"}
1
+ {"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts"],"names":[],"mappings":";;;;;;;;;;AAUA,OAAO,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AACrF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAK9D,qBA0Ba,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAI"}
@@ -3,6 +3,7 @@ import { ResponseType, ViewerException } from '../viewer-exception.model';
3
3
  import { Store } from '@ngrx/store';
4
4
  import * as fromStore from '../../store/reducers/document.reducer';
5
5
  import { AnnotationSet } from '../../annotations/annotation-set/annotation-set.model';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class ConvertibleContentViewerComponent implements OnInit, OnDestroy {
7
8
  private store;
8
9
  originalUrl: any;
@@ -23,5 +24,7 @@ export declare class ConvertibleContentViewerComponent implements OnInit, OnDest
23
24
  onLoadException(exception: ViewerException): void;
24
25
  onDocumentTitleChange(title: string): void;
25
26
  private extractDMStoreDocId;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConvertibleContentViewerComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConvertibleContentViewerComponent, "mv-conversion-viewer", never, { "originalUrl": "originalUrl"; "downloadFileName": "downloadFileName"; "height": "height"; "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "annotationSet": "annotationSet"; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
26
29
  }
27
30
  //# sourceMappingURL=convertible-content-viewer.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"convertible-content-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAA6B,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AAInE,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;AAGtF,qBAKa,iCAAkC,YAAW,MAAM,EAAE,SAAS;IAmB7D,OAAO,CAAC,KAAK;IAjBhB,WAAW,MAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IAEzB,MAAM,MAAC;IAEP,iBAAiB,EAAE,OAAO,CAAC;IAC3B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,aAAa,EAAE,aAAa,GAAG,IAAI,CAAC;IAGnC,eAAe,6BAAoC;IACnD,eAAe,gCAAuC;IACtD,aAAa,uBAA8B;IAErD,OAAO,CAAC,aAAa,CAAe;IACpC,YAAY,EAAE,MAAM,CAAC;gBAED,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,aAAa,CAAC;IAGzD,QAAQ,IAAI,IAAI;IAahB,WAAW,IAAI,IAAI;IAInB,WAAW,CAAC,MAAM,EAAE,YAAY;IAIhC,eAAe,CAAC,SAAS,EAAE,eAAe;IAI1C,qBAAqB,CAAC,KAAK,EAAE,MAAM;IAKnC,OAAO,CAAC,mBAAmB;CAS5B"}
1
+ {"version":3,"file":"convertible-content-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAA6B,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AAInE,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;;AAGtF,qBAKa,iCAAkC,YAAW,MAAM,EAAE,SAAS;IAmB7D,OAAO,CAAC,KAAK;IAjBhB,WAAW,MAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IAEzB,MAAM,MAAC;IAEP,iBAAiB,EAAE,OAAO,CAAC;IAC3B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,aAAa,EAAE,aAAa,GAAG,IAAI,CAAC;IAGnC,eAAe,6BAAoC;IACnD,eAAe,gCAAuC;IACtD,aAAa,uBAA8B;IAErD,OAAO,CAAC,aAAa,CAAe;IACpC,YAAY,EAAE,MAAM,CAAC;gBAED,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,aAAa,CAAC;IAGzD,QAAQ,IAAI,IAAI;IAahB,WAAW,IAAI,IAAI;IAInB,WAAW,CAAC,MAAM,EAAE,YAAY;IAIhC,eAAe,CAAC,SAAS,EAAE,eAAe;IAI1C,qBAAqB,CAAC,KAAK,EAAE,MAAM;IAKnC,OAAO,CAAC,mBAAmB;yCApDhB,iCAAiC;2CAAjC,iCAAiC;CA6D7C"}
@@ -1,9 +1,12 @@
1
1
  import { HttpClient, HttpResponse } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DocumentConversionApiService {
4
5
  private readonly httpClient;
5
6
  private documentConversionUrl;
6
7
  constructor(httpClient: HttpClient);
7
8
  convert(documentId: any): Observable<HttpResponse<Blob>>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DocumentConversionApiService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<DocumentConversionApiService>;
8
11
  }
9
12
  //# sourceMappingURL=document-conversion-api.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"document-conversion-api.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/document-conversion-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;AAGtC,qBACa,4BAA4B;IAI3B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAFvC,OAAO,CAAC,qBAAqB,CAA2B;gBAE3B,UAAU,EAAE,UAAU;IAE5C,OAAO,CAAC,UAAU,KAAA,GAAG,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;CAS3D"}
1
+ {"version":3,"file":"document-conversion-api.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/document-conversion-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;;AAGtC,qBACa,4BAA4B;IAI3B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAFvC,OAAO,CAAC,qBAAqB,CAA2B;gBAE3B,UAAU,EAAE,UAAU;IAE5C,OAAO,CAAC,UAAU,KAAA,GAAG,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;yCAN/C,4BAA4B;6CAA5B,4BAA4B;CAexC"}
@@ -1,4 +1,5 @@
1
1
  import { ElementRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class GrabNDragDirective {
3
4
  private el;
4
5
  originalPosition: {
@@ -12,5 +13,7 @@ export declare class GrabNDragDirective {
12
13
  onPointerDown(event: PointerEvent): void;
13
14
  onPointerMove(event: PointerEvent): void;
14
15
  onWindowPointerUp(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<GrabNDragDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GrabNDragDirective, "[mvGrabNDrag]", never, { "dragEnabled": "dragEnabled"; "dragX": "dragX"; }, {}, never, never, false, never>;
15
18
  }
16
19
  //# sourceMappingURL=grab-n-drag.directive.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"grab-n-drag.directive.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/grab-n-drag.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAuB,MAAM,eAAe,CAAC;AAG3E,qBAGa,kBAAkB;IAQjB,OAAO,CAAC,EAAE;IANtB,gBAAgB,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAChD,OAAO,CAAC,WAAW,CAAS;IAEnB,WAAW,UAAS;IACpB,KAAK,EAAE,OAAO,CAAC;gBAEJ,EAAE,EAAE,UAAU;IAIlC,aAAa,CAAC,KAAK,EAAE,YAAY;IAYjC,aAAa,CAAC,KAAK,EAAE,YAAY;IAcC,iBAAiB;CAGpD"}
1
+ {"version":3,"file":"grab-n-drag.directive.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/grab-n-drag.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAuB,MAAM,eAAe,CAAC;;AAG3E,qBAGa,kBAAkB;IAQjB,OAAO,CAAC,EAAE;IANtB,gBAAgB,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAChD,OAAO,CAAC,WAAW,CAAS;IAEnB,WAAW,UAAS;IACpB,KAAK,EAAE,OAAO,CAAC;gBAEJ,EAAE,EAAE,UAAU;IAIlC,aAAa,CAAC,KAAK,EAAE,YAAY;IAYjC,aAAa,CAAC,KAAK,EAAE,YAAY;IAcC,iBAAiB;yCAtCxC,kBAAkB;2CAAlB,kBAAkB;CAyC9B"}
@@ -8,6 +8,7 @@ import { ToolbarButtonVisibilityService } from '../../toolbar/toolbar-button-vis
8
8
  import { Store } from '@ngrx/store';
9
9
  import * as fromStore from '../../store/reducers/reducers';
10
10
  import { ViewerEventService } from '../viewer-event.service';
11
+ import * as i0 from "@angular/core";
11
12
  export declare class ImageViewerComponent implements OnInit, OnDestroy, OnChanges {
12
13
  private store;
13
14
  private readonly printService;
@@ -50,5 +51,7 @@ export declare class ImageViewerComponent implements OnInit, OnDestroy, OnChange
50
51
  onLoad(img: any): void;
51
52
  initAnnoPage(img: any): void;
52
53
  toggleCommentsSummary(): void;
54
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageViewerComponent, never>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageViewerComponent, "mv-image-viewer", never, { "url": "url"; "downloadFileName": "downloadFileName"; "enableAnnotations": "enableAnnotations"; "annotationSet": "annotationSet"; "height": "height"; }, { "mediaLoadStatus": "mediaLoadStatus"; "imageViewerException": "imageViewerException"; }, never, never, false, never>;
53
56
  }
54
57
  //# sourceMappingURL=image-viewer.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"image-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/image-viewer/image-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,YAAY,EAGZ,SAAS,EACT,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAG3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAE7D,qBAIa,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IA+BrE,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;aAClB,aAAa,EAAE,mBAAmB;aAClC,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,YAAY;IAlCb,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IAEzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,aAAa,EAAE,aAAa,GAAG,IAAI,CAAC;IAEpC,MAAM,EAAE,MAAM,CAAC;IAEd,eAAe,6BAAoC;IACnD,oBAAoB,gCAAuC;IAErE,YAAY,EAAE,MAAM,CAAC;IAEc,GAAG,EAAE,UAAU,CAAC;IACnD,QAAQ,SAAK;IACb,IAAI,SAAK;IAET,OAAO,CAAC,aAAa,CAAsB;IAC3C,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,QAAQ,CAAe;IAE/B,iBAAiB,EAAE,OAAO,CAAC;IAC3B,eAAe,UAAS;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;gBAGP,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,YAAY,EAAE,YAAY,EAC1B,iBAAiB,EAAE,iBAAiB,EACrC,aAAa,EAAE,mBAAmB,EAClC,cAAc,EAAE,8BAA8B,EACtD,YAAY,EAAE,kBAAkB;IAG1C,QAAQ,IAAI,IAAI;IAahB,kBAAkB,CAAC,KAAK,EAAE,UAAU;IAcpC,WAAW,IAAI,IAAI;IAQnB,WAAW,CAAC,OAAO,EAAE,aAAa;IAOlC,OAAO,CAAC,WAAW;YAKL,OAAO;YAQP,QAAQ;IAQtB,OAAO,CAAC,QAAQ;IAWhB,YAAY,CAAC,SAAS,KAAA;IAQtB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,SAAI;IAO3C,WAAW,CAAC,GAAG,KAAA;IAcf,MAAM,CAAC,GAAG,EAAE,GAAG;IAKf,YAAY,CAAC,GAAG,EAAE,GAAG;IAoBrB,qBAAqB;CAGtB"}
1
+ {"version":3,"file":"image-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/image-viewer/image-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,YAAY,EAGZ,SAAS,EACT,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAG3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;;AAE7D,qBAIa,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IA+BrE,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;aAClB,aAAa,EAAE,mBAAmB;aAClC,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,YAAY;IAlCb,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IAEzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,aAAa,EAAE,aAAa,GAAG,IAAI,CAAC;IAEpC,MAAM,EAAE,MAAM,CAAC;IAEd,eAAe,6BAAoC;IACnD,oBAAoB,gCAAuC;IAErE,YAAY,EAAE,MAAM,CAAC;IAEc,GAAG,EAAE,UAAU,CAAC;IACnD,QAAQ,SAAK;IACb,IAAI,SAAK;IAET,OAAO,CAAC,aAAa,CAAsB;IAC3C,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,QAAQ,CAAe;IAE/B,iBAAiB,EAAE,OAAO,CAAC;IAC3B,eAAe,UAAS;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;gBAGP,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,YAAY,EAAE,YAAY,EAC1B,iBAAiB,EAAE,iBAAiB,EACrC,aAAa,EAAE,mBAAmB,EAClC,cAAc,EAAE,8BAA8B,EACtD,YAAY,EAAE,kBAAkB;IAG1C,QAAQ,IAAI,IAAI;IAahB,kBAAkB,CAAC,KAAK,EAAE,UAAU;IAcpC,WAAW,IAAI,IAAI;IAQnB,WAAW,CAAC,OAAO,EAAE,aAAa;IAOlC,OAAO,CAAC,WAAW;YAKL,OAAO;YAQP,QAAQ;IAQtB,OAAO,CAAC,QAAQ;IAWhB,YAAY,CAAC,SAAS,KAAA;IAQtB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,SAAI;IAO3C,WAAW,CAAC,GAAG,KAAA;IAcf,MAAM,CAAC,GAAG,EAAE,GAAG;IAKf,YAAY,CAAC,GAAG,EAAE,GAAG;IAoBrB,qBAAqB;yCAvKV,oBAAoB;2CAApB,oBAAoB;CA0KhC"}
@@ -1,6 +1,7 @@
1
1
  import { ElementRef, OnInit, OnDestroy, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
3
3
  import { ResponseType } from '../viewer-exception.model';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class MultimediaPlayerComponent implements OnInit, OnChanges, OnDestroy {
5
6
  readonly toolbarEvents: ToolbarEventService;
6
7
  url: string;
@@ -18,5 +19,7 @@ export declare class MultimediaPlayerComponent implements OnInit, OnChanges, OnD
18
19
  reloadVideo(): void;
19
20
  onSuccess(): void;
20
21
  onError(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultimediaPlayerComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultimediaPlayerComponent, "mv-multimedia-player", never, { "url": "url"; "downloadFileName": "downloadFileName"; "multimediaOn": "multimediaOn"; }, { "loadStatus": "loadStatus"; }, never, never, false, never>;
21
24
  }
22
25
  //# sourceMappingURL=multimedia-player.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"multimedia-player.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/multimedia-player/multimedia-player.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAEV,MAAM,EAEN,SAAS,EAET,YAAY,EACZ,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzD,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;aAgB1D,aAAa,EAAE,mBAAmB;IAd3C,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,OAAO,CAAC;IAErB,UAAU,6BAAoC;IAEZ,YAAY,EAAE,UAAU,CAAC;IAC1B,WAAW,EAAE,UAAU,CAAC;IAEnE,WAAW,SAAa;IAExB,OAAO,CAAC,YAAY,CAAe;gBAGjB,aAAa,EAAE,mBAAmB;IAG7C,QAAQ,IAAI,IAAI;IAMhB,WAAW,CAAC,OAAO,EAAE,aAAa;IAMzC,WAAW,IAAI,IAAI;IAInB,WAAW;IAOX,SAAS;IAIT,OAAO;CAGR"}
1
+ {"version":3,"file":"multimedia-player.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/multimedia-player/multimedia-player.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAEV,MAAM,EAEN,SAAS,EAET,YAAY,EACZ,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;;AAEzD,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;aAgB1D,aAAa,EAAE,mBAAmB;IAd3C,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,OAAO,CAAC;IAErB,UAAU,6BAAoC;IAEZ,YAAY,EAAE,UAAU,CAAC;IAC1B,WAAW,EAAE,UAAU,CAAC;IAEnE,WAAW,SAAa;IAExB,OAAO,CAAC,YAAY,CAAe;gBAGjB,aAAa,EAAE,mBAAmB;IAG7C,QAAQ,IAAI,IAAI;IAMhB,WAAW,CAAC,OAAO,EAAE,aAAa;IAMzC,WAAW,IAAI,IAAI;IAInB,WAAW;IAOX,SAAS;IAIT,OAAO;yCA9CI,yBAAyB;2CAAzB,yBAAyB;CAiDrC"}
@@ -1,6 +1,7 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { PdfJsWrapper } from './pdf-js-wrapper';
3
3
  import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class PdfJsWrapperFactory {
5
6
  private readonly toolbarEvents;
6
7
  private linkService;
@@ -9,5 +10,7 @@ export declare class PdfJsWrapperFactory {
9
10
  constructor(toolbarEvents: ToolbarEventService);
10
11
  create(container: ElementRef): PdfJsWrapper;
11
12
  pdfWrapper(): PdfJsWrapper;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<PdfJsWrapperFactory, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<PdfJsWrapperFactory>;
12
15
  }
13
16
  //# sourceMappingURL=pdf-js-wrapper.provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"pdf-js-wrapper.provider.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAc,MAAM,eAAe,CAAC;AACvD,OAAO,EAAkC,YAAY,EAAC,MAAM,kBAAkB,CAAC;AAE/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAI7E,qBACa,mBAAmB;IAMlB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAJ1C,OAAO,CAAC,WAAW,CAA6B;IAChD,OAAO,CAAC,QAAQ,CAAuB;IACvC,OAAO,CAAC,YAAY,CAAe;gBAEN,aAAa,EAAE,mBAAmB;IAKxD,MAAM,CAAC,SAAS,EAAE,UAAU,GAAG,YAAY;IAiClD,UAAU;CAGX"}
1
+ {"version":3,"file":"pdf-js-wrapper.provider.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAc,MAAM,eAAe,CAAC;AACvD,OAAO,EAAkC,YAAY,EAAC,MAAM,kBAAkB,CAAC;AAE/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;;AAI7E,qBACa,mBAAmB;IAMlB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAJ1C,OAAO,CAAC,WAAW,CAA6B;IAChD,OAAO,CAAC,QAAQ,CAAuB;IACvC,OAAO,CAAC,YAAY,CAAe;gBAEN,aAAa,EAAE,mBAAmB;IAKxD,MAAM,CAAC,SAAS,EAAE,UAAU,GAAG,YAAY;IAiClD,UAAU;yCA5CC,mBAAmB;6CAAnB,mBAAmB;CA+C/B"}
@@ -12,6 +12,7 @@ import * as fromStore from '../../store/reducers/reducers';
12
12
  import { IcpState } from '../../icp/icp.interfaces';
13
13
  import { ViewerEventService } from '../viewer-event.service';
14
14
  import { IcpService } from '../../icp/icp.service';
15
+ import * as i0 from "@angular/core";
15
16
  export declare class PdfViewerComponent implements AfterContentInit, OnChanges, OnDestroy {
16
17
  private store;
17
18
  private icpStore;
@@ -72,5 +73,7 @@ export declare class PdfViewerComponent implements AfterContentInit, OnChanges,
72
73
  calculateZoomValue(zoomValue: any, increment?: number): number;
73
74
  private goToDestination;
74
75
  getCurrentPageNumber(): number;
76
+ static ɵfac: i0.ɵɵFactoryDeclaration<PdfViewerComponent, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<PdfViewerComponent, "mv-pdf-viewer", never, { "downloadUrl": "downloadUrl"; "url": "url"; "downloadFileName": "downloadFileName"; "enableAnnotations": "enableAnnotations"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "annotationSet": "annotationSet"; "enableRedactSearch": "enableRedactSearch"; "height": "height"; "caseId": "caseId"; "searchBarHidden": "searchBarHidden"; }, { "mediaLoadStatus": "mediaLoadStatus"; "pdfViewerException": "pdfViewerException"; "documentTitle": "documentTitle"; }, never, never, false, never>;
75
78
  }
76
79
  //# sourceMappingURL=pdf-viewer.component.d.ts.map