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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (372) hide show
  1. package/assets/all.scss +1 -0
  2. package/assets/sass/tooltip.scss +50 -0
  3. package/esm2022/hmcts-media-viewer.mjs +5 -0
  4. package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +122 -0
  5. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.mjs +120 -0
  6. package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +101 -0
  7. package/esm2022/lib/annotations/annotation-set/annotation-set.component.mjs +50 -0
  8. package/esm2022/lib/annotations/annotation-set/annotation-set.model.mjs +2 -0
  9. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +94 -0
  10. package/esm2022/lib/annotations/annotation-set/annotation-view/annotation.model.mjs +2 -0
  11. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +116 -0
  12. package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.mjs +2 -0
  13. package/esm2022/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.mjs +119 -0
  14. package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +86 -0
  15. package/esm2022/lib/annotations/annotations.module.mjs +162 -0
  16. package/esm2022/lib/annotations/comment-set/comment/comment.component.mjs +178 -0
  17. package/esm2022/lib/annotations/comment-set/comment/comment.model.mjs +2 -0
  18. package/esm2022/lib/annotations/comment-set/comment/comment.service.mjs +50 -0
  19. package/esm2022/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.mjs +47 -0
  20. package/esm2022/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.mjs +31 -0
  21. package/esm2022/lib/annotations/comment-set/comment-navigate/comments-navigate.component.mjs +91 -0
  22. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.mjs +62 -0
  23. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.mjs +54 -0
  24. package/esm2022/lib/annotations/comment-set/comment-set-header/comment-set-header.component.mjs +72 -0
  25. package/esm2022/lib/annotations/comment-set/comment-set-render.service.mjs +55 -0
  26. package/esm2022/lib/annotations/comment-set/comment-set.component.mjs +123 -0
  27. package/esm2022/lib/annotations/comments-summary/comments-summary.component.mjs +120 -0
  28. package/esm2022/lib/annotations/models/api-persisted.model.mjs +2 -0
  29. package/esm2022/lib/annotations/models/event-select.model.mjs +2 -0
  30. package/esm2022/lib/annotations/models/tags.model.mjs +2 -0
  31. package/esm2022/lib/annotations/models/user.model.mjs +2 -0
  32. package/esm2022/lib/annotations/pipes/date/date.pipe.mjs +26 -0
  33. package/esm2022/lib/annotations/pipes/filter/filter.pipe.mjs +32 -0
  34. package/esm2022/lib/annotations/pipes/unsnake/unsnake.pipe.mjs +16 -0
  35. package/esm2022/lib/annotations/services/annotation-api/annotation-api.service.mjs +58 -0
  36. package/esm2022/lib/annotations/services/bookmarks-api/bookmarks-api.service.mjs +45 -0
  37. package/esm2022/lib/annotations/services/tags/tags.services.mjs +41 -0
  38. package/esm2022/lib/annotations/tags/tags.component.mjs +53 -0
  39. package/esm2022/lib/bookmark/components/bookmark-icons.component.mjs +25 -0
  40. package/esm2022/lib/icp/confirm-exit/confirm-action-dialog.component.mjs +22 -0
  41. package/esm2022/lib/icp/icp-follower.service.mjs +65 -0
  42. package/esm2022/lib/icp/icp-presenter.service.mjs +56 -0
  43. package/esm2022/lib/icp/icp-session-api.service.mjs +28 -0
  44. package/esm2022/lib/icp/icp-update.service.mjs +73 -0
  45. package/esm2022/lib/icp/icp.events.mjs +15 -0
  46. package/esm2022/lib/icp/icp.interfaces.mjs +2 -0
  47. package/esm2022/lib/icp/icp.service.mjs +98 -0
  48. package/esm2022/lib/icp/participants-list/participants-list.component.mjs +32 -0
  49. package/esm2022/lib/icp/socket.service.mjs +128 -0
  50. package/esm2022/lib/media-viewer.component.mjs +247 -0
  51. package/esm2022/lib/media-viewer.module.mjs +139 -0
  52. package/esm2022/lib/print.service.mjs +32 -0
  53. package/esm2022/lib/redaction/components/redaction.component.mjs +91 -0
  54. package/esm2022/lib/redaction/services/redaction-api.service.mjs +50 -0
  55. package/esm2022/lib/redaction/services/redaction.model.mjs +2 -0
  56. package/esm2022/lib/shared/directives/tooltip-dismiss.directive.mjs +36 -0
  57. package/esm2022/lib/shared/gov-uk-date/gov-uk-date.component.mjs +28 -0
  58. package/esm2022/lib/shared/gov-uk-error-message/gov-uk-error-message.component.mjs +34 -0
  59. package/esm2022/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.mjs +63 -0
  60. package/esm2022/lib/shared/gov-uk-label/gov-uk-label.component.mjs +44 -0
  61. package/esm2022/lib/shared/shared.module.mjs +53 -0
  62. package/esm2022/lib/shared/util/helpers/html-templates.helper.mjs +29 -0
  63. package/esm2022/lib/shared/util/services/number.helper.service.mjs +23 -0
  64. package/esm2022/lib/store/actions/annotation.actions.mjs +119 -0
  65. package/esm2022/lib/store/actions/bookmark.actions.mjs +112 -0
  66. package/esm2022/lib/store/actions/document.actions.mjs +91 -0
  67. package/esm2022/lib/store/actions/icp.actions.mjs +56 -0
  68. package/esm2022/lib/store/actions/redaction.actions.mjs +132 -0
  69. package/esm2022/lib/store/actions/tag.actions.mjs +21 -0
  70. package/esm2022/lib/store/bookmarks-store-utils.mjs +49 -0
  71. package/esm2022/lib/store/effects/annotation.effects.mjs +51 -0
  72. package/esm2022/lib/store/effects/bookmarks.effects.mjs +44 -0
  73. package/esm2022/lib/store/effects/document.effects.mjs +44 -0
  74. package/esm2022/lib/store/effects/icp.effects.mjs +26 -0
  75. package/esm2022/lib/store/effects/index.mjs +7 -0
  76. package/esm2022/lib/store/effects/redaction.effects.mjs +67 -0
  77. package/esm2022/lib/store/models/bookmarks.interface.mjs +2 -0
  78. package/esm2022/lib/store/models/filters.interface.mjs +2 -0
  79. package/esm2022/lib/store/reducers/annotations.reducer.mjs +208 -0
  80. package/esm2022/lib/store/reducers/bookmarks.reducer.mjs +125 -0
  81. package/esm2022/lib/store/reducers/document.reducer.mjs +158 -0
  82. package/esm2022/lib/store/reducers/icp.reducer.mjs +56 -0
  83. package/esm2022/lib/store/reducers/redaction.reducer.mjs +116 -0
  84. package/esm2022/lib/store/reducers/reducers.mjs +23 -0
  85. package/esm2022/lib/store/reducers/tags.reducer.mjs +93 -0
  86. package/esm2022/lib/store/selectors/annotation.selectors.mjs +81 -0
  87. package/esm2022/lib/store/selectors/bookmark.selectors.mjs +37 -0
  88. package/esm2022/lib/store/selectors/document.selectors.mjs +13 -0
  89. package/esm2022/lib/store/selectors/icp.selectors.mjs +13 -0
  90. package/esm2022/lib/store/selectors/redaction.selectors.mjs +26 -0
  91. package/esm2022/lib/store/selectors/tag.selectors.mjs +15 -0
  92. package/esm2022/lib/store/store-utils.mjs +131 -0
  93. package/esm2022/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +46 -0
  94. package/esm2022/lib/toolbar/icp-event.service.mjs +44 -0
  95. package/esm2022/lib/toolbar/icp-toolbar/icp-toolbar.component.mjs +43 -0
  96. package/esm2022/lib/toolbar/main-toolbar/main-toolbar.component.mjs +207 -0
  97. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search-bar.component.mjs +237 -0
  98. package/esm2022/lib/toolbar/redaction-search-bar/redaction-search.model.mjs +2 -0
  99. package/esm2022/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +69 -0
  100. package/esm2022/lib/toolbar/search-bar/search-bar.component.mjs +109 -0
  101. package/esm2022/lib/toolbar/toolbar-button-visibility.service.mjs +94 -0
  102. package/esm2022/lib/toolbar/toolbar-event.service.mjs +178 -0
  103. package/esm2022/lib/toolbar/toolbar.module.mjs +75 -0
  104. package/esm2022/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.mjs +82 -0
  105. package/esm2022/lib/viewers/convertible-content-viewer/document-conversion-api.service.mjs +22 -0
  106. package/esm2022/lib/viewers/grab-n-drag.directive.mjs +57 -0
  107. package/esm2022/lib/viewers/image-viewer/image-viewer.component.mjs +166 -0
  108. package/esm2022/lib/viewers/multimedia-player/multimedia-player.component.mjs +59 -0
  109. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.mjs +266 -0
  110. package/esm2022/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.mjs +40 -0
  111. package/esm2022/lib/viewers/pdf-viewer/pdf-viewer.component.mjs +242 -0
  112. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.mjs +379 -0
  113. package/esm2022/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.mjs +2 -0
  114. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.mjs +49 -0
  115. package/esm2022/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.mjs +2 -0
  116. package/esm2022/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +99 -0
  117. package/esm2022/lib/viewers/rotation-persist/rotation-api.service.mjs +27 -0
  118. package/esm2022/lib/viewers/rotation-persist/rotation-persist.directive.mjs +61 -0
  119. package/esm2022/lib/viewers/rotation-persist/rotation.model.mjs +2 -0
  120. package/esm2022/lib/viewers/unsupported-viewer/unsupported-viewer.component.mjs +49 -0
  121. package/esm2022/lib/viewers/viewer-event.service.mjs +34 -0
  122. package/esm2022/lib/viewers/viewer-exception.model.mjs +13 -0
  123. package/esm2022/lib/viewers/viewer-util.service.mjs +20 -0
  124. package/esm2022/public_api.mjs +33 -0
  125. package/fesm2022/hmcts-media-viewer.mjs +320 -295
  126. package/fesm2022/hmcts-media-viewer.mjs.map +1 -1
  127. package/hmcts-media-viewer.d.ts.map +1 -0
  128. package/index.d.ts +4 -2305
  129. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +48 -0
  130. package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -0
  131. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts +32 -0
  132. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.d.ts.map +1 -0
  133. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +18 -0
  134. package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -0
  135. package/lib/annotations/annotation-set/annotation-set.component.d.ts +27 -0
  136. package/lib/annotations/annotation-set/annotation-set.component.d.ts.map +1 -0
  137. package/lib/annotations/annotation-set/annotation-set.model.d.ts +7 -0
  138. package/lib/annotations/annotation-set/annotation-set.model.d.ts.map +1 -0
  139. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +34 -0
  140. package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -0
  141. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts +16 -0
  142. package/lib/annotations/annotation-set/annotation-view/annotation.model.d.ts.map +1 -0
  143. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +41 -0
  144. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -0
  145. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts +9 -0
  146. package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.d.ts.map +1 -0
  147. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts +37 -0
  148. package/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.d.ts.map +1 -0
  149. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +37 -0
  150. package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -0
  151. package/lib/annotations/annotations.module.d.ts +36 -0
  152. package/lib/annotations/annotations.module.d.ts.map +1 -0
  153. package/lib/annotations/comment-set/comment/comment.component.d.ts +69 -0
  154. package/lib/annotations/comment-set/comment/comment.component.d.ts.map +1 -0
  155. package/lib/annotations/comment-set/comment/comment.model.d.ts +13 -0
  156. package/lib/annotations/comment-set/comment/comment.model.d.ts.map +1 -0
  157. package/lib/annotations/comment-set/comment/comment.service.d.ts +22 -0
  158. package/lib/annotations/comment-set/comment/comment.service.d.ts.map +1 -0
  159. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts +14 -0
  160. package/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.d.ts.map +1 -0
  161. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts +12 -0
  162. package/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.d.ts.map +1 -0
  163. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts +28 -0
  164. package/lib/annotations/comment-set/comment-navigate/comments-navigate.component.d.ts.map +1 -0
  165. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts +26 -0
  166. package/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.d.ts.map +1 -0
  167. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts +21 -0
  168. package/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.d.ts.map +1 -0
  169. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts +36 -0
  170. package/lib/annotations/comment-set/comment-set-header/comment-set-header.component.d.ts.map +1 -0
  171. package/lib/annotations/comment-set/comment-set-render.service.d.ts +15 -0
  172. package/lib/annotations/comment-set/comment-set-render.service.d.ts.map +1 -0
  173. package/lib/annotations/comment-set/comment-set.component.d.ts +56 -0
  174. package/lib/annotations/comment-set/comment-set.component.d.ts.map +1 -0
  175. package/lib/annotations/comments-summary/comments-summary.component.d.ts +42 -0
  176. package/lib/annotations/comments-summary/comments-summary.component.d.ts.map +1 -0
  177. package/lib/annotations/models/api-persisted.model.d.ts +11 -0
  178. package/lib/annotations/models/api-persisted.model.d.ts.map +1 -0
  179. package/lib/annotations/models/event-select.model.d.ts +6 -0
  180. package/lib/annotations/models/event-select.model.d.ts.map +1 -0
  181. package/lib/annotations/models/tags.model.d.ts +7 -0
  182. package/lib/annotations/models/tags.model.d.ts.map +1 -0
  183. package/lib/annotations/models/user.model.d.ts +6 -0
  184. package/lib/annotations/models/user.model.d.ts.map +1 -0
  185. package/lib/annotations/pipes/date/date.pipe.d.ts +16 -0
  186. package/lib/annotations/pipes/date/date.pipe.d.ts.map +1 -0
  187. package/lib/annotations/pipes/filter/filter.pipe.d.ts +8 -0
  188. package/lib/annotations/pipes/filter/filter.pipe.d.ts.map +1 -0
  189. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts +8 -0
  190. package/lib/annotations/pipes/unsnake/unsnake.pipe.d.ts.map +1 -0
  191. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts +28 -0
  192. package/lib/annotations/services/annotation-api/annotation-api.service.d.ts.map +1 -0
  193. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts +21 -0
  194. package/lib/annotations/services/bookmarks-api/bookmarks-api.service.d.ts.map +1 -0
  195. package/lib/annotations/services/tags/tags.services.d.ts +18 -0
  196. package/lib/annotations/services/tags/tags.services.d.ts.map +1 -0
  197. package/lib/annotations/tags/tags.component.d.ts +28 -0
  198. package/lib/annotations/tags/tags.component.d.ts.map +1 -0
  199. package/lib/bookmark/components/bookmark-icons.component.d.ts +19 -0
  200. package/lib/bookmark/components/bookmark-icons.component.d.ts.map +1 -0
  201. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts +11 -0
  202. package/lib/icp/confirm-exit/confirm-action-dialog.component.d.ts.map +1 -0
  203. package/lib/icp/icp-follower.service.d.ts +26 -0
  204. package/lib/icp/icp-follower.service.d.ts.map +1 -0
  205. package/lib/icp/icp-presenter.service.d.ts +25 -0
  206. package/lib/icp/icp-presenter.service.d.ts.map +1 -0
  207. package/lib/icp/icp-session-api.service.d.ts +15 -0
  208. package/lib/icp/icp-session-api.service.d.ts.map +1 -0
  209. package/lib/icp/icp-update.service.d.ts +22 -0
  210. package/lib/icp/icp-update.service.d.ts.map +1 -0
  211. package/lib/icp/icp.events.d.ts +14 -0
  212. package/lib/icp/icp.events.d.ts.map +1 -0
  213. package/lib/icp/icp.interfaces.d.ts +23 -0
  214. package/lib/icp/icp.interfaces.d.ts.map +1 -0
  215. package/lib/icp/icp.service.d.ts +40 -0
  216. package/lib/icp/icp.service.d.ts.map +1 -0
  217. package/lib/icp/participants-list/participants-list.component.d.ts +23 -0
  218. package/lib/icp/participants-list/participants-list.component.d.ts.map +1 -0
  219. package/lib/icp/socket.service.d.ts +29 -0
  220. package/lib/icp/socket.service.d.ts.map +1 -0
  221. package/lib/media-viewer.component.d.ts +72 -0
  222. package/lib/media-viewer.component.d.ts.map +1 -0
  223. package/lib/media-viewer.module.d.ts +36 -0
  224. package/lib/media-viewer.module.d.ts.map +1 -0
  225. package/lib/print.service.d.ts +8 -0
  226. package/lib/print.service.d.ts.map +1 -0
  227. package/lib/redaction/components/redaction.component.d.ts +42 -0
  228. package/lib/redaction/components/redaction.component.d.ts.map +1 -0
  229. package/lib/redaction/services/redaction-api.service.d.ts +20 -0
  230. package/lib/redaction/services/redaction-api.service.d.ts.map +1 -0
  231. package/lib/redaction/services/redaction.model.d.ts +11 -0
  232. package/lib/redaction/services/redaction.model.d.ts.map +1 -0
  233. package/lib/shared/directives/tooltip-dismiss.directive.d.ts +11 -0
  234. package/lib/shared/directives/tooltip-dismiss.directive.d.ts.map +1 -0
  235. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts +15 -0
  236. package/lib/shared/gov-uk-date/gov-uk-date.component.d.ts.map +1 -0
  237. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts +11 -0
  238. package/lib/shared/gov-uk-error-message/gov-uk-error-message.component.d.ts.map +1 -0
  239. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +16 -0
  240. package/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.d.ts.map +1 -0
  241. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts +14 -0
  242. package/lib/shared/gov-uk-label/gov-uk-label.component.d.ts.map +1 -0
  243. package/lib/shared/shared.module.d.ts +14 -0
  244. package/lib/shared/shared.module.d.ts.map +1 -0
  245. package/lib/shared/util/helpers/html-templates.helper.d.ts +9 -0
  246. package/lib/shared/util/helpers/html-templates.helper.d.ts.map +1 -0
  247. package/lib/shared/util/services/number.helper.service.d.ts +11 -0
  248. package/lib/shared/util/services/number.helper.service.d.ts.map +1 -0
  249. package/lib/store/actions/annotation.actions.d.ts +126 -0
  250. package/lib/store/actions/annotation.actions.d.ts.map +1 -0
  251. package/lib/store/actions/bookmark.actions.d.ts +117 -0
  252. package/lib/store/actions/bookmark.actions.d.ts.map +1 -0
  253. package/lib/store/actions/document.actions.d.ts +90 -0
  254. package/lib/store/actions/document.actions.d.ts.map +1 -0
  255. package/lib/store/actions/icp.actions.d.ts +75 -0
  256. package/lib/store/actions/icp.actions.d.ts.map +1 -0
  257. package/lib/store/actions/redaction.actions.d.ts +127 -0
  258. package/lib/store/actions/redaction.actions.d.ts.map +1 -0
  259. package/lib/store/actions/tag.actions.d.ts +30 -0
  260. package/lib/store/actions/tag.actions.d.ts.map +1 -0
  261. package/lib/store/bookmarks-store-utils.d.ts +9 -0
  262. package/lib/store/bookmarks-store-utils.d.ts.map +1 -0
  263. package/lib/store/effects/annotation.effects.d.ts +16 -0
  264. package/lib/store/effects/annotation.effects.d.ts.map +1 -0
  265. package/lib/store/effects/bookmarks.effects.d.ts +21 -0
  266. package/lib/store/effects/bookmarks.effects.d.ts.map +1 -0
  267. package/lib/store/effects/document.effects.d.ts +17 -0
  268. package/lib/store/effects/document.effects.d.ts.map +1 -0
  269. package/lib/store/effects/icp.effects.d.ts +16 -0
  270. package/lib/store/effects/icp.effects.d.ts.map +1 -0
  271. package/lib/store/effects/index.d.ts +2 -0
  272. package/lib/store/effects/index.d.ts.map +1 -0
  273. package/lib/store/effects/redaction.effects.d.ts +20 -0
  274. package/lib/store/effects/redaction.effects.d.ts.map +1 -0
  275. package/lib/store/models/bookmarks.interface.d.ts +31 -0
  276. package/lib/store/models/bookmarks.interface.d.ts.map +1 -0
  277. package/lib/store/models/filters.interface.d.ts +8 -0
  278. package/lib/store/models/filters.interface.d.ts.map +1 -0
  279. package/lib/store/reducers/annotations.reducer.d.ts +48 -0
  280. package/lib/store/reducers/annotations.reducer.d.ts.map +1 -0
  281. package/lib/store/reducers/bookmarks.reducer.d.ts +27 -0
  282. package/lib/store/reducers/bookmarks.reducer.d.ts.map +1 -0
  283. package/lib/store/reducers/document.reducer.d.ts +52 -0
  284. package/lib/store/reducers/document.reducer.d.ts.map +1 -0
  285. package/lib/store/reducers/icp.reducer.d.ts +9 -0
  286. package/lib/store/reducers/icp.reducer.d.ts.map +1 -0
  287. package/lib/store/reducers/redaction.reducer.d.ts +32 -0
  288. package/lib/store/reducers/redaction.reducer.d.ts.map +1 -0
  289. package/lib/store/reducers/reducers.d.ts +24 -0
  290. package/lib/store/reducers/reducers.d.ts.map +1 -0
  291. package/lib/store/reducers/tags.reducer.d.ts +32 -0
  292. package/lib/store/reducers/tags.reducer.d.ts.map +1 -0
  293. package/lib/store/selectors/annotation.selectors.d.ts +136 -0
  294. package/lib/store/selectors/annotation.selectors.d.ts.map +1 -0
  295. package/lib/store/selectors/bookmark.selectors.d.ts +38 -0
  296. package/lib/store/selectors/bookmark.selectors.d.ts.map +1 -0
  297. package/lib/store/selectors/document.selectors.d.ts +23 -0
  298. package/lib/store/selectors/document.selectors.d.ts.map +1 -0
  299. package/lib/store/selectors/icp.selectors.d.ts +10 -0
  300. package/lib/store/selectors/icp.selectors.d.ts.map +1 -0
  301. package/lib/store/selectors/redaction.selectors.d.ts +35 -0
  302. package/lib/store/selectors/redaction.selectors.d.ts.map +1 -0
  303. package/lib/store/selectors/tag.selectors.d.ts +28 -0
  304. package/lib/store/selectors/tag.selectors.d.ts.map +1 -0
  305. package/lib/store/store-utils.d.ts +25 -0
  306. package/lib/store/store-utils.d.ts.map +1 -0
  307. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts +20 -0
  308. package/lib/toolbar/highlight-toolbar/highlight-toolbar.component.d.ts.map +1 -0
  309. package/lib/toolbar/icp-event.service.d.ts +21 -0
  310. package/lib/toolbar/icp-event.service.d.ts.map +1 -0
  311. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts +24 -0
  312. package/lib/toolbar/icp-toolbar/icp-toolbar.component.d.ts.map +1 -0
  313. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts +69 -0
  314. package/lib/toolbar/main-toolbar/main-toolbar.component.d.ts.map +1 -0
  315. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts +60 -0
  316. package/lib/toolbar/redaction-search-bar/redaction-search-bar.component.d.ts.map +1 -0
  317. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts +12 -0
  318. package/lib/toolbar/redaction-search-bar/redaction-search.model.d.ts.map +1 -0
  319. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts +30 -0
  320. package/lib/toolbar/redaction-toolbar/redaction-toolbar.component.d.ts.map +1 -0
  321. package/lib/toolbar/search-bar/search-bar.component.d.ts +34 -0
  322. package/lib/toolbar/search-bar/search-bar.component.d.ts.map +1 -0
  323. package/lib/toolbar/toolbar-button-visibility.service.d.ts +67 -0
  324. package/lib/toolbar/toolbar-button-visibility.service.d.ts.map +1 -0
  325. package/lib/toolbar/toolbar-event.service.d.ts +96 -0
  326. package/lib/toolbar/toolbar-event.service.d.ts.map +1 -0
  327. package/lib/toolbar/toolbar.module.d.ts +20 -0
  328. package/lib/toolbar/toolbar.module.d.ts.map +1 -0
  329. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts +31 -0
  330. package/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.d.ts.map +1 -0
  331. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts +12 -0
  332. package/lib/viewers/convertible-content-viewer/document-conversion-api.service.d.ts.map +1 -0
  333. package/lib/viewers/grab-n-drag.directive.d.ts +19 -0
  334. package/lib/viewers/grab-n-drag.directive.d.ts.map +1 -0
  335. package/lib/viewers/image-viewer/image-viewer.component.d.ts +57 -0
  336. package/lib/viewers/image-viewer/image-viewer.component.d.ts.map +1 -0
  337. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts +25 -0
  338. package/lib/viewers/multimedia-player/multimedia-player.component.d.ts.map +1 -0
  339. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts +69 -0
  340. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.d.ts.map +1 -0
  341. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts +17 -0
  342. package/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.d.ts.map +1 -0
  343. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts +82 -0
  344. package/lib/viewers/pdf-viewer/pdf-viewer.component.d.ts.map +1 -0
  345. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts +82 -0
  346. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.d.ts.map +1 -0
  347. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts +22 -0
  348. package/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.d.ts.map +1 -0
  349. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts +20 -0
  350. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.d.ts.map +1 -0
  351. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts +14 -0
  352. package/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.d.ts.map +1 -0
  353. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts +42 -0
  354. package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -0
  355. package/lib/viewers/rotation-persist/rotation-api.service.d.ts +14 -0
  356. package/lib/viewers/rotation-persist/rotation-api.service.d.ts.map +1 -0
  357. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts +27 -0
  358. package/lib/viewers/rotation-persist/rotation-persist.directive.d.ts.map +1 -0
  359. package/lib/viewers/rotation-persist/rotation.model.d.ts +5 -0
  360. package/lib/viewers/rotation-persist/rotation.model.d.ts.map +1 -0
  361. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts +23 -0
  362. package/lib/viewers/unsupported-viewer/unsupported-viewer.component.d.ts.map +1 -0
  363. package/lib/viewers/viewer-event.service.d.ts +23 -0
  364. package/lib/viewers/viewer-event.service.d.ts.map +1 -0
  365. package/lib/viewers/viewer-exception.model.d.ts +15 -0
  366. package/lib/viewers/viewer-exception.model.d.ts.map +1 -0
  367. package/lib/viewers/viewer-util.service.d.ts +10 -0
  368. package/lib/viewers/viewer-util.service.d.ts.map +1 -0
  369. package/package.json +12 -10
  370. package/public_api.d.ts +30 -0
  371. package/public_api.d.ts.map +1 -0
  372. package/index.d.ts.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rotation-api.service.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation-api.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;;AAE5C,qBACa,kBAAkB;IAK3B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAHtB,cAAc,SAAuB;gBAGzB,UAAU,EAAE,UAAU;IAGlC,WAAW,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAMnE,YAAY,CAAC,OAAO,EAAE,QAAQ,GAAG,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;yCAd/D,kBAAkB;6CAAlB,kBAAkB;CAwB9B"}
