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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (372) hide show
  1. package/assets/all.scss +1 -0
  2. package/assets/sass/tooltip.scss +50 -0
  3. package/esm2022/hmcts-media-viewer.mjs +5 -0
  4. package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +122 -0
  5. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +120 -0
  6. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +101 -0
  7. package/esm2022/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
  8. package/esm2022/lib/annotations/annotation-set/annotation-set.model.mjs +2 -0
  9. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
  10. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation.model.mjs +2 -0
  11. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
  12. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.mjs +2 -0
  13. package/esm2022/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +119 -0
  14. package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +86 -0
  15. package/esm2022/lib/annotations/annotations.module.mjs +162 -0
  16. package/esm2022/lib/annotations/comment-set/comment/comment.component.mjs +178 -0
  17. package/esm2022/lib/annotations/comment-set/comment/comment.model.mjs +2 -0
  18. package/esm2022/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
  19. package/esm2022/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
  20. package/esm2022/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
  21. package/esm2022/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
  22. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +62 -0
  23. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +54 -0
  24. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +72 -0
  25. package/esm2022/lib/annotations/comment-set/comment-set-render.service.mjs +55 -0
  26. package/esm2022/lib/annotations/comment-set/comment-set.component.mjs +123 -0
  27. package/esm2022/lib/annotations/comments-summary/comments-summary.component.mjs +120 -0
  28. package/esm2022/lib/annotations/models/api-persisted.model.mjs +2 -0
  29. package/esm2022/lib/annotations/models/event-select.model.mjs +2 -0
  30. package/esm2022/lib/annotations/models/tags.model.mjs +2 -0
  31. package/esm2022/lib/annotations/models/user.model.mjs +2 -0
  32. package/esm2022/lib/annotations/pipes/date/date.pipe.mjs +26 -0
  33. package/esm2022/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
  34. package/esm2022/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
  35. package/esm2022/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
  36. package/esm2022/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
  37. package/esm2022/lib/annotations/services/tags/tags.services.mjs +41 -0
  38. package/esm2022/lib/annotations/tags/tags.component.mjs +53 -0
  39. package/esm2022/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
  40. package/esm2022/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
  41. package/esm2022/lib/icp/icp-follower.service.mjs +65 -0
  42. package/esm2022/lib/icp/icp-presenter.service.mjs +56 -0
  43. package/esm2022/lib/icp/icp-session-api.service.mjs +28 -0
  44. package/esm2022/lib/icp/icp-update.service.mjs +73 -0
  45. package/esm2022/lib/icp/icp.events.mjs +15 -0
  46. package/esm2022/lib/icp/icp.interfaces.mjs +2 -0
  47. package/esm2022/lib/icp/icp.service.mjs +98 -0
  48. package/esm2022/lib/icp/participants-list/participants-list.component.mjs +32 -0
  49. package/esm2022/lib/icp/socket.service.mjs +128 -0
  50. package/esm2022/lib/media-viewer.component.mjs +247 -0
  51. package/esm2022/lib/media-viewer.module.mjs +139 -0
  52. package/esm2022/lib/print.service.mjs +32 -0
  53. package/esm2022/lib/redaction/components/redaction.component.mjs +91 -0
  54. package/esm2022/lib/redaction/services/redaction-api.service.mjs +50 -0
  55. package/esm2022/lib/redaction/services/redaction.model.mjs +2 -0
  56. package/esm2022/lib/shared/directives/tooltip-dismiss.directive.mjs +36 -0
  57. package/esm2022/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
  58. package/esm2022/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
  59. package/esm2022/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
  60. package/esm2022/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
  61. package/esm2022/lib/shared/shared.module.mjs +53 -0
  62. package/esm2022/lib/shared/util/helpers/html-templates.helper.mjs +29 -0
  63. package/esm2022/lib/shared/util/services/number.helper.service.mjs +23 -0
  64. package/esm2022/lib/store/actions/annotation.actions.mjs +119 -0
  65. package/esm2022/lib/store/actions/bookmark.actions.mjs +112 -0
  66. package/esm2022/lib/store/actions/document.actions.mjs +91 -0
  67. package/esm2022/lib/store/actions/icp.actions.mjs +56 -0
  68. package/esm2022/lib/store/actions/redaction.actions.mjs +132 -0
  69. package/esm2022/lib/store/actions/tag.actions.mjs +21 -0
  70. package/esm2022/lib/store/bookmarks-store-utils.mjs +49 -0
  71. package/esm2022/lib/store/effects/annotation.effects.mjs +51 -0
  72. package/esm2022/lib/store/effects/bookmarks.effects.mjs +44 -0
  73. package/esm2022/lib/store/effects/document.effects.mjs +44 -0
  74. package/esm2022/lib/store/effects/icp.effects.mjs +26 -0
  75. package/esm2022/lib/store/effects/index.mjs +7 -0
  76. package/esm2022/lib/store/effects/redaction.effects.mjs +67 -0
  77. package/esm2022/lib/store/models/bookmarks.interface.mjs +2 -0
  78. package/esm2022/lib/store/models/filters.interface.mjs +2 -0
  79. package/esm2022/lib/store/reducers/annotations.reducer.mjs +208 -0
  80. package/esm2022/lib/store/reducers/bookmarks.reducer.mjs +125 -0
  81. package/esm2022/lib/store/reducers/document.reducer.mjs +158 -0
  82. package/esm2022/lib/store/reducers/icp.reducer.mjs +56 -0
  83. package/esm2022/lib/store/reducers/redaction.reducer.mjs +116 -0
  84. package/esm2022/lib/store/reducers/reducers.mjs +23 -0
  85. package/esm2022/lib/store/reducers/tags.reducer.mjs +93 -0
  86. package/esm2022/lib/store/selectors/annotation.selectors.mjs +81 -0
  87. package/esm2022/lib/store/selectors/bookmark.selectors.mjs +37 -0
  88. package/esm2022/lib/store/selectors/document.selectors.mjs +13 -0
  89. package/esm2022/lib/store/selectors/icp.selectors.mjs +13 -0
  90. package/esm2022/lib/store/selectors/redaction.selectors.mjs +26 -0
  91. package/esm2022/lib/store/selectors/tag.selectors.mjs +15 -0
  92. package/esm2022/lib/store/store-utils.mjs +131 -0
  93. package/esm2022/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +46 -0
  94. package/esm2022/lib/toolbar/icp-event.service.mjs +44 -0
  95. package/esm2022/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +43 -0
  96. package/esm2022/lib/toolbar/main-toolbar/main-toolbar.component.mjs +207 -0
  97. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +237 -0
  98. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search.model.mjs +2 -0
  99. package/esm2022/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +69 -0
  100. package/esm2022/lib/toolbar/search-bar/search-bar.component.mjs +109 -0
  101. package/esm2022/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
  102. package/esm2022/lib/toolbar/toolbar-event.service.mjs +178 -0
  103. package/esm2022/lib/toolbar/toolbar.module.mjs +75 -0
  104. package/esm2022/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +82 -0
  105. package/esm2022/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
  106. package/esm2022/lib/viewers/grab-n-drag.directive.mjs +57 -0
  107. package/esm2022/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
  108. package/esm2022/lib/viewers/multimedia-player/multimedia-player.component.mjs +59 -0
  109. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +266 -0
  110. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
  111. package/esm2022/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +242 -0
  112. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +379 -0
  113. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.mjs +2 -0
  114. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
  115. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.mjs +2 -0
  116. package/esm2022/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +99 -0
  117. package/esm2022/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
  118. package/esm2022/lib/viewers/rotation-persist/rotation-persist.directive.mjs +61 -0
  119. package/esm2022/lib/viewers/rotation-persist/rotation.model.mjs +2 -0
  120. package/esm2022/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
  121. package/esm2022/lib/viewers/viewer-event.service.mjs +34 -0
  122. package/esm2022/lib/viewers/viewer-exception.model.mjs +13 -0
  123. package/esm2022/lib/viewers/viewer-util.service.mjs +20 -0
  124. package/esm2022/public_api.mjs +33 -0
  125. package/fesm2022/hmcts-media-viewer.mjs +320 -295
  126. package/fesm2022/hmcts-media-viewer.mjs.map +1 -1
  127. package/hmcts-media-viewer.d.ts.map +1 -0
  128. package/index.d.ts +4 -2305
  129. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +48 -0
  130. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -0
  131. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +32 -0
  132. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -0
  133. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +18 -0
  134. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -0
  135. package/lib/annotations/annotation-set/annotation-set.component.d.ts +27 -0
  136. package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -0
  137. package/lib/annotations/annotation-set/annotation-set.model.d.ts +7 -0
  138. package/lib/annotations/annotation-set/annotation-set.model.d.ts.map +1 -0
  139. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +34 -0
  140. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -0
  141. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts +16 -0
  142. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts.map +1 -0
  143. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +41 -0
  144. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -0
  145. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts +9 -0
  146. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts.map +1 -0
  147. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +37 -0
  148. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -0
  149. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +37 -0
  150. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -0
  151. package/lib/annotations/annotations.module.d.ts +36 -0
  152. package/lib/annotations/annotations.module.d.ts.map +1 -0
  153. package/lib/annotations/comment-set/comment/comment.component.d.ts +69 -0
  154. package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -0
  155. package/lib/annotations/comment-set/comment/comment.model.d.ts +13 -0
  156. package/lib/annotations/comment-set/comment/comment.model.d.ts.map +1 -0
  157. package/lib/annotations/comment-set/comment/comment.service.d.ts +22 -0
  158. package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -0
  159. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +14 -0
  160. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -0
  161. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +12 -0
  162. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -0
  163. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +28 -0
  164. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -0
  165. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +26 -0
  166. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -0
  167. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +21 -0
  168. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -0
  169. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +36 -0
  170. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -0
  171. package/lib/annotations/comment-set/comment-set-render.service.d.ts +15 -0
  172. package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -0
  173. package/lib/annotations/comment-set/comment-set.component.d.ts +56 -0
  174. package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -0
  175. package/lib/annotations/comments-summary/comments-summary.component.d.ts +42 -0
  176. package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -0
  177. package/lib/annotations/models/api-persisted.model.d.ts +11 -0
  178. package/lib/annotations/models/api-persisted.model.d.ts.map +1 -0
  179. package/lib/annotations/models/event-select.model.d.ts +6 -0
  180. package/lib/annotations/models/event-select.model.d.ts.map +1 -0
  181. package/lib/annotations/models/tags.model.d.ts +7 -0
  182. package/lib/annotations/models/tags.model.d.ts.map +1 -0
  183. package/lib/annotations/models/user.model.d.ts +6 -0
  184. package/lib/annotations/models/user.model.d.ts.map +1 -0
  185. package/lib/annotations/pipes/date/date.pipe.d.ts +16 -0
  186. package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -0
  187. package/lib/annotations/pipes/filter/filter.pipe.d.ts +8 -0
  188. package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -0
  189. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +8 -0
  190. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -0
  191. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +28 -0
  192. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -0
  193. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +21 -0
  194. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -0
  195. package/lib/annotations/services/tags/tags.services.d.ts +18 -0
  196. package/lib/annotations/services/tags/tags.services.d.ts.map +1 -0
  197. package/lib/annotations/tags/tags.component.d.ts +28 -0
  198. package/lib/annotations/tags/tags.component.d.ts.map +1 -0
  199. package/lib/bookmark/components/bookmark-icons.component.d.ts +19 -0
  200. package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -0
  201. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +11 -0
  202. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -0
  203. package/lib/icp/icp-follower.service.d.ts +26 -0
  204. package/lib/icp/icp-follower.service.d.ts.map +1 -0
  205. package/lib/icp/icp-presenter.service.d.ts +25 -0
  206. package/lib/icp/icp-presenter.service.d.ts.map +1 -0
  207. package/lib/icp/icp-session-api.service.d.ts +15 -0
  208. package/lib/icp/icp-session-api.service.d.ts.map +1 -0
  209. package/lib/icp/icp-update.service.d.ts +22 -0
  210. package/lib/icp/icp-update.service.d.ts.map +1 -0
  211. package/lib/icp/icp.events.d.ts +14 -0
  212. package/lib/icp/icp.events.d.ts.map +1 -0
  213. package/lib/icp/icp.interfaces.d.ts +23 -0
  214. package/lib/icp/icp.interfaces.d.ts.map +1 -0
  215. package/lib/icp/icp.service.d.ts +40 -0
  216. package/lib/icp/icp.service.d.ts.map +1 -0
  217. package/lib/icp/participants-list/participants-list.component.d.ts +23 -0
  218. package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -0
  219. package/lib/icp/socket.service.d.ts +29 -0
  220. package/lib/icp/socket.service.d.ts.map +1 -0
  221. package/lib/media-viewer.component.d.ts +72 -0
  222. package/lib/media-viewer.component.d.ts.map +1 -0
  223. package/lib/media-viewer.module.d.ts +36 -0
  224. package/lib/media-viewer.module.d.ts.map +1 -0
  225. package/lib/print.service.d.ts +8 -0
  226. package/lib/print.service.d.ts.map +1 -0
  227. package/lib/redaction/components/redaction.component.d.ts +42 -0
  228. package/lib/redaction/components/redaction.component.d.ts.map +1 -0
  229. package/lib/redaction/services/redaction-api.service.d.ts +20 -0
  230. package/lib/redaction/services/redaction-api.service.d.ts.map +1 -0
  231. package/lib/redaction/services/redaction.model.d.ts +11 -0
  232. package/lib/redaction/services/redaction.model.d.ts.map +1 -0
  233. package/lib/shared/directives/tooltip-dismiss.directive.d.ts +11 -0
  234. package/lib/shared/directives/tooltip-dismiss.directive.d.ts.map +1 -0
  235. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +15 -0
  236. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -0
  237. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +11 -0
  238. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -0
  239. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +16 -0
  240. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -0
  241. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +14 -0
  242. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -0
  243. package/lib/shared/shared.module.d.ts +14 -0
  244. package/lib/shared/shared.module.d.ts.map +1 -0
  245. package/lib/shared/util/helpers/html-templates.helper.d.ts +9 -0
  246. package/lib/shared/util/helpers/html-templates.helper.d.ts.map +1 -0
  247. package/lib/shared/util/services/number.helper.service.d.ts +11 -0
  248. package/lib/shared/util/services/number.helper.service.d.ts.map +1 -0
  249. package/lib/store/actions/annotation.actions.d.ts +126 -0
  250. package/lib/store/actions/annotation.actions.d.ts.map +1 -0
  251. package/lib/store/actions/bookmark.actions.d.ts +117 -0
  252. package/lib/store/actions/bookmark.actions.d.ts.map +1 -0
  253. package/lib/store/actions/document.actions.d.ts +90 -0
  254. package/lib/store/actions/document.actions.d.ts.map +1 -0
  255. package/lib/store/actions/icp.actions.d.ts +75 -0
  256. package/lib/store/actions/icp.actions.d.ts.map +1 -0
  257. package/lib/store/actions/redaction.actions.d.ts +127 -0
  258. package/lib/store/actions/redaction.actions.d.ts.map +1 -0
  259. package/lib/store/actions/tag.actions.d.ts +30 -0
  260. package/lib/store/actions/tag.actions.d.ts.map +1 -0
  261. package/lib/store/bookmarks-store-utils.d.ts +9 -0
  262. package/lib/store/bookmarks-store-utils.d.ts.map +1 -0
  263. package/lib/store/effects/annotation.effects.d.ts +16 -0
  264. package/lib/store/effects/annotation.effects.d.ts.map +1 -0
  265. package/lib/store/effects/bookmarks.effects.d.ts +21 -0
  266. package/lib/store/effects/bookmarks.effects.d.ts.map +1 -0
  267. package/lib/store/effects/document.effects.d.ts +17 -0
  268. package/lib/store/effects/document.effects.d.ts.map +1 -0
  269. package/lib/store/effects/icp.effects.d.ts +16 -0
  270. package/lib/store/effects/icp.effects.d.ts.map +1 -0
  271. package/lib/store/effects/index.d.ts +2 -0
  272. package/lib/store/effects/index.d.ts.map +1 -0
  273. package/lib/store/effects/redaction.effects.d.ts +20 -0
  274. package/lib/store/effects/redaction.effects.d.ts.map +1 -0
  275. package/lib/store/models/bookmarks.interface.d.ts +31 -0
  276. package/lib/store/models/bookmarks.interface.d.ts.map +1 -0
  277. package/lib/store/models/filters.interface.d.ts +8 -0
  278. package/lib/store/models/filters.interface.d.ts.map +1 -0
  279. package/lib/store/reducers/annotations.reducer.d.ts +48 -0
  280. package/lib/store/reducers/annotations.reducer.d.ts.map +1 -0
  281. package/lib/store/reducers/bookmarks.reducer.d.ts +27 -0
  282. package/lib/store/reducers/bookmarks.reducer.d.ts.map +1 -0
  283. package/lib/store/reducers/document.reducer.d.ts +52 -0
  284. package/lib/store/reducers/document.reducer.d.ts.map +1 -0
  285. package/lib/store/reducers/icp.reducer.d.ts +9 -0
  286. package/lib/store/reducers/icp.reducer.d.ts.map +1 -0
  287. package/lib/store/reducers/redaction.reducer.d.ts +32 -0
  288. package/lib/store/reducers/redaction.reducer.d.ts.map +1 -0
  289. package/lib/store/reducers/reducers.d.ts +24 -0
  290. package/lib/store/reducers/reducers.d.ts.map +1 -0
  291. package/lib/store/reducers/tags.reducer.d.ts +32 -0
  292. package/lib/store/reducers/tags.reducer.d.ts.map +1 -0
  293. package/lib/store/selectors/annotation.selectors.d.ts +136 -0
  294. package/lib/store/selectors/annotation.selectors.d.ts.map +1 -0
  295. package/lib/store/selectors/bookmark.selectors.d.ts +38 -0
  296. package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -0
  297. package/lib/store/selectors/document.selectors.d.ts +23 -0
  298. package/lib/store/selectors/document.selectors.d.ts.map +1 -0
  299. package/lib/store/selectors/icp.selectors.d.ts +10 -0
  300. package/lib/store/selectors/icp.selectors.d.ts.map +1 -0
  301. package/lib/store/selectors/redaction.selectors.d.ts +35 -0
  302. package/lib/store/selectors/redaction.selectors.d.ts.map +1 -0
  303. package/lib/store/selectors/tag.selectors.d.ts +28 -0
  304. package/lib/store/selectors/tag.selectors.d.ts.map +1 -0
  305. package/lib/store/store-utils.d.ts +25 -0
  306. package/lib/store/store-utils.d.ts.map +1 -0
  307. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts +20 -0
  308. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts.map +1 -0
  309. package/lib/toolbar/icp-event.service.d.ts +21 -0
  310. package/lib/toolbar/icp-event.service.d.ts.map +1 -0
  311. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +24 -0
  312. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -0
  313. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +69 -0
  314. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -0
  315. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +60 -0
  316. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -0
  317. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts +12 -0
  318. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts.map +1 -0
  319. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +30 -0
  320. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -0
  321. package/lib/toolbar/search-bar/search-bar.component.d.ts +34 -0
  322. package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -0
  323. package/lib/toolbar/toolbar-button-visibility.service.d.ts +67 -0
  324. package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -0
  325. package/lib/toolbar/toolbar-event.service.d.ts +96 -0
  326. package/lib/toolbar/toolbar-event.service.d.ts.map +1 -0
  327. package/lib/toolbar/toolbar.module.d.ts +20 -0
  328. package/lib/toolbar/toolbar.module.d.ts.map +1 -0
  329. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +31 -0
  330. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -0
  331. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +12 -0
  332. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -0
  333. package/lib/viewers/grab-n-drag.directive.d.ts +19 -0
  334. package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -0
  335. package/lib/viewers/image-viewer/image-viewer.component.d.ts +57 -0
  336. package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -0
  337. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +25 -0
  338. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -0
  339. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts +69 -0
  340. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts.map +1 -0
  341. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +17 -0
  342. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -0
  343. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +82 -0
  344. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -0
  345. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +82 -0
  346. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -0
  347. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts +22 -0
  348. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts.map +1 -0
  349. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +20 -0
  350. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -0
  351. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts +14 -0
  352. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts.map +1 -0
  353. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +42 -0
  354. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -0
  355. package/lib/viewers/rotation-persist/rotation-api.service.d.ts +14 -0
  356. package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -0
  357. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +27 -0
  358. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -0
  359. package/lib/viewers/rotation-persist/rotation.model.d.ts +5 -0
  360. package/lib/viewers/rotation-persist/rotation.model.d.ts.map +1 -0
  361. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +23 -0
  362. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -0
  363. package/lib/viewers/viewer-event.service.d.ts +23 -0
  364. package/lib/viewers/viewer-event.service.d.ts.map +1 -0
  365. package/lib/viewers/viewer-exception.model.d.ts +15 -0
  366. package/lib/viewers/viewer-exception.model.d.ts.map +1 -0
  367. package/lib/viewers/viewer-util.service.d.ts +10 -0
  368. package/lib/viewers/viewer-util.service.d.ts.map +1 -0
  369. package/package.json +12 -10
  370. package/public_api.d.ts +30 -0
  371. package/public_api.d.ts.map +1 -0
  372. package/index.d.ts.map +0 -1
