@hmcts/media-viewer 2.9.5 → 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 (475) hide show
  1. package/assets/all.scss +1 -1
  2. package/assets/sass/tags.scss +1 -1
  3. package/esm2020/hmcts-media-viewer.mjs +5 -0
  4. package/esm2020/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +116 -0
  5. package/esm2020/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +109 -0
  6. package/esm2020/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +75 -0
  7. package/esm2020/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
  8. package/esm2020/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
  9. package/esm2020/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
  10. package/esm2020/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +118 -0
  11. package/esm2020/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +87 -0
  12. package/esm2020/lib/annotations/annotations.module.mjs +158 -0
  13. package/esm2020/lib/annotations/comment-set/comment/comment.component.mjs +176 -0
  14. package/esm2020/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
  15. package/esm2020/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
  16. package/esm2020/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
  17. package/esm2020/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
  18. package/esm2020/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +61 -0
  19. package/esm2020/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +53 -0
  20. package/esm2020/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +68 -0
  21. package/esm2020/lib/annotations/comment-set/comment-set-render.service.mjs +54 -0
  22. package/esm2020/lib/annotations/comment-set/comment-set.component.mjs +123 -0
  23. package/esm2020/lib/annotations/comments-summary/comments-summary.component.mjs +113 -0
  24. package/esm2020/lib/annotations/pipes/date/date.pipe.mjs +26 -0
  25. package/esm2020/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
  26. package/esm2020/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
  27. package/esm2020/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
  28. package/esm2020/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
  29. package/esm2020/lib/annotations/services/tags/tags.services.mjs +41 -0
  30. package/esm2020/lib/annotations/tags/tags.component.mjs +53 -0
  31. package/esm2020/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
  32. package/esm2020/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
  33. package/esm2020/lib/icp/icp-follower.service.mjs +60 -0
  34. package/esm2020/lib/icp/icp-presenter.service.mjs +55 -0
  35. package/esm2020/lib/icp/icp-session-api.service.mjs +21 -0
  36. package/esm2020/lib/icp/icp-update.service.mjs +57 -0
  37. package/esm2020/lib/icp/icp.service.mjs +93 -0
  38. package/esm2020/lib/icp/participants-list/participants-list.component.mjs +30 -0
  39. package/esm2020/lib/icp/socket.service.mjs +118 -0
  40. package/esm2020/lib/media-viewer.component.mjs +244 -0
  41. package/esm2020/lib/media-viewer.module.mjs +151 -0
  42. package/{esm2015/lib/print.service.js → esm2020/lib/print.service.mjs} +9 -7
  43. package/esm2020/lib/redaction/components/redaction.component.mjs +91 -0
  44. package/esm2020/lib/redaction/services/redaction-api.service.mjs +50 -0
  45. package/esm2020/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
  46. package/esm2020/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
  47. package/esm2020/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
  48. package/esm2020/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
  49. package/esm2020/lib/shared/shared.module.mjs +53 -0
  50. package/esm2020/lib/shared/util/services/number.helper.service.mjs +23 -0
  51. package/{esm2015/lib/store/bookmarks-store-utils.js → esm2020/lib/store/bookmarks-store-utils.mjs} +1 -3
  52. package/esm2020/lib/store/effects/annotation.effects.mjs +44 -0
  53. package/esm2020/lib/store/effects/bookmarks.effects.mjs +44 -0
  54. package/esm2020/lib/store/effects/document.effects.mjs +44 -0
  55. package/esm2020/lib/store/effects/icp.effects.mjs +26 -0
  56. package/esm2020/lib/store/effects/redaction.effects.mjs +67 -0
  57. package/esm2020/lib/store/reducers/annotations.reducer.mjs +183 -0
  58. package/esm2020/lib/store/reducers/bookmarks.reducer.mjs +116 -0
  59. package/esm2020/lib/store/reducers/document.reducer.mjs +135 -0
  60. package/esm2020/lib/store/reducers/icp.reducer.mjs +56 -0
  61. package/esm2020/lib/store/reducers/redaction.reducer.mjs +116 -0
  62. package/esm2020/lib/store/reducers/tags.reducer.mjs +93 -0
  63. package/esm2020/lib/store/selectors/annotation.selectors.mjs +81 -0
  64. package/esm2020/lib/store/selectors/bookmark.selectors.mjs +36 -0
  65. package/{esm2015/lib/store/selectors/document.selectors.js → esm2020/lib/store/selectors/document.selectors.mjs} +3 -6
  66. package/esm2020/lib/store/selectors/icp.selectors.mjs +13 -0
  67. package/{esm2015/lib/store/selectors/redaction.selectors.js → esm2020/lib/store/selectors/redaction.selectors.mjs} +6 -10
  68. package/{esm2015/lib/store/selectors/tag.selectors.js → esm2020/lib/store/selectors/tag.selectors.mjs} +4 -7
  69. package/esm2020/lib/store/store-utils.mjs +131 -0
  70. package/esm2020/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +41 -0
  71. package/esm2020/lib/toolbar/main-toolbar/main-toolbar.component.mjs +188 -0
  72. package/esm2020/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +199 -0
  73. package/esm2020/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +66 -0
  74. package/esm2020/lib/toolbar/search-bar/search-bar.component.mjs +105 -0
  75. package/esm2020/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
  76. package/{esm2015/lib/toolbar/toolbar-event.service.js → esm2020/lib/toolbar/toolbar-event.service.mjs} +7 -5
  77. package/esm2020/lib/toolbar/toolbar.module.mjs +67 -0
  78. package/esm2020/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +78 -0
  79. package/esm2020/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
  80. package/esm2020/lib/viewers/grab-n-drag.directive.mjs +57 -0
  81. package/esm2020/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
  82. package/esm2020/lib/viewers/multimedia-player/multimedia-player.component.mjs +58 -0
  83. package/esm2020/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +193 -0
  84. package/esm2020/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
  85. package/esm2020/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +230 -0
  86. package/esm2020/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +192 -0
  87. package/esm2020/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
  88. package/esm2020/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +77 -0
  89. package/esm2020/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
  90. package/esm2020/lib/viewers/rotation-persist/rotation-persist.directive.mjs +64 -0
  91. package/esm2020/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
  92. package/esm2020/lib/viewers/viewer-event.service.mjs +30 -0
  93. package/esm2020/lib/viewers/viewer-util.service.mjs +20 -0
  94. package/esm2020/public_api.mjs +32 -0
  95. package/fesm2015/hmcts-media-viewer.mjs +6602 -0
  96. package/fesm2015/hmcts-media-viewer.mjs.map +1 -0
  97. package/fesm2020/hmcts-media-viewer.mjs +6893 -0
  98. package/fesm2020/hmcts-media-viewer.mjs.map +1 -0
  99. package/hmcts-media-viewer.d.ts.map +1 -1
  100. package/index.d.ts +6 -0
  101. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +3 -0
  102. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -1
  103. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +3 -0
  104. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -1
  105. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +3 -0
  106. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -1
  107. package/lib/annotations/annotation-set/annotation-set.component.d.ts +3 -0
  108. package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -1
  109. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +3 -0
  110. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -1
  111. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +5 -2
  112. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -1
  113. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +3 -0
  114. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -1
  115. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +3 -0
  116. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -1
  117. package/lib/annotations/annotations.module.d.ts +32 -0
  118. package/lib/annotations/annotations.module.d.ts.map +1 -1
  119. package/lib/annotations/comment-set/comment/comment.component.d.ts +3 -0
  120. package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -1
  121. package/lib/annotations/comment-set/comment/comment.service.d.ts +5 -2
  122. package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -1
  123. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +3 -0
  124. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -1
  125. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +3 -0
  126. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -1
  127. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +3 -0
  128. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -1
  129. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +6 -3
  130. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -1
  131. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +3 -0
  132. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -1
  133. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +3 -0
  134. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -1
  135. package/lib/annotations/comment-set/comment-set-render.service.d.ts +3 -0
  136. package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -1
  137. package/lib/annotations/comment-set/comment-set.component.d.ts +3 -0
  138. package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -1
  139. package/lib/annotations/comments-summary/comments-summary.component.d.ts +6 -3
  140. package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -1
  141. package/lib/annotations/pipes/date/date.pipe.d.ts +3 -0
  142. package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -1
  143. package/lib/annotations/pipes/filter/filter.pipe.d.ts +3 -0
  144. package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -1
  145. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +3 -0
  146. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -1
  147. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +3 -0
  148. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -1
  149. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +3 -0
  150. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -1
  151. package/lib/annotations/services/tags/tags.services.d.ts +3 -0
  152. package/lib/annotations/services/tags/tags.services.d.ts.map +1 -1
  153. package/lib/annotations/tags/tags.component.d.ts +6 -3
  154. package/lib/annotations/tags/tags.component.d.ts.map +1 -1
  155. package/lib/bookmark/components/bookmark-icons.component.d.ts +3 -0
  156. package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -1
  157. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +3 -0
  158. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -1
  159. package/lib/icp/icp-follower.service.d.ts +3 -0
  160. package/lib/icp/icp-follower.service.d.ts.map +1 -1
  161. package/lib/icp/icp-presenter.service.d.ts +3 -0
  162. package/lib/icp/icp-presenter.service.d.ts.map +1 -1
  163. package/lib/icp/icp-session-api.service.d.ts +3 -0
  164. package/lib/icp/icp-session-api.service.d.ts.map +1 -1
  165. package/lib/icp/icp-update.service.d.ts +3 -0
  166. package/lib/icp/icp-update.service.d.ts.map +1 -1
  167. package/lib/icp/icp.service.d.ts +3 -0
  168. package/lib/icp/icp.service.d.ts.map +1 -1
  169. package/lib/icp/participants-list/participants-list.component.d.ts +3 -0
  170. package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -1
  171. package/lib/icp/socket.service.d.ts +3 -0
  172. package/lib/icp/socket.service.d.ts.map +1 -1
  173. package/lib/media-viewer.component.d.ts +3 -0
  174. package/lib/media-viewer.component.d.ts.map +1 -1
  175. package/lib/media-viewer.module.d.ts +31 -0
  176. package/lib/media-viewer.module.d.ts.map +1 -1
  177. package/lib/print.service.d.ts +3 -0
  178. package/lib/print.service.d.ts.map +1 -1
  179. package/lib/redaction/components/redaction.component.d.ts +3 -0
  180. package/lib/redaction/components/redaction.component.d.ts.map +1 -1
  181. package/lib/redaction/services/redaction-api.service.d.ts +3 -0
  182. package/lib/redaction/services/redaction-api.service.d.ts.map +1 -1
  183. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +3 -0
  184. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -1
  185. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +3 -0
  186. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -1
  187. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +3 -0
  188. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -1
  189. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +3 -0
  190. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -1
  191. package/lib/shared/shared.module.d.ts +11 -0
  192. package/lib/shared/shared.module.d.ts.map +1 -1
  193. package/lib/shared/util/services/number.helper.service.d.ts +3 -0
  194. package/lib/shared/util/services/number.helper.service.d.ts.map +1 -1
  195. package/lib/store/actions/annotation.actions.d.ts +1 -1
  196. package/lib/store/actions/annotation.actions.d.ts.map +1 -1
  197. package/lib/store/actions/bookmark.actions.d.ts +1 -1
  198. package/lib/store/actions/bookmark.actions.d.ts.map +1 -1
  199. package/lib/store/actions/document.actions.d.ts +1 -1
  200. package/lib/store/actions/document.actions.d.ts.map +1 -1
  201. package/lib/store/actions/icp.actions.d.ts +1 -1
  202. package/lib/store/actions/icp.actions.d.ts.map +1 -1
  203. package/lib/store/actions/redaction.actions.d.ts +1 -1
  204. package/lib/store/actions/redaction.actions.d.ts.map +1 -1
  205. package/lib/store/actions/tag.actions.d.ts +1 -1
  206. package/lib/store/actions/tag.actions.d.ts.map +1 -1
  207. package/lib/store/effects/annotation.effects.d.ts +6 -3
  208. package/lib/store/effects/annotation.effects.d.ts.map +1 -1
  209. package/lib/store/effects/bookmarks.effects.d.ts +8 -5
  210. package/lib/store/effects/bookmarks.effects.d.ts.map +1 -1
  211. package/lib/store/effects/document.effects.d.ts +6 -3
  212. package/lib/store/effects/document.effects.d.ts.map +1 -1
  213. package/lib/store/effects/icp.effects.d.ts +5 -2
  214. package/lib/store/effects/icp.effects.d.ts.map +1 -1
  215. package/lib/store/effects/redaction.effects.d.ts +9 -6
  216. package/lib/store/effects/redaction.effects.d.ts.map +1 -1
  217. package/lib/store/selectors/annotation.selectors.d.ts +70 -27
  218. package/lib/store/selectors/annotation.selectors.d.ts.map +1 -1
  219. package/lib/store/selectors/bookmark.selectors.d.ts +18 -10
  220. package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -1
  221. package/lib/store/selectors/document.selectors.d.ts +13 -11
  222. package/lib/store/selectors/document.selectors.d.ts.map +1 -1
  223. package/lib/store/selectors/icp.selectors.d.ts +9 -8
  224. package/lib/store/selectors/icp.selectors.d.ts.map +1 -1
  225. package/lib/store/selectors/redaction.selectors.d.ts +17 -11
  226. package/lib/store/selectors/redaction.selectors.d.ts.map +1 -1
  227. package/lib/store/selectors/tag.selectors.d.ts +14 -12
  228. package/lib/store/selectors/tag.selectors.d.ts.map +1 -1
  229. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +3 -0
  230. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -1
  231. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +3 -0
  232. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -1
  233. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +5 -2
  234. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -1
  235. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +3 -0
  236. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -1
  237. package/lib/toolbar/search-bar/search-bar.component.d.ts +3 -0
  238. package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -1
  239. package/lib/toolbar/toolbar-button-visibility.service.d.ts +3 -0
  240. package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -1
  241. package/lib/toolbar/toolbar-event.service.d.ts +5 -2
  242. package/lib/toolbar/toolbar-event.service.d.ts.map +1 -1
  243. package/lib/toolbar/toolbar.module.d.ts +13 -0
  244. package/lib/toolbar/toolbar.module.d.ts.map +1 -1
  245. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +3 -0
  246. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -1
  247. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +3 -0
  248. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -1
  249. package/lib/viewers/grab-n-drag.directive.d.ts +3 -0
  250. package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -1
  251. package/lib/viewers/image-viewer/image-viewer.component.d.ts +3 -0
  252. package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -1
  253. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +3 -0
  254. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -1
  255. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +3 -0
  256. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -1
  257. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +3 -0
  258. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -1
  259. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +5 -2
  260. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -1
  261. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +3 -0
  262. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -1
  263. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +3 -0
  264. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -1
  265. package/lib/viewers/rotation-persist/rotation-api.service.d.ts +3 -0
  266. package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -1
  267. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +3 -0
  268. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -1
  269. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +3 -0
  270. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -1
  271. package/lib/viewers/viewer-event.service.d.ts +3 -0
  272. package/lib/viewers/viewer-event.service.d.ts.map +1 -1
  273. package/lib/viewers/viewer-util.service.d.ts +3 -0
  274. package/lib/viewers/viewer-util.service.d.ts.map +1 -1
  275. package/package.json +34 -22
  276. package/public_api.d.ts +1 -0
  277. package/public_api.d.ts.map +1 -1
  278. package/bundles/hmcts-media-viewer.umd.js +0 -7552
  279. package/bundles/hmcts-media-viewer.umd.js.map +0 -1
  280. package/bundles/hmcts-media-viewer.umd.min.js +0 -2
  281. package/bundles/hmcts-media-viewer.umd.min.js.map +0 -1
  282. package/esm2015/hmcts-media-viewer.js +0 -64
  283. package/esm2015/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.js +0 -113
  284. package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.js +0 -111
  285. package/esm2015/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.js +0 -61
  286. package/esm2015/lib/annotations/annotation-set/annotation-set.component.js +0 -47
  287. package/esm2015/lib/annotations/annotation-set/annotation-view/annotation-view.component.js +0 -86
  288. package/esm2015/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.js +0 -108
  289. package/esm2015/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.js +0 -107
  290. package/esm2015/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.js +0 -81
  291. package/esm2015/lib/annotations/annotations.module.js +0 -103
  292. package/esm2015/lib/annotations/comment-set/comment/comment.component.js +0 -162
  293. package/esm2015/lib/annotations/comment-set/comment/comment.service.js +0 -47
  294. package/esm2015/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.js +0 -48
  295. package/esm2015/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.js +0 -31
  296. package/esm2015/lib/annotations/comment-set/comment-navigate/comments-navigate.component.js +0 -95
  297. package/esm2015/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.js +0 -60
  298. package/esm2015/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.js +0 -53
  299. package/esm2015/lib/annotations/comment-set/comment-set-header/comment-set-header.component.js +0 -68
  300. package/esm2015/lib/annotations/comment-set/comment-set-render.service.js +0 -51
  301. package/esm2015/lib/annotations/comment-set/comment-set.component.js +0 -110
  302. package/esm2015/lib/annotations/comments-summary/comments-summary.component.js +0 -106
  303. package/esm2015/lib/annotations/pipes/date/date.pipe.js +0 -22
  304. package/esm2015/lib/annotations/pipes/filter/filter.pipe.js +0 -28
  305. package/esm2015/lib/annotations/pipes/unsnake/unsnake.pipe.js +0 -12
  306. package/esm2015/lib/annotations/services/annotation-api/annotation-api.service.js +0 -59
  307. package/esm2015/lib/annotations/services/bookmarks-api/bookmarks-api.service.js +0 -46
  308. package/esm2015/lib/annotations/services/tags/tags.services.js +0 -36
  309. package/esm2015/lib/annotations/tags/tags.component.js +0 -52
  310. package/esm2015/lib/bookmark/components/bookmark-icons.component.js +0 -26
  311. package/esm2015/lib/icp/confirm-exit/confirm-action-dialog.component.js +0 -25
  312. package/esm2015/lib/icp/icp-follower.service.js +0 -63
  313. package/esm2015/lib/icp/icp-presenter.service.js +0 -57
  314. package/esm2015/lib/icp/icp-session-api.service.js +0 -22
  315. package/esm2015/lib/icp/icp-update.service.js +0 -56
  316. package/esm2015/lib/icp/icp.service.js +0 -98
  317. package/esm2015/lib/icp/participants-list/participants-list.component.js +0 -32
  318. package/esm2015/lib/icp/socket.service.js +0 -117
  319. package/esm2015/lib/media-viewer.component.js +0 -210
  320. package/esm2015/lib/media-viewer.module.js +0 -102
  321. package/esm2015/lib/redaction/components/redaction.component.js +0 -97
  322. package/esm2015/lib/redaction/services/redaction-api.service.js +0 -51
  323. package/esm2015/lib/shared/gov-uk-date/gov-uk-date.component.js +0 -21
  324. package/esm2015/lib/shared/gov-uk-error-message/gov-uk-error-message.component.js +0 -27
  325. package/esm2015/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.js +0 -42
  326. package/esm2015/lib/shared/gov-uk-label/gov-uk-label.component.js +0 -32
  327. package/esm2015/lib/shared/shared.module.js +0 -34
  328. package/esm2015/lib/shared/util/services/number.helper.service.js +0 -23
  329. package/esm2015/lib/store/effects/annotation.effects.js +0 -58
  330. package/esm2015/lib/store/effects/bookmarks.effects.js +0 -66
  331. package/esm2015/lib/store/effects/document.effects.js +0 -59
  332. package/esm2015/lib/store/effects/icp.effects.js +0 -37
  333. package/esm2015/lib/store/effects/redaction.effects.js +0 -94
  334. package/esm2015/lib/store/reducers/annotations.reducer.js +0 -115
  335. package/esm2015/lib/store/reducers/bookmarks.reducer.js +0 -80
  336. package/esm2015/lib/store/reducers/document.reducer.js +0 -100
  337. package/esm2015/lib/store/reducers/icp.reducer.js +0 -40
  338. package/esm2015/lib/store/reducers/redaction.reducer.js +0 -75
  339. package/esm2015/lib/store/reducers/tags.reducer.js +0 -67
  340. package/esm2015/lib/store/selectors/annotation.selectors.js +0 -84
  341. package/esm2015/lib/store/selectors/bookmark.selectors.js +0 -41
  342. package/esm2015/lib/store/selectors/icp.selectors.js +0 -18
  343. package/esm2015/lib/store/store-utils.js +0 -105
  344. package/esm2015/lib/toolbar/icp-toolbar/icp-toolbar.component.js +0 -43
  345. package/esm2015/lib/toolbar/main-toolbar/main-toolbar.component.js +0 -175
  346. package/esm2015/lib/toolbar/redaction-search-bar/redaction-search-bar.component.js +0 -201
  347. package/esm2015/lib/toolbar/redaction-toolbar/redaction-toolbar.component.js +0 -70
  348. package/esm2015/lib/toolbar/search-bar/search-bar.component.js +0 -102
  349. package/esm2015/lib/toolbar/toolbar-button-visibility.service.js +0 -92
  350. package/esm2015/lib/toolbar/toolbar.module.js +0 -45
  351. package/esm2015/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.js +0 -72
  352. package/esm2015/lib/viewers/convertible-content-viewer/document-conversion-api.service.js +0 -23
  353. package/esm2015/lib/viewers/grab-n-drag.directive.js +0 -51
  354. package/esm2015/lib/viewers/image-viewer/image-viewer.component.js +0 -164
  355. package/esm2015/lib/viewers/multimedia-player/multimedia-player.component.js +0 -54
  356. package/esm2015/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.js +0 -203
  357. package/esm2015/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.js +0 -43
  358. package/esm2015/lib/viewers/pdf-viewer/pdf-viewer.component.js +0 -220
  359. package/esm2015/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.js +0 -179
  360. package/esm2015/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.js +0 -44
  361. package/esm2015/lib/viewers/pdf-viewer/side-bar/side-bar.component.js +0 -72
  362. package/esm2015/lib/viewers/rotation-persist/rotation-api.service.js +0 -28
  363. package/esm2015/lib/viewers/rotation-persist/rotation-persist.directive.js +0 -67
  364. package/esm2015/lib/viewers/unsupported-viewer/unsupported-viewer.component.js +0 -47
  365. package/esm2015/lib/viewers/viewer-event.service.js +0 -30
  366. package/esm2015/lib/viewers/viewer-util.service.js +0 -23
  367. package/esm2015/public_api.js +0 -31
  368. package/fesm2015/hmcts-media-viewer.js +0 -6585
  369. package/fesm2015/hmcts-media-viewer.js.map +0 -1
  370. package/hmcts-media-viewer.d.ts +0 -69
  371. package/hmcts-media-viewer.metadata.json +0 -1
  372. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ngfactory.d.ts.map +0 -1
  373. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.ngfactory.d.ts.map +0 -1
  374. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ngfactory.d.ts.map +0 -1
  375. package/lib/annotations/annotation-set/annotation-set.component.ngfactory.d.ts.map +0 -1
  376. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.ngfactory.d.ts.map +0 -1
  377. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ngfactory.d.ts.map +0 -1
  378. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.ngfactory.d.ts.map +0 -1
  379. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ngfactory.d.ts.map +0 -1
  380. package/lib/annotations/annotations.module.ngfactory.d.ts.map +0 -1
  381. package/lib/annotations/comment-set/comment/comment.component.ngfactory.d.ts.map +0 -1
  382. package/lib/annotations/comment-set/comment/comment.service.ngfactory.d.ts.map +0 -1
  383. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.ngfactory.d.ts.map +0 -1
  384. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.ngfactory.d.ts.map +0 -1
  385. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ngfactory.d.ts.map +0 -1
  386. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ngfactory.d.ts.map +0 -1
  387. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ngfactory.d.ts.map +0 -1
  388. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ngfactory.d.ts.map +0 -1
  389. package/lib/annotations/comment-set/comment-set-render.service.ngfactory.d.ts.map +0 -1
  390. package/lib/annotations/comment-set/comment-set.component.ngfactory.d.ts.map +0 -1
  391. package/lib/annotations/comments-summary/comments-summary.component.ngfactory.d.ts.map +0 -1
  392. package/lib/annotations/pipes/date/date.pipe.ngfactory.d.ts.map +0 -1
  393. package/lib/annotations/pipes/filter/filter.pipe.ngfactory.d.ts.map +0 -1
  394. package/lib/annotations/pipes/unsnake/unsnake.pipe.ngfactory.d.ts.map +0 -1
  395. package/lib/annotations/services/annotation-api/annotation-api.service.ngfactory.d.ts.map +0 -1
  396. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.ngfactory.d.ts.map +0 -1
  397. package/lib/annotations/services/tags/tags.services.ngfactory.d.ts.map +0 -1
  398. package/lib/annotations/tags/tags.component.ngfactory.d.ts.map +0 -1
  399. package/lib/bookmark/components/bookmark-icons.component.ngfactory.d.ts.map +0 -1
  400. package/lib/icp/confirm-exit/confirm-action-dialog.component.ngfactory.d.ts.map +0 -1
  401. package/lib/icp/icp-follower.service.ngfactory.d.ts.map +0 -1
  402. package/lib/icp/icp-presenter.service.ngfactory.d.ts.map +0 -1
  403. package/lib/icp/icp-session-api.service.ngfactory.d.ts.map +0 -1
  404. package/lib/icp/icp-update.service.ngfactory.d.ts.map +0 -1
  405. package/lib/icp/icp.service.ngfactory.d.ts.map +0 -1
  406. package/lib/icp/participants-list/participants-list.component.ngfactory.d.ts.map +0 -1
  407. package/lib/icp/socket.service.ngfactory.d.ts.map +0 -1
  408. package/lib/media-viewer.component.ngfactory.d.ts.map +0 -1
  409. package/lib/media-viewer.module.ngfactory.d.ts.map +0 -1
  410. package/lib/print.service.ngfactory.d.ts.map +0 -1
  411. package/lib/redaction/components/redaction.component.ngfactory.d.ts.map +0 -1
  412. package/lib/redaction/services/redaction-api.service.ngfactory.d.ts.map +0 -1
  413. package/lib/shared/gov-uk-date/gov-uk-date.component.ngfactory.d.ts.map +0 -1
  414. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.ngfactory.d.ts.map +0 -1
  415. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.ngfactory.d.ts.map +0 -1
  416. package/lib/shared/gov-uk-label/gov-uk-label.component.ngfactory.d.ts.map +0 -1
  417. package/lib/shared/shared.module.ngfactory.d.ts.map +0 -1
  418. package/lib/shared/util/services/number.helper.service.ngfactory.d.ts.map +0 -1
  419. package/lib/store/effects/annotation.effects.ngfactory.d.ts.map +0 -1
  420. package/lib/store/effects/bookmarks.effects.ngfactory.d.ts.map +0 -1
  421. package/lib/store/effects/document.effects.ngfactory.d.ts.map +0 -1
  422. package/lib/store/effects/icp.effects.ngfactory.d.ts.map +0 -1
  423. package/lib/store/effects/redaction.effects.ngfactory.d.ts.map +0 -1
  424. package/lib/toolbar/icp-toolbar/icp-toolbar.component.ngfactory.d.ts.map +0 -1
  425. package/lib/toolbar/main-toolbar/main-toolbar.component.ngfactory.d.ts.map +0 -1
  426. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ngfactory.d.ts.map +0 -1
  427. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.scss.shim.ngstyle.d.ts.map +0 -1
  428. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ngfactory.d.ts.map +0 -1
  429. package/lib/toolbar/search-bar/search-bar.component.ngfactory.d.ts.map +0 -1
  430. package/lib/toolbar/toolbar-button-visibility.service.ngfactory.d.ts.map +0 -1
  431. package/lib/toolbar/toolbar-event.service.ngfactory.d.ts.map +0 -1
  432. package/lib/toolbar/toolbar.module.ngfactory.d.ts.map +0 -1
  433. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ngfactory.d.ts.map +0 -1
  434. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.ngfactory.d.ts.map +0 -1
  435. package/lib/viewers/grab-n-drag.directive.ngfactory.d.ts.map +0 -1
  436. package/lib/viewers/image-viewer/image-viewer.component.ngfactory.d.ts.map +0 -1
  437. package/lib/viewers/multimedia-player/multimedia-player.component.ngfactory.d.ts.map +0 -1
  438. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ngfactory.d.ts.map +0 -1
  439. package/lib/viewers/pdf-viewer/pdf-viewer.component.ngfactory.d.ts.map +0 -1
  440. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.ngfactory.d.ts.map +0 -1
  441. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.ngfactory.d.ts.map +0 -1
  442. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.ngfactory.d.ts.map +0 -1
  443. package/lib/viewers/rotation-persist/rotation-api.service.ngfactory.d.ts.map +0 -1
  444. package/lib/viewers/rotation-persist/rotation-persist.directive.ngfactory.d.ts.map +0 -1
  445. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.ngfactory.d.ts.map +0 -1
  446. package/lib/viewers/viewer-event.service.ngfactory.d.ts.map +0 -1
  447. package/lib/viewers/viewer-util.service.ngfactory.d.ts.map +0 -1
  448. /package/{esm2015/lib/annotations/annotation-set/annotation-set.model.js → esm2020/lib/annotations/annotation-set/annotation-set.model.mjs} +0 -0
  449. /package/{esm2015/lib/annotations/annotation-set/annotation-view/annotation.model.js → esm2020/lib/annotations/annotation-set/annotation-view/annotation.model.mjs} +0 -0
  450. /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
  451. /package/{esm2015/lib/annotations/comment-set/comment/comment.model.js → esm2020/lib/annotations/comment-set/comment/comment.model.mjs} +0 -0
  452. /package/{esm2015/lib/annotations/models/api-persisted.model.js → esm2020/lib/annotations/models/api-persisted.model.mjs} +0 -0
  453. /package/{esm2015/lib/annotations/models/event-select.model.js → esm2020/lib/annotations/models/event-select.model.mjs} +0 -0
  454. /package/{esm2015/lib/annotations/models/tags.model.js → esm2020/lib/annotations/models/tags.model.mjs} +0 -0
  455. /package/{esm2015/lib/annotations/models/user.model.js → esm2020/lib/annotations/models/user.model.mjs} +0 -0
  456. /package/{esm2015/lib/icp/icp.events.js → esm2020/lib/icp/icp.events.mjs} +0 -0
  457. /package/{esm2015/lib/icp/icp.interfaces.js → esm2020/lib/icp/icp.interfaces.mjs} +0 -0
  458. /package/{esm2015/lib/redaction/services/redaction.model.js → esm2020/lib/redaction/services/redaction.model.mjs} +0 -0
  459. /package/{esm2015/lib/shared/util/helpers/html-templates.helper.js → esm2020/lib/shared/util/helpers/html-templates.helper.mjs} +0 -0
  460. /package/{esm2015/lib/store/actions/annotation.actions.js → esm2020/lib/store/actions/annotation.actions.mjs} +0 -0
  461. /package/{esm2015/lib/store/actions/bookmark.actions.js → esm2020/lib/store/actions/bookmark.actions.mjs} +0 -0
  462. /package/{esm2015/lib/store/actions/document.actions.js → esm2020/lib/store/actions/document.actions.mjs} +0 -0
  463. /package/{esm2015/lib/store/actions/icp.actions.js → esm2020/lib/store/actions/icp.actions.mjs} +0 -0
  464. /package/{esm2015/lib/store/actions/redaction.actions.js → esm2020/lib/store/actions/redaction.actions.mjs} +0 -0
  465. /package/{esm2015/lib/store/actions/tag.actions.js → esm2020/lib/store/actions/tag.actions.mjs} +0 -0
  466. /package/{esm2015/lib/store/effects/index.js → esm2020/lib/store/effects/index.mjs} +0 -0
  467. /package/{esm2015/lib/store/models/bookmarks.interface.js → esm2020/lib/store/models/bookmarks.interface.mjs} +0 -0
  468. /package/{esm2015/lib/store/models/filters.interface.js → esm2020/lib/store/models/filters.interface.mjs} +0 -0
  469. /package/{esm2015/lib/store/reducers/reducers.js → esm2020/lib/store/reducers/reducers.mjs} +0 -0
  470. /package/{esm2015/lib/toolbar/icp-event.service.js → esm2020/lib/toolbar/icp-event.service.mjs} +0 -0
  471. /package/{esm2015/lib/toolbar/redaction-search-bar/redaction-search.model.js → esm2020/lib/toolbar/redaction-search-bar/redaction-search.model.mjs} +0 -0
  472. /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
  473. /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
  474. /package/{esm2015/lib/viewers/rotation-persist/rotation.model.js → esm2020/lib/viewers/rotation-persist/rotation.model.mjs} +0 -0
  475. /package/{esm2015/lib/viewers/viewer-exception.model.js → esm2020/lib/viewers/viewer-exception.model.mjs} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"comments-summary.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comments-summary/comments-summary.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8B,UAAU,EAAE,MAAM,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AACzF,OAAO,EAAE,WAAW,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,EAAiB,UAAU,EAAgB,MAAM,MAAM,CAAC;AAC/D,OAAO,EAAS,KAAK,EAAC,MAAM,aAAa,CAAC;AAE1C,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAI3D,qBAIa,wBAAyB,YAAW,MAAM,EAAE,SAAS;IAc9D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,EAAE;IAfH,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACgB,SAAS,EAAE,UAAU,CAAC;IACnB,aAAa,EAAE,UAAU,CAAC;IACnE,SAAS,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAC3B,SAAS,EAAE,SAAS,CAAC;IAC5B,OAAO,CAAC,cAAc,CAAe;IACrC,QAAQ,EAAE,UAAU,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,EAAE,CAAC,CAAC;IACtD,WAAW,UAAS;IACpB,SAAS,UAAS;gBAGR,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,mBAAmB,EAC3C,EAAE,EAAE,WAAW;IAGzB,QAAQ,IAAI,IAAI;IAmBhB,iBAAiB;IAiBjB,cAAc;IAKd,QAAQ;IAWR,eAAe;IAIR,OAAO,IAAI,IAAI;IAIf,OAAO,IAAI,IAAI;IAItB,cAAc,CAAC,UAAU,EAAE,MAAM;IAQjC,WAAW,IAAI,IAAI;CAGpB"}
