@hmcts/media-viewer 4.1.6-angular-20 → 4.1.7-exui-2986

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 (369) hide show
  1. package/assets/all.scss +1 -0
  2. package/assets/sass/tooltip.scss +43 -0
  3. package/esm2022/hmcts-media-viewer.mjs +5 -0
  4. package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +122 -0
  5. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +120 -0
  6. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +101 -0
  7. package/esm2022/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
  8. package/esm2022/lib/annotations/annotation-set/annotation-set.model.mjs +2 -0
  9. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
  10. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation.model.mjs +2 -0
  11. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
  12. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.mjs +2 -0
  13. package/esm2022/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +119 -0
  14. package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +86 -0
  15. package/esm2022/lib/annotations/annotations.module.mjs +162 -0
  16. package/esm2022/lib/annotations/comment-set/comment/comment.component.mjs +178 -0
  17. package/esm2022/lib/annotations/comment-set/comment/comment.model.mjs +2 -0
  18. package/esm2022/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
  19. package/esm2022/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
  20. package/esm2022/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
  21. package/esm2022/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
  22. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +62 -0
  23. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +54 -0
  24. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +72 -0
  25. package/esm2022/lib/annotations/comment-set/comment-set-render.service.mjs +55 -0
  26. package/esm2022/lib/annotations/comment-set/comment-set.component.mjs +123 -0
  27. package/esm2022/lib/annotations/comments-summary/comments-summary.component.mjs +120 -0
  28. package/esm2022/lib/annotations/models/api-persisted.model.mjs +2 -0
  29. package/esm2022/lib/annotations/models/event-select.model.mjs +2 -0
  30. package/esm2022/lib/annotations/models/tags.model.mjs +2 -0
  31. package/esm2022/lib/annotations/models/user.model.mjs +2 -0
  32. package/esm2022/lib/annotations/pipes/date/date.pipe.mjs +26 -0
  33. package/esm2022/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
  34. package/esm2022/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
  35. package/esm2022/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
  36. package/esm2022/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
  37. package/esm2022/lib/annotations/services/tags/tags.services.mjs +41 -0
  38. package/esm2022/lib/annotations/tags/tags.component.mjs +53 -0
  39. package/esm2022/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
  40. package/esm2022/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
  41. package/esm2022/lib/icp/icp-follower.service.mjs +65 -0
  42. package/esm2022/lib/icp/icp-presenter.service.mjs +56 -0
  43. package/esm2022/lib/icp/icp-session-api.service.mjs +28 -0
  44. package/esm2022/lib/icp/icp-update.service.mjs +73 -0
  45. package/esm2022/lib/icp/icp.events.mjs +15 -0
  46. package/esm2022/lib/icp/icp.interfaces.mjs +2 -0
  47. package/esm2022/lib/icp/icp.service.mjs +98 -0
  48. package/esm2022/lib/icp/participants-list/participants-list.component.mjs +32 -0
  49. package/esm2022/lib/icp/socket.service.mjs +128 -0
  50. package/esm2022/lib/media-viewer.component.mjs +247 -0
  51. package/esm2022/lib/media-viewer.module.mjs +139 -0
  52. package/esm2022/lib/print.service.mjs +32 -0
  53. package/esm2022/lib/redaction/components/redaction.component.mjs +91 -0
  54. package/esm2022/lib/redaction/services/redaction-api.service.mjs +50 -0
  55. package/esm2022/lib/redaction/services/redaction.model.mjs +2 -0
  56. package/esm2022/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
  57. package/esm2022/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
  58. package/esm2022/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
  59. package/esm2022/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
  60. package/esm2022/lib/shared/shared.module.mjs +53 -0
  61. package/esm2022/lib/shared/util/helpers/html-templates.helper.mjs +29 -0
  62. package/esm2022/lib/shared/util/services/number.helper.service.mjs +23 -0
  63. package/esm2022/lib/store/actions/annotation.actions.mjs +119 -0
  64. package/esm2022/lib/store/actions/bookmark.actions.mjs +112 -0
  65. package/esm2022/lib/store/actions/document.actions.mjs +91 -0
  66. package/esm2022/lib/store/actions/icp.actions.mjs +56 -0
  67. package/esm2022/lib/store/actions/redaction.actions.mjs +132 -0
  68. package/esm2022/lib/store/actions/tag.actions.mjs +21 -0
  69. package/esm2022/lib/store/bookmarks-store-utils.mjs +49 -0
  70. package/esm2022/lib/store/effects/annotation.effects.mjs +51 -0
  71. package/esm2022/lib/store/effects/bookmarks.effects.mjs +44 -0
  72. package/esm2022/lib/store/effects/document.effects.mjs +44 -0
  73. package/esm2022/lib/store/effects/icp.effects.mjs +26 -0
  74. package/esm2022/lib/store/effects/index.mjs +7 -0
  75. package/esm2022/lib/store/effects/redaction.effects.mjs +67 -0
  76. package/esm2022/lib/store/models/bookmarks.interface.mjs +2 -0
  77. package/esm2022/lib/store/models/filters.interface.mjs +2 -0
  78. package/esm2022/lib/store/reducers/annotations.reducer.mjs +208 -0
  79. package/esm2022/lib/store/reducers/bookmarks.reducer.mjs +125 -0
  80. package/esm2022/lib/store/reducers/document.reducer.mjs +158 -0
  81. package/esm2022/lib/store/reducers/icp.reducer.mjs +56 -0
  82. package/esm2022/lib/store/reducers/redaction.reducer.mjs +116 -0
  83. package/esm2022/lib/store/reducers/reducers.mjs +23 -0
  84. package/esm2022/lib/store/reducers/tags.reducer.mjs +93 -0
  85. package/esm2022/lib/store/selectors/annotation.selectors.mjs +81 -0
  86. package/esm2022/lib/store/selectors/bookmark.selectors.mjs +37 -0
  87. package/esm2022/lib/store/selectors/document.selectors.mjs +13 -0
  88. package/esm2022/lib/store/selectors/icp.selectors.mjs +13 -0
  89. package/esm2022/lib/store/selectors/redaction.selectors.mjs +26 -0
  90. package/esm2022/lib/store/selectors/tag.selectors.mjs +15 -0
  91. package/esm2022/lib/store/store-utils.mjs +131 -0
  92. package/esm2022/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +44 -0
  93. package/esm2022/lib/toolbar/icp-event.service.mjs +44 -0
  94. package/esm2022/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +43 -0
  95. package/esm2022/lib/toolbar/main-toolbar/main-toolbar.component.mjs +206 -0
  96. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +237 -0
  97. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search.model.mjs +2 -0
  98. package/esm2022/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +68 -0
  99. package/esm2022/lib/toolbar/search-bar/search-bar.component.mjs +109 -0
  100. package/esm2022/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
  101. package/esm2022/lib/toolbar/toolbar-event.service.mjs +178 -0
  102. package/esm2022/lib/toolbar/toolbar.module.mjs +72 -0
  103. package/esm2022/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +82 -0
  104. package/esm2022/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
  105. package/esm2022/lib/viewers/grab-n-drag.directive.mjs +57 -0
  106. package/esm2022/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
  107. package/esm2022/lib/viewers/multimedia-player/multimedia-player.component.mjs +59 -0
  108. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +266 -0
  109. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
  110. package/esm2022/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +242 -0
  111. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +379 -0
  112. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.mjs +2 -0
  113. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
  114. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.mjs +2 -0
  115. package/esm2022/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +99 -0
  116. package/esm2022/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
  117. package/esm2022/lib/viewers/rotation-persist/rotation-persist.directive.mjs +61 -0
  118. package/esm2022/lib/viewers/rotation-persist/rotation.model.mjs +2 -0
  119. package/esm2022/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
  120. package/esm2022/lib/viewers/viewer-event.service.mjs +34 -0
  121. package/esm2022/lib/viewers/viewer-exception.model.mjs +13 -0
  122. package/esm2022/lib/viewers/viewer-util.service.mjs +20 -0
  123. package/esm2022/public_api.mjs +33 -0
  124. package/fesm2022/hmcts-media-viewer.mjs +302 -303
  125. package/fesm2022/hmcts-media-viewer.mjs.map +1 -1
  126. package/hmcts-media-viewer.d.ts.map +1 -0
  127. package/index.d.ts +4 -2304
  128. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +48 -0
  129. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -0
  130. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +32 -0
  131. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -0
  132. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +18 -0
  133. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -0
  134. package/lib/annotations/annotation-set/annotation-set.component.d.ts +27 -0
  135. package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -0
  136. package/lib/annotations/annotation-set/annotation-set.model.d.ts +7 -0
  137. package/lib/annotations/annotation-set/annotation-set.model.d.ts.map +1 -0
  138. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +34 -0
  139. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -0
  140. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts +16 -0
  141. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts.map +1 -0
  142. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +41 -0
  143. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -0
  144. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts +9 -0
  145. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts.map +1 -0
  146. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +37 -0
  147. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -0
  148. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +37 -0
  149. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -0
  150. package/lib/annotations/annotations.module.d.ts +36 -0
  151. package/lib/annotations/annotations.module.d.ts.map +1 -0
  152. package/lib/annotations/comment-set/comment/comment.component.d.ts +69 -0
  153. package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -0
  154. package/lib/annotations/comment-set/comment/comment.model.d.ts +13 -0
  155. package/lib/annotations/comment-set/comment/comment.model.d.ts.map +1 -0
  156. package/lib/annotations/comment-set/comment/comment.service.d.ts +22 -0
  157. package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -0
  158. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +14 -0
  159. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -0
  160. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +12 -0
  161. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -0
  162. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +28 -0
  163. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -0
  164. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +26 -0
  165. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -0
  166. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +21 -0
  167. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -0
  168. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +36 -0
  169. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -0
  170. package/lib/annotations/comment-set/comment-set-render.service.d.ts +15 -0
  171. package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -0
  172. package/lib/annotations/comment-set/comment-set.component.d.ts +56 -0
  173. package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -0
  174. package/lib/annotations/comments-summary/comments-summary.component.d.ts +42 -0
  175. package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -0
  176. package/lib/annotations/models/api-persisted.model.d.ts +11 -0
  177. package/lib/annotations/models/api-persisted.model.d.ts.map +1 -0
  178. package/lib/annotations/models/event-select.model.d.ts +6 -0
  179. package/lib/annotations/models/event-select.model.d.ts.map +1 -0
  180. package/lib/annotations/models/tags.model.d.ts +7 -0
  181. package/lib/annotations/models/tags.model.d.ts.map +1 -0
  182. package/lib/annotations/models/user.model.d.ts +6 -0
  183. package/lib/annotations/models/user.model.d.ts.map +1 -0
  184. package/lib/annotations/pipes/date/date.pipe.d.ts +16 -0
  185. package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -0
  186. package/lib/annotations/pipes/filter/filter.pipe.d.ts +8 -0
  187. package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -0
  188. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +8 -0
  189. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -0
  190. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +28 -0
  191. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -0
  192. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +21 -0
  193. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -0
  194. package/lib/annotations/services/tags/tags.services.d.ts +18 -0
  195. package/lib/annotations/services/tags/tags.services.d.ts.map +1 -0
  196. package/lib/annotations/tags/tags.component.d.ts +28 -0
  197. package/lib/annotations/tags/tags.component.d.ts.map +1 -0
  198. package/lib/bookmark/components/bookmark-icons.component.d.ts +19 -0
  199. package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -0
  200. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +11 -0
  201. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -0
  202. package/lib/icp/icp-follower.service.d.ts +26 -0
  203. package/lib/icp/icp-follower.service.d.ts.map +1 -0
  204. package/lib/icp/icp-presenter.service.d.ts +25 -0
  205. package/lib/icp/icp-presenter.service.d.ts.map +1 -0
  206. package/lib/icp/icp-session-api.service.d.ts +15 -0
  207. package/lib/icp/icp-session-api.service.d.ts.map +1 -0
  208. package/lib/icp/icp-update.service.d.ts +22 -0
  209. package/lib/icp/icp-update.service.d.ts.map +1 -0
  210. package/lib/icp/icp.events.d.ts +14 -0
  211. package/lib/icp/icp.events.d.ts.map +1 -0
  212. package/lib/icp/icp.interfaces.d.ts +23 -0
  213. package/lib/icp/icp.interfaces.d.ts.map +1 -0
  214. package/lib/icp/icp.service.d.ts +40 -0
  215. package/lib/icp/icp.service.d.ts.map +1 -0
  216. package/lib/icp/participants-list/participants-list.component.d.ts +23 -0
  217. package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -0
  218. package/lib/icp/socket.service.d.ts +29 -0
  219. package/lib/icp/socket.service.d.ts.map +1 -0
  220. package/lib/media-viewer.component.d.ts +72 -0
  221. package/lib/media-viewer.component.d.ts.map +1 -0
  222. package/lib/media-viewer.module.d.ts +36 -0
  223. package/lib/media-viewer.module.d.ts.map +1 -0
  224. package/lib/print.service.d.ts +8 -0
  225. package/lib/print.service.d.ts.map +1 -0
  226. package/lib/redaction/components/redaction.component.d.ts +42 -0
  227. package/lib/redaction/components/redaction.component.d.ts.map +1 -0
  228. package/lib/redaction/services/redaction-api.service.d.ts +20 -0
  229. package/lib/redaction/services/redaction-api.service.d.ts.map +1 -0
  230. package/lib/redaction/services/redaction.model.d.ts +11 -0
  231. package/lib/redaction/services/redaction.model.d.ts.map +1 -0
  232. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +15 -0
  233. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -0
  234. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +11 -0
  235. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -0
  236. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +16 -0
  237. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -0
  238. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +14 -0
  239. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -0
  240. package/lib/shared/shared.module.d.ts +14 -0
  241. package/lib/shared/shared.module.d.ts.map +1 -0
  242. package/lib/shared/util/helpers/html-templates.helper.d.ts +9 -0
  243. package/lib/shared/util/helpers/html-templates.helper.d.ts.map +1 -0
  244. package/lib/shared/util/services/number.helper.service.d.ts +11 -0
  245. package/lib/shared/util/services/number.helper.service.d.ts.map +1 -0
  246. package/lib/store/actions/annotation.actions.d.ts +126 -0
  247. package/lib/store/actions/annotation.actions.d.ts.map +1 -0
  248. package/lib/store/actions/bookmark.actions.d.ts +117 -0
  249. package/lib/store/actions/bookmark.actions.d.ts.map +1 -0
  250. package/lib/store/actions/document.actions.d.ts +90 -0
  251. package/lib/store/actions/document.actions.d.ts.map +1 -0
  252. package/lib/store/actions/icp.actions.d.ts +75 -0
  253. package/lib/store/actions/icp.actions.d.ts.map +1 -0
  254. package/lib/store/actions/redaction.actions.d.ts +127 -0
  255. package/lib/store/actions/redaction.actions.d.ts.map +1 -0
  256. package/lib/store/actions/tag.actions.d.ts +30 -0
  257. package/lib/store/actions/tag.actions.d.ts.map +1 -0
  258. package/lib/store/bookmarks-store-utils.d.ts +9 -0
  259. package/lib/store/bookmarks-store-utils.d.ts.map +1 -0
  260. package/lib/store/effects/annotation.effects.d.ts +16 -0
  261. package/lib/store/effects/annotation.effects.d.ts.map +1 -0
  262. package/lib/store/effects/bookmarks.effects.d.ts +21 -0
  263. package/lib/store/effects/bookmarks.effects.d.ts.map +1 -0
  264. package/lib/store/effects/document.effects.d.ts +17 -0
  265. package/lib/store/effects/document.effects.d.ts.map +1 -0
  266. package/lib/store/effects/icp.effects.d.ts +16 -0
  267. package/lib/store/effects/icp.effects.d.ts.map +1 -0
  268. package/lib/store/effects/index.d.ts +2 -0
  269. package/lib/store/effects/index.d.ts.map +1 -0
  270. package/lib/store/effects/redaction.effects.d.ts +20 -0
  271. package/lib/store/effects/redaction.effects.d.ts.map +1 -0
  272. package/lib/store/models/bookmarks.interface.d.ts +31 -0
  273. package/lib/store/models/bookmarks.interface.d.ts.map +1 -0
  274. package/lib/store/models/filters.interface.d.ts +8 -0
  275. package/lib/store/models/filters.interface.d.ts.map +1 -0
  276. package/lib/store/reducers/annotations.reducer.d.ts +48 -0
  277. package/lib/store/reducers/annotations.reducer.d.ts.map +1 -0
  278. package/lib/store/reducers/bookmarks.reducer.d.ts +27 -0
  279. package/lib/store/reducers/bookmarks.reducer.d.ts.map +1 -0
  280. package/lib/store/reducers/document.reducer.d.ts +52 -0
  281. package/lib/store/reducers/document.reducer.d.ts.map +1 -0
  282. package/lib/store/reducers/icp.reducer.d.ts +9 -0
  283. package/lib/store/reducers/icp.reducer.d.ts.map +1 -0
  284. package/lib/store/reducers/redaction.reducer.d.ts +32 -0
  285. package/lib/store/reducers/redaction.reducer.d.ts.map +1 -0
  286. package/lib/store/reducers/reducers.d.ts +24 -0
  287. package/lib/store/reducers/reducers.d.ts.map +1 -0
  288. package/lib/store/reducers/tags.reducer.d.ts +32 -0
  289. package/lib/store/reducers/tags.reducer.d.ts.map +1 -0
  290. package/lib/store/selectors/annotation.selectors.d.ts +136 -0
  291. package/lib/store/selectors/annotation.selectors.d.ts.map +1 -0
  292. package/lib/store/selectors/bookmark.selectors.d.ts +38 -0
  293. package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -0
  294. package/lib/store/selectors/document.selectors.d.ts +23 -0
  295. package/lib/store/selectors/document.selectors.d.ts.map +1 -0
  296. package/lib/store/selectors/icp.selectors.d.ts +10 -0
  297. package/lib/store/selectors/icp.selectors.d.ts.map +1 -0
  298. package/lib/store/selectors/redaction.selectors.d.ts +35 -0
  299. package/lib/store/selectors/redaction.selectors.d.ts.map +1 -0
  300. package/lib/store/selectors/tag.selectors.d.ts +28 -0
  301. package/lib/store/selectors/tag.selectors.d.ts.map +1 -0
  302. package/lib/store/store-utils.d.ts +25 -0
  303. package/lib/store/store-utils.d.ts.map +1 -0
  304. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts +20 -0
  305. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts.map +1 -0
  306. package/lib/toolbar/icp-event.service.d.ts +21 -0
  307. package/lib/toolbar/icp-event.service.d.ts.map +1 -0
  308. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +24 -0
  309. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -0
  310. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +69 -0
  311. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -0
  312. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +60 -0
  313. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -0
  314. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts +12 -0
  315. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts.map +1 -0
  316. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +30 -0
  317. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -0
  318. package/lib/toolbar/search-bar/search-bar.component.d.ts +34 -0
  319. package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -0
  320. package/lib/toolbar/toolbar-button-visibility.service.d.ts +67 -0
  321. package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -0
  322. package/lib/toolbar/toolbar-event.service.d.ts +96 -0
  323. package/lib/toolbar/toolbar-event.service.d.ts.map +1 -0
  324. package/lib/toolbar/toolbar.module.d.ts +19 -0
  325. package/lib/toolbar/toolbar.module.d.ts.map +1 -0
  326. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +31 -0
  327. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -0
  328. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +12 -0
  329. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -0
  330. package/lib/viewers/grab-n-drag.directive.d.ts +19 -0
  331. package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -0
  332. package/lib/viewers/image-viewer/image-viewer.component.d.ts +57 -0
  333. package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -0
  334. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +25 -0
  335. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -0
  336. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts +69 -0
  337. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts.map +1 -0
  338. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +17 -0
  339. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -0
  340. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +82 -0
  341. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -0
  342. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +82 -0
  343. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -0
  344. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts +22 -0
  345. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts.map +1 -0
  346. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +20 -0
  347. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -0
  348. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts +14 -0
  349. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts.map +1 -0
  350. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +42 -0
  351. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -0
  352. package/lib/viewers/rotation-persist/rotation-api.service.d.ts +14 -0
  353. package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -0
  354. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +27 -0
  355. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -0
  356. package/lib/viewers/rotation-persist/rotation.model.d.ts +5 -0
  357. package/lib/viewers/rotation-persist/rotation.model.d.ts.map +1 -0
  358. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +23 -0
  359. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -0
  360. package/lib/viewers/viewer-event.service.d.ts +23 -0
  361. package/lib/viewers/viewer-event.service.d.ts.map +1 -0
  362. package/lib/viewers/viewer-exception.model.d.ts +15 -0
  363. package/lib/viewers/viewer-exception.model.d.ts.map +1 -0
  364. package/lib/viewers/viewer-util.service.d.ts +10 -0
  365. package/lib/viewers/viewer-util.service.d.ts.map +1 -0
  366. package/package.json +12 -10
  367. package/public_api.d.ts +30 -0
  368. package/public_api.d.ts.map +1 -0
  369. package/index.d.ts.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comments-navigate.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,aAAa,EAAqB,MAAM,eAAe,CAAC;AAC9F,OAAO,EAAE,SAAS,EAAE,MAAM,gEAAgE,CAAC;AAC3F,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAClC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAE9D,OAAO,EAAC,mBAAmB,EAAC,MAAM,wCAAwC,CAAC;;AAE3E,qBAKa,yBAA0B,YAAW,SAAS;IAQ7C,OAAO,CAAC,KAAK;aAAuD,aAAa,EAAE,mBAAmB;IANlG,cAAc,EAAE,UAAU,EAAE,CAAC;IACpC,UAAU,UAAS;IAE5B,cAAc,EAAE,GAAG,EAAE,CAAM;IAC3B,KAAK,SAAK;gBAEU,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EAAkB,aAAa,EAAE,mBAAmB;IAElH,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,kBAAkB,IAAI,IAAI;IAqB1B,YAAY,CAAC,cAAc,KAAA,EAAE,cAAc,KAAA;IAc3C,QAAQ;IAaR,QAAQ;IAaR,cAAc,CAAC,UAAU,EAAE,SAAS,EAAE;;;;yCA7E3B,yBAAyB;2CAAzB,yBAAyB;CAiFrC"}