@@ -0,0 +1,27 @@
1
+ import { ElementRef, OnDestroy, OnInit } from '@angular/core';
2
+ import { Store } from '@ngrx/store';
3
+ import { ResponseType } from '../viewer-exception.model';
4
+ import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
5
+ import * as fromStore from '../../store/reducers/reducers';
6
+ import { ToolbarButtonVisibilityService } from '../../toolbar/toolbar-button-visibility.service';
7
+ import { Subscription } from 'rxjs';
8
+ import * as i0 from "@angular/core";
9
+ export declare class RotationPersistDirective implements OnInit, OnDestroy {
10
+ private el;
11
+ private store;
12
+ readonly toolbarButtons: ToolbarButtonVisibilityService;
13
+ private toolbarEvents;
14
+ documentId: string;
15
+ rotation: number;
16
+ savedRotation: number;
17
+ $subscriptions: Subscription;
18
+ constructor(el: ElementRef, store: Store<fromStore.DocumentState>, toolbarButtons: ToolbarButtonVisibilityService, toolbarEvents: ToolbarEventService);
19
+ ngOnInit(): void;
20
+ ngOnDestroy(): void;
21
+ onMediaLoad(status: ResponseType): void;
22
+ private onRotate;
23
+ private saveRotation;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<RotationPersistDirective, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RotationPersistDirective, "[mvRotationPersist]", never, {}, {}, never, never, false, never>;
26
+ }
27
+ //# sourceMappingURL=rotation-persist.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rotation-persist.directive.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation-persist.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEvF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAI5C,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AACjG,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;;AAGpC,qBAGa,wBAAyB,YAAW,MAAM,EAAE,SAAS;IAQpD,OAAO,CAAC,EAAE;IACpB,OAAO,CAAC,KAAK;aACG,cAAc,EAAE,8BAA8B;IAC9D,OAAO,CAAC,aAAa;IATvB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,SAAK;IACb,aAAa,SAAK;IAElB,cAAc,EAAE,YAAY,CAAC;gBAET,EAAE,EAAE,UAAU,EACxB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,aAAa,CAAC,EAC7B,cAAc,EAAE,8BAA8B,EACtD,aAAa,EAAE,mBAAmB;IAG5C,QAAQ;IAQR,WAAW;IAKX,WAAW,CAAC,MAAM,EAAE,YAAY;IAahC,OAAO,CAAC,QAAQ;IAKhB,OAAO,CAAC,YAAY;yCA7CT,wBAAwB;2CAAxB,wBAAwB;CAoDpC"}
@@ -0,0 +1,5 @@
1
+ export interface Rotation {
2
+ documentId: string;
3
+ rotationAngle: number;
4
+ }
5
+ //# sourceMappingURL=rotation.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rotation.model.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,23 @@
1
+ import { ElementRef, OnInit, OnDestroy, EventEmitter } from '@angular/core';
2
+ import { ToolbarEventService } from '../../toolbar/toolbar-event.service';
3
+ import { ResponseType, ViewerException } from '../viewer-exception.model';
4
+ import { ViewerUtilService } from '../viewer-util.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class UnsupportedViewerComponent implements OnInit, OnDestroy {
7
+ readonly toolbarEvents: ToolbarEventService;
8
+ private readonly viewerUtilService;
9
+ url: string;
10
+ downloadFileName: string;
11
+ typeException: boolean;
12
+ loadStatus: EventEmitter<ResponseType>;
13
+ unsupportedViewerException: EventEmitter<ViewerException>;
14
+ downloadLink: ElementRef;
15
+ private subscriptions;
16
+ private viewerException;
17
+ constructor(toolbarEvents: ToolbarEventService, viewerUtilService: ViewerUtilService);
18
+ ngOnInit(): void;
19
+ ngOnDestroy(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<UnsupportedViewerComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<UnsupportedViewerComponent, "mv-unsupported-viewer", never, { "url": { "alias": "url"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "typeException": { "alias": "typeException"; "required": false; }; }, { "loadStatus": "loadStatus"; "unsupportedViewerException": "unsupportedViewerException"; }, never, never, false, never>;
22
+ }
23
+ //# sourceMappingURL=unsupported-viewer.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unsupported-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/viewers/unsupported-viewer/unsupported-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAS,MAAM,EAAa,SAAS,EAAU,YAAY,EAAE,MAAM,eAAe,CAAC;AACjH,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;;AAE3D,qBAIa,0BAA2B,YAAW,MAAM,EAAE,SAAS;aAehD,aAAa,EAAE,mBAAmB;IAClD,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAd3B,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,EAAE,OAAO,CAAC;IAEtB,UAAU,6BAAoC;IAC9C,0BAA0B,gCAAuC;IAE/B,YAAY,EAAE,UAAU,CAAC;IAErE,OAAO,CAAC,aAAa,CAAsB;IAC3C,OAAO,CAAC,eAAe,CAAkB;gBAGvB,aAAa,EAAE,mBAAmB,EACjC,iBAAiB,EAAE,iBAAiB;IAGhD,QAAQ,IAAI,IAAI;IAmBvB,WAAW,IAAI,IAAI;yCAtCR,0BAA0B;2CAA1B,0BAA0B;CA4CtC"}
@@ -0,0 +1,23 @@
1
+ import { Subject } from 'rxjs';
2
+ import { Rectangle } from '../annotations/annotation-set/annotation-view/rectangle/rectangle.model';
3
+ import * as i0 from "@angular/core";
4
+ export interface Highlight {
5
+ page: number;
6
+ rectangles: Rectangle[];
7
+ }
8
+ export declare class ViewerEventService {
9
+ readonly textHighlight: Subject<Highlight>;
10
+ readonly boxHighlight: Subject<Highlight>;
11
+ readonly ctxToolbarCleared: Subject<void>;
12
+ readonly navigationEvent: Subject<any[]>;
13
+ readonly navigationEventICP: Subject<any[]>;
14
+ constructor();
15
+ textSelected(selectionData: Highlight): void;
16
+ boxSelected(selectionData: Highlight): void;
17
+ clearCtxToolbar(): void;
18
+ goToDestination(destination: any[]): void;
19
+ goToDestinationICP(destination: any[]): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewerEventService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<ViewerEventService>;
22
+ }
23
+ //# sourceMappingURL=viewer-event.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"viewer-event.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-event.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,yEAAyE,CAAC;;AAEpG,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,SAAS,EAAE,CAAC;CACzB;AAED,qBACa,kBAAkB;IAE7B,SAAgB,aAAa,qBAA4B;IACzD,SAAgB,YAAY,qBAA4B;IACxD,SAAgB,iBAAiB,gBAAuB;IACxD,SAAgB,eAAe,iBAAwB;IACvD,SAAgB,kBAAkB,iBAAwB;;IAInD,YAAY,CAAC,aAAa,EAAE,SAAS,GAAG,IAAI;IAI5C,WAAW,CAAC,aAAa,EAAE,SAAS,GAAG,IAAI;IAI3C,eAAe,IAAI,IAAI;IAKvB,eAAe,CAAC,WAAW,EAAE,GAAG,EAAE;IAIlC,kBAAkB,CAAC,WAAW,EAAE,GAAG,EAAE;yCA3BjC,kBAAkB;6CAAlB,kBAAkB;CA8B9B"}
@@ -0,0 +1,15 @@
1
+ export declare enum ResponseType {
2
+ SUCCESS = "SUCCESS",
3
+ FAILURE = "FAILURE",
4
+ UNSUPPORTED = "UNSUPPORTED"
5
+ }
6
+ export interface ExceptionDetail {
7
+ httpResponseCode?: string;
8
+ message?: string;
9
+ }
10
+ export declare class ViewerException {
11
+ exceptionType?: string;
12
+ detail?: ExceptionDetail;
13
+ constructor(exceptionType?: string, detail?: ExceptionDetail);
14
+ }
15
+ //# sourceMappingURL=viewer-exception.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"viewer-exception.model.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-exception.model.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IACtB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,WAAW,gBAAgB;CAC5B;AAED,MAAM,WAAW,eAAe;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,eAAe;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,eAAe,CAAC;gBAEb,aAAa,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,eAAe;CAI7D"}
@@ -0,0 +1,10 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ViewerUtilService {
4
+ private http;
5
+ constructor(http: HttpClient);
6
+ validateFile(url: string): import("rxjs").Observable<Object>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewerUtilService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<ViewerUtilService>;
9
+ }
10
+ //# sourceMappingURL=viewer-util.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"viewer-util.service.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/viewers/viewer-util.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;;AAElD,qBAGa,iBAAiB;IAE1B,OAAO,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAGnB,YAAY,CAAC,GAAG,EAAE,MAAM;yCALpB,iBAAiB;6CAAjB,iBAAiB;CAQ7B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/media-viewer",
3
- "version": "4.1.9-cme-776-angular-20",
3
+ "version": "4.1.9",
4
4
  "description": "Media Viewer",
5
5
  "keywords": [
6
6
  "Angular",
@@ -25,16 +25,16 @@
25
25
  "uuid": "^11.0.3"
26
26
  },
27
27
  "peerDependencies": {
28
- "@angular/animations": "^20.0.0",
29
- "@angular/common": "^20.0.0",
30
- "@angular/core": "^20.0.0",
31
- "@angular/forms": "^20.0.0",
28
+ "@angular/animations": "^17.3.8",
29
+ "@angular/common": "^17.3.8",
30
+ "@angular/core": "^17.3.8",
31
+ "@angular/forms": "^17.3.8",
32
32
  "@angular/material": "^17.3.8",
33
- "@angular/platform-browser": "^20.0.0",
34
- "@ngrx/effects": "^20",
35
- "@ngrx/router-store": "^20",
36
- "@ngrx/store": "^20",
37
- "@ngrx/store-devtools": "^20"
33
+ "@angular/platform-browser": "^17.3.8",
34
+ "@ngrx/effects": "^17.0.0",
35
+ "@ngrx/router-store": "^17.0.0",
36
+ "@ngrx/store": "^17.0.0",
37
+ "@ngrx/store-devtools": "^17.0.0"
38
38
  },
39
39
  "packageManager": "yarn@4.5.0",
40
40
  "module": "fesm2022/hmcts-media-viewer.mjs",
@@ -45,6 +45,8 @@
45
45
  },