1
+ {"version":3,"file":"comments-summary.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comments-summary/comments-summary.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8B,UAAU,EAAE,MAAM,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AACzF,OAAO,EAAE,kBAAkB,EAAsB,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAC1F,OAAO,EAAiB,UAAU,EAAgB,MAAM,MAAM,CAAC;AAC/D,OAAO,EAAS,KAAK,EAAC,MAAM,aAAa,CAAC;AAE1C,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;;AAI3D,qBAIa,wBAAyB,YAAW,MAAM,EAAE,SAAS;IAc9D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,EAAE;IAfH,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACgB,SAAS,EAAE,UAAU,CAAC;IACnB,aAAa,EAAE,UAAU,CAAC;IACnE,SAAS,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAC3B,SAAS,EAAE,gBAAgB,CAAC;IACnC,OAAO,CAAC,cAAc,CAAe;IACrC,QAAQ,EAAE,UAAU,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,EAAE,CAAC,CAAC;IACtD,WAAW,UAAS;IACpB,SAAS,UAAS;gBAGR,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,mBAAmB,EAC3C,EAAE,EAAE,kBAAkB;IAGhC,QAAQ,IAAI,IAAI;IAmBhB,iBAAiB;IAiBjB,cAAc;IAKd,QAAQ;IAWR,eAAe;IAIR,OAAO,IAAI,IAAI;IAIf,OAAO,IAAI,IAAI;IAItB,cAAc,CAAC,UAAU,EAAE,MAAM;IAQjC,WAAW,IAAI,IAAI;yCA5FR,wBAAwB;2CAAxB,wBAAwB;CA+FpC"}
@@ -1,5 +1,6 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { DatePipe } from '@angular/common';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * A moment timezone pipe to support parsing based on time zone abbreviations
5
6
  * covers all cases of offset variation due to daylight saving.