@@ -0,0 +1,21 @@
1
+ import { Actions } from '@ngrx/effects';
2
+ import { BookmarksApiService } from '../../annotations/services/bookmarks-api/bookmarks-api.service';
3
+ import * as bookmarksActions from '../actions/bookmark.actions';
4
+ import { Store } from '@ngrx/store';
5
+ import * as fromBookmarks from '../reducers/bookmarks.reducer';
6
+ import * as fromStore from '../reducers/reducers';
7
+ import * as i0 from "@angular/core";
8
+ export declare class BookmarksEffects {
9
+ private actions$;
10
+ private store;
11
+ private bookmarksApiService;
12
+ constructor(actions$: Actions, store: Store<fromStore.AnnotationSetState | fromBookmarks.BookmarksState>, bookmarksApiService: BookmarksApiService);
13
+ loadBookmarks$: import("rxjs").Observable<bookmarksActions.LoadBookmarksSuccess | bookmarksActions.LoadBookmarksFailure> & import("@ngrx/effects").CreateEffectMetadata;
14
+ createBookmark$: import("rxjs").Observable<bookmarksActions.CreateBookmarkSuccess | bookmarksActions.CreateBookmarkFailure> & import("@ngrx/effects").CreateEffectMetadata;
15
+ moveBookmark$: import("rxjs").Observable<bookmarksActions.MoveBookmarkSuccess | bookmarksActions.MoveBookmarkFailure> & import("@ngrx/effects").CreateEffectMetadata;
16
+ deleteBookmark$: import("rxjs").Observable<bookmarksActions.DeleteBookmarkSuccess | bookmarksActions.DeleteBookmarkFailure | bookmarksActions.UpdateBookmarkSuccess> & import("@ngrx/effects").CreateEffectMetadata;
17
+ updateBookmark$: import("rxjs").Observable<bookmarksActions.UpdateBookmarkSuccess | bookmarksActions.UpdateBookmarkFailure> & import("@ngrx/effects").CreateEffectMetadata;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<BookmarksEffects, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<BookmarksEffects>;
20
+ }
21
+ //# sourceMappingURL=bookmarks.effects.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bookmarks.effects.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/effects/bookmarks.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAC;AAG9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,gEAAgE,CAAC;AACrG,OAAO,KAAK,gBAAgB,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,KAAK,aAAa,MAAM,+BAA+B,CAAC;AAC/D,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;;AAElD,qBACa,gBAAgB;IAEf,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,mBAAmB;gBAFnB,QAAQ,EAAE,OAAO,EACjB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,GAAC,aAAa,CAAC,cAAc,CAAC,EACvE,mBAAmB,EAAE,mBAAmB;IAE5D,cAAc,0JAYZ;IAEF,eAAe,4JAWb;IAEF,aAAa,wJAWX;IAEF,eAAe,qMAoBb;IAEF,eAAe,4JAWb;yCA/ES,gBAAgB;6CAAhB,gBAAgB;CAgF5B"}
@@ -0,0 +1,17 @@
1
+ import { Actions } from '@ngrx/effects';
2
+ import { DocumentConversionApiService } from '../../viewers/convertible-content-viewer/document-conversion-api.service';
3
+ import { RotationApiService } from '../../viewers/rotation-persist/rotation-api.service';
4
+ import * as documentActions from '../actions/document.actions';
5
+ import * as i0 from "@angular/core";
6
+ export declare class DocumentEffects {
7
+ private actions$;
8
+ private documentConversionService;
9
+ private rotationApiService;
10
+ constructor(actions$: Actions, documentConversionService: DocumentConversionApiService, rotationApiService: RotationApiService);
11
+ convert$: import("rxjs").Observable<documentActions.ConvertSuccess | documentActions.ConvertFailure> & import("@ngrx/effects").CreateEffectMetadata;
12
+ loadRotation$: import("rxjs").Observable<documentActions.LoadRotationSuccess | documentActions.LoadRotationFailure> & import("@ngrx/effects").CreateEffectMetadata;
13
+ saveRotation$: import("rxjs").Observable<documentActions.SaveRotationSuccess | documentActions.SaveRotationFailure> & import("@ngrx/effects").CreateEffectMetadata;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEffects, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<DocumentEffects>;
16
+ }
17
+ //# sourceMappingURL=document.effects.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"document.effects.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/effects/document.effects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAC;AAI9D,OAAO,EAAE,4BAA4B,EAAE,MAAM,0EAA0E,CAAC;AACxH,OAAO,EAAE,kBAAkB,EAAE,MAAM,qDAAqD,CAAC;AAEzF,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;;AAE/D,qBACa,eAAe;IAExB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,yBAAyB;IACjC,OAAO,CAAC,kBAAkB;gBAFlB,QAAQ,EAAE,OAAO,EACjB,yBAAyB,EAAE,4BAA4B,EACvD,kBAAkB,EAAE,kBAAkB;IAGhD,QAAQ,4IAcN;IAEF,aAAa,sJAaX;IAEF,aAAa,sJAaX;yCAnDS,eAAe;6CAAf,eAAe;CAoD3B"}
@@ -0,0 +1,16 @@
1
+ import { Actions } from '@ngrx/effects';
2
+ import { IcpSessionApiService } from '../../icp/icp-session-api.service';
3
+ import { IcpUpdateService } from '../../icp/icp-update.service';
4
+ import * as icpActions from '../actions/icp.actions';
5
+ import * as i0 from "@angular/core";
6
+ export declare class IcpEffects {
7
+ private actions$;
8
+ private icpApiService;
9
+ private icpUpdateService;
10
+ constructor(actions$: Actions, icpApiService: IcpSessionApiService, icpUpdateService: IcpUpdateService);
11
+ loadIcpSession$: import("rxjs").Observable<icpActions.LoadIcpSessionFailure | icpActions.JoinIcpSocketSession> & import("@ngrx/effects").CreateEffectMetadata;
12
+ joinIcpSocketSession$: import("rxjs").Observable<icpActions.IcpSocketSessionJoined> & import("@ngrx/effects").CreateEffectMetadata;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<IcpEffects, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<IcpEffects>;
15
+ }
16
+ //# sourceMappingURL=icp.effects.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icp.effects.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/effects/icp.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAC;AAG9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAChE,OAAO,KAAK,UAAU,MAAM,wBAAwB,CAAC;;AAGrD,qBACa,UAAU;IAET,OAAO,CAAC,QAAQ;IAC1B,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,gBAAgB;gBAFN,QAAQ,EAAE,OAAO,EAC3B,aAAa,EAAE,oBAAoB,EACnC,gBAAgB,EAAE,gBAAgB;IAE5C,eAAe,+IAWb;IAGF,qBAAqB,8GAQnB;yCA5BS,UAAU;6CAAV,UAAU;CA6BtB"}
@@ -0,0 +1,2 @@
1
+ export declare const effects: any[];
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/effects/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,OAAO,EAAE,GAAG,EAA0F,CAAC"}
@@ -0,0 +1,20 @@
1
+ import { Actions } from '@ngrx/effects';
2
+ import { RedactionApiService } from '../../redaction/services/redaction-api.service';
3
+ import * as redactionActions from '../actions/redaction.actions';
4
+ import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class RedactionEffects {
7
+ private actions$;
8
+ private redactionApiService;
9
+ private toolbarEvents;
10
+ constructor(actions$: Actions, redactionApiService: RedactionApiService, toolbarEvents: ToolbarEventService);
11
+ loadRedactions$: import("rxjs").Observable<redactionActions.LoadRedactionSuccess | redactionActions.LoadRedactionFailure> & import("@ngrx/effects").CreateEffectMetadata;
12
+ saveRedaction$: import("rxjs").Observable<redactionActions.SaveRedactionSuccess | redactionActions.SaveRedactionFailure> & import("@ngrx/effects").CreateEffectMetadata;
13
+ saveBulkRedaction$: import("rxjs").Observable<redactionActions.SaveBulkRedactionFailure | redactionActions.SaveBulkRedactionSuccess> & import("@ngrx/effects").CreateEffectMetadata;
14
+ deleteRedaction$: import("rxjs").Observable<redactionActions.DeleteRedactionSuccess | redactionActions.DeleteRedactionFailure> & import("@ngrx/effects").CreateEffectMetadata;
15
+ redact$: import("rxjs").Observable<redactionActions.RedactSuccess | redactionActions.RedactFailure> & import("@ngrx/effects").CreateEffectMetadata;
16
+ unmarkAll$: import("rxjs").Observable<redactionActions.DeleteRedactionFailure | redactionActions.UnmarkAllSuccess> & import("@ngrx/effects").CreateEffectMetadata;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<RedactionEffects, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<RedactionEffects>;
19
+ }
20
+ //# sourceMappingURL=redaction.effects.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redaction.effects.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/effects/redaction.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAC;AAG9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,gDAAgD,CAAC;AACrF,OAAO,KAAK,gBAAgB,MAAM,8BAA8B,CAAC;AAEjE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAE1E,qBACa,gBAAgB;IAEzB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,aAAa;gBAFb,QAAQ,EAAE,OAAO,EACjB,mBAAmB,EAAE,mBAAmB,EACxC,aAAa,EAAE,mBAAmB;IAG5C,eAAe,0JAab;IAEF,cAAc,0JAaZ;IAEF,kBAAkB,kKAahB;IAEF,gBAAgB,8JAad;IAEF,OAAO,4IAgBL;IAEF,UAAU,wJAaR;yCAlGS,gBAAgB;6CAAhB,gBAAgB;CAmG5B"}
@@ -0,0 +1,31 @@
1
+ export interface Bookmark {
2
+ id: string;
3
+ documentId: string;
4
+ name: string;
5
+ pageNumber: number;
6
+ xCoordinate: number;
7
+ yCoordinate: number;
8
+ zoom: number;
9
+ parent: string;
10
+ previous: string;
11
+ children: Bookmark[];
12
+ index: number;
13
+ }
14
+ export interface BookmarkNode {
15
+ id: string;
16
+ name: string;
17
+ children: string[];
18
+ }
19
+ export interface BookmarkMoveEvent {
20
+ node: Bookmark;
21
+ from: {
22
+ parent: string;
23
+ next: Bookmark;
24
+ };
25
+ to: {
26
+ parent: string;
27
+ previous: string;
28
+ next: Bookmark;
29
+ };
30
+ }
31
+ //# sourceMappingURL=bookmarks.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bookmarks.interface.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/models/bookmarks.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,QAAQ,EAAE,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE;QACJ,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,QAAQ,CAAA;KACf,CAAC;IACF,EAAE,EAAE;QACF,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,QAAQ,CAAA;KACf,CAAC;CACH"}
@@ -0,0 +1,8 @@
1
+ export interface Filters {
2
+ tagFilters?: {
3
+ [key: string]: any;
4
+ };
5
+ dateRangeFrom?: number | null;
6
+ dateRangeTo?: number | null;
7
+ }
8
+ //# sourceMappingURL=filters.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filters.interface.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/models/filters.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IACpC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B"}
@@ -0,0 +1,48 @@
1
+ import * as fromAnnotations from '../actions/annotation.actions';
2
+ import { Annotation } from '../../annotations/annotation-set/annotation-view/annotation.model';
3
+ import { Comment } from '../../annotations/comment-set/comment/comment.model';
4
+ import { SelectionAnnotation } from '../../annotations/models/event-select.model';
5
+ import { Filters } from '../models/filters.interface';
6
+ export interface AnnotationSetState {
7
+ annotationSet: any;
8
+ annotationEntities: {
9
+ [id: string]: any;
10
+ };
11
+ annotationPageEntities: {
12
+ [id: string]: Annotation[];
13
+ };
14
+ commentEntities: {
15
+ [id: string]: Comment;
16
+ };
17
+ selectedAnnotation: SelectionAnnotation;
18
+ commentSearchQueries: {
19
+ commentSearch: string;
20
+ };
21
+ commentSummaryFilters: {
22
+ hasFilter: boolean;
23
+ filters: Filters;
24
+ };
25
+ loaded: boolean;
26
+ loading: boolean;
27
+ }
28
+ export declare const initialState: AnnotationSetState;
29
+ export declare function reducer(state: AnnotationSetState, action: fromAnnotations.AnnotationsActions): AnnotationSetState;
30
+ export declare const getAnnoSet: (state: AnnotationSetState) => any;
31
+ export declare const getCommentEnts: (state: AnnotationSetState) => {
32
+ [id: string]: Comment;
33
+ };
34
+ export declare const getAnnoPageEnt: (state: AnnotationSetState) => {
35
+ [id: string]: Annotation[];
36
+ };
37
+ export declare const getAnnoEnt: (state: AnnotationSetState) => {
38
+ [id: string]: any;
39
+ };
40
+ export declare const getSelectedAnno: (state: AnnotationSetState) => SelectionAnnotation;
41
+ export declare const commentSearchQ: (state: AnnotationSetState) => {
42
+ commentSearch: string;
43
+ };
44
+ export declare const getSummaryFilters: (state: AnnotationSetState) => {
45
+ hasFilter: boolean;
46
+ filters: Filters;
47
+ };
48
+ //# sourceMappingURL=annotations.reducer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"annotations.reducer.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/reducers/annotations.reducer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,eAAe,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,UAAU,EAAE,MAAM,mEAAmE,CAAC;AAC/F,OAAO,EAAE,OAAO,EAAE,MAAM,qDAAqD,CAAC;AAE9E,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAClF,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAEtD,MAAM,WAAW,kBAAkB;IACjC,aAAa,EAAE,GAAG,CAAC;IACnB,kBAAkB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IAC1C,sBAAsB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,EAAE,CAAA;KAAE,CAAC;IACvD,eAAe,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAC3C,kBAAkB,EAAE,mBAAmB,CAAC;IACxC,oBAAoB,EAAE;QAAE,aAAa,EAAE,MAAM,CAAA;KAAE,CAAC;IAChD,qBAAqB,EAAE;QAAE,SAAS,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAChE,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,eAAO,MAAM,YAAY,EAAE,kBAU1B,CAAC;AAEF,wBAAgB,OAAO,CACrB,KAAK,oBAAe,EACpB,MAAM,EAAE,eAAe,CAAC,kBAAkB,GACzC,kBAAkB,CA0MpB;AAED,eAAO,MAAM,UAAU,UAAW,kBAAkB,QAAwB,CAAC;AAC7E,eAAO,MAAM,cAAc,UAAW,kBAAkB;;CAA0B,CAAC;AACnF,eAAO,MAAM,cAAc,UAAW,kBAAkB;;CAAiC,CAAC;AAC1F,eAAO,MAAM,UAAU,UAAW,kBAAkB;;CAA6B,CAAC;AAClF,eAAO,MAAM,eAAe,UAAW,kBAAkB,wBAA6B,CAAC;AACvF,eAAO,MAAM,cAAc,UAAW,kBAAkB;mBAtOf,MAAM;CAsOwC,CAAC;AACxF,eAAO,MAAM,iBAAiB,UAAW,kBAAkB;eAtOrB,OAAO;aAAW,OAAO;CAsO4B,CAAC"}
@@ -0,0 +1,27 @@
1
+ import * as fromBookmarks from '../actions/bookmark.actions';
2
+ import { Bookmark } from '../../viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces';
3
+ export interface BookmarksState {
4
+ bookmarks: Bookmark[];
5
+ bookmarkEntities: {
6
+ [id: string]: Bookmark;
7
+ };
8
+ bookmarkPageEntities: {
9
+ [id: string]: any;
10
+ };
11
+ editableBookmark: string;
12
+ loaded: boolean;
13
+ loading: boolean;
14
+ scrollTop?: number;
15
+ }
16
+ export declare const initialBookmarksState: BookmarksState;
17
+ export declare function bookmarksReducer(state: BookmarksState, action: fromBookmarks.BookmarksActions): BookmarksState;
18
+ export declare const getBookmarks: (state: BookmarksState) => Bookmark[];
19
+ export declare const getBookmarkEnts: (state: BookmarksState) => {
20
+ [id: string]: Bookmark;
21
+ };
22
+ export declare const getBookmarkPageEnt: (state: BookmarksState) => {
23
+ [id: string]: any;
24
+ };
25
+ export declare const getEditBookmark: (state: BookmarksState) => string;
26
+ export declare const getScrollTop: (state: BookmarksState) => number;
27
+ //# sourceMappingURL=bookmarks.reducer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bookmarks.reducer.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/reducers/bookmarks.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kEAAkE,CAAC;AAI5F,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,gBAAgB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,QAAQ,CAAA;KAAE,CAAC;IAC7C,oBAAoB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IAC5C,gBAAgB,EAAE,MAAM,CAAC;IACzB,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,qBAAqB,EAAE,cAQnC,CAAC;AAEF,wBAAgB,gBAAgB,CAAC,KAAK,gBAAwB,EAC5D,MAAM,EAAE,aAAa,CAAC,gBAAgB,GAAG,cAAc,CAqHxD;AAED,eAAO,MAAM,YAAY,UAAW,cAAc,eAAoB,CAAC;AACvE,eAAO,MAAM,eAAe,UAAW,cAAc;;CAA2B,CAAC;AACjF,eAAO,MAAM,kBAAkB,UAAW,cAAc;;CAA+B,CAAC;AACxF,eAAO,MAAM,eAAe,UAAW,cAAc,WAA2B,CAAC;AACjF,eAAO,MAAM,YAAY,UAAW,cAAc,WAAoB,CAAC"}
@@ -0,0 +1,52 @@
1
+ import * as fromActions from '../actions/document.actions';
2
+ export interface DocumentState {
3
+ convertedDocument: {
4
+ url: string;
5
+ error: string;
6
+ };
7
+ documentId: string;
8
+ pdfPosition: PdfPosition;
9
+ pages: {
10
+ [id: string]: DocumentPages;
11
+ };
12
+ hasDifferentPageSize: boolean;
13
+ rotation: number;
14
+ rotationLoaded: boolean;
15
+ loaded: boolean;
16
+ loading: boolean;
17
+ }
18
+ export interface DocumentPages {
19
+ numberOfPages: number;
20
+ styles: {
21
+ left: number;
22
+ height: number;
23
+ width: number;
24
+ };
25
+ scaleRotation: {
26
+ scale: string;
27
+ rotation: string;
28
+ };
29
+ viewportScale: number;
30
+ }
31
+ export interface PdfPosition {
32
+ pageNumber: number;
33
+ scale: number;
34
+ top: number;
35
+ left: number;
36
+ rotation: number;
37
+ }
38
+ export declare const initialDocumentState: DocumentState;
39
+ export declare function docReducer(state: DocumentState, action: fromActions.DocumentActions): DocumentState;
40
+ export declare const getDocPages: (state: DocumentState) => {
41
+ [id: string]: DocumentPages;
42
+ };
43
+ export declare const getDocId: (state: DocumentState) => string;
44
+ export declare const getPdfPos: (state: DocumentState) => PdfPosition;
45
+ export declare const getHasDifferentPageSizes: (state: DocumentState) => boolean;
46
+ export declare const getRotation: (state: DocumentState) => number;
47
+ export declare const rotationLoaded: (state: DocumentState) => boolean;
48
+ export declare const getConvertedDocument: (state: DocumentState) => {
49
+ url: string;
50
+ error: string;
51
+ };
52
+ //# sourceMappingURL=document.reducer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"document.reducer.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/reducers/document.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,WAAW,MAAM,6BAA6B,CAAC;AAE3D,MAAM,WAAW,aAAa;IAC5B,iBAAiB,EAAE;QACjB,GAAG,EAAE,MAAM,CAAC;QACZ,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;IACF,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,WAAW,CAAC;IACzB,KAAK,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,aAAa,CAAA;KAAC,CAAC;IACrC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,OAAO,CAAC;IACxB,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,aAAa;IAC7B,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IACxD,aAAa,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC;IACnD,aAAa,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,oBAAoB,EAAE,aAUlC,CAAC;AAEF,wBAAgB,UAAU,CAAE,KAAK,eAAuB,EAC5B,MAAM,EAAE,WAAW,CAAC,eAAe,GAAG,aAAa,CAwJ9E;AACD,eAAO,MAAM,WAAW,UAAW,aAAa;;CAAgB,CAAC;AACjE,eAAO,MAAM,QAAQ,UAAW,aAAa,WAAqB,CAAC;AACnE,eAAO,MAAM,SAAS,UAAW,aAAa,gBAAsB,CAAC;AACrE,eAAO,MAAM,wBAAwB,UAAW,aAAa,YAA+B,CAAC;AAC7F,eAAO,MAAM,WAAW,UAAW,aAAa,WAAmB,CAAC;AACpE,eAAO,MAAM,cAAc,UAAW,aAAa,YAAyB,CAAC;AAC7E,eAAO,MAAM,oBAAoB,UAAW,aAAa;SAxMhD,MAAM;WACJ,MAAM;CAuMoE,CAAC"}
@@ -0,0 +1,9 @@
1
+ import * as fromIcpActions from '../actions/icp.actions';
2
+ import { IcpSession, IcpState } from '../../icp/icp.interfaces';
3
+ export declare const initialIcpSessionState: IcpState;
4
+ export declare function icpReducer(state: IcpState, action: fromIcpActions.IcpActions): IcpState;
5
+ export declare const getIcpSession: (state: IcpState) => IcpSession;
6
+ export declare const getPresenter: (state: IcpState) => import("../../icp/icp.interfaces").IcpParticipant;
7
+ export declare const getClient: (state: IcpState) => import("../../icp/icp.interfaces").IcpParticipant;
8
+ export declare const getParticipants: (state: IcpState) => import("../../icp/icp.interfaces").IcpParticipant[];
9
+ //# sourceMappingURL=icp.reducer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icp.reducer.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/reducers/icp.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEhE,eAAO,MAAM,sBAAsB,EAAE,QAKpC,CAAC;AAEF,wBAAgB,UAAU,CAAE,KAAK,UAAyB,EACxB,MAAM,EAAE,cAAc,CAAC,UAAU,GAAG,QAAQ,CAiD7E;AAED,eAAO,MAAM,aAAa,UAAW,QAAQ,eAAkB,CAAC;AAChE,eAAO,MAAM,YAAY,UAAW,QAAQ,sDAAoB,CAAC;AACjE,eAAO,MAAM,SAAS,UAAW,QAAQ,sDAAiB,CAAC;AAC3D,eAAO,MAAM,eAAe,UAAW,QAAQ,wDAAuB,CAAC"}
@@ -0,0 +1,32 @@
1
+ import * as fromRedaction from '../actions/redaction.actions';
2
+ import * as fromAnnotations from '../actions/annotation.actions';
3
+ import { SelectionAnnotation } from '../../annotations/models/event-select.model';
4
+ import { Redaction } from '../../redaction/services/redaction.model';
5
+ export interface RedactionState {
6
+ redactionEntities: {
7
+ [id: string]: Redaction;
8
+ };
9
+ redactionPageEntities: {
10
+ [id: string]: any;
11
+ };
12
+ selectedRedaction: SelectionAnnotation | {};
13
+ redactedDocumentInfo: {
14
+ blob: Blob;
15
+ filename: string;
16
+ };
17
+ documentId: string;
18
+ }
19
+ export declare const initialRedactionState: RedactionState;
20
+ export declare function redactionReducer(state: RedactionState, action: fromRedaction.RedactionActions | fromAnnotations.AnnotationsActions): RedactionState;
21
+ export declare const getRedactionEnt: (state: RedactionState) => {
22
+ [id: string]: Redaction;
23
+ };
24
+ export declare const getPageEnt: (state: RedactionState) => {
25
+ [id: string]: any;
26
+ };
27
+ export declare const getSelectedRedaction: (state: RedactionState) => {} | SelectionAnnotation;
28
+ export declare const getRedactedDocInfo: (state: RedactionState) => {
29
+ blob: Blob;
30
+ filename: string;
31
+ };
32
+ //# sourceMappingURL=redaction.reducer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redaction.reducer.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/reducers/redaction.reducer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,aAAa,MAAM,8BAA8B,CAAC;AAC9D,OAAO,KAAK,eAAe,MAAM,+BAA+B,CAAC;AAEjE,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAClF,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAGrE,MAAM,WAAW,cAAc;IAC7B,iBAAiB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,CAAA;KAAE,CAAC;IAC/C,qBAAqB,EAAE;QAAE,CAAC,EAAE,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IAC7C,iBAAiB,EAAE,mBAAmB,GAAG,EAAE,CAAC;IAC5C,oBAAoB,EAAE;QAAE,IAAI,EAAE,IAAI,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC;IACvD,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,qBAAqB,EAAE,cAMnC,CAAC;AAEF,wBAAgB,gBAAgB,CAC9B,KAAK,gBAAwB,EAC7B,MAAM,EAAE,aAAa,CAAC,gBAAgB,GAAG,eAAe,CAAC,kBAAkB,GAC1E,cAAc,CA6GhB;AAGD,eAAO,MAAM,eAAe,UAAW,cAAc;;CAA4B,CAAC;AAClF,eAAO,MAAM,UAAU,UAAW,cAAc;;CAAgC,CAAC;AACjF,eAAO,MAAM,oBAAoB,UAAW,cAAc,6BAA4B,CAAC;AACvF,eAAO,MAAM,kBAAkB,UAAW,cAAc;UAlIxB,IAAI;cAAY,MAAM;CAkIiC,CAAC"}
@@ -0,0 +1,24 @@
1
+ import { ActionReducerMap } from '@ngrx/store';
2
+ import * as fromDocument from './document.reducer';
3
+ import * as fromAnnotation from './annotations.reducer';
4
+ import * as fromTags from './tags.reducer';
5
+ import * as fromBookmarks from './bookmarks.reducer';
6
+ import * as fromRedaction from './redaction.reducer';
7
+ import { IcpState } from '../../icp/icp.interfaces';
8
+ export interface State {
9
+ document: fromDocument.DocumentState;
10
+ annotations: fromAnnotation.AnnotationSetState;
11
+ tags: fromTags.TagsState;
12
+ bookmarks: fromBookmarks.BookmarksState;
13
+ redactions: fromRedaction.RedactionState;
14
+ icp: IcpState;
15
+ }
16
+ export declare const reducers: ActionReducerMap<State>;
17
+ export declare const getMVState: import("@ngrx/store").MemoizedSelector<object, State, import("@ngrx/store").DefaultProjectorFn<State>>;
18
+ export * from './document.reducer';
19
+ export * from './annotations.reducer';
20
+ export * from './tags.reducer';
21
+ export * from './bookmarks.reducer';
22
+ export * from './redaction.reducer';
23
+ export * from './icp.reducer';
24
+ //# sourceMappingURL=reducers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reducers.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/reducers/reducers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAyB,MAAM,aAAa,CAAC;AACtE,OAAO,KAAK,YAAY,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,cAAc,MAAM,uBAAuB,CAAC;AACxD,OAAO,KAAK,QAAQ,MAAM,gBAAgB,CAAC;AAC3C,OAAO,KAAK,aAAa,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,aAAa,MAAM,qBAAqB,CAAC;AAErD,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEpD,MAAM,WAAW,KAAK;IACpB,QAAQ,EAAE,YAAY,CAAC,aAAa,CAAC;IACrC,WAAW,EAAE,cAAc,CAAC,kBAAkB,CAAC;IAC/C,IAAI,EAAE,QAAQ,CAAC,SAAS,CAAC;IACzB,SAAS,EAAE,aAAa,CAAC,cAAc,CAAC;IACxC,UAAU,EAAE,aAAa,CAAC,cAAc,CAAC;IACzC,GAAG,EAAE,QAAQ,CAAC;CACf;AAED,eAAO,MAAM,QAAQ,EAAE,gBAAgB,CAAC,KAAK,CAO5C,CAAC;AAEF,eAAO,MAAM,UAAU,wGAA+C,CAAC;AAEvE,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC"}
@@ -0,0 +1,32 @@
1
+ import * as fromAnnotations from '../actions/annotation.actions';
2
+ import * as fromTags from '../actions/tag.actions';
3
+ import { Annotation } from '../../annotations/annotation-set/annotation-view/annotation.model';
4
+ export interface TagsState {
5
+ tagNameEnt: {
6
+ [id: string]: string[];
7
+ };
8
+ filteredComments: {
9
+ [id: string]: string[];
10
+ };
11
+ filteredPageEntities: {
12
+ [id: string]: Annotation[];
13
+ };
14
+ annotations: Annotation[];
15
+ formFilterState: {
16
+ [id: string]: boolean;
17
+ };
18
+ filters: string[];
19
+ }
20
+ export declare const initialTagState: TagsState;
21
+ export declare function tagsReducer(state: TagsState, action: fromAnnotations.AnnotationsActions | fromTags.TagsActions): TagsState;
22
+ export declare const getTagNameEnt: (state: TagsState) => {
23
+ [id: string]: string[];
24
+ };
25
+ export declare const getFilters: (state: TagsState) => string[];
26
+ export declare const getFilteredComments: (state: TagsState) => {
27
+ [id: string]: string[];
28
+ };
29
+ export declare const getFilteredPageEnt: (state: TagsState) => {
30
+ [id: string]: Annotation[];
31
+ };
32
+ //# sourceMappingURL=tags.reducer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tags.reducer.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/reducers/tags.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,eAAe,MAAM,+BAA+B,CAAC;AACjE,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AAEnD,OAAO,EAAC,UAAU,EAAC,MAAM,mEAAmE,CAAC;AAE7F,MAAM,WAAW,SAAS;IACxB,UAAU,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAC,CAAC;IACrC,gBAAgB,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAC,CAAC;IAC3C,oBAAoB,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,EAAE,CAAA;KAAC,CAAC;IACnD,WAAW,EAAE,UAAU,EAAE,CAAC;IAC1B,eAAe,EAAE;QAAC,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAA;KAAC,CAAC;IACzC,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,eAAO,MAAM,eAAe,EAAE,SAO7B,CAAC;AAEF,wBAAgB,WAAW,CACzB,KAAK,WAAkB,EACvB,MAAM,EAAE,eAAe,CAAC,kBAAkB,GAAG,QAAQ,CAAC,WAAW,GAChE,SAAS,CAwFX;AAED,eAAO,MAAM,aAAa,UAAW,SAAS;;CAAqB,CAAC;AACpE,eAAO,MAAM,UAAU,UAAW,SAAS,aAAkB,CAAC;AAC9D,eAAO,MAAM,mBAAmB,UAAW,SAAS;;CAA2B,CAAC;AAChF,eAAO,MAAM,kBAAkB,UAAW,SAAS;;CAA+B,CAAC"}
@@ -0,0 +1,136 @@
1
+ import * as fromFeature from '../reducers/reducers';
2
+ export declare const getAnnotationsSetState: import("@ngrx/store").MemoizedSelector<object, fromFeature.AnnotationSetState, (s1: fromFeature.State) => fromFeature.AnnotationSetState>;
3
+ export declare const getAnnotationEntities: import("@ngrx/store").MemoizedSelector<object, {
4
+ [id: string]: any;
5
+ }, (s1: fromFeature.AnnotationSetState) => {
6
+ [id: string]: any;
7
+ }>;
8
+ export declare const getSet: import("@ngrx/store").MemoizedSelector<object, any, (s1: fromFeature.AnnotationSetState) => any>;
9
+ export declare const getDocumentIdSetId: import("@ngrx/store").MemoizedSelector<object, {
10
+ documentId: any;
11
+ annotationSetId: any;
12
+ }, (s1: any) => {
13
+ documentId: any;
14
+ annotationSetId: any;
15
+ }>;
16
+ export declare const getAnnotationSet: import("@ngrx/store").MemoizedSelector<object, any, (s1: {
17
+ [id: string]: any;
18
+ }, s2: any) => any>;
19
+ export declare const getSelectedAnnotation: import("@ngrx/store").MemoizedSelector<object, import("../../annotations/models/event-select.model").SelectionAnnotation, (s1: fromFeature.AnnotationSetState) => import("../../annotations/models/event-select.model").SelectionAnnotation>;
20
+ export declare const getCommentEntities: import("@ngrx/store").MemoizedSelector<object, {
21
+ [id: string]: import("../../annotations/comment-set/comment/comment.model").Comment;
22
+ }, (s1: fromFeature.AnnotationSetState) => {
23
+ [id: string]: import("../../annotations/comment-set/comment/comment.model").Comment;
24
+ }>;
25
+ export declare const getPageEntities: import("@ngrx/store").MemoizedSelector<object, {
26
+ [id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
27
+ }, (s1: fromFeature.AnnotationSetState) => {
28
+ [id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
29
+ }>;
30
+ export declare const getComponentSearchQueries: import("@ngrx/store").MemoizedSelector<object, {
31
+ commentSearch: string;
32
+ }, (s1: fromFeature.AnnotationSetState) => {
33
+ commentSearch: string;
34
+ }>;
35
+ export declare const getComponentSearchText: import("@ngrx/store").MemoizedSelector<object, string, (s1: {
36
+ commentSearch: string;
37
+ }) => string>;
38
+ export declare const getCommentSummaryFilters: import("@ngrx/store").MemoizedSelector<object, {
39
+ hasFilter: boolean;
40
+ filters: import("../models/filters.interface").Filters;
41
+ }, (s1: fromFeature.AnnotationSetState) => {
42
+ hasFilter: boolean;
43
+ filters: import("../models/filters.interface").Filters;
44
+ }>;
45
+ export declare const getAnnoPerPage: import("@ngrx/store").MemoizedSelector<object, any[], (s1: {
46
+ [id: string]: fromFeature.DocumentPages;
47
+ }, s2: {
48
+ [id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
49
+ }, s3: {
50
+ [id: string]: import("../../annotations/annotation-set/annotation-view/annotation.model").Annotation[];
51
+ }) => any[]>;
52
+ export declare const getCommentsArray: import("@ngrx/store").MemoizedSelector<object, {
53
+ page: any;
54
+ pages: {
55
+ [id: string]: fromFeature.DocumentPages;
56
+ };
57
+ annotationId: string;
58
+ content: string;
59
+ tags: import("../../annotations/models/tags.model").TagsModel[];
60
+ pageHeight: number;
61
+ selected: boolean;
62
+ editable: boolean;
63
+ id: string;
64
+ createdBy: string;
65
+ createdByDetails: import("../../annotations/models/user.model").User;
66
+ createdDate: string;
67
+ lastModifiedBy: string;
68
+ lastModifiedByDetails: import("../../annotations/models/user.model").User;
69
+ lastModifiedDate: string;
70
+ }[], (s1: {
71
+ [id: string]: import("../../annotations/comment-set/comment/comment.model").Comment;
72
+ }, s2: {
73
+ [id: string]: fromFeature.DocumentPages;
74
+ }, s3: {
75
+ [id: string]: any;
76
+ }, s4: {
77
+ [id: string]: string[];
78
+ }) => {
79
+ page: any;
80
+ pages: {
81
+ [id: string]: fromFeature.DocumentPages;
82
+ };
83
+ annotationId: string;
84
+ content: string;
85
+ tags: import("../../annotations/models/tags.model").TagsModel[];
86
+ pageHeight: number;
87
+ selected: boolean;
88
+ editable: boolean;
89
+ id: string;
90
+ createdBy: string;
91
+ createdByDetails: import("../../annotations/models/user.model").User;
92
+ createdDate: string;
93
+ lastModifiedBy: string;
94
+ lastModifiedByDetails: import("../../annotations/models/user.model").User;
95
+ lastModifiedDate: string;
96
+ }[]>;
97
+ export declare const getCommentSummary: import("@ngrx/store").MemoizedSelector<object, string[] | {
98
+ page: number;
99
+ user: string;
100
+ date: string;
101
+ tags: import("../../annotations/models/tags.model").TagsModel[];
102
+ comment: string;
103
+ }[], (s1: {
104
+ page: any;
105
+ pages: {
106
+ [id: string]: fromFeature.DocumentPages;
107
+ };
108
+ annotationId: string;
109
+ content: string;
110
+ tags: import("../../annotations/models/tags.model").TagsModel[];
111
+ pageHeight: number;
112
+ selected: boolean;
113
+ editable: boolean;
114
+ id: string;
115
+ createdBy: string;
116
+ createdByDetails: import("../../annotations/models/user.model").User;
117
+ createdDate: string;
118
+ lastModifiedBy: string;
119
+ lastModifiedByDetails: import("../../annotations/models/user.model").User;
120
+ lastModifiedDate: string;
121
+ }[], s2: {
122
+ hasFilter: boolean;
123
+ filters: import("../models/filters.interface").Filters;
124
+ }) => string[] | {
125
+ page: number;
126
+ user: string;
127
+ date: string;
128
+ tags: import("../../annotations/models/tags.model").TagsModel[];
129
+ comment: string;
130
+ }[]>;
131
+ export declare const getFilteredAnnotations: import("@ngrx/store").MemoizedSelector<object, any[], (s1: {
132
+ [id: string]: any;
133
+ }, s2: {
134
+ [id: string]: string[];
135
+ }) => any[]>;
136
+ //# sourceMappingURL=annotation.selectors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"annotation.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/annotation.selectors.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAMpD,eAAO,MAAM,sBAAsB,2IAGlC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;EAGjC,CAAC;AAEF,eAAO,MAAM,MAAM,kGAGlB,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;EAQ9B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;mBAS5B,CAAC;AAEF,eAAO,MAAM,qBAAqB,8OAGjC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;EAG9B,CAAC;AAGF,eAAO,MAAM,eAAe;;;;EAG3B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;EAGrC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;aAGlC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;EAGpC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;YAkB1B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmB5B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsB7B,CAAC;AAGF,eAAO,MAAM,sBAAsB;;;;YASlC,CAAC"}
@@ -0,0 +1,38 @@
1
+ import * as fromFeature from '../reducers/reducers';
2
+ export declare const getBookmarkState: import("@ngrx/store").MemoizedSelector<object, fromFeature.BookmarksState, (s1: fromFeature.State) => fromFeature.BookmarksState>;
3
+ export declare const getBookmarkPages: import("@ngrx/store").MemoizedSelector<object, {
4
+ [id: string]: any;
5
+ }, (s1: fromFeature.BookmarksState) => {
6
+ [id: string]: any;
7
+ }>;
8
+ export declare const getBookmarkEntities: import("@ngrx/store").MemoizedSelector<object, {
9
+ [id: string]: import("../../viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces").Bookmark;
10
+ }, (s1: fromFeature.BookmarksState) => {
11
+ [id: string]: import("../../viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces").Bookmark;
12
+ }>;
13
+ export declare const getBookmarkNodes: import("@ngrx/store").MemoizedSelector<object, any[], (s1: {
14
+ [id: string]: import("../../viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces").Bookmark;
15
+ }) => any[]>;
16
+ export declare const getEditableBookmark: import("@ngrx/store").MemoizedSelector<object, string, (s1: fromFeature.BookmarksState) => string>;
17
+ export declare const getScrollTop: import("@ngrx/store").MemoizedSelector<object, number, (s1: fromFeature.BookmarksState) => number>;
18
+ export declare const getBookmarkInfo: import("@ngrx/store").MemoizedSelector<object, {
19
+ pageNumber: number;
20
+ xCoordinate: number;
21
+ yCoordinate: number;
22
+ previous: any;
23
+ documentId: string;
24
+ }, (s1: any[], s2: string, s3: fromFeature.PdfPosition, s4: {
25
+ [id: string]: fromFeature.DocumentPages;
26
+ }) => {
27
+ pageNumber: number;
28
+ xCoordinate: number;
29
+ yCoordinate: number;
30
+ previous: any;
31
+ documentId: string;
32
+ }>;
33
+ export declare const getBookmarksPerPage: import("@ngrx/store").MemoizedSelector<object, any[], (s1: {
34
+ [id: string]: fromFeature.DocumentPages;
35
+ }, s2: {
36
+ [id: string]: any;
37
+ }) => any[]>;
38
+ //# sourceMappingURL=bookmark.selectors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bookmark.selectors.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/selectors/bookmark.selectors.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,WAAW,MAAM,sBAAsB,CAAC;AAKpD,eAAO,MAAM,gBAAgB,mIAG5B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;EAG5B,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;EAG/B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;YAG5B,CAAC;AAEF,eAAO,MAAM,mBAAmB,oGAG/B,CAAC;AAEF,eAAO,MAAM,YAAY,oGAGxB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;EAgB3B,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;YAiB/B,CAAC"}
@@ -0,0 +1,23 @@
1
+ import * as fromFeature from '../reducers/reducers';
2
+ export declare const getDocumentState: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentState, (s1: fromFeature.State) => fromFeature.DocumentState>;
3
+ export declare const getPages: import("@ngrx/store").MemoizedSelector<object, {
4
+ [id: string]: fromFeature.DocumentPages;
5
+ }, (s1: fromFeature.DocumentState) => {
6
+ [id: string]: fromFeature.DocumentPages;
7
+ }>;
8
+ export declare const getPageList: import("@ngrx/store").MemoizedSelector<object, fromFeature.DocumentPages[], (s1: {
9
+ [id: string]: fromFeature.DocumentPages;
10
+ }) => fromFeature.DocumentPages[]>;
11
+ export declare const getDocumentId: import("@ngrx/store").MemoizedSelector<object, string, (s1: fromFeature.DocumentState) => string>;
12
+ export declare const getPdfPosition: import("@ngrx/store").MemoizedSelector<object, fromFeature.PdfPosition, (s1: fromFeature.DocumentState) => fromFeature.PdfPosition>;
13
+ export declare const getPageDifference: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromFeature.DocumentState) => boolean>;
14
+ export declare const getConvertedDocument: import("@ngrx/store").MemoizedSelector<object, {
15
+ url: string;
16
+ error: string;
17
+ }, (s1: fromFeature.DocumentState) => {
18
+ url: string;
19
+ error: string;
20
+ }>;
21
+ export declare const getRotation: import("@ngrx/store").MemoizedSelector<object, number, (s1: fromFeature.DocumentState) => number>;
22
+ export declare const rotationLoaded: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromFeature.DocumentState) => boolean>;
23
+ //# sourceMappingURL=document.selectors.d.ts.map