@@ -0,0 +1,26 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Store } from '@ngrx/store';
3
+ import * as fromStore from '../../../../store/reducers/reducers';
4
+ import { Observable, Subscription } from 'rxjs';
5
+ import { UntypedFormGroup, UntypedFormBuilder } from '@angular/forms';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CommentFilterComponent implements OnInit, OnDestroy {
8
+ private store;
9
+ private fb;
10
+ tagGroup: UntypedFormGroup;
11
+ $subscriptions: Subscription;
12
+ filter$: Observable<string[]>;
13
+ allTags$: Observable<any>;
14
+ searchValue: string;
15
+ isPreview: boolean;
16
+ constructor(store: Store<fromStore.State>, fb: UntypedFormBuilder);
17
+ ngOnInit(): void;
18
+ buildFrom(): void;
19
+ onClearFilters(): void;
20
+ ngOnDestroy(): void;
21
+ onRemoveFilter(tagName: any): void;
22
+ onToggleFilterView(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentFilterComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommentFilterComponent, "mv-comment-filter", never, {}, {}, never, never, false, never>;
25
+ }
26
+ //# sourceMappingURL=comment-filter.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comment-filter.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAoB,MAAM,eAAe,CAAC;AAE9E,OAAO,EAAS,KAAK,EAAC,MAAM,aAAa,CAAC;AAC1C,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;AAGjE,OAAO,EAAC,UAAU,EAAE,YAAY,EAAC,MAAM,MAAM,CAAC;AAC9C,OAAO,EAAC,gBAAgB,EAAE,kBAAkB,EAAqB,MAAM,gBAAgB,CAAC;;AAIxF,qBAKa,sBAAuB,YAAW,MAAM,EAAE,SAAS;IAQ5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,EAAE;IARZ,QAAQ,EAAE,gBAAgB,CAAC;IAC3B,cAAc,EAAE,YAAY,CAAC;IAC7B,OAAO,EAAE,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC;IAC9B,QAAQ,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAC1B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,UAAS;gBAER,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EAC7B,EAAE,EAAE,kBAAkB;IAEhC,QAAQ,IAAI,IAAI;IAahB,SAAS;IAUT,cAAc;IAKd,WAAW,IAAI,IAAI;IAInB,cAAc,CAAC,OAAO,KAAA;IAKtB,kBAAkB;yCAhDP,sBAAsB;2CAAtB,sBAAsB;CAqDlC"}
@@ -0,0 +1,21 @@
1
+ import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
2
+ import { Annotation } from '../../../annotation-set/annotation-view/annotation.model';
3
+ import { Store } from '@ngrx/store';
4
+ import * as fromStore from '../../../../store/reducers/reducers';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CommentSearchComponent implements AfterViewInit, OnDestroy {
7
+ private store;
8
+ readonly annotations: Annotation[];
9
+ searchInput: ElementRef<HTMLInputElement>;
10
+ searchString: string;
11
+ searchResults: Annotation[];
12
+ searchIndex: number;
13
+ constructor(store: Store<fromStore.AnnotationSetState>);
14
+ ngAfterViewInit(): void;
15
+ ngOnDestroy(): void;
16
+ searchComments(searchText: string): void;
17
+ clearSearch(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentSearchComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommentSearchComponent, "mv-comment-search", never, { "annotations": { "alias": "annotations"; "required": false; }; }, {}, never, never, false, never>;
20
+ }
21
+ //# sourceMappingURL=comment-search.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comment-search.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAS,SAAS,EAAgC,MAAM,eAAe,CAAC;AACrH,OAAO,EAAE,UAAU,EAAE,MAAM,0DAA0D,CAAC;AACtF,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;;AAGjE,qBAKa,sBAAuB,YAAW,aAAa,EAAE,SAAS;IAUzD,OAAO,CAAC,KAAK;IARzB,SAAyB,WAAW,EAAE,UAAU,EAAE,CAAC;IAER,WAAW,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;IAErF,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,UAAU,EAAE,CAAM;IACjC,WAAW,SAAK;gBAEI,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAE9D,eAAe,IAAI,IAAI;IAMvB,WAAW,IAAI,IAAI;IAKnB,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAcxC,WAAW;yCArCA,sBAAsB;2CAAtB,sBAAsB;CA2ClC"}
@@ -0,0 +1,36 @@
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
+ import { Annotation } from '../../annotation-set/annotation-view/annotation.model';
3
+ import { Store } from '@ngrx/store';
4
+ import * as fromStore from '../../../store/reducers/reducers';
5
+ import { Subscription } from 'rxjs';
6
+ import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
7
+ import { CommentService } from '../comment/comment.service';
8
+ import { IcpEventService } from '../../../toolbar/icp-event.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class CommentSetHeaderComponent implements OnInit, OnDestroy {
11
+ private store;
12
+ private commentService;
13
+ toolbarEvents: ToolbarEventService;
14
+ readonly icpEventService: IcpEventService;
15
+ showCommentSummary: boolean;
16
+ isHidden: boolean;
17
+ readonly showCommentSummaryDialog: EventEmitter<any>;
18
+ marginToComment: boolean;
19
+ tabs: {
20
+ isFiltered?: boolean;
21
+ label: string;
22
+ }[];
23
+ tabSelected: string;
24
+ isFiltered: boolean;
25
+ navigationList: Annotation[];
26
+ $subscriptions: Subscription;
27
+ constructor(store: Store<fromStore.State>, commentService: CommentService, toolbarEvents: ToolbarEventService, icpEventService: IcpEventService);
28
+ ngOnInit(): void;
29
+ toggleCommentsSummary(): void;
30
+ selectTab(tab: string): void;
31
+ toggleCommentsPanel(): void;
32
+ ngOnDestroy(): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentSetHeaderComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommentSetHeaderComponent, "mv-comment-set-header", never, { "showCommentSummary": { "alias": "showCommentSummary"; "required": false; }; "isHidden": { "alias": "isHidden"; "required": false; }; }, { "showCommentSummaryDialog": "showCommentSummaryDialog"; }, never, never, false, never>;
35
+ }
36
+ //# sourceMappingURL=comment-set-header.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comment-set-header.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAA6B,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACnF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAiB,YAAY,EAAE,MAAM,MAAM,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;;AAErE,qBAKa,yBAA0B,YAAW,MAAM,EAAE,SAAS;IAarD,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,cAAc;IACf,aAAa,EAAE,mBAAmB;aACzB,eAAe,EAAE,eAAe;IAd5C,kBAAkB,EAAE,OAAO,CAAC;IAC5B,QAAQ,EAAE,OAAO,CAAC;IAClC,SAA0B,wBAAwB,oBAAsB;IAExE,eAAe,EAAE,OAAO,CAAC;IACzB,IAAI,EAAE;QAAC,UAAU,CAAC,EAAE,OAAO,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC,EAAE,CAAM;IACnD,WAAW,SAAM;IACjB,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,UAAU,EAAE,CAAC;IAC7B,cAAc,EAAE,YAAY,CAAC;gBAET,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,EAC7B,cAAc,EAAE,cAAc,EAC/B,aAAa,EAAE,mBAAmB,EACzB,eAAe,EAAE,eAAe;IAE5D,QAAQ,IAAI,IAAI;IAeT,qBAAqB,IAAI,IAAI;IAIpC,SAAS,CAAC,GAAG,EAAE,MAAM;IAWd,mBAAmB;IAI1B,WAAW,IAAI,IAAI;yCApDR,yBAAyB;2CAAzB,yBAAyB;CAuDrC"}
@@ -0,0 +1,15 @@
1
+ import { CommentComponent } from './comment/comment.component';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CommentSetRenderService {
4
+ redrawComponents(commentComponents: CommentComponent[], pageHeights: any[], rotate: number, zoom: number): void;
5
+ sortComponents(commentComponents: CommentComponent[], pageHeights: any[], rotate: number, zoom: number): CommentComponent[];
6
+ private adjustIfOverlapping;
7
+ private processSort;
8
+ private onSameLine;
9
+ private top;
10
+ private height;
11
+ private difference;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentSetRenderService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<CommentSetRenderService>;
14
+ }
15
+ //# sourceMappingURL=comment-set-render.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comment-set-render.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-render.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;;AAG/D,qBACa,uBAAuB;IAElC,gBAAgB,CAAC,iBAAiB,EAAE,gBAAgB,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;IAQxG,cAAc,CAAC,iBAAiB,EAAE,gBAAgB,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;IAQtG,OAAO,CAAC,mBAAmB;IAS3B,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,GAAG;IAUX,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,UAAU;yCApDP,uBAAuB;6CAAvB,uBAAuB;CAqDnC"}
@@ -0,0 +1,56 @@
1
+ import { ElementRef, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { Store } from '@ngrx/store';
4
+ import { AnnotationSet } from '../annotation-set/annotation-set.model';
5
+ import { Annotation } from '../annotation-set/annotation-view/annotation.model';
6
+ import { Comment } from './comment/comment.model';
7
+ import { CommentComponent } from './comment/comment.component';
8
+ import { CommentService } from './comment/comment.service';
9
+ import { CommentSetRenderService } from './comment-set-render.service';
10
+ import * as fromStore from '../../store/reducers/reducers';
11
+ import { TagsModel } from '../models/tags.model';
12
+ import { SelectionAnnotation } from '../models/event-select.model';
13
+ import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
14
+ import * as i0 from "@angular/core";
15
+ export declare class CommentSetComponent implements OnInit, OnDestroy, OnChanges {
16
+ private store;
17
+ private readonly commentService;
18
+ private readonly renderService;
19
+ private readonly toolbarEvents;
20
+ annotationSet: AnnotationSet;
21
+ zoom: number;
22
+ rotate: number;
23
+ height: number;
24
+ pageHeights: any[];
25
+ contentScrollTop: number;
26
+ comments: Comment[];
27
+ tags: TagsModel[];
28
+ private subscriptions;
29
+ comments$: Observable<Annotation[]>;
30
+ annoEntities$: Observable<{
31
+ [id: string]: Annotation;
32
+ }>;
33
+ container: ElementRef<HTMLDivElement>;
34
+ panel: ElementRef<HTMLDivElement>;
35
+ commentComponents: QueryList<CommentComponent>;
36
+ showCommentsPanel: boolean;
37
+ constructor(store: Store<fromStore.AnnotationSetState>, commentService: CommentService, renderService: CommentSetRenderService, toolbarEvents: ToolbarEventService);
38
+ ngOnInit(): void;
39
+ ngOnChanges(changes: SimpleChanges): void;
40
+ ngOnDestroy(): void;
41
+ onSelect(annotationId: SelectionAnnotation): void;
42
+ onCommentDelete(comment: Comment): void;
43
+ redrawComments(): void;
44
+ private rotateDocument;
45
+ onCommentUpdate(payload: {
46
+ comment: Comment;
47
+ tags: TagsModel[];
48
+ }): void;
49
+ onAnnotationUpdate(annotation: Annotation): void;
50
+ onContainerClick(e: any): void;
51
+ clearSelection(): void;
52
+ allCommentsSaved(): void;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentSetComponent, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommentSetComponent, "mv-comment-set", never, { "annotationSet": { "alias": "annotationSet"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "height": { "alias": "height"; "required": false; }; "pageHeights": { "alias": "pageHeights"; "required": false; }; "contentScrollTop": { "alias": "contentScrollTop"; "required": false; }; }, {}, never, never, false, never>;
55
+ }
56
+ //# sourceMappingURL=comment-set.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comment-set.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/comment-set/comment-set.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACH,SAAS,EAChB,SAAS,EACT,MAAM,EACN,SAAS,EAAE,aAAa,EAGzB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,EAAE,UAAU,EAAE,MAAM,oDAAoD,CAAC;AAChF,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAG3D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAE1E,qBAIa,mBAAoB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IAqB1D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAtBjC,aAAa,EAAE,aAAa,CAAC;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,QAAM;IACjB,gBAAgB,EAAE,MAAM,CAAC;IAElC,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,IAAI,EAAE,SAAS,EAAE,CAAC;IAClB,OAAO,CAAC,aAAa,CAAsB;IACpC,SAAS,EAAE,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IACpC,aAAa,EAAE,UAAU,CAAC;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAAA;KAAE,CAAC,CAAC;IAEtB,SAAS,EAAE,UAAU,CAAC,cAAc,CAAC,CAAC;IAC1C,KAAK,EAAE,UAAU,CAAC,cAAc,CAAC,CAAC;IACrC,iBAAiB,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAC;IAEjF,iBAAiB,EAAE,OAAO,CAAC;gBAEP,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,cAAc,EAAE,cAAc,EAC9B,aAAa,EAAE,uBAAuB,EACtC,aAAa,EAAE,mBAAmB;IAI/D,QAAQ;IAYR,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAWzC,WAAW;IAMJ,QAAQ,CAAC,YAAY,EAAE,mBAAmB;IAI1C,eAAe,CAAC,OAAO,EAAE,OAAO;IAWvC,cAAc;IAOd,OAAO,CAAC,cAAc;IAMf,eAAe,CAAC,OAAO,EAAE;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,SAAS,EAAE,CAAA;KAAC;IAY9D,kBAAkB,CAAC,UAAU,EAAE,UAAU;IAIhD,gBAAgB,CAAC,CAAC,KAAA;IAMlB,cAAc;IAId,gBAAgB;yCA/GL,mBAAmB;2CAAnB,mBAAmB;CAkH/B"}
@@ -0,0 +1,42 @@
1
+ import { ElementRef, OnInit, OnDestroy } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { Observable } from 'rxjs';
4
+ import { Store } from '@ngrx/store';
5
+ import { PrintService } from '../../print.service';
6
+ import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
7
+ import * as fromStore from '../../store/reducers/reducers';
8
+ import * as i0 from "@angular/core";
9
+ export declare class CommentsSummaryComponent implements OnInit, OnDestroy {
10
+ private store;
11
+ private readonly printService;
12
+ private readonly toolbarEvents;
13
+ private fb;
14
+ title: string;
15
+ contentType: string;
16
+ container: ElementRef;
17
+ commentsTable: ElementRef;
18
+ comments$: Observable<any>;
19
+ filtersFg: FormGroup;
20
+ private $subscriptions;
21
+ allTags$: Observable<{
22
+ key: string;
23
+ length: number;
24
+ }[]>;
25
+ showFilters: boolean;
26
+ hasFilter: boolean;
27
+ fromFilterValid: boolean;
28
+ toFilterValid: boolean;
29
+ constructor(store: Store<fromStore.AnnotationSetState>, printService: PrintService, toolbarEvents: ToolbarEventService, fb: FormBuilder);
30
+ ngOnInit(): void;
31
+ buildCheckBoxForm(): void;
32
+ onClearFilters(): void;
33
+ onFilter(): void;
34
+ onFiltersToggle(): void;
35
+ onClose(): void;
36
+ onPrint(): void;
37
+ navigateToPage(pageNumber: number): void;
38
+ ngOnDestroy(): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentsSummaryComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommentsSummaryComponent, "mv-comments-summary", never, { "title": { "alias": "title"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; }, {}, never, never, false, never>;
41
+ }
42
+ //# sourceMappingURL=comments-summary.component.d.ts.map
@@ -0,0 +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,EAA+B,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC3F,OAAO,EAAE,WAAW,EAAe,SAAS,EAAkC,MAAM,gBAAgB,CAAC;AACrG,OAAO,EAAiB,UAAU,EAAgB,MAAM,MAAM,CAAC;AAC/D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,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;IAgB9D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,EAAE;IAjBH,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACkB,SAAS,EAAE,UAAU,CAAC;IACnB,aAAa,EAAE,UAAU,CAAC;IACrE,SAAS,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAC3B,SAAS,EAAE,SAAS,CAAC;IAC5B,OAAO,CAAC,cAAc,CAAe;IACrC,QAAQ,EAAE,UAAU,CAAC;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC,CAAC;IACxD,WAAW,UAAS;IACpB,SAAS,UAAS;IAClB,eAAe,EAAE,OAAO,CAAQ;IAChC,aAAa,EAAE,OAAO,CAAQ;gBAGpB,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;IAmBR,eAAe;IAIR,OAAO,IAAI,IAAI;IAIf,OAAO,IAAI,IAAI;IAItB,cAAc,CAAC,UAAU,EAAE,MAAM;IAQjC,WAAW,IAAI,IAAI;yCAtGR,wBAAwB;2CAAxB,wBAAwB;CAyGpC"}
@@ -0,0 +1,11 @@
1
+ import { User } from './user.model';
2
+ export interface ApiPersisted {
3
+ id: string;
4
+ createdBy: string;
5
+ createdByDetails: User;
6
+ createdDate: string;
7
+ lastModifiedBy: string;
8
+ lastModifiedByDetails: User;
9
+ lastModifiedDate: string;
10
+ }
11
+ //# sourceMappingURL=api-persisted.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-persisted.model.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/models/api-persisted.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEpC,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,IAAI,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,qBAAqB,EAAE,IAAI,CAAC;IAC5B,gBAAgB,EAAE,MAAM,CAAC;CAC1B"}
@@ -0,0 +1,6 @@
1
+ export interface SelectionAnnotation {
2
+ annotationId: string;
3
+ editable: boolean;
4
+ selected: boolean;
5
+ }
6
+ //# sourceMappingURL=event-select.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"event-select.model.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/models/event-select.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;CACnB"}
@@ -0,0 +1,7 @@
1
+ export interface TagsModel {
2
+ name: string;
3
+ label: string;
4
+ color?: string;
5
+ id?: string;
6
+ }
7
+ //# sourceMappingURL=tags.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tags.model.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/models/tags.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;CACb"}
@@ -0,0 +1,6 @@
1
+ export interface User {
2
+ forename: string;
3
+ surname: string;
4
+ email: string;
5
+ }
6
+ //# sourceMappingURL=user.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.model.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/annotations/models/user.model.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,IAAI;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACf"}
@@ -0,0 +1,16 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DatePipe } from '@angular/common';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * A moment timezone pipe to support parsing based on time zone abbreviations
6
+ * covers all cases of offset variation due to daylight saving.
7
+ *
8
+ * Same API as DatePipe with additional timezone abbreviation support
9
+ * Official date pipe dropped support for abbreviations names from Angular V5
10
+ */
11
+ export declare class MomentDatePipe extends DatePipe implements PipeTransform {
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>;
15
+ }
16
+ //# sourceMappingURL=date.pipe.d.ts.map
@@ -0,0 +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;yCANK,cAAc;uCAAd,cAAc;CAU1B"}
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterPipe implements PipeTransform {
4
+ transform(items: any[], searchText: string, fieldName: string): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter", false>;
7
+ }
8
+ //# sourceMappingURL=filter.pipe.d.ts.map
@@ -0,0 +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;yCAF1D,UAAU;uCAAV,UAAU;CAuBtB"}
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class UnsnakePipe implements PipeTransform {
4
+ transform(items: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<UnsnakePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<UnsnakePipe, "unsnake", false>;
7
+ }
8
+ //# sourceMappingURL=unsnake.pipe.d.ts.map
@@ -0,0 +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;yCAFrB,WAAW;uCAAX,WAAW;CAMvB"}
@@ -0,0 +1,28 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { AnnotationSet } from '../../annotation-set/annotation-set.model';
4
+ import { Annotation } from '../../annotation-set/annotation-view/annotation.model';
5
+ import { Comment } from '../../comment-set/comment/comment.model';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AnnotationApiService {
8
+ private readonly httpClient;
9
+ annotationApiUrl: string;
10
+ private annotationSetBaseUrl;
11
+ private annotationBaseUrl;
12
+ constructor(httpClient: HttpClient);
13
+ getAnnotationSet(documentId: string): Observable<any>;
14
+ postAnnotationSet(body: Partial<AnnotationSet>): Observable<AnnotationSet>;
15
+ getComments(annotationSet: Observable<AnnotationSet>): Observable<Comment[]>;
16
+ /**
17
+ * Sort the annotations in the response by page and then y position of their first rectangle
18
+ */
19
+ private sortAnnotations;
20
+ private extractComments;
21
+ deleteAnnotation(annotationId: string): Observable<null>;
22
+ postAnnotation(annotation: Partial<Annotation>): Observable<Annotation>;
23
+ get annotationSetsFullUrl(): string;
24
+ get annotationFullsUrl(): string;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationApiService, never>;
26
+ static ɵprov: i0.ɵɵInjectableDeclaration<AnnotationApiService>;
27
+ }
28
+ //# sourceMappingURL=annotation-api.service.d.ts.map
@@ -0,0 +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;yCAjEU,oBAAoB;6CAApB,oBAAoB;CAkEhC"}
@@ -0,0 +1,21 @@
1
+ import { Observable } from 'rxjs';
2
+ import { HttpClient } from '@angular/common/http';
3
+ import { Bookmark } from '../../../viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces';
4
+ import * as i0 from "@angular/core";
5
+ export declare class BookmarksApiService {
6
+ private readonly httpClient;
7
+ private readonly ANNOTATIONS_API;
8
+ constructor(httpClient: HttpClient);
9
+ getBookmarks(documentId: string): Observable<any>;
10
+ createBookmark(bookmark: Partial<Bookmark>): Observable<Bookmark>;
11
+ updateBookmark(bookmark: Partial<Bookmark>): Observable<Bookmark>;
12
+ updateMultipleBookmarks(bookmarks: Partial<Bookmark[]>): Observable<Bookmark[]>;
13
+ deleteBookmark(bookmarkId: string): Observable<void>;
14
+ deleteMultipleBookmarks(payload: {
15
+ deleted: string[];
16
+ updated: Bookmark;
17
+ }): Observable<void>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<BookmarksApiService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<BookmarksApiService>;
20
+ }
21
+ //# sourceMappingURL=bookmarks-api.service.d.ts.map
@@ -0,0 +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;yCA1CxF,mBAAmB;6CAAnB,mBAAmB;CAgD/B"}
@@ -0,0 +1,18 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { TagsModel } from '../../models/tags.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TagsServices {
6
+ private http;
7
+ tagItems: {
8
+ [id: string]: TagsModel[];
9
+ };
10
+ constructor(http: HttpClient);
11
+ getAllTags(createdBy: string): Observable<TagsModel[]>;
12
+ getNewTags(annoid: string): TagsModel[];
13
+ updateTagItems(items: Array<TagsModel>, annoId: string): void;
14
+ private snakeCase;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagsServices, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<TagsServices>;
17
+ }
18
+ //# sourceMappingURL=tags.services.d.ts.map
@@ -0,0 +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;yCApCU,YAAY;6CAAZ,YAAY;CAqCxB"}
@@ -0,0 +1,28 @@
1
+ import { TagsModel } from '../models/tags.model';
2
+ import { TagsServices } from '../services/tags/tags.services';
3
+ import { UntypedFormControl } from '@angular/forms';
4
+ import { Observable } from 'rxjs';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TagsComponent {
7
+ private tagsServices;
8
+ tagItems: TagsModel[];
9
+ userId: string;
10
+ editable: boolean;
11
+ annoId: string;
12
+ validators: (((control: UntypedFormControl) => {
13
+ minLength: boolean;
14
+ }) | ((control: UntypedFormControl) => {
15
+ maxLength20: boolean;
16
+ }))[];
17
+ errorMessages: {
18
+ [id: string]: string;
19
+ };
20
+ constructor(tagsServices: TagsServices);
21
+ onUpdateTags(value: any): void;
22
+ requestAutocompleteItems: (text: string) => Observable<any[]>;
23
+ private minLength;
24
+ private maxLength20;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagsComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "mv-tags", never, { "tagItems": { "alias": "tagItems"; "required": false; }; "userId": { "alias": "userId"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "annoId": { "alias": "annoId"; "required": false; }; }, {}, never, never, false, never>;
27
+ }
28
+ //# sourceMappingURL=tags.component.d.ts.map
@@ -0,0 +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,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"}
@@ -0,0 +1,19 @@
1
+ import { Bookmark, BookmarksPerPage } from '../../viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces';
2
+ import { OnInit } from '@angular/core';
3
+ import { Store } from '@ngrx/store';
4
+ import * as fromStore from '../../store/reducers/reducers';
5
+ import { Observable } from 'rxjs';
6
+ import * as i0 from "@angular/core";
7
+ export declare class BookmarkIconsComponent implements OnInit {
8
+ private store;
9
+ zoom: number;
10
+ rotate: number;
11
+ bookmarksPerPage$: Observable<BookmarksPerPage[]>;
12
+ bookmarks: Bookmark[];
13
+ documentId: string;
14
+ constructor(store: Store<fromStore.State>);
15
+ ngOnInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkIconsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<BookmarkIconsComponent, "mv-bookmark-icons", never, { "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; }, {}, never, never, false, never>;
18
+ }
19
+ //# sourceMappingURL=bookmark-icons.component.d.ts.map
@@ -0,0 +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;yCAVL,sBAAsB;2CAAtB,sBAAsB;CAclC"}
@@ -0,0 +1,11 @@
1
+ import { IcpEventService } from '../../toolbar/icp-event.service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ConfirmActionDialogComponent {
4
+ private icpEventService;
5
+ constructor(icpEventService: IcpEventService);
6
+ onCancel(): void;
7
+ onConfirm(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmActionDialogComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmActionDialogComponent, "mv-confirm-action", never, {}, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=confirm-action-dialog.component.d.ts.map
@@ -0,0 +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":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;;AAElE,qBAIa,4BAA4B;IAE3B,OAAO,CAAC,eAAe;gBAAf,eAAe,EAAE,eAAe;IAEpD,QAAQ;IAIR,SAAS;yCARE,4BAA4B;2CAA5B,4BAA4B;CAYxC"}
@@ -0,0 +1,26 @@
1
+ import { ToolbarEventService } from '../toolbar/toolbar-event.service';
2
+ import { Store } from '@ngrx/store';
3
+ import { Subscription } from 'rxjs';
4
+ import { IcpUpdateService } from './icp-update.service';
5
+ import { ViewerEventService } from '../viewers/viewer-event.service';
6
+ import { IcpState, IcpSession } from './icp.interfaces';
7
+ import * as i0 from "@angular/core";
8
+ export declare class IcpFollowerService {
9
+ private readonly toolbarEvents;
10
+ private readonly viewerEvents;
11
+ private readonly socketService;
12
+ private store;
13
+ session: IcpSession;
14
+ private previousRotation;
15
+ $subscription: Subscription;
16
+ constructor(toolbarEvents: ToolbarEventService, viewerEvents: ViewerEventService, socketService: IcpUpdateService, store: Store<IcpState>);
17
+ update(isFollower: boolean): void;
18
+ subscribe(): void;
19
+ unsubscribe(): void;
20
+ followScreenUpdate({ pdfPosition }: {
21
+ pdfPosition: any;
22
+ }): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpFollowerService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpFollowerService>;
25
+ }
26
+ //# sourceMappingURL=icp-follower.service.d.ts.map
@@ -0,0 +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;IACxC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IAPf,OAAO,EAAE,UAAU,CAAC;IACpB,OAAO,CAAC,gBAAgB,CAAqB;IAC7C,aAAa,EAAE,YAAY,CAAC;gBAEC,aAAa,EAAE,mBAAmB,EAC5C,YAAY,EAAE,kBAAkB,EAChC,aAAa,EAAE,gBAAgB,EACxC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC;IAGhC,MAAM,CAAC,UAAU,EAAE,OAAO;IAQ1B,SAAS;IAOT,WAAW;IAOX,kBAAkB,CAAC,EAAE,WAAW,EAAE;;KAAA;yCAlCvB,kBAAkB;6CAAlB,kBAAkB;CAyD9B"}
@@ -0,0 +1,25 @@
1
+ import { ToolbarEventService } from '../toolbar/toolbar-event.service';
2
+ import { Store } from '@ngrx/store';
3
+ import { Subscription } from 'rxjs';
4
+ import { IcpUpdateService } from './icp-update.service';
5
+ import { IcpState, IcpSession, IcpParticipant } from './icp.interfaces';
6
+ import { PdfPosition } from '../store/reducers/document.reducer';
7
+ import * as i0 from "@angular/core";
8
+ export declare class IcpPresenterService {
9
+ private readonly toolbarEvents;
10
+ private readonly socketService;
11
+ private store;
12
+ session: IcpSession;
13
+ presenter: IcpParticipant;
14
+ pdfPosition: PdfPosition;
15
+ $subscription: Subscription;
16
+ constructor(toolbarEvents: ToolbarEventService, socketService: IcpUpdateService, store: Store<IcpState>);
17
+ update(isPresenter: boolean): void;
18
+ subscribe(): void;
19
+ unsubscribe(): void;
20
+ onPositionUpdate(pdfPosition: PdfPosition): void;
21
+ onNewParticipantJoined(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpPresenterService, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpPresenterService>;
24
+ }
25
+ //# sourceMappingURL=icp-presenter.service.d.ts.map
@@ -0,0 +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,EAAwB,YAAY,EAAQ,MAAM,MAAM,CAAC;AAChE,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"}
@@ -0,0 +1,15 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class IcpSessionApiService {
5
+ private readonly httpClient;
6
+ ICP_SESSION_API: string;
7
+ constructor(httpClient: HttpClient);
8
+ loadSession(payload: {
9
+ caseId: string;
10
+ documentId: string;
11
+ }): Observable<any>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpSessionApiService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpSessionApiService>;
14
+ }
15
+ //# sourceMappingURL=icp-session-api.service.d.ts.map
@@ -0,0 +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,OAAO,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE,GAAG,UAAU,CAAC,GAAG,CAAC;yCANzE,oBAAoB;6CAApB,oBAAoB;CAkBhC"}
@@ -0,0 +1,22 @@
1
+ import { SocketService } from './socket.service';
2
+ import { IcpParticipant, IcpScreenUpdate, IcpSession } from './icp.interfaces';
3
+ import * as i0 from "@angular/core";
4
+ export declare class IcpUpdateService {
5
+ private socket;
6
+ session: IcpSession;
7
+ constructor(socket: SocketService);
8
+ private joinSessionSubscription;
9
+ joinSession(username: string, session: IcpSession, token: string): import("rxjs").Observable<any>;
10
+ leaveSession(): void;
11
+ newParticipantJoined(): import("rxjs").Observable<any>;
12
+ clientDisconnected(): import("rxjs").Observable<any>;
13
+ removeParticipant(participantId: any): void;
14
+ participantListUpdated(): import("rxjs").Observable<any>;
15
+ updatePresenter(presenter: IcpParticipant): void;
16
+ presenterUpdated(): import("rxjs").Observable<any>;
17
+ updateScreen(screen: IcpScreenUpdate): void;
18
+ screenUpdated(): import("rxjs").Observable<any>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpUpdateService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpUpdateService>;
21
+ }
22
+ //# sourceMappingURL=icp-update.service.d.ts.map