@@ -9,5 +10,7 @@ import { DatePipe } from '@angular/common';
9
10
  */
10
11
  export declare class MomentDatePipe extends DatePipe implements PipeTransform {
11
12
  transform(value: string | Date, format?: string, timezone?: string): any;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<MomentDatePipe, never>;
14
+ static ɵpipe: i0.ɵɵPipeDeclaration<MomentDatePipe, "momentDate", false>;
12
15
  }
13
16
  //# sourceMappingURL=date.pipe.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"date.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/pipes/date/date.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE3C;;;;;;GAMG;AACH,qBAGa,cAAe,SAAQ,QAAS,YAAW,aAAa;IAEnE,SAAS,CACP,KAAK,EAAE,MAAM,GAAG,IAAI,EACpB,MAAM,GAAE,MAAqB,EAC7B,QAAQ,GAAE,MAAwB,GACjC,GAAG;CAIP"}
1
+ {"version":3,"file":"date.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/pipes/date/date.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;;AAE3C;;;;;;GAMG;AACH,qBAGa,cAAe,SAAQ,QAAS,YAAW,aAAa;IAEnE,SAAS,CACP,KAAK,EAAE,MAAM,GAAG,IAAI,EACpB,MAAM,GAAE,MAAqB,EAC7B,QAAQ,GAAE,MAAwB,GACjC,GAAG;yCANK,cAAc;uCAAd,cAAc;CAU1B"}
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class FilterPipe implements PipeTransform {
3
4
  transform(items: any[], searchText: string, fieldName: string): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter", false>;
4
7
  }