46
46
  ".": {
47
47
  "types": "./index.d.ts",
48
+ "esm2022": "./esm2022/hmcts-media-viewer.mjs",
49
+ "esm": "./esm2022/hmcts-media-viewer.mjs",
48
50
  "default": "./fesm2022/hmcts-media-viewer.mjs"
49
51
  }
50
52
  },
@@ -0,0 +1,30 @@
1
+ export * from './lib/media-viewer.module';
2
+ export * from './lib/toolbar/toolbar.module';
3
+ export * from './lib/annotations/services/annotation-api/annotation-api.service';
4
+ export * from './lib/annotations/annotations.module';
5
+ export * from './lib/viewers/viewer-exception.model';
6
+ export * from './lib/store/reducers/annotations.reducer';
7
+ export * from './lib/store/selectors/annotation.selectors';
8
+ export * from './lib/store/actions/annotation.actions';
9
+ export * from './lib/store/effects/annotation.effects';
10
+ export * from './lib/media-viewer.component';
11
+ export * from './lib/toolbar/highlight-toolbar/highlight-toolbar.component';
12
+ export * from './lib/toolbar/main-toolbar/main-toolbar.component';
13
+ export * from './lib/toolbar/search-bar/search-bar.component';
14
+ export * from './lib/toolbar/redaction-toolbar/redaction-toolbar.component';
15
+ export * from './lib/toolbar/redaction-search-bar/redaction-search-bar.component';
16
+ export * from './lib/toolbar/icp-toolbar/icp-toolbar.component';
17
+ export * from './lib/annotations/annotation-set/annotation-view/annotation-view.component';
18
+ export * from './lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component';
19
+ export * from './lib/annotations/annotation-set/annotation-set.component';
20
+ export * from './lib/annotations/comment-set/comment-set.component';
21
+ export * from './lib/annotations/comment-set/comment-set-header/comment-set-header.component';
22
+ export * from './lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component';
23
+ export * from './lib/annotations/comments-summary/comments-summary.component';
24
+ export * from './lib/annotations/tags/tags.component';
25
+ export * from './lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component';
26
+ export * from './lib/annotations/annotation-set/metadata-layer/metadata-layer.component';
27
+ export * from './lib/annotations/pipes/filter/filter.pipe';
28
+ export * from './lib/annotations/pipes/unsnake/unsnake.pipe';
29
+ export * from './lib/annotations/pipes/date/date.pipe';
30
+ //# sourceMappingURL=public_api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../projects/media-viewer/src/public_api.ts"],"names":[],"mappings":"AAIA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kEAAkE,CAAC;AACjF,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wCAAwC,CAAC;AACvD,cAAc,wCAAwC,CAAC;AACvD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mDAAmD,CAAC;AAClE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mEAAmE,CAAC;AAClF,cAAc,iDAAiD,CAAC;AAChE,cAAc,4EAA4E,CAAC;AAC3F,cAAc,wGAAwG,CAAC;AACvH,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qDAAqD,CAAC;AACpE,cAAc,+EAA+E,CAAC;AAC9F,cAAc,0FAA0F,CAAC;AACzG,cAAc,+DAA+D,CAAC;AAC9E,cAAc,uCAAuC,CAAC;AACtD,cAAc,0FAA0F,CAAC;AACzG,cAAc,0EAA0E,CAAC;AACzF,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC"}
package/index.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sources":["../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.ts","../../projects/media-viewer/src/lib/annotations/models/user.model.ts","../../projects/media-viewer/src/lib/annotations/models/api-persisted.model.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.model.ts","../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search.model.ts","../../projects/media-viewer/src/lib/toolbar/icp-event.service.ts","../../projects/media-viewer/src/lib/toolbar/toolbar-event.service.ts","../../projects/media-viewer/src/lib/store/reducers/document.reducer.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-js/pdf-js-wrapper.provider.ts","../../projects/media-viewer/src/lib/annotations/models/tags.model.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.model.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation.model.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-set.model.ts","../../projects/media-viewer/src/lib/print.service.ts","../../projects/media-viewer/src/lib/viewers/viewer-exception.model.ts","../../projects/media-viewer/src/lib/toolbar/toolbar-button-visibility.service.ts","../../projects/media-viewer/src/lib/annotations/models/event-select.model.ts","../../projects/media-viewer/src/lib/store/models/filters.interface.ts","../../projects/media-viewer/src/lib/store/actions/annotation.actions.ts","../../projects/media-viewer/src/lib/store/reducers/annotations.reducer.ts","../../projects/media-viewer/src/lib/store/reducers/tags.reducer.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.interfaces.ts","../../projects/media-viewer/src/lib/store/reducers/bookmarks.reducer.ts","../../projects/media-viewer/src/lib/redaction/services/redaction.model.ts","../../projects/media-viewer/src/lib/store/reducers/redaction.reducer.ts","../../projects/media-viewer/src/lib/icp/icp.interfaces.ts","../../projects/media-viewer/src/lib/store/reducers/reducers.ts","../../projects/media-viewer/src/lib/viewers/viewer-event.service.ts","../../projects/media-viewer/src/lib/icp/icp.events.ts","../../projects/media-viewer/src/lib/icp/socket.service.ts","../../projects/media-viewer/src/lib/icp/icp-update.service.ts","../../projects/media-viewer/src/lib/icp/icp-presenter.service.ts","../../projects/media-viewer/src/lib/icp/icp-follower.service.ts","../../projects/media-viewer/src/lib/icp/icp.service.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/pdf-viewer.component.ts","../../projects/media-viewer/src/lib/store/models/bookmarks.interface.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/bookmarks/bookmarks.component.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/side-bar.component.ts","../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/outline-item/outline-item.component.ts","../../projects/media-viewer/src/lib/viewers/viewer-util.service.ts","../../projects/media-viewer/src/lib/viewers/image-viewer/image-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/unsupported-viewer/unsupported-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/multimedia-player/multimedia-player.component.ts","../../projects/media-viewer/src/lib/annotations/services/annotation-api/annotation-api.service.ts","../../projects/media-viewer/src/lib/annotations/services/tags/tags.services.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-render.service.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/comment.service.ts","../../projects/media-viewer/src/lib/media-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/convertible-content-viewer/convertible-content-viewer.component.ts","../../projects/media-viewer/src/lib/viewers/grab-n-drag.directive.ts","../../projects/media-viewer/src/lib/viewers/rotation-persist/rotation-persist.directive.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.directive.ts","../../projects/media-viewer/src/lib/icp/confirm-exit/confirm-action-dialog.component.ts","../../projects/media-viewer/src/lib/redaction/components/redaction.component.ts","../../projects/media-viewer/src/lib/bookmark/components/bookmark-icons.component.ts","../../projects/media-viewer/src/lib/icp/participants-list/participants-list.component.ts","../../projects/media-viewer/src/lib/toolbar/search-bar/search-bar.component.ts","../../projects/media-viewer/src/lib/shared/util/services/number.helper.service.ts","../../projects/media-viewer/src/lib/toolbar/main-toolbar/main-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/redaction-toolbar/redaction-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/icp-toolbar/icp-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/redaction-search-bar/redaction-search-bar.component.ts","../../projects/media-viewer/src/lib/toolbar/highlight-toolbar/highlight-toolbar.component.ts","../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation-view.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-set.component.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-set-header.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-search/comment-search.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/text-highlight/text-highlight.directive.ts","../../projects/media-viewer/src/lib/annotations/annotation-set/ctx-toolbar/ctx-toolbar.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-navigate/comments-navigate.component.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment/textarea-auto-expand/textarea-auto-expand.directive.ts","../../projects/media-viewer/src/lib/annotations/comments-summary/comments-summary.component.ts","../../projects/media-viewer/src/lib/annotations/tags/tags.component.ts","../../projects/media-viewer/src/lib/annotations/pipes/date/date.pipe.ts","../../projects/media-viewer/src/lib/annotations/comment-set/comment-set-header/comment-filter/comment-filter.component.ts","../../projects/media-viewer/src/lib/annotations/pipes/filter/filter.pipe.ts","../../projects/media-viewer/src/lib/annotations/pipes/unsnake/unsnake.pipe.ts","../../projects/media-viewer/src/lib/shared/gov-uk-date/gov-uk-date.component.ts","../../projects/media-viewer/src/lib/shared/gov-uk-error-message/gov-uk-error-message.component.ts","../../projects/media-viewer/src/lib/shared/gov-uk-fieldset/gov-uk-fieldset.component.ts","../../projects/media-viewer/src/lib/shared/gov-uk-label/gov-uk-label.component.ts","../../projects/media-viewer/src/lib/shared/shared.module.ts","../../projects/media-viewer/src/lib/annotations/annotations.module.ts","../../projects/media-viewer/src/lib/media-viewer.module.ts","../../projects/media-viewer/src/lib/store/selectors/annotation.selectors.ts","../../projects/media-viewer/src/lib/store/effects/annotation.effects.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}