@hmcts/media-viewer 4.1.9-cme-776-angular-20 → 4.1.9

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 (372) hide show
  1. package/assets/all.scss +1 -0
  2. package/assets/sass/tooltip.scss +50 -0
  3. package/esm2022/hmcts-media-viewer.mjs +5 -0
  4. package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +122 -0
  5. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +120 -0
  6. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +101 -0
  7. package/esm2022/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
  8. package/esm2022/lib/annotations/annotation-set/annotation-set.model.mjs +2 -0
  9. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
  10. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation.model.mjs +2 -0
  11. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
  12. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.mjs +2 -0
  13. package/esm2022/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +119 -0
  14. package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +86 -0
  15. package/esm2022/lib/annotations/annotations.module.mjs +162 -0
  16. package/esm2022/lib/annotations/comment-set/comment/comment.component.mjs +178 -0
  17. package/esm2022/lib/annotations/comment-set/comment/comment.model.mjs +2 -0
  18. package/esm2022/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
  19. package/esm2022/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
  20. package/esm2022/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
  21. package/esm2022/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
  22. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +62 -0
  23. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +54 -0
  24. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +72 -0
  25. package/esm2022/lib/annotations/comment-set/comment-set-render.service.mjs +55 -0
  26. package/esm2022/lib/annotations/comment-set/comment-set.component.mjs +123 -0
  27. package/esm2022/lib/annotations/comments-summary/comments-summary.component.mjs +120 -0
  28. package/esm2022/lib/annotations/models/api-persisted.model.mjs +2 -0
  29. package/esm2022/lib/annotations/models/event-select.model.mjs +2 -0
  30. package/esm2022/lib/annotations/models/tags.model.mjs +2 -0
  31. package/esm2022/lib/annotations/models/user.model.mjs +2 -0
  32. package/esm2022/lib/annotations/pipes/date/date.pipe.mjs +26 -0
  33. package/esm2022/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
  34. package/esm2022/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
  35. package/esm2022/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
  36. package/esm2022/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
  37. package/esm2022/lib/annotations/services/tags/tags.services.mjs +41 -0
  38. package/esm2022/lib/annotations/tags/tags.component.mjs +53 -0
  39. package/esm2022/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
  40. package/esm2022/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
  41. package/esm2022/lib/icp/icp-follower.service.mjs +65 -0
  42. package/esm2022/lib/icp/icp-presenter.service.mjs +56 -0
  43. package/esm2022/lib/icp/icp-session-api.service.mjs +28 -0
  44. package/esm2022/lib/icp/icp-update.service.mjs +73 -0
  45. package/esm2022/lib/icp/icp.events.mjs +15 -0
  46. package/esm2022/lib/icp/icp.interfaces.mjs +2 -0
  47. package/esm2022/lib/icp/icp.service.mjs +98 -0
  48. package/esm2022/lib/icp/participants-list/participants-list.component.mjs +32 -0
  49. package/esm2022/lib/icp/socket.service.mjs +128 -0
  50. package/esm2022/lib/media-viewer.component.mjs +247 -0
  51. package/esm2022/lib/media-viewer.module.mjs +139 -0
  52. package/esm2022/lib/print.service.mjs +32 -0
  53. package/esm2022/lib/redaction/components/redaction.component.mjs +91 -0
  54. package/esm2022/lib/redaction/services/redaction-api.service.mjs +50 -0
  55. package/esm2022/lib/redaction/services/redaction.model.mjs +2 -0
  56. package/esm2022/lib/shared/directives/tooltip-dismiss.directive.mjs +36 -0
  57. package/esm2022/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
  58. package/esm2022/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
  59. package/esm2022/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
  60. package/esm2022/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
  61. package/esm2022/lib/shared/shared.module.mjs +53 -0
  62. package/esm2022/lib/shared/util/helpers/html-templates.helper.mjs +29 -0
  63. package/esm2022/lib/shared/util/services/number.helper.service.mjs +23 -0
  64. package/esm2022/lib/store/actions/annotation.actions.mjs +119 -0
  65. package/esm2022/lib/store/actions/bookmark.actions.mjs +112 -0
  66. package/esm2022/lib/store/actions/document.actions.mjs +91 -0
  67. package/esm2022/lib/store/actions/icp.actions.mjs +56 -0
  68. package/esm2022/lib/store/actions/redaction.actions.mjs +132 -0
  69. package/esm2022/lib/store/actions/tag.actions.mjs +21 -0
  70. package/esm2022/lib/store/bookmarks-store-utils.mjs +49 -0
  71. package/esm2022/lib/store/effects/annotation.effects.mjs +51 -0
  72. package/esm2022/lib/store/effects/bookmarks.effects.mjs +44 -0
  73. package/esm2022/lib/store/effects/document.effects.mjs +44 -0
  74. package/esm2022/lib/store/effects/icp.effects.mjs +26 -0
  75. package/esm2022/lib/store/effects/index.mjs +7 -0
  76. package/esm2022/lib/store/effects/redaction.effects.mjs +67 -0
  77. package/esm2022/lib/store/models/bookmarks.interface.mjs +2 -0
  78. package/esm2022/lib/store/models/filters.interface.mjs +2 -0
  79. package/esm2022/lib/store/reducers/annotations.reducer.mjs +208 -0
  80. package/esm2022/lib/store/reducers/bookmarks.reducer.mjs +125 -0
  81. package/esm2022/lib/store/reducers/document.reducer.mjs +158 -0
  82. package/esm2022/lib/store/reducers/icp.reducer.mjs +56 -0
  83. package/esm2022/lib/store/reducers/redaction.reducer.mjs +116 -0
  84. package/esm2022/lib/store/reducers/reducers.mjs +23 -0
  85. package/esm2022/lib/store/reducers/tags.reducer.mjs +93 -0
  86. package/esm2022/lib/store/selectors/annotation.selectors.mjs +81 -0
  87. package/esm2022/lib/store/selectors/bookmark.selectors.mjs +37 -0
  88. package/esm2022/lib/store/selectors/document.selectors.mjs +13 -0
  89. package/esm2022/lib/store/selectors/icp.selectors.mjs +13 -0
  90. package/esm2022/lib/store/selectors/redaction.selectors.mjs +26 -0
  91. package/esm2022/lib/store/selectors/tag.selectors.mjs +15 -0
  92. package/esm2022/lib/store/store-utils.mjs +131 -0
  93. package/esm2022/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +46 -0
  94. package/esm2022/lib/toolbar/icp-event.service.mjs +44 -0
  95. package/esm2022/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +43 -0
  96. package/esm2022/lib/toolbar/main-toolbar/main-toolbar.component.mjs +207 -0
  97. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +237 -0
  98. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search.model.mjs +2 -0
  99. package/esm2022/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +69 -0
  100. package/esm2022/lib/toolbar/search-bar/search-bar.component.mjs +109 -0
  101. package/esm2022/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
  102. package/esm2022/lib/toolbar/toolbar-event.service.mjs +178 -0
  103. package/esm2022/lib/toolbar/toolbar.module.mjs +75 -0
  104. package/esm2022/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +82 -0
  105. package/esm2022/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
  106. package/esm2022/lib/viewers/grab-n-drag.directive.mjs +57 -0
  107. package/esm2022/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
  108. package/esm2022/lib/viewers/multimedia-player/multimedia-player.component.mjs +59 -0
  109. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +266 -0
  110. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
  111. package/esm2022/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +242 -0
  112. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +379 -0
  113. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.mjs +2 -0
  114. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
  115. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.mjs +2 -0
  116. package/esm2022/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +99 -0
  117. package/esm2022/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
  118. package/esm2022/lib/viewers/rotation-persist/rotation-persist.directive.mjs +61 -0
  119. package/esm2022/lib/viewers/rotation-persist/rotation.model.mjs +2 -0
  120. package/esm2022/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
  121. package/esm2022/lib/viewers/viewer-event.service.mjs +34 -0
  122. package/esm2022/lib/viewers/viewer-exception.model.mjs +13 -0
  123. package/esm2022/lib/viewers/viewer-util.service.mjs +20 -0
  124. package/esm2022/public_api.mjs +33 -0
  125. package/fesm2022/hmcts-media-viewer.mjs +320 -295
  126. package/fesm2022/hmcts-media-viewer.mjs.map +1 -1
  127. package/hmcts-media-viewer.d.ts.map +1 -0
  128. package/index.d.ts +4 -2305
  129. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +48 -0
  130. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -0
  131. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +32 -0
  132. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -0
  133. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +18 -0
  134. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -0
  135. package/lib/annotations/annotation-set/annotation-set.component.d.ts +27 -0
  136. package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -0
  137. package/lib/annotations/annotation-set/annotation-set.model.d.ts +7 -0
  138. package/lib/annotations/annotation-set/annotation-set.model.d.ts.map +1 -0
  139. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +34 -0
  140. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -0
  141. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts +16 -0
  142. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts.map +1 -0
  143. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +41 -0
  144. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -0
  145. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts +9 -0
  146. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts.map +1 -0
  147. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +37 -0
  148. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -0
  149. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +37 -0
  150. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -0
  151. package/lib/annotations/annotations.module.d.ts +36 -0
  152. package/lib/annotations/annotations.module.d.ts.map +1 -0
  153. package/lib/annotations/comment-set/comment/comment.component.d.ts +69 -0
  154. package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -0
  155. package/lib/annotations/comment-set/comment/comment.model.d.ts +13 -0
  156. package/lib/annotations/comment-set/comment/comment.model.d.ts.map +1 -0
  157. package/lib/annotations/comment-set/comment/comment.service.d.ts +22 -0
  158. package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -0
  159. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +14 -0
  160. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -0
  161. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +12 -0
  162. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -0
  163. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +28 -0
  164. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -0
  165. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +26 -0
  166. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -0
  167. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +21 -0
  168. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -0
  169. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +36 -0
  170. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -0
  171. package/lib/annotations/comment-set/comment-set-render.service.d.ts +15 -0
  172. package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -0
  173. package/lib/annotations/comment-set/comment-set.component.d.ts +56 -0
  174. package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -0
  175. package/lib/annotations/comments-summary/comments-summary.component.d.ts +42 -0
  176. package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -0
  177. package/lib/annotations/models/api-persisted.model.d.ts +11 -0
  178. package/lib/annotations/models/api-persisted.model.d.ts.map +1 -0
  179. package/lib/annotations/models/event-select.model.d.ts +6 -0
  180. package/lib/annotations/models/event-select.model.d.ts.map +1 -0
  181. package/lib/annotations/models/tags.model.d.ts +7 -0
  182. package/lib/annotations/models/tags.model.d.ts.map +1 -0
  183. package/lib/annotations/models/user.model.d.ts +6 -0
  184. package/lib/annotations/models/user.model.d.ts.map +1 -0
  185. package/lib/annotations/pipes/date/date.pipe.d.ts +16 -0
  186. package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -0
  187. package/lib/annotations/pipes/filter/filter.pipe.d.ts +8 -0
  188. package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -0
  189. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +8 -0
  190. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -0
  191. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +28 -0
  192. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -0
  193. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +21 -0
  194. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -0
  195. package/lib/annotations/services/tags/tags.services.d.ts +18 -0
  196. package/lib/annotations/services/tags/tags.services.d.ts.map +1 -0
  197. package/lib/annotations/tags/tags.component.d.ts +28 -0
  198. package/lib/annotations/tags/tags.component.d.ts.map +1 -0
  199. package/lib/bookmark/components/bookmark-icons.component.d.ts +19 -0
  200. package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -0
  201. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +11 -0
  202. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -0
  203. package/lib/icp/icp-follower.service.d.ts +26 -0
  204. package/lib/icp/icp-follower.service.d.ts.map +1 -0
  205. package/lib/icp/icp-presenter.service.d.ts +25 -0
  206. package/lib/icp/icp-presenter.service.d.ts.map +1 -0
  207. package/lib/icp/icp-session-api.service.d.ts +15 -0
  208. package/lib/icp/icp-session-api.service.d.ts.map +1 -0
  209. package/lib/icp/icp-update.service.d.ts +22 -0
  210. package/lib/icp/icp-update.service.d.ts.map +1 -0
  211. package/lib/icp/icp.events.d.ts +14 -0
  212. package/lib/icp/icp.events.d.ts.map +1 -0
  213. package/lib/icp/icp.interfaces.d.ts +23 -0
  214. package/lib/icp/icp.interfaces.d.ts.map +1 -0
  215. package/lib/icp/icp.service.d.ts +40 -0
  216. package/lib/icp/icp.service.d.ts.map +1 -0
  217. package/lib/icp/participants-list/participants-list.component.d.ts +23 -0
  218. package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -0
  219. package/lib/icp/socket.service.d.ts +29 -0
  220. package/lib/icp/socket.service.d.ts.map +1 -0
  221. package/lib/media-viewer.component.d.ts +72 -0
  222. package/lib/media-viewer.component.d.ts.map +1 -0
  223. package/lib/media-viewer.module.d.ts +36 -0
  224. package/lib/media-viewer.module.d.ts.map +1 -0
  225. package/lib/print.service.d.ts +8 -0
  226. package/lib/print.service.d.ts.map +1 -0
  227. package/lib/redaction/components/redaction.component.d.ts +42 -0
  228. package/lib/redaction/components/redaction.component.d.ts.map +1 -0
  229. package/lib/redaction/services/redaction-api.service.d.ts +20 -0
  230. package/lib/redaction/services/redaction-api.service.d.ts.map +1 -0
  231. package/lib/redaction/services/redaction.model.d.ts +11 -0
  232. package/lib/redaction/services/redaction.model.d.ts.map +1 -0
  233. package/lib/shared/directives/tooltip-dismiss.directive.d.ts +11 -0
  234. package/lib/shared/directives/tooltip-dismiss.directive.d.ts.map +1 -0
  235. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +15 -0
  236. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -0
  237. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +11 -0
  238. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -0
  239. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +16 -0
  240. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -0
  241. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +14 -0
  242. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -0
  243. package/lib/shared/shared.module.d.ts +14 -0
  244. package/lib/shared/shared.module.d.ts.map +1 -0
  245. package/lib/shared/util/helpers/html-templates.helper.d.ts +9 -0
  246. package/lib/shared/util/helpers/html-templates.helper.d.ts.map +1 -0
  247. package/lib/shared/util/services/number.helper.service.d.ts +11 -0
  248. package/lib/shared/util/services/number.helper.service.d.ts.map +1 -0
  249. package/lib/store/actions/annotation.actions.d.ts +126 -0
  250. package/lib/store/actions/annotation.actions.d.ts.map +1 -0
  251. package/lib/store/actions/bookmark.actions.d.ts +117 -0
  252. package/lib/store/actions/bookmark.actions.d.ts.map +1 -0
  253. package/lib/store/actions/document.actions.d.ts +90 -0
  254. package/lib/store/actions/document.actions.d.ts.map +1 -0
  255. package/lib/store/actions/icp.actions.d.ts +75 -0
  256. package/lib/store/actions/icp.actions.d.ts.map +1 -0
  257. package/lib/store/actions/redaction.actions.d.ts +127 -0
  258. package/lib/store/actions/redaction.actions.d.ts.map +1 -0
  259. package/lib/store/actions/tag.actions.d.ts +30 -0
  260. package/lib/store/actions/tag.actions.d.ts.map +1 -0
  261. package/lib/store/bookmarks-store-utils.d.ts +9 -0
  262. package/lib/store/bookmarks-store-utils.d.ts.map +1 -0
  263. package/lib/store/effects/annotation.effects.d.ts +16 -0
  264. package/lib/store/effects/annotation.effects.d.ts.map +1 -0
  265. package/lib/store/effects/bookmarks.effects.d.ts +21 -0
  266. package/lib/store/effects/bookmarks.effects.d.ts.map +1 -0
  267. package/lib/store/effects/document.effects.d.ts +17 -0
  268. package/lib/store/effects/document.effects.d.ts.map +1 -0
  269. package/lib/store/effects/icp.effects.d.ts +16 -0
  270. package/lib/store/effects/icp.effects.d.ts.map +1 -0
  271. package/lib/store/effects/index.d.ts +2 -0
  272. package/lib/store/effects/index.d.ts.map +1 -0
  273. package/lib/store/effects/redaction.effects.d.ts +20 -0
  274. package/lib/store/effects/redaction.effects.d.ts.map +1 -0
  275. package/lib/store/models/bookmarks.interface.d.ts +31 -0
  276. package/lib/store/models/bookmarks.interface.d.ts.map +1 -0
  277. package/lib/store/models/filters.interface.d.ts +8 -0
  278. package/lib/store/models/filters.interface.d.ts.map +1 -0
  279. package/lib/store/reducers/annotations.reducer.d.ts +48 -0
  280. package/lib/store/reducers/annotations.reducer.d.ts.map +1 -0
  281. package/lib/store/reducers/bookmarks.reducer.d.ts +27 -0
  282. package/lib/store/reducers/bookmarks.reducer.d.ts.map +1 -0
  283. package/lib/store/reducers/document.reducer.d.ts +52 -0
  284. package/lib/store/reducers/document.reducer.d.ts.map +1 -0
  285. package/lib/store/reducers/icp.reducer.d.ts +9 -0
  286. package/lib/store/reducers/icp.reducer.d.ts.map +1 -0
  287. package/lib/store/reducers/redaction.reducer.d.ts +32 -0
  288. package/lib/store/reducers/redaction.reducer.d.ts.map +1 -0
  289. package/lib/store/reducers/reducers.d.ts +24 -0
  290. package/lib/store/reducers/reducers.d.ts.map +1 -0
  291. package/lib/store/reducers/tags.reducer.d.ts +32 -0
  292. package/lib/store/reducers/tags.reducer.d.ts.map +1 -0
  293. package/lib/store/selectors/annotation.selectors.d.ts +136 -0
  294. package/lib/store/selectors/annotation.selectors.d.ts.map +1 -0
  295. package/lib/store/selectors/bookmark.selectors.d.ts +38 -0
  296. package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -0
  297. package/lib/store/selectors/document.selectors.d.ts +23 -0
  298. package/lib/store/selectors/document.selectors.d.ts.map +1 -0
  299. package/lib/store/selectors/icp.selectors.d.ts +10 -0
  300. package/lib/store/selectors/icp.selectors.d.ts.map +1 -0
  301. package/lib/store/selectors/redaction.selectors.d.ts +35 -0
  302. package/lib/store/selectors/redaction.selectors.d.ts.map +1 -0
  303. package/lib/store/selectors/tag.selectors.d.ts +28 -0
  304. package/lib/store/selectors/tag.selectors.d.ts.map +1 -0
  305. package/lib/store/store-utils.d.ts +25 -0
  306. package/lib/store/store-utils.d.ts.map +1 -0
  307. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts +20 -0
  308. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts.map +1 -0
  309. package/lib/toolbar/icp-event.service.d.ts +21 -0
  310. package/lib/toolbar/icp-event.service.d.ts.map +1 -0
  311. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +24 -0
  312. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -0
  313. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +69 -0
  314. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -0
  315. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +60 -0
  316. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -0
  317. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts +12 -0
  318. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts.map +1 -0
  319. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +30 -0
  320. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -0
  321. package/lib/toolbar/search-bar/search-bar.component.d.ts +34 -0
  322. package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -0
  323. package/lib/toolbar/toolbar-button-visibility.service.d.ts +67 -0
  324. package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -0
  325. package/lib/toolbar/toolbar-event.service.d.ts +96 -0
  326. package/lib/toolbar/toolbar-event.service.d.ts.map +1 -0
  327. package/lib/toolbar/toolbar.module.d.ts +20 -0
  328. package/lib/toolbar/toolbar.module.d.ts.map +1 -0
  329. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +31 -0
  330. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -0
  331. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +12 -0
  332. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -0
  333. package/lib/viewers/grab-n-drag.directive.d.ts +19 -0
  334. package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -0
  335. package/lib/viewers/image-viewer/image-viewer.component.d.ts +57 -0
  336. package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -0
  337. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +25 -0
  338. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -0
  339. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts +69 -0
  340. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts.map +1 -0
  341. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +17 -0
  342. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -0
  343. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +82 -0
  344. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -0
  345. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +82 -0
  346. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -0
  347. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts +22 -0
  348. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts.map +1 -0
  349. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +20 -0
  350. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -0
  351. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts +14 -0
  352. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts.map +1 -0
  353. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +42 -0
  354. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -0
  355. package/lib/viewers/rotation-persist/rotation-api.service.d.ts +14 -0
  356. package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -0
  357. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +27 -0
  358. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -0
  359. package/lib/viewers/rotation-persist/rotation.model.d.ts +5 -0
  360. package/lib/viewers/rotation-persist/rotation.model.d.ts.map +1 -0
  361. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +23 -0
  362. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -0
  363. package/lib/viewers/viewer-event.service.d.ts +23 -0
  364. package/lib/viewers/viewer-event.service.d.ts.map +1 -0
  365. package/lib/viewers/viewer-exception.model.d.ts +15 -0
  366. package/lib/viewers/viewer-exception.model.d.ts.map +1 -0
  367. package/lib/viewers/viewer-util.service.d.ts +10 -0
  368. package/lib/viewers/viewer-util.service.d.ts.map +1 -0
  369. package/package.json +12 -10
  370. package/public_api.d.ts +30 -0
  371. package/public_api.d.ts.map +1 -0
  372. package/index.d.ts.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icp-update.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp-update.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;;AAG/E,qBACa,gBAAgB;IAIf,OAAO,CAAC,MAAM;IAF1B,OAAO,EAAE,UAAU,CAAC;gBAEA,MAAM,EAAE,aAAa;IAEzC,OAAO,CAAC,uBAAuB,CAAM;IAErC,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM;IAchE,YAAY;IAQZ,oBAAoB;IAIpB,kBAAkB;IAIlB,iBAAiB,CAAC,aAAa,KAAA;IAQ/B,sBAAsB;IAItB,eAAe,CAAC,SAAS,EAAE,cAAc;IAQzC,gBAAgB;IAIhB,YAAY,CAAC,MAAM,EAAE,eAAe;IASpC,aAAa;yCAvEF,gBAAgB;6CAAhB,gBAAgB;CA0E5B"}
@@ -0,0 +1,14 @@
1
+ export declare enum IcpEvents {
2
+ SESSION_JOINED = "IcpClientJoinedSession",
3
+ CLIENT_DISCONNECTED = "IcpClientDisconnectedFromSession",
4
+ NEW_PARTICIPANT_JOINED = "IcpNewParticipantJoinedSession",
5
+ REMOVE_PARTICIPANT = "IcpRemoveParticipantFromList",
6
+ PARTICIPANTS_UPDATED = "IcpParticipantsListUpdated",
7
+ UPDATE_PRESENTER = "IcpNewPresenterStartsPresenting",
8
+ PRESENTER_UPDATED = "IcpPresenterUpdated",
9
+ UPDATE_SCREEN = "IcpUpdateScreen",
10
+ SCREEN_UPDATED = "IcpScreenUpdated",
11
+ SESSION_JOIN = "IcpClientJoinSession",
12
+ SESSION_LEAVE = "IcpClientLeaveSession"
13
+ }
14
+ //# sourceMappingURL=icp.events.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icp.events.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp.events.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,cAAc,2BAA2B;IACzC,mBAAmB,qCAAqC;IACxD,sBAAsB,mCAAmC;IACzD,kBAAkB,iCAAiC;IACnD,oBAAoB,+BAA+B;IACnD,gBAAgB,oCAAoC;IACpD,iBAAiB,wBAAwB;IACzC,aAAa,oBAAoB;IACjC,cAAc,qBAAqB;IACnC,YAAY,yBAAyB;IACrC,aAAa,0BAA0B;CACxC"}
@@ -0,0 +1,23 @@
1
+ import { PdfPosition } from '../store/reducers/document.reducer';
2
+ export interface IcpState {
3
+ session: IcpSession;
4
+ presenter: IcpParticipant;
5
+ client: IcpParticipant;
6
+ participants: IcpParticipant[];
7
+ }
8
+ export interface IcpSession {
9
+ sessionId: string;
10
+ documentId: string;
11
+ caseId: string;
12
+ dateOfHearing: Date;
13
+ connectionUrl: string;
14
+ }
15
+ export interface IcpParticipant {
16
+ id: string;
17
+ username: string;
18
+ }
19
+ export interface IcpScreenUpdate {
20
+ pdfPosition: PdfPosition;
21
+ document: string;
22
+ }
23
+ //# sourceMappingURL=icp.interfaces.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icp.interfaces.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp.interfaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAEjE,MAAM,WAAW,QAAQ;IACvB,OAAO,EAAE,UAAU,CAAC;IACpB,SAAS,EAAE,cAAc,CAAC;IAC1B,MAAM,EAAE,cAAc,CAAC;IACvB,YAAY,EAAE,cAAc,EAAE,CAAC;CAChC;AAED,MAAM,WAAW,UAAU;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,IAAI,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,eAAe;IAC9B,WAAW,EAAE,WAAW,CAAC;IACzB,QAAQ,EAAE,MAAM,CAAC;CAClB"}
@@ -0,0 +1,40 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { IcpParticipant, IcpState } from './icp.interfaces';
3
+ import { Subscription } from 'rxjs';
4
+ import { ToolbarEventService } from '../toolbar/toolbar-event.service';
5
+ import { ViewerEventService } from '../viewers/viewer-event.service';
6
+ import { IcpUpdateService } from './icp-update.service';
7
+ import { IcpPresenterService } from './icp-presenter.service';
8
+ import { IcpFollowerService } from './icp-follower.service';
9
+ import { Store } from '@ngrx/store';
10
+ import { IcpEventService } from '../toolbar/icp-event.service';
11
+ import * as i0 from "@angular/core";
12
+ export declare class IcpService implements OnDestroy {
13
+ private readonly toolbarEvents;
14
+ private readonly viewerEvents;
15
+ private readonly socketService;
16
+ private readonly presenterSubscriptions;
17
+ private readonly followerSubscriptions;
18
+ private store;
19
+ private readonly icpEventService;
20
+ caseId: string;
21
+ client: IcpParticipant;
22
+ presenter: IcpParticipant;
23
+ isPresenter: boolean;
24
+ documentId: string;
25
+ subscription: Subscription;
26
+ sessionSubscription: Subscription;
27
+ constructor(toolbarEvents: ToolbarEventService, viewerEvents: ViewerEventService, socketService: IcpUpdateService, presenterSubscriptions: IcpPresenterService, followerSubscriptions: IcpFollowerService, store: Store<IcpState>, icpEventService: IcpEventService);
28
+ ngOnDestroy(): void;
29
+ launchSession(): void;
30
+ setUpSessionSubscriptions(): void;
31
+ unsubscribeSession(): void;
32
+ leavePresentation(): void;
33
+ stopPresenting(): void;
34
+ becomePresenter(): void;
35
+ clientDisconnected(client: any): void;
36
+ removeParticipant(participantId: any): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpService, never>;
38
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpService>;
39
+ }
40
+ //# sourceMappingURL=icp.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icp.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAK5C,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;;AAE/D,qBACa,UAAW,YAAW,SAAS;IAW9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IACvC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,eAAe;IAflC,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,cAAc,CAAC;IACvB,SAAS,EAAE,cAAc,CAAC;IAC1B,WAAW,EAAE,OAAO,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IAEnB,YAAY,EAAE,YAAY,CAAC;IAC3B,mBAAmB,EAAE,YAAY,CAAC;gBAEL,aAAa,EAAE,mBAAmB,EAC5C,YAAY,EAAE,kBAAkB,EAChC,aAAa,EAAE,gBAAgB,EAC/B,sBAAsB,EAAE,mBAAmB,EAC3C,qBAAqB,EAAE,kBAAkB,EAClD,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC,EACb,eAAe,EAAE,eAAe;IAWnD,WAAW;IAKX,aAAa;IAOb,yBAAyB;IAsBzB,kBAAkB;IAMlB,iBAAiB;IAUjB,cAAc;IAKd,eAAe;IAIf,kBAAkB,CAAC,MAAM,KAAA;IAOzB,iBAAiB,CAAC,aAAa,KAAA;yCA9FpB,UAAU;6CAAV,UAAU;CAiGtB"}
@@ -0,0 +1,23 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Observable, Subscription } from 'rxjs';
3
+ import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
4
+ import { IcpParticipant, IcpState } from '../icp.interfaces';
5
+ import { Store } from '@ngrx/store';
6
+ import { IcpEventService } from '../../toolbar/icp-event.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ParticipantsListComponent implements OnInit, OnDestroy {
9
+ private readonly toolbarEvents;
10
+ private store;
11
+ private readonly icpEventService;
12
+ subscription: Subscription;
13
+ participants$: Observable<IcpParticipant[]>;
14
+ presenter$: Observable<IcpParticipant>;
15
+ isPresenter$: Observable<boolean>;
16
+ showParticipantsList: boolean;
17
+ constructor(toolbarEvents: ToolbarEventService, store: Store<IcpState>, icpEventService: IcpEventService);
18
+ ngOnInit(): void;
19
+ ngOnDestroy(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ParticipantsListComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParticipantsListComponent, "mv-participants-list", never, {}, {}, never, never, false, never>;
22
+ }
23
+ //# sourceMappingURL=participants-list.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"participants-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/icp/participants-list/participants-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAChD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;;AAElE,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;IASrD,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,eAAe;IAT5C,YAAY,EAAE,YAAY,CAAC;IAC3B,aAAa,EAAE,UAAU,CAAC,cAAc,EAAE,CAAC,CAAC;IAC5C,UAAU,EAAE,UAAU,CAAC,cAAc,CAAC,CAAC;IACvC,YAAY,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAElC,oBAAoB,UAAS;gBAEA,aAAa,EAAE,mBAAmB,EAC3C,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC,EACb,eAAe,EAAE,eAAe;IAE7D,QAAQ;IAQR,WAAW;yCArBA,yBAAyB;2CAAzB,yBAAyB;CAwBrC"}
@@ -0,0 +1,29 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { BehaviorSubject, Observable, Subject, Subscription } from 'rxjs';
3
+ import { IcpEvents } from './icp.events';
4
+ import { IcpSession } from './icp.interfaces';
5
+ import * as i0 from "@angular/core";
6
+ export declare class SocketService implements OnDestroy {
7
+ private socket;
8
+ subscription: Subscription;
9
+ connected$: BehaviorSubject<boolean>;
10
+ sessionJoined$: Subject<void>;
11
+ presenterUpdated$: Subject<void>;
12
+ clientDisconnected$: Subject<void>;
13
+ participantUpdated$: Subject<void>;
14
+ newParticipantJoined$: Subject<void>;
15
+ screenUpdated$: Subject<void>;
16
+ constructor();
17
+ ngOnDestroy(): void;
18
+ connect(url: string, session: IcpSession): void;
19
+ connected(): Observable<boolean>;
20
+ join(session: any): void;
21
+ leave(session: any): void;
22
+ emit(event: string, data: any): void;
23
+ listen(event: IcpEvents): Observable<any>;
24
+ messageEventHandller(eventName: string, data: any): void;
25
+ getSocketClient(url: string): Observable<WebSocket>;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<SocketService, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<SocketService>;
28
+ }
29
+ //# sourceMappingURL=socket.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"socket.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/socket.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,eAAe,EAAQ,UAAU,EAAM,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAkB,UAAU,EAAE,MAAM,kBAAkB,CAAC;;AAE9D,qBACa,aAAc,YAAW,SAAS;IAE7C,OAAO,CAAC,MAAM,CAAY;IAC1B,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,2BAAuC;IACjD,cAAc,gBAAuB;IACrC,iBAAiB,gBAAuB;IACxC,mBAAmB,gBAAuB;IAC1C,mBAAmB,gBAAuB;IAC1C,qBAAqB,gBAAuB;IAC5C,cAAc,gBAAuB;;IAIrC,WAAW;IAIX,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU;IA6BxC,SAAS,IAAI,UAAU,CAAC,OAAO,CAAC;IAIhC,IAAI,CAAC,OAAO,KAAA;IAIZ,KAAK,CAAC,OAAO,KAAA;IAKb,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IAY7B,MAAM,CAAC,KAAK,EAAE,SAAS,GAAG,UAAU,CAAC,GAAG,CAAC;IA0BzC,oBAAoB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IA6BjD,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC;yCA/HxC,aAAa;6CAAb,aAAa;CAmIzB"}
@@ -0,0 +1,72 @@
1
+ import { AfterContentInit, AfterViewChecked, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { ToolbarButtonVisibilityService } from './toolbar/toolbar-button-visibility.service';
4
+ import { AnnotationSet } from './annotations/annotation-set/annotation-set.model';
5
+ import { ToolbarEventService } from './toolbar/toolbar-event.service';
6
+ import { AnnotationApiService } from './annotations/services/annotation-api/annotation-api.service';
7
+ import { ResponseType, ViewerException } from './viewers/viewer-exception.model';
8
+ import { CommentService } from './annotations/comment-set/comment/comment.service';
9
+ import { Store } from '@ngrx/store';
10
+ import * as fromStore from './store/reducers/reducers';
11
+ import { IcpEventService } from './toolbar/icp-event.service';
12
+ import * as i0 from "@angular/core";
13
+ export declare class MediaViewerComponent implements OnChanges, OnDestroy, AfterContentInit, AfterViewChecked {
14
+ private store;
15
+ readonly toolbarButtons: ToolbarButtonVisibilityService;
16
+ readonly toolbarEvents: ToolbarEventService;
17
+ private readonly api;
18
+ private readonly commentService;
19
+ private elRef;
20
+ private cdr;
21
+ icpEventService: IcpEventService;
22
+ viewerRef: ElementRef;
23
+ url: any;
24
+ downloadFileName: string;
25
+ contentType: string;
26
+ showToolbar: boolean;
27
+ toolbarButtonOverrides: any;
28
+ height: string;
29
+ viewerHeight: string;
30
+ width: string;
31
+ mediaLoadStatus: EventEmitter<ResponseType>;
32
+ viewerException: EventEmitter<ViewerException>;
33
+ toolbarEventsOutput: EventEmitter<ToolbarEventService>;
34
+ unsavedChanges: EventEmitter<boolean>;
35
+ enableAnnotations: boolean;
36
+ annotationApiUrl: any;
37
+ enableRedactions: boolean;
38
+ enableICP: boolean;
39
+ multimediaPlayerEnabled: boolean;
40
+ enableRedactSearch: boolean;
41
+ caseId: string;
42
+ multimediaContent: boolean;
43
+ convertibleContent: boolean;
44
+ unsupportedContent: boolean;
45
+ documentTitle: string;
46
+ showCommentSummary: boolean;
47
+ annotationSet$: Observable<AnnotationSet | {}>;
48
+ hasScrollBar: boolean;
49
+ typeException: boolean;
50
+ hasDifferentPageSize$: Observable<boolean>;
51
+ documentId: string;
52
+ private $subscriptions;
53
+ private prevOffset;
54
+ constructor(store: Store<fromStore.AnnotationSetState>, toolbarButtons: ToolbarButtonVisibilityService, toolbarEvents: ToolbarEventService, api: AnnotationApiService, commentService: CommentService, elRef: ElementRef, cdr: ChangeDetectorRef, icpEventService: IcpEventService);
55
+ ngAfterContentInit(): void;
56
+ ngAfterViewChecked(): void;
57
+ ngOnChanges(changes: SimpleChanges): void;
58
+ ngOnDestroy(): void;
59
+ needsConverting(): boolean;
60
+ isMultimedia(): boolean;
61
+ isSupported(): boolean;
62
+ onMediaLoad(status: ResponseType): void;
63
+ setToolbarButtons(): void;
64
+ onLoadException(exception: ViewerException): void;
65
+ onCommentChange(changes: boolean): void;
66
+ onDocumentTitleChange(title: string): void;
67
+ private extractDMStoreDocId;
68
+ detectOs(): void;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<MediaViewerComponent, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<MediaViewerComponent, "mv-media-viewer", never, { "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "toolbarButtonOverrides": { "alias": "toolbarButtonOverrides"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "enableAnnotations": { "alias": "enableAnnotations"; "required": false; }; "annotationApiUrl": { "alias": "annotationApiUrl"; "required": false; }; "enableRedactions": { "alias": "enableRedactions"; "required": false; }; "enableICP": { "alias": "enableICP"; "required": false; }; "multimediaPlayerEnabled": { "alias": "multimediaPlayerEnabled"; "required": false; }; "enableRedactSearch": { "alias": "enableRedactSearch"; "required": false; }; "caseId": { "alias": "caseId"; "required": false; }; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "toolbarEventsOutput": "toolbarEventsOutput"; "unsavedChanges": "unsavedChanges"; }, never, never, false, never>;
71
+ }
72
+ //# sourceMappingURL=media-viewer.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"media-viewer.component.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAAE,gBAAgB,EAClC,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EAET,aAAa,EAGd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAIL,8BAA8B,EAC/B,MAAM,6CAA6C,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,mDAAmD,CAAC;AAClF,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,8DAA8D,CAAC;AACpG,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,cAAc,EAAE,MAAM,mDAAmD,CAAC;AACnF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,2BAA2B,CAAC;AAMvD,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;;AAqB9D,qBAKa,oBAAqB,YAAW,SAAS,EAAE,SAAS,EAAE,gBAAgB,EAAE,gBAAgB;IAiDjG,OAAO,CAAC,KAAK;aACG,cAAc,EAAE,8BAA8B;aAC9C,aAAa,EAAE,mBAAmB;IAClD,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,GAAG;IACJ,eAAe,EAAE,eAAe;IAtDA,SAAS,EAAE,UAAU,CAAC;IAEtD,GAAG,MAAC;IACJ,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;IAEpB,WAAW,UAAQ;IACnB,sBAAsB,EAAE,GAAG,CAAM;IAGnC,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;IAEnB,KAAK,SAAU;IAEd,eAAe,6BAAoC;IACnD,eAAe,gCAAuC;IACtD,mBAAmB,oCAA2C;IAC9D,cAAc,wBAA+B;IAE9C,iBAAiB,UAAS;IAC1B,gBAAgB,MAAC;IAEjB,gBAAgB,UAAS;IACzB,SAAS,UAAS;IAClB,uBAAuB,UAAS;IAChC,kBAAkB,UAAS;IAG3B,MAAM,EAAE,MAAM,CAAC;IAExB,iBAAiB,UAAS;IAC1B,kBAAkB,UAAS;IAC3B,kBAAkB,UAAS;IAE3B,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,cAAc,EAAE,UAAU,CAAC,aAAa,GAAG,EAAE,CAAC,CAAC;IAC/C,YAAY,EAAE,OAAO,CAAC;IACtB,aAAa,UAAS;IACtB,qBAAqB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC3C,UAAU,EAAE,MAAM,CAAC;IAEnB,OAAO,CAAC,cAAc,CAAe;IACrC,OAAO,CAAC,UAAU,CAAS;gBAGjB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EAClC,cAAc,EAAE,8BAA8B,EAC9C,aAAa,EAAE,mBAAmB,EACjC,GAAG,EAAE,oBAAoB,EACzB,cAAc,EAAE,cAAc,EACvC,KAAK,EAAE,UAAU,EACjB,GAAG,EAAE,iBAAiB,EACvB,eAAe,EAAE,eAAe;IAOzC,kBAAkB;IAWlB,kBAAkB,IAAI,IAAI;IAoB1B,WAAW,CAAC,OAAO,EAAE,aAAa;IAgClC,WAAW;IAIX,eAAe,IAAI,OAAO;IAI1B,YAAY,IAAI,OAAO;IAIvB,WAAW,IAAI,OAAO;IAKtB,WAAW,CAAC,MAAM,EAAE,YAAY;IAIhC,iBAAiB;IAwBjB,eAAe,CAAC,SAAS,EAAE,eAAe;IAW1C,eAAe,CAAC,OAAO,EAAE,OAAO;IAIhC,qBAAqB,CAAC,KAAK,EAAE,MAAM;IAKnC,OAAO,CAAC,mBAAmB;IAM3B,QAAQ;yCArMG,oBAAoB;2CAApB,oBAAoB;CAwMhC"}
@@ -0,0 +1,36 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./viewers/pdf-viewer/pdf-viewer.component";
3
+ import * as i2 from "./viewers/pdf-viewer/side-bar/side-bar.component";
4
+ import * as i3 from "./viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component";
5
+ import * as i4 from "./viewers/pdf-viewer/side-bar/outline-item/outline-item.component";
6
+ import * as i5 from "./viewers/image-viewer/image-viewer.component";
7
+ import * as i6 from "./viewers/unsupported-viewer/unsupported-viewer.component";
8
+ import * as i7 from "./viewers/multimedia-player/multimedia-player.component";
9
+ import * as i8 from "./media-viewer.component";
10
+ import * as i9 from "./viewers/convertible-content-viewer/convertible-content-viewer.component";
11
+ import * as i10 from "./viewers/grab-n-drag.directive";
12
+ import * as i11 from "./viewers/rotation-persist/rotation-persist.directive";
13
+ import * as i12 from "./annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive";
14
+ import * as i13 from "./icp/confirm-exit/confirm-action-dialog.component";
15
+ import * as i14 from "./redaction/components/redaction.component";
16
+ import * as i15 from "./bookmark/components/bookmark-icons.component";
17
+ import * as i16 from "./icp/participants-list/participants-list.component";
18
+ import * as i17 from "@angular/common";
19
+ import * as i18 from "@angular/common/http";
20
+ import * as i19 from "./toolbar/toolbar.module";
21
+ import * as i20 from "./annotations/annotations.module";
22
+ import * as i21 from "ngx-chips";
23
+ import * as i22 from "@angular/forms";
24
+ import * as i23 from "@angular/router";
25
+ import * as i24 from "@ngrx/store";
26
+ import * as i25 from "@ngrx/effects";
27
+ import * as i26 from "mutable-div";
28
+ import * as i27 from "@angular/cdk/tree";
29
+ import * as i28 from "@angular/cdk/drag-drop";
30
+ import * as i29 from "rpx-xui-translation";
31
+ export declare class MediaViewerModule {
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<MediaViewerModule, never>;
33
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MediaViewerModule, [typeof i1.PdfViewerComponent, typeof i2.SideBarComponent, typeof i3.BookmarksComponent, typeof i4.OutlineItemComponent, typeof i5.ImageViewerComponent, typeof i6.UnsupportedViewerComponent, typeof i7.MultimediaPlayerComponent, typeof i8.MediaViewerComponent, typeof i9.ConvertibleContentViewerComponent, typeof i10.GrabNDragDirective, typeof i11.RotationPersistDirective, typeof i12.HighlightCreateDirective, typeof i13.ConfirmActionDialogComponent, typeof i14.RedactionComponent, typeof i15.BookmarkIconsComponent, typeof i16.ParticipantsListComponent], [typeof i17.CommonModule, typeof i18.HttpClientModule, typeof i19.ToolbarModule, typeof i20.AnnotationsModule, typeof i21.TagInputModule, typeof i22.FormsModule, typeof i22.ReactiveFormsModule, typeof i23.RouterModule, typeof i24.StoreFeatureModule, typeof i25.EffectsFeatureModule, typeof i26.MutableDivModule, typeof i27.CdkTreeModule, typeof i28.DragDropModule, typeof i29.RpxTranslationModule], [typeof i8.MediaViewerComponent]>;
34
+ static ɵinj: i0.ɵɵInjectorDeclaration<MediaViewerModule>;
35
+ }
36
+ //# sourceMappingURL=media-viewer.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"media-viewer.module.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4CA,qBA8Ca,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAI"}
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class PrintService {
3
+ printDocumentNatively(url: string): void;
4
+ printElementNatively(element: HTMLElement, width: number, height: number): void;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<PrintService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<PrintService>;
7
+ }
8
+ //# sourceMappingURL=print.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"print.service.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/print.service.ts"],"names":[],"mappings":";AAEA,qBAGa,YAAY;IAEvB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAUxC,oBAAoB,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI;yCAZpE,YAAY;6CAAZ,YAAY;CAwBxB"}
@@ -0,0 +1,42 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { Store } from '@ngrx/store';
4
+ import { Rectangle } from '../../annotations/annotation-set/annotation-view/rectangle/rectangle.model';
5
+ import * as fromStore from '../../store/reducers/reducers';
6
+ import { SelectionAnnotation } from '../../annotations/models/event-select.model';
7
+ import { ViewerEventService } from '../../viewers/viewer-event.service';
8
+ import { Redaction } from '../services/redaction.model';
9
+ import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
10
+ import * as i0 from "@angular/core";
11
+ export declare class RedactionComponent implements OnInit, OnDestroy {
12
+ private store;
13
+ private readonly viewerEvents;
14
+ private toolbarEvents;
15
+ zoom: number;
16
+ rotate: number;
17
+ redactionsPerPage$: Observable<any>;
18
+ selectedRedaction$: Observable<SelectionAnnotation | {}>;
19
+ rectangles: Rectangle[];
20
+ drawMode: boolean;
21
+ documentId: string;
22
+ private $subscription;
23
+ constructor(store: Store<fromStore.State>, viewerEvents: ViewerEventService, toolbarEvents: ToolbarEventService);
24
+ ngOnInit(): void;
25
+ ngOnDestroy(): void;
26
+ markTextRedaction(highlight: any): void;
27
+ markBoxRedaction({ rectangles, page }: {
28
+ rectangles: any;
29
+ page: any;
30
+ }): void;
31
+ saveRedaction(page: number, rectangles: Rectangle[]): void;
32
+ onMarkerDelete(event: any): void;
33
+ selectRedaction(event: any): void;
34
+ onMarkerUpdate(redaction: Redaction): void;
35
+ downloadDocument({ blob, filename }: {
36
+ blob: any;
37
+ filename: any;
38
+ }): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<RedactionComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<RedactionComponent, "mv-redactions", never, { "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; }, {}, never, never, false, never>;
41
+ }
42
+ //# sourceMappingURL=redaction.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redaction.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/redaction/components/redaction.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAI5C,OAAO,EAAE,SAAS,EAAE,MAAM,4EAA4E,CAAC;AACvG,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAO3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAClF,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAE1E,qBAIa,kBAAmB,YAAW,MAAM,EAAE,SAAS;IAa9C,OAAO,CAAC,KAAK;IACvB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,aAAa;IAbd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IAExB,kBAAkB,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IACpC,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,GAAG,EAAE,CAAC,CAAC;IACzD,UAAU,EAAE,SAAS,EAAE,CAAC;IACxB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IAEnB,OAAO,CAAC,aAAa,CAAe;gBAEhB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EAC9B,YAAY,EAAE,kBAAkB,EACzC,aAAa,EAAE,mBAAmB;IAE5C,QAAQ,IAAI,IAAI;IAkBhB,WAAW,IAAI,IAAI;IAInB,iBAAiB,CAAC,SAAS,KAAA;IAQ3B,gBAAgB,CAAC,EAAE,UAAU,EAAE,IAAI,EAAE;;;KAAA;IAKrC,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAKnD,cAAc,CAAC,KAAK,KAAA;IAIpB,eAAe,CAAC,KAAK,KAAA;IAIrB,cAAc,CAAC,SAAS,EAAE,SAAS;IAInC,gBAAgB,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE;;;KAAA;yCArExB,kBAAkB;2CAAlB,kBAAkB;CAiF9B"}
@@ -0,0 +1,20 @@
1
+ import { Observable } from 'rxjs';
2
+ import { HttpClient, HttpResponse } from '@angular/common/http';
3
+ import { BulkRedaction, Redaction } from './redaction.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class RedactionApiService {
6
+ private readonly httpClient;
7
+ private markupsApiUrl;
8
+ private redactApiUrl;
9
+ private markupsSearchApiUrl;
10
+ constructor(httpClient: HttpClient);
11
+ getRedactions(documentId: string): Observable<HttpResponse<Redaction[]>>;
12
+ saveRedaction(body: any): Observable<Redaction>;
13
+ saveBulkRedaction(body: any): Observable<BulkRedaction>;
14
+ deleteRedaction(payload: any): Observable<null>;
15
+ deleteAllMarkers(documentId: any): Observable<null>;
16
+ redact(payload: any): Observable<HttpResponse<Blob>>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<RedactionApiService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<RedactionApiService>;
19
+ }
20
+ //# sourceMappingURL=redaction-api.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redaction-api.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/redaction/services/redaction-api.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAGhE,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;;AAE7D,qBACa,mBAAmB;IAM5B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAJ7B,OAAO,CAAC,aAAa,CAAkB;IACvC,OAAO,CAAC,YAAY,CAAoB;IACxC,OAAO,CAAC,mBAAmB,CAAyB;gBAEjC,UAAU,EAAE,UAAU;IAGlC,aAAa,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,YAAY,CAAC,SAAS,EAAE,CAAC,CAAC;IAMxE,aAAa,CAAC,IAAI,KAAA,GAAG,UAAU,CAAC,SAAS,CAAC;IAS1C,iBAAiB,CAAC,IAAI,KAAA,GAAG,UAAU,CAAC,aAAa,CAAC;IASlD,eAAe,CAAC,OAAO,KAAA,GAAG,UAAU,CAAC,IAAI,CAAC;IAO1C,gBAAgB,CAAC,UAAU,KAAA,GAAG,UAAU,CAAC,IAAI,CAAC;IAQ9C,MAAM,CAAC,OAAO,KAAA,GAAG,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;yCAhD3C,mBAAmB;6CAAnB,mBAAmB;CAyD/B"}
@@ -0,0 +1,11 @@
1
+ import { Rectangle } from '../../annotations/annotation-set/annotation-view/rectangle/rectangle.model';
2
+ export interface Redaction {
3
+ redactionId?: string;
4
+ documentId?: string;
5
+ page?: number;
6
+ rectangles?: Rectangle[];
7
+ }
8
+ export interface BulkRedaction {
9
+ searchRedactions: Redaction[];
10
+ }
11
+ //# sourceMappingURL=redaction.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redaction.model.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/redaction/services/redaction.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,4EAA4E,CAAC;AAEvG,MAAM,WAAW,SAAS;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;CAC1B;AAED,MAAM,WAAW,aAAa;IAC5B,gBAAgB,EAAE,SAAS,EAAE,CAAC;CAC/B"}
@@ -0,0 +1,11 @@
1
+ import { ElementRef } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class TooltipDismissDirective {
4
+ private el;
5
+ constructor(el: ElementRef);
6
+ onEscapeDismissTooltip(): void;
7
+ onShowTooltip(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDismissDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDismissDirective, ".mv-tooltip, [mvTooltipDismiss]", never, {}, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=tooltip-dismiss.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tooltip-dismiss.directive.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/shared/directives/tooltip-dismiss.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,MAAM,eAAe,CAAC;;AAEpE,qBAGa,uBAAuB;IACtB,OAAO,CAAC,EAAE;gBAAF,EAAE,EAAE,UAAU;IAGlC,sBAAsB;IAQtB,aAAa;yCAZF,uBAAuB;2CAAvB,uBAAuB;CAiBnC"}
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GovUkDateComponent {
3
+ config: {
4
+ id: string;
5
+ legend: string;
6
+ };
7
+ errorMessage: {
8
+ isInvalid: boolean;
9
+ messages: string[];
10
+ };
11
+ formGroup: any;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkDateComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkDateComponent, "mv-gov-uk-date", never, { "config": { "alias": "config"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; }, {}, never, never, false, never>;
14
+ }
15
+ //# sourceMappingURL=gov-uk-date.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gov-uk-date.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/shared/gov-uk-date/gov-uk-date.component.ts"],"names":[],"mappings":";AAOA,qBAIa,kBAAkB;IACpB,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IACvC,YAAY,EAAE;QAAC,SAAS,EAAE,OAAO,CAAC;QAAC,QAAQ,EAAE,MAAM,EAAE,CAAA;KAAC,CAAC;IACvD,SAAS,MAAC;yCAHR,kBAAkB;2CAAlB,kBAAkB;CAI9B"}
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GovUkErrorMessageComponent {
3
+ constructor();
4
+ config: {
5
+ id: string;
6
+ };
7
+ errorMessage: any;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkErrorMessageComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkErrorMessageComponent, " mv-gov-uk-error-message", never, { "config": { "alias": "config"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=gov-uk-error-message.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gov-uk-error-message.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/shared/gov-uk-error-message/gov-uk-error-message.component.ts"],"names":[],"mappings":";AAOA,qBAQa,0BAA0B;;IAE5B,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC;IACvB,YAAY,MAAC;yCAHX,0BAA0B;2CAA1B,0BAA0B;CAItC"}
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GovUkFieldsetComponent {
3
+ config: {
4
+ legend: string;
5
+ classes: string;
6
+ id: string;
7
+ hint: string;
8
+ key: string;
9
+ };
10
+ isHeading: boolean;
11
+ errorMessage: string[];
12
+ setDescribedBy(): string;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkFieldsetComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkFieldsetComponent, "mv-gov-uk-fieldset", never, { "config": { "alias": "config"; "required": false; }; "isHeading": { "alias": "isHeading"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, ["*"], false, never>;
15
+ }
16
+ //# sourceMappingURL=gov-uk-fieldset.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gov-uk-fieldset.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.ts"],"names":[],"mappings":";AAUA,qBAmBa,sBAAsB;IACxB,MAAM,EAAE;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAC,CAAC;IACjF,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,MAAM,EAAE,CAAC;IAEhC,cAAc,IAAI,MAAM;yCALb,sBAAsB;2CAAtB,sBAAsB;CAQlC"}
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GovUkLabelComponent {
3
+ constructor();
4
+ config: {
5
+ label: string;
6
+ name: string;
7
+ id: string;
8
+ isPageHeading: any;
9
+ classes: string;
10
+ };
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkLabelComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkLabelComponent, "mv-gov-label", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
13
+ }
14
+ //# sourceMappingURL=gov-uk-label.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gov-uk-label.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/shared/gov-uk-label/gov-uk-label.component.ts"],"names":[],"mappings":";AAQA,qBAca,mBAAmB;;IAErB,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,aAAa,MAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;yCAFlF,mBAAmB;2CAAnB,mBAAmB;CAI/B"}
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./gov-uk-date/gov-uk-date.component";
3
+ import * as i2 from "./gov-uk-error-message/gov-uk-error-message.component";
4
+ import * as i3 from "./gov-uk-fieldset/gov-uk-fieldset.component";
5
+ import * as i4 from "./gov-uk-label/gov-uk-label.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/forms";
8
+ import * as i7 from "@angular/router";
9
+ export declare class SharedModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.GovUkDateComponent, typeof i2.GovUkErrorMessageComponent, typeof i3.GovUkFieldsetComponent, typeof i4.GovUkLabelComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i5.CommonModule, typeof i7.RouterModule], [typeof i1.GovUkDateComponent, typeof i2.GovUkErrorMessageComponent, typeof i3.GovUkFieldsetComponent, typeof i4.GovUkLabelComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
13
+ }
14
+ //# sourceMappingURL=shared.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shared.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/shared/shared.module.ts"],"names":[],"mappings":";;;;;;;;AAWA,qBAsBa,YAAY;yCAAZ,YAAY;0CAAZ,YAAY;0CAAZ,YAAY;CAAG"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Helper Class
3
+ * Used for dynamic templates manipulation
4
+ * */
5
+ export declare class HtmlTemplatesHelper {
6
+ static setDescribedBy(errorMessage: any, config: any): string;
7
+ static getAdjustedBoundingRect(element: HTMLElement, log?: boolean): DOMRect;
8
+ }
9
+ //# sourceMappingURL=html-templates.helper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"html-templates.helper.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/shared/util/helpers/html-templates.helper.ts"],"names":[],"mappings":"AAAA;;;KAGK;AAEL,qBAAa,mBAAmB;IAE9B,MAAM,CAAC,cAAc,CAAC,YAAY,KAAA,EAAE,MAAM,KAAA;IAU1C,MAAM,CAAC,uBAAuB,CAAC,OAAO,EAAE,WAAW,EAAE,GAAG,GAAE,OAAc,GAAG,OAAO;CAWnF"}
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Number Helper Service
4
+ * */
5
+ export declare class NumberHelperService {
6
+ constructor();
7
+ isNumber(value: string | number): boolean;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumberHelperService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<NumberHelperService>;
10
+ }
11
+ //# sourceMappingURL=number.helper.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"number.helper.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/shared/util/services/number.helper.service.ts"],"names":[],"mappings":";AAEA;;KAEK;AACL,qBAIa,mBAAmB;;IAGrB,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO;yCAHvC,mBAAmB;6CAAnB,mBAAmB;CAW7B"}