5
8
  //# sourceMappingURL=filter.pipe.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/pipes/filter/filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AAEpD,qBAGa,UAAW,YAAW,aAAa;IAE9C,SAAS,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,GAAG,EAAE;CAqBtE"}
1
+ {"version":3,"file":"filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/pipes/filter/filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBAGa,UAAW,YAAW,aAAa;IAE9C,SAAS,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,GAAG,EAAE;yCAF1D,UAAU;uCAAV,UAAU;CAuBtB"}
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class UnsnakePipe implements PipeTransform {
3
4
  transform(items: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<UnsnakePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<UnsnakePipe, "unsnake", false>;
4
7
  }
5
8
  //# sourceMappingURL=unsnake.pipe.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"unsnake.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/pipes/unsnake/unsnake.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AAEpD,qBAGa,WAAY,YAAW,aAAa;IAE/C,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;CAIjC"}
1
+ {"version":3,"file":"unsnake.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/pipes/unsnake/unsnake.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBAGa,WAAY,YAAW,aAAa;IAE/C,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;yCAFrB,WAAW;uCAAX,WAAW;CAMvB"}
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
3
3
  import { AnnotationSet } from '../../annotation-set/annotation-set.model';
4
4
  import { Annotation } from '../../annotation-set/annotation-view/annotation.model';
5
5
  import { Comment } from '../../comment-set/comment/comment.model';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class AnnotationApiService {
7
8
  private readonly httpClient;
8
9
  annotationApiUrl: string;
@@ -21,5 +22,7 @@ export declare class AnnotationApiService {
21
22
  postAnnotation(annotation: Partial<Annotation>): Observable<Annotation>;
22
23
  get annotationSetsFullUrl(): string;
23
24
  get annotationFullsUrl(): string;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationApiService, never>;
26
+ static ɵprov: i0.ɵɵInjectableDeclaration<AnnotationApiService>;
24
27
  }
25
28
  //# sourceMappingURL=annotation-api.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"annotation-api.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/services/annotation-api/annotation-api.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAGlC,OAAO,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAC1E,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAE,OAAO,EAAE,MAAM,yCAAyC,CAAC;AAElE,qBACa,oBAAoB;IAQ7B,OAAO,CAAC,QAAQ,CAAC,UAAU;IANtB,gBAAgB,SAAc;IAErC,OAAO,CAAC,oBAAoB,CAAsB;IAClD,OAAO,CAAC,iBAAiB,CAAkB;gBAGxB,UAAU,EAAE,UAAU;IAGlC,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAMrD,iBAAiB,CAAC,IAAI,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,aAAa,CAAC;IAS1E,WAAW,CAAC,aAAa,EAAE,UAAU,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,OAAO,EAAE,CAAC;IAQnF;;OAEG;IACH,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,eAAe;IAIhB,gBAAgB,CAAC,YAAY,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAQxD,cAAc,CAAC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,UAAU,CAAC;IAM9E,IAAI,qBAAqB,WAExB;IAED,IAAI,kBAAkB,WAErB;CACF"}
1
+ {"version":3,"file":"annotation-api.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/services/annotation-api/annotation-api.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAGlC,OAAO,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAC1E,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAE,OAAO,EAAE,MAAM,yCAAyC,CAAC;;AAElE,qBACa,oBAAoB;IAQ7B,OAAO,CAAC,QAAQ,CAAC,UAAU;IANtB,gBAAgB,SAAc;IAErC,OAAO,CAAC,oBAAoB,CAAsB;IAClD,OAAO,CAAC,iBAAiB,CAAkB;gBAGxB,UAAU,EAAE,UAAU;IAGlC,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAMrD,iBAAiB,CAAC,IAAI,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,aAAa,CAAC;IAS1E,WAAW,CAAC,aAAa,EAAE,UAAU,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,OAAO,EAAE,CAAC;IAQnF;;OAEG;IACH,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,eAAe;IAIhB,gBAAgB,CAAC,YAAY,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAQxD,cAAc,CAAC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,UAAU,CAAC;IAM9E,IAAI,qBAAqB,WAExB;IAED,IAAI,kBAAkB,WAErB;yCAjEU,oBAAoB;6CAApB,oBAAoB;CAkEhC"}
@@ -1,6 +1,7 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { HttpClient } from '@angular/common/http';
3
3
  import { Bookmark } from '../../../viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class BookmarksApiService {
5
6
  private readonly httpClient;
6
7
  private readonly ANNOTATIONS_API;
@@ -14,5 +15,7 @@ export declare class BookmarksApiService {
14
15
  deleted: string[];
15
16
  updated: Bookmark;
16
17
  }): Observable<void>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<BookmarksApiService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<BookmarksApiService>;
17
20
  }
18
21
  //# sourceMappingURL=bookmarks-api.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"bookmarks-api.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/services/bookmarks-api/bookmarks-api.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAGlD,OAAO,EAAE,QAAQ,EAAE,MAAM,qEAAqE,CAAC;AAE/F,qBACa,mBAAmB;IAK5B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAH7B,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAc;gBAG3B,UAAU,EAAE,UAAU;IAGlC,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAMjD,cAAc,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,UAAU,CAAC,QAAQ,CAAC;IAOjE,cAAc,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,UAAU,CAAC,QAAQ,CAAC;IAOjE,uBAAuB,CAAC,SAAS,EAAE,OAAO,CAAC,QAAQ,EAAE,CAAC,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAO/E,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAOpD,uBAAuB,CAAC,OAAO,EAAE;QAAE,OAAO,EAAE,MAAM,EAAE,CAAC;QAAC,OAAO,EAAE,QAAQ,CAAA;KAAE,GAAG,UAAU,CAAC,IAAI,CAAC;CAMpG"}
1
+ {"version":3,"file":"bookmarks-api.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/services/bookmarks-api/bookmarks-api.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAGlD,OAAO,EAAE,QAAQ,EAAE,MAAM,qEAAqE,CAAC;;AAE/F,qBACa,mBAAmB;IAK5B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAH7B,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAc;gBAG3B,UAAU,EAAE,UAAU;IAGlC,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAMjD,cAAc,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,UAAU,CAAC,QAAQ,CAAC;IAOjE,cAAc,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,UAAU,CAAC,QAAQ,CAAC;IAOjE,uBAAuB,CAAC,SAAS,EAAE,OAAO,CAAC,QAAQ,EAAE,CAAC,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAO/E,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAOpD,uBAAuB,CAAC,OAAO,EAAE;QAAE,OAAO,EAAE,MAAM,EAAE,CAAC;QAAC,OAAO,EAAE,QAAQ,CAAA;KAAE,GAAG,UAAU,CAAC,IAAI,CAAC;yCA1CxF,mBAAmB;6CAAnB,mBAAmB;CAgD/B"}
@@ -1,6 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
3
  import { TagsModel } from '../../models/tags.model';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class TagsServices {
5
6
  private http;
6
7
  tagItems: {
@@ -11,5 +12,7 @@ export declare class TagsServices {
11
12
  getNewTags(annoid: string): TagsModel[];
12
13
  updateTagItems(items: Array<TagsModel>, annoId: string): void;
13
14
  private snakeCase;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagsServices, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<TagsServices>;
14
17
  }
15
18
  //# sourceMappingURL=tags.services.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tags.services.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/services/tags/tags.services.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAEpD,qBACa,YAAY;IAIX,OAAO,CAAC,IAAI;IAFjB,QAAQ,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,EAAE,CAAA;KAAC,CAAC;gBAEzB,IAAI,EAAE,UAAU;IAE7B,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,UAAU,CAAC,SAAS,EAAE,CAAC;IAM7D,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,EAAE;IAIvC,cAAc,CAAC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,MAAM;IActD,OAAO,CAAC,SAAS,CAMhB;CACF"}
1
+ {"version":3,"file":"tags.services.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/services/tags/tags.services.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;;AAEpD,qBACa,YAAY;IAIX,OAAO,CAAC,IAAI;IAFjB,QAAQ,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,EAAE,CAAA;KAAC,CAAC;gBAEzB,IAAI,EAAE,UAAU;IAE7B,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,UAAU,CAAC,SAAS,EAAE,CAAC;IAM7D,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,EAAE;IAIvC,cAAc,CAAC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,MAAM;IActD,OAAO,CAAC,SAAS,CAMhB;yCApCU,YAAY;6CAAZ,YAAY;CAqCxB"}
@@ -1,16 +1,17 @@
1
1
  import { TagsModel } from '../models/tags.model';
2
2
  import { TagsServices } from '../services/tags/tags.services';
3
- import { FormControl } from '@angular/forms';
3
+ import { UntypedFormControl } from '@angular/forms';
4
4
  import { Observable } from 'rxjs';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class TagsComponent {
6
7
  private tagsServices;
7
8
  tagItems: TagsModel[];
8
9
  userId: string;
9
10
  editable: boolean;
10
11
  annoId: string;
11
- validators: (((control: FormControl) => {
12
+ validators: (((control: UntypedFormControl) => {
12
13
  minLength: boolean;
13
- }) | ((control: FormControl) => {
14
+ }) | ((control: UntypedFormControl) => {
14
15
  maxLength20: boolean;
15
16
  }))[];
16
17
  errorMessages: {
@@ -21,5 +22,7 @@ export declare class TagsComponent {
21
22
  requestAutocompleteItems: (text: string) => Observable<any[]>;
22
23
  private minLength;
23
24
  private maxLength20;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagsComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "mv-tags", never, { "tagItems": "tagItems"; "userId": "userId"; "editable": "editable"; "annoId": "annoId"; }, {}, never, never, false, never>;
24
27
  }
25
28
  //# sourceMappingURL=tags.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tags.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/tags/tags.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,SAAS,EAAC,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAC,YAAY,EAAC,MAAM,gCAAgC,CAAC;AAC5D,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,qBAKa,aAAa;IAYZ,OAAO,CAAC,YAAY;IAXvB,QAAQ,EAAE,SAAS,EAAE,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IAEjB,UAAU,cAgBU,WAAW;;oBAST,WAAW;;UAzBe;IAChD,aAAa,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,CAG1C;gBAEkB,YAAY,EAAE,YAAY;IAE9C,YAAY,CAAC,KAAK,KAAA;IAIX,wBAAwB,SAAU,MAAM,KAAG,WAAW,GAAG,EAAE,CAAC,CAElE;IAED,OAAO,CAAC,SAAS;IASjB,OAAO,CAAC,WAAW;CAQpB"}
1
+ {"version":3,"file":"tags.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/tags/tags.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,SAAS,EAAC,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAC,YAAY,EAAC,MAAM,gCAAgC,CAAC;AAC5D,OAAO,EAAC,kBAAkB,EAAC,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;;AAEhC,qBAKa,aAAa;IAYZ,OAAO,CAAC,YAAY;IAXvB,QAAQ,EAAE,SAAS,EAAE,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IAEjB,UAAU,cAgBU,kBAAkB;;oBAShB,kBAAkB;;UAzBQ;IAChD,aAAa,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,CAG1C;gBAEkB,YAAY,EAAE,YAAY;IAE9C,YAAY,CAAC,KAAK,KAAA;IAIX,wBAAwB,SAAU,MAAM,KAAG,WAAW,GAAG,EAAE,CAAC,CAElE;IAED,OAAO,CAAC,SAAS;IASjB,OAAO,CAAC,WAAW;yCA/BR,aAAa;2CAAb,aAAa;CAuCzB"}
@@ -3,6 +3,7 @@ import { OnInit } from '@angular/core';
3
3
  import { Store } from '@ngrx/store';
4
4
  import * as fromStore from '../../store/reducers/reducers';
5
5
  import { Observable } from 'rxjs';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class BookmarkIconsComponent implements OnInit {
7
8
  private store;
8
9
  zoom: number;
@@ -12,5 +13,7 @@ export declare class BookmarkIconsComponent implements OnInit {
12
13
  documentId: string;
13
14
  constructor(store: Store<fromStore.State>);
14
15
  ngOnInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkIconsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<BookmarkIconsComponent, "mv-bookmark-icons", never, { "zoom": "zoom"; "rotate": "rotate"; }, {}, never, never, false, never>;
15
18
  }
16
19
  //# sourceMappingURL=bookmark-icons.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"bookmark-icons.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/bookmark/components/bookmark-icons.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAE,gBAAgB,EAAC,MAAM,kEAAkE,CAAC;AAC5G,OAAO,EAAmB,MAAM,EAAC,MAAM,eAAe,CAAC;AACvD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAE3D,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,qBAIa,sBAAuB,YAAW,MAAM;IAQvC,OAAO,CAAC,KAAK;IANhB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACxB,iBAAiB,EAAE,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAClD,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;gBAEC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC;IAEjD,QAAQ,IAAI,IAAI;CAIjB"}
1
+ {"version":3,"file":"bookmark-icons.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/bookmark/components/bookmark-icons.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAE,gBAAgB,EAAC,MAAM,kEAAkE,CAAC;AAC5G,OAAO,EAAmB,MAAM,EAAC,MAAM,eAAe,CAAC;AACvD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAE3D,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;;AAElC,qBAIa,sBAAuB,YAAW,MAAM;IAQvC,OAAO,CAAC,KAAK;IANhB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACxB,iBAAiB,EAAE,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAClD,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;gBAEC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC;IAEjD,QAAQ,IAAI,IAAI;yCAVL,sBAAsB;2CAAtB,sBAAsB;CAclC"}
@@ -1,8 +1,11 @@
1
1
  import { ToolbarEventService } from '../../toolbar/toolbar.module';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ConfirmActionDialogComponent {
3
4
  private toolbarEvents;
4
5
  constructor(toolbarEvents: ToolbarEventService);
5
6
  onCancel(): void;
6
7
  onConfirm(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmActionDialogComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmActionDialogComponent, "mv-confirm-action", never, {}, {}, never, never, false, never>;
7
10
  }
8
11
  //# sourceMappingURL=confirm-action-dialog.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"confirm-action-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/icp/confirm-exit/confirm-action-dialog.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAEnE,qBAIa,4BAA4B;IAE3B,OAAO,CAAC,aAAa;gBAAb,aAAa,EAAE,mBAAmB;IAEtD,QAAQ;IAIR,SAAS;CAIV"}
1
+ {"version":3,"file":"confirm-action-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/icp/confirm-exit/confirm-action-dialog.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;;AAEnE,qBAIa,4BAA4B;IAE3B,OAAO,CAAC,aAAa;gBAAb,aAAa,EAAE,mBAAmB;IAEtD,QAAQ;IAIR,SAAS;yCARE,4BAA4B;2CAA5B,4BAA4B;CAYxC"}
@@ -4,6 +4,7 @@ import { Subscription } from 'rxjs';
4
4
  import { IcpUpdateService } from './icp-update.service';
5
5
  import { ViewerEventService } from '../viewers/viewer-event.service';
6
6
  import { IcpState, IcpSession } from './icp.interfaces';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class IcpFollowerService {
8
9
  private readonly toolbarEvents;
9
10
  private readonly viewerEvents;
@@ -18,5 +19,7 @@ export declare class IcpFollowerService {
18
19
  followScreenUpdate({ pdfPosition }: {
19
20
  pdfPosition: any;
20
21
  }): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpFollowerService, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpFollowerService>;
21
24
  }
22
25
  //# sourceMappingURL=icp-follower.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"icp-follower.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp-follower.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAGxD,qBACa,kBAAkB;IAMjB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IAPzB,OAAO,EAAE,UAAU,CAAC;IAEpB,aAAa,EAAE,YAAY,CAAC;gBAEC,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB,EAChC,aAAa,EAAE,gBAAgB,EACxC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAG1C,MAAM,CAAC,UAAU,EAAE,OAAO;IAQ1B,SAAS;IAOT,WAAW;IAOX,kBAAkB,CAAC,EAAE,WAAW,EAAE;;KAAA;CAiBnC"}
1
+ {"version":3,"file":"icp-follower.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp-follower.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;;AAGxD,qBACa,kBAAkB;IAMjB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IAPzB,OAAO,EAAE,UAAU,CAAC;IAEpB,aAAa,EAAE,YAAY,CAAC;gBAEC,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB,EAChC,aAAa,EAAE,gBAAgB,EACxC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAG1C,MAAM,CAAC,UAAU,EAAE,OAAO;IAQ1B,SAAS;IAOT,WAAW;IAOX,kBAAkB,CAAC,EAAE,WAAW,EAAE;;KAAA;yCAlCvB,kBAAkB;6CAAlB,kBAAkB;CAmD9B"}
@@ -4,6 +4,7 @@ import { Subscription } from 'rxjs';
4
4
  import { IcpUpdateService } from './icp-update.service';
5
5
  import { IcpState, IcpSession, IcpParticipant } from './icp.interfaces';
6
6
  import { PdfPosition } from '../store/reducers/document.reducer';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class IcpPresenterService {
8
9
  private readonly toolbarEvents;
9
10
  private readonly socketService;
@@ -18,5 +19,7 @@ export declare class IcpPresenterService {
18
19
  unsubscribe(): void;
19
20
  onPositionUpdate(pdfPosition: PdfPosition): void;
20
21
  onNewParticipantJoined(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpPresenterService, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpPresenterService>;
21
24
  }
22
25
  //# sourceMappingURL=icp-presenter.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"icp-presenter.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp-presenter.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAmB,UAAU,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEzF,OAAO,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAEjE,qBACa,mBAAmB;IAQlB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IARzB,OAAO,EAAE,UAAU,CAAC;IACpB,SAAS,EAAE,cAAc,CAAC;IAC1B,WAAW,EAAE,WAAW,CAAC;IAEzB,aAAa,EAAE,YAAY,CAAC;gBAEC,aAAa,EAAE,mBAAmB,EAClC,aAAa,EAAE,gBAAgB,EACxC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAE1C,MAAM,CAAC,WAAW,EAAE,OAAO;IAQ3B,SAAS;IAaT,WAAW;IAOX,gBAAgB,CAAC,WAAW,EAAE,WAAW;IAKzC,sBAAsB;CAIvB"}
1
+ {"version":3,"file":"icp-presenter.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp-presenter.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAmB,UAAU,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEzF,OAAO,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;;AAEjE,qBACa,mBAAmB;IAQlB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IARzB,OAAO,EAAE,UAAU,CAAC;IACpB,SAAS,EAAE,cAAc,CAAC;IAC1B,WAAW,EAAE,WAAW,CAAC;IAEzB,aAAa,EAAE,YAAY,CAAC;gBAEC,aAAa,EAAE,mBAAmB,EAClC,aAAa,EAAE,gBAAgB,EACxC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAE1C,MAAM,CAAC,WAAW,EAAE,OAAO;IAQ3B,SAAS;IAaT,WAAW;IAOX,gBAAgB,CAAC,WAAW,EAAE,WAAW;IAKzC,sBAAsB;yCA7CX,mBAAmB;6CAAnB,mBAAmB;CAiD/B"}
@@ -1,9 +1,12 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class IcpSessionApiService {
4
5
  private readonly httpClient;
5
6
  ICP_SESSION_API: string;
6
7
  constructor(httpClient: HttpClient);
7
8
  loadSession(caseId: string): Observable<any>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpSessionApiService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpSessionApiService>;
8
11
  }
9
12
  //# sourceMappingURL=icp-session-api.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"icp-session-api.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp-session-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAGlC,qBACa,oBAAoB;IAInB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAFhC,eAAe,SAAmB;gBAEZ,UAAU,EAAE,UAAU;IAE5C,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;CAMpD"}
1
+ {"version":3,"file":"icp-session-api.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/icp-session-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;;AAGlC,qBACa,oBAAoB;IAInB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAFhC,eAAe,SAAmB;gBAEZ,UAAU,EAAE,UAAU;IAE5C,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;yCANxC,oBAAoB;6CAApB,oBAAoB;CAYhC"}
@@ -1,5 +1,6 @@
1
1
  import { SocketService } from './socket.service';
2
2
  import { IcpParticipant, IcpScreenUpdate, IcpSession } from './icp.interfaces';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class IcpUpdateService {
4
5
  private socket;
5
6
  session: IcpSession;
@@ -14,5 +15,7 @@ export declare class IcpUpdateService {
14
15
  presenterUpdated(): import("rxjs").Observable<any>;
15
16
  updateScreen(screen: IcpScreenUpdate): void;
16
17
  screenUpdated(): import("rxjs").Observable<any>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpUpdateService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpUpdateService>;
17
20
  }
18
21
  //# sourceMappingURL=icp-update.service.d.ts.map
@@ -1 +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,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU;IAWjD,YAAY;IAIZ,oBAAoB;IAIpB,kBAAkB;IAIlB,iBAAiB,CAAC,aAAa,KAAA;IAM/B,sBAAsB;IAItB,eAAe,CAAC,SAAS,EAAE,cAAc;IAMzC,gBAAgB;IAIhB,YAAY,CAAC,MAAM,EAAE,eAAe;IAKpC,aAAa;CAGd"}
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,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU;IAWjD,YAAY;IAIZ,oBAAoB;IAIpB,kBAAkB;IAIlB,iBAAiB,CAAC,aAAa,KAAA;IAM/B,sBAAsB;IAItB,eAAe,CAAC,SAAS,EAAE,cAAc;IAMzC,gBAAgB;IAIhB,YAAY,CAAC,MAAM,EAAE,eAAe;IAKpC,aAAa;yCAtDF,gBAAgB;6CAAhB,gBAAgB;CAyD5B"}
@@ -7,6 +7,7 @@ import { IcpUpdateService } from './icp-update.service';
7
7
  import { IcpPresenterService } from './icp-presenter.service';
8
8
  import { IcpFollowerService } from './icp-follower.service';
9
9
  import { Store } from '@ngrx/store';
10
+ import * as i0 from "@angular/core";
10
11
  export declare class IcpService implements OnDestroy {
11
12
  private readonly toolbarEvents;
12
13
  private readonly viewerEvents;
@@ -30,5 +31,7 @@ export declare class IcpService implements OnDestroy {
30
31
  becomePresenter(): void;
31
32
  clientDisconnected(client: any): void;
32
33
  removeParticipant(participantId: any): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpService, never>;
35
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpService>;
33
36
  }
34
37
  //# sourceMappingURL=icp.service.d.ts.map
@@ -1 +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,qBACa,UAAW,YAAW,SAAS;IAU9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,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;IAbzB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,cAAc,CAAC;IACvB,SAAS,EAAE,cAAc,CAAC;IAC1B,WAAW,EAAE,OAAO,CAAC;IAErB,YAAY,EAAE,YAAY,CAAC;IAC3B,mBAAmB,EAAE,YAAY,CAAC;gBAEL,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB,EAChC,aAAa,EAAE,gBAAgB,EAC/B,sBAAsB,EAAE,mBAAmB,EAC3C,qBAAqB,EAAE,kBAAkB,EAClD,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAS1C,WAAW;IAKX,aAAa;IAOb,yBAAyB;IAsBzB,kBAAkB;IAMlB,iBAAiB;IAUjB,cAAc;IAKd,eAAe;IAIf,kBAAkB,CAAC,MAAM,KAAA;IAOzB,iBAAiB,CAAC,aAAa,KAAA;CAGhC"}
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,qBACa,UAAW,YAAW,SAAS;IAU9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,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;IAbzB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,cAAc,CAAC;IACvB,SAAS,EAAE,cAAc,CAAC;IAC1B,WAAW,EAAE,OAAO,CAAC;IAErB,YAAY,EAAE,YAAY,CAAC;IAC3B,mBAAmB,EAAE,YAAY,CAAC;gBAEL,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB,EAChC,aAAa,EAAE,gBAAgB,EAC/B,sBAAsB,EAAE,mBAAmB,EAC3C,qBAAqB,EAAE,kBAAkB,EAClD,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAS1C,WAAW;IAKX,aAAa;IAOb,yBAAyB;IAsBzB,kBAAkB;IAMlB,iBAAiB;IAUjB,cAAc;IAKd,eAAe;IAIf,kBAAkB,CAAC,MAAM,KAAA;IAOzB,iBAAiB,CAAC,aAAa,KAAA;yCA1FpB,UAAU;6CAAV,UAAU;CA6FtB"}
@@ -3,6 +3,7 @@ import { Observable, Subscription } from 'rxjs';
3
3
  import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
4
4
  import { IcpParticipant, IcpState } from '../icp.interfaces';
5
5
  import { Store } from '@ngrx/store';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class ParticipantsListComponent implements OnInit, OnDestroy {
7
8
  private readonly toolbarEvents;
8
9
  private store;
@@ -14,5 +15,7 @@ export declare class ParticipantsListComponent implements OnInit, OnDestroy {
14
15
  constructor(toolbarEvents: ToolbarEventService, store: Store<IcpState>);
15
16
  ngOnInit(): void;
16
17
  ngOnDestroy(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ParticipantsListComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParticipantsListComponent, "mv-participants-list", never, {}, {}, never, never, false, never>;
17
20
  }
18
21
  //# sourceMappingURL=participants-list.component.d.ts.map
@@ -1 +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;AAG5C,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;IASrD,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IARzB,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;IAE1C,QAAQ;IAQR,WAAW;CAGZ"}
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;;AAG5C,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;IASrD,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IARzB,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;IAE1C,QAAQ;IAQR,WAAW;yCApBA,yBAAyB;2CAAzB,yBAAyB;CAuBrC"}
@@ -1,6 +1,7 @@
1
1
  import { OnDestroy } from '@angular/core';
2
2
  import { BehaviorSubject, Observable, Subject, Subscription } from 'rxjs';
3
3
  import { IcpEvents } from './icp.events';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class SocketService implements OnDestroy {
5
6
  private socket;
6
7
  subscription: Subscription;
@@ -21,5 +22,7 @@ export declare class SocketService implements OnDestroy {
21
22
  listen(event: IcpEvents): Observable<any>;
22
23
  messageEventHandller(eventName: string, data: any): void;
23
24
  getSocketClient(url: string): Observable<WebSocket>;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<SocketService, never>;
26
+ static ɵprov: i0.ɵɵInjectableDeclaration<SocketService>;
24
27
  }
25
28
  //# sourceMappingURL=socket.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"socket.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/socket.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,eAAe,EAAQ,UAAU,EAAM,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGzC,qBACa,aAAc,YAAW,SAAS;IAE7C,OAAO,CAAC,MAAM,CAAY;IAC1B,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,2BAAuC;IACjD,cAAc,mBAAiB;IAC/B,iBAAiB,mBAAiB;IAClC,mBAAmB,mBAAiB;IACpC,mBAAmB,mBAAiB;IACpC,qBAAqB,mBAAiB;IACtC,cAAc,mBAAiB;;IAI/B,WAAW;IAIX,OAAO,CAAC,GAAG,EAAE,MAAM;IAyBnB,SAAS,IAAI,UAAU,CAAC,OAAO,CAAC;IAIhC,IAAI,CAAC,OAAO,KAAA;IAIZ,KAAK,CAAC,OAAO,KAAA;IAKb,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IAQ7B,MAAM,CAAC,KAAK,EAAE,SAAS,GAAG,UAAU,CAAC,GAAG,CAAC;IA0BzC,oBAAoB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IA6BjD,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC;CAIpD"}
1
+ {"version":3,"file":"socket.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/icp/socket.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,eAAe,EAAQ,UAAU,EAAM,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;;AAGzC,qBACa,aAAc,YAAW,SAAS;IAE7C,OAAO,CAAC,MAAM,CAAY;IAC1B,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,2BAAuC;IACjD,cAAc,mBAAiB;IAC/B,iBAAiB,mBAAiB;IAClC,mBAAmB,mBAAiB;IACpC,mBAAmB,mBAAiB;IACpC,qBAAqB,mBAAiB;IACtC,cAAc,mBAAiB;;IAI/B,WAAW;IAIX,OAAO,CAAC,GAAG,EAAE,MAAM;IAyBnB,SAAS,IAAI,UAAU,CAAC,OAAO,CAAC;IAIhC,IAAI,CAAC,OAAO,KAAA;IAIZ,KAAK,CAAC,OAAO,KAAA;IAKb,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IAQ7B,MAAM,CAAC,KAAK,EAAE,SAAS,GAAG,UAAU,CAAC,GAAG,CAAC;IA0BzC,oBAAoB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;IA6BjD,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC;yCAvHxC,aAAa;6CAAb,aAAa;CA2HzB"}
@@ -9,6 +9,7 @@ import { CommentService } from './annotations/comment-set/comment/comment.servic
9
9
  import 'hammerjs';
10
10
  import { Store } from '@ngrx/store';
11
11
  import * as fromStore from './store/reducers/reducers';
12
+ import * as i0 from "@angular/core";
12
13
  export declare class MediaViewerComponent implements OnChanges, OnDestroy, AfterContentInit, AfterViewChecked {
13
14
  private store;
14
15
  readonly toolbarButtons: ToolbarButtonVisibilityService;
@@ -64,5 +65,7 @@ export declare class MediaViewerComponent implements OnChanges, OnDestroy, After
64
65
  onDocumentTitleChange(title: string): void;
65
66
  private extractDMStoreDocId;
66
67
  detectOs(): void;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<MediaViewerComponent, never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<MediaViewerComponent, "mv-media-viewer", never, { "url": "url"; "downloadFileName": "downloadFileName"; "contentType": "contentType"; "showToolbar": "showToolbar"; "toolbarButtonOverrides": "toolbarButtonOverrides"; "height": "height"; "width": "width"; "enableAnnotations": "enableAnnotations"; "annotationApiUrl": "annotationApiUrl"; "enableRedactions": "enableRedactions"; "enableICP": "enableICP"; "multimediaPlayerEnabled": "multimediaPlayerEnabled"; "enableRedactSearch": "enableRedactSearch"; "caseId": "caseId"; }, { "mediaLoadStatus": "mediaLoadStatus"; "viewerException": "viewerException"; "toolbarEventsOutput": "toolbarEventsOutput"; "unsavedChanges": "unsavedChanges"; }, never, never, false, never>;
67
70
  }
68
71
  //# sourceMappingURL=media-viewer.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"media-viewer.component.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.component.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"media-viewer.component.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.component.ts"],"names":[],"mappings":"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"}
@@ -1,3 +1,34 @@
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 "@circlon/angular-tree-component";
28
+ import * as i27 from "mutable-div";
1
29
  export declare class MediaViewerModule {
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<MediaViewerModule, never>;
31
+ 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.TreeModule, typeof i27.MutableDivModule], [typeof i8.MediaViewerComponent]>;
32
+ static ɵinj: i0.ɵɵInjectorDeclaration<MediaViewerModule>;
2
33
  }
3
34
  //# sourceMappingURL=media-viewer.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"media-viewer.module.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.module.ts"],"names":[],"mappings":"AA0CA,qBAwDa,iBAAiB;CAAI"}
1
+ {"version":3,"file":"media-viewer.module.d.ts","sourceRoot":"","sources":["../../../projects/media-viewer/src/lib/media-viewer.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CA,qBAmDa,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAI"}
@@ -1,5 +1,8 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class PrintService {
2
3
  printDocumentNatively(url: string): void;
3
4
  printElementNatively(element: HTMLElement, width: number, height: number): void;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<PrintService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<PrintService>;
4
7
  }
5
8
  //# sourceMappingURL=print.service.d.ts.map
@@ -1 +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;IAQxC,oBAAoB,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI;CAUhF"}
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;IAQxC,oBAAoB,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI;yCAVpE,YAAY;6CAAZ,YAAY;CAoBxB"}
@@ -7,6 +7,7 @@ import { SelectionAnnotation } from '../../annotations/models/event-select.model
7
7
  import { ToolbarEventService } from '../../toolbar/toolbar.module';
8
8
  import { ViewerEventService } from '../../viewers/viewer-event.service';
9
9
  import { Redaction } from '../services/redaction.model';
10
+ import * as i0 from "@angular/core";
10
11
  export declare class RedactionComponent implements OnInit, OnDestroy {
11
12
  private store;
12
13
  private readonly viewerEvents;
@@ -35,5 +36,7 @@ export declare class RedactionComponent implements OnInit, OnDestroy {
35
36
  blob: any;
36
37
  filename: any;
37
38
  }): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<RedactionComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<RedactionComponent, "mv-redactions", never, { "zoom": "zoom"; "rotate": "rotate"; }, {}, never, never, false, never>;
38
41
  }
39
42
  //# sourceMappingURL=redaction.component.d.ts.map
@@ -1 +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,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAExD,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;CAgBpC"}
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,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;;AAExD,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"}
@@ -1,6 +1,7 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { HttpClient, HttpResponse } from '@angular/common/http';
3
3
  import { BulkRedaction, Redaction } from './redaction.model';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class RedactionApiService {
5
6
  private readonly httpClient;
6
7
  private markupsApiUrl;
@@ -13,5 +14,7 @@ export declare class RedactionApiService {
13
14
  deleteRedaction(payload: any): Observable<null>;
14
15
  deleteAllMarkers(documentId: any): Observable<null>;
15
16
  redact(payload: any): Observable<HttpResponse<Blob>>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<RedactionApiService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<RedactionApiService>;
16
19
  }
17
20
  //# sourceMappingURL=redaction-api.service.d.ts.map
@@ -1 +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;CASvD"}
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"}
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class GovUkDateComponent {
2
3
  config: {
3
4
  id: string;
@@ -8,5 +9,7 @@ export declare class GovUkDateComponent {
8
9
  messages: string[];
9
10
  };
10
11
  formGroup: any;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkDateComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkDateComponent, "mv-gov-uk-date", never, { "config": "config"; "errorMessage": "errorMessage"; "formGroup": "formGroup"; }, {}, never, never, false, never>;
11
14
  }
12
15
  //# sourceMappingURL=gov-uk-date.component.d.ts.map
@@ -1 +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;CACpB"}
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"}
@@ -1,8 +1,11 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class GovUkErrorMessageComponent {
2
3
  constructor();
3
4
  config: {
4
5
  id: string;
5
6
  };
6
7
  errorMessage: any;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkErrorMessageComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkErrorMessageComponent, " mv-gov-uk-error-message", never, { "config": "config"; "errorMessage": "errorMessage"; }, {}, never, never, false, never>;
7
10
  }
8
11
  //# sourceMappingURL=gov-uk-error-message.component.d.ts.map
@@ -1 +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;CACvB"}
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"}
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class GovUkFieldsetComponent {
2
3
  config: {
3
4
  legend: string;
@@ -9,5 +10,7 @@ export declare class GovUkFieldsetComponent {
9
10
  isHeading: boolean;
10
11
  errorMessage: string[];
11
12
  setDescribedBy(): string;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkFieldsetComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkFieldsetComponent, "mv-gov-uk-fieldset", never, { "config": "config"; "isHeading": "isHeading"; "errorMessage": "errorMessage"; }, {}, never, ["*"], false, never>;
12
15
  }
13
16
  //# sourceMappingURL=gov-uk-fieldset.component.d.ts.map
@@ -1 +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;CAGzB"}
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"}