mediasfu-angular 1.0.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (474) hide show
  1. package/README.md +871 -769
  2. package/dist/README.md +870 -769
  3. package/dist/fesm2022/mediasfu-angular.mjs +13241 -3372
  4. package/dist/fesm2022/mediasfu-angular.mjs.map +1 -1
  5. package/dist/lib/@types/types.d.ts +22 -1
  6. package/dist/lib/components/background-components/background-modal/background-modal.component.d.ts +36 -0
  7. package/dist/lib/components/breakout-components/breakout-rooms-modal.component.d.ts +51 -0
  8. package/dist/lib/components/breakout-components/edit-room-modal/edit-room-modal.component.d.ts +48 -0
  9. package/dist/lib/components/co-host-components/co-host-modal/co-host-modal.component.d.ts +62 -0
  10. package/dist/lib/components/display-components/alert-component/alert.component.component.d.ts +24 -18
  11. package/dist/lib/components/display-components/audio-card/audio-card.component.d.ts +59 -0
  12. package/dist/lib/components/display-components/audio-grid/audio-grid.component.d.ts +20 -0
  13. package/dist/lib/components/display-components/card-video-display/card-video-display.component.d.ts +35 -0
  14. package/dist/lib/components/display-components/control-buttons-alt-component/control-buttons-alt-component.component.d.ts +38 -0
  15. package/dist/lib/components/display-components/control-buttons-component-touch/control-buttons-component-touch.component.d.ts +24 -40
  16. package/dist/lib/components/display-components/control-widgets/menu-participants-widget.component.d.ts +21 -0
  17. package/dist/lib/components/display-components/control-widgets/menu-record-widget.component.d.ts +22 -0
  18. package/dist/lib/components/display-components/control-widgets/menu-widget.component.d.ts +23 -0
  19. package/dist/lib/components/display-components/control-widgets/message-widget.component.d.ts +23 -0
  20. package/dist/lib/components/display-components/control-widgets/record-timer-widget.component.d.ts +15 -0
  21. package/dist/lib/components/display-components/control-widgets/screenshare-widget.component.d.ts +27 -0
  22. package/dist/lib/components/display-components/flexible-grid/flexible-grid.component.d.ts +27 -18
  23. package/dist/lib/components/display-components/flexible-video/flexible-video.component.d.ts +30 -45
  24. package/dist/lib/components/display-components/loading-modal/loading-modal.component.d.ts +19 -17
  25. package/dist/lib/components/display-components/main-aspect-component/main-aspect-component.component.d.ts +32 -24
  26. package/dist/lib/components/display-components/main-container-component/main-container-component.component.d.ts +28 -16
  27. package/dist/lib/components/display-components/main-grid-component/main-grid-component.component.d.ts +28 -14
  28. package/dist/lib/components/display-components/main-screen-component/main-screen-component.component.d.ts +43 -22
  29. package/dist/lib/components/display-components/meeting-progress-timer/meeting-progress-timer.component.d.ts +25 -30
  30. package/dist/lib/components/display-components/mini-audio/mini-audio.component.d.ts +55 -62
  31. package/dist/lib/components/display-components/mini-card/mini-card.component.d.ts +19 -23
  32. package/dist/lib/components/display-components/mini-card-audio/mini-card-audio.component.d.ts +39 -39
  33. package/dist/lib/components/display-components/other-grid-component/other-grid-component.component.d.ts +28 -13
  34. package/dist/lib/components/display-components/pagination/pagination.component.d.ts +29 -23
  35. package/dist/lib/components/display-components/sub-aspect-component/sub-aspect-component.component.d.ts +18 -24
  36. package/dist/lib/components/display-components/video-card/video-card.component.d.ts +62 -0
  37. package/dist/lib/components/display-settings-components/display-settings-modal.component.d.ts +28 -17
  38. package/dist/lib/components/event-settings-components/event-settings-modal/event-settings-modal.component.d.ts +47 -38
  39. package/dist/lib/components/exit-components/confirm-exit-modal/confirm-exit-modal.component.d.ts +35 -22
  40. package/dist/lib/components/media-settings-components/media-settings-modal/media-settings-modal.component.d.ts +35 -24
  41. package/dist/lib/components/mediasfu-components/mediasfu-broadcast.component.d.ts +258 -117
  42. package/dist/lib/components/mediasfu-components/mediasfu-chat.component.d.ts +254 -117
  43. package/dist/lib/components/mediasfu-components/mediasfu-conference.component.d.ts +312 -162
  44. package/dist/lib/components/mediasfu-components/mediasfu-generic.component.d.ts +312 -162
  45. package/dist/lib/components/mediasfu-components/mediasfu-webinar.component.d.ts +310 -162
  46. package/dist/lib/components/menu-components/custom-buttons/custom-buttons.component.d.ts +49 -51
  47. package/dist/lib/components/menu-components/meeting-id-component/meeting-id-component.component.d.ts +6 -1
  48. package/dist/lib/components/menu-components/meeting-passcode-component/meeting-passcode-component.component.d.ts +5 -0
  49. package/dist/lib/components/menu-components/menu-modal/menu-modal.component.d.ts +27 -29
  50. package/dist/lib/components/menu-components/share-buttons-component/share-buttons-component.component.d.ts +20 -15
  51. package/dist/lib/components/message-components/message-panel/message-panel.component.d.ts +24 -0
  52. package/dist/lib/components/message-components/messages-modal/messages-modal.component.d.ts +34 -0
  53. package/dist/lib/components/misc-components/confirm-here-modal/confirm-here-modal.component.d.ts +20 -35
  54. package/dist/lib/components/misc-components/pre-join-page/pre-join-page.component.d.ts +79 -66
  55. package/dist/lib/components/misc-components/share-event-modal/share-event-modal.component.d.ts +19 -1
  56. package/dist/lib/components/misc-components/welcome-page/welcome-page.component.d.ts +15 -0
  57. package/dist/lib/components/participants-components/participant-list/participant-list.component.d.ts +19 -0
  58. package/dist/lib/components/participants-components/participant-list-item/participant-list-item.component.d.ts +19 -0
  59. package/dist/lib/components/participants-components/participant-list-others/participant-list-others.component.d.ts +17 -0
  60. package/dist/lib/components/participants-components/participant-list-others-item/participant-list-others-item.component.d.ts +17 -0
  61. package/dist/lib/components/participants-components/participants-modal/participants-modal.component.d.ts +24 -0
  62. package/dist/lib/components/polls-components/poll-modal/poll-modal.component.d.ts +27 -0
  63. package/dist/lib/components/recording-components/advanced-panel-component/advanced-panel-components.component.d.ts +15 -0
  64. package/dist/lib/components/recording-components/recording-modal/recording-modal.component.d.ts +12 -0
  65. package/dist/lib/components/recording-components/standard-panel-component/standard-panel-component.component.d.ts +5 -0
  66. package/dist/lib/components/requests-components/render-request-component/render-request-component.component.d.ts +22 -0
  67. package/dist/lib/components/requests-components/requests-modal/requests-modal.component.d.ts +17 -0
  68. package/dist/lib/components/screenboard-components/screenboard/screenboard.component.d.ts +10 -0
  69. package/dist/lib/components/screenboard-components/screenboard-modal/screenboard-modal.component.d.ts +11 -0
  70. package/dist/lib/components/waiting-components/waiting-room-modal.component.d.ts +59 -0
  71. package/dist/lib/components/whiteboard-components/configure-whiteboard-modal/configure-whiteboard-modal.component.d.ts +21 -0
  72. package/dist/lib/components/whiteboard-components/whiteboard/whiteboard.component.d.ts +49 -0
  73. package/dist/lib/consumers/add-videos-grid.service.d.ts +49 -0
  74. package/dist/lib/consumers/auto-adjust.service.d.ts +26 -0
  75. package/dist/lib/consumers/calculate-rows-and-columns.service.d.ts +18 -0
  76. package/dist/lib/consumers/change-vids.service.d.ts +131 -66
  77. package/dist/lib/consumers/check-grid.service.d.ts +32 -18
  78. package/dist/lib/consumers/check-permission.service.d.ts +25 -0
  79. package/dist/lib/consumers/check-screen-share.service.d.ts +35 -0
  80. package/dist/lib/consumers/close-and-resize.service.d.ts +102 -0
  81. package/dist/lib/consumers/compare-active-names.service.d.ts +31 -0
  82. package/dist/lib/consumers/compare-screen-states.service.d.ts +35 -0
  83. package/dist/lib/consumers/connect-ips.service.d.ts +42 -0
  84. package/dist/lib/consumers/connect-local-ips.service.d.ts +81 -0
  85. package/dist/lib/consumers/connect-recv-transport.service.d.ts +33 -0
  86. package/dist/lib/consumers/connect-send-transport-audio.service.d.ts +81 -11
  87. package/dist/lib/consumers/connect-send-transport-screen.service.d.ts +96 -15
  88. package/dist/lib/consumers/connect-send-transport-video.service.d.ts +101 -11
  89. package/dist/lib/consumers/connect-send-transport.service.d.ts +59 -1
  90. package/dist/lib/consumers/consumer-resume.service.d.ts +36 -0
  91. package/dist/lib/consumers/control-media.service.d.ts +45 -0
  92. package/dist/lib/consumers/create-send-transport.service.d.ts +149 -13
  93. package/dist/lib/consumers/disconnect-send-transport-audio.service.d.ts +100 -13
  94. package/dist/lib/consumers/disconnect-send-transport-screen.service.d.ts +75 -2
  95. package/dist/lib/consumers/disconnect-send-transport-video.service.d.ts +99 -17
  96. package/dist/lib/consumers/disp-streams.service.d.ts +92 -0
  97. package/dist/lib/consumers/generate-page-content.service.d.ts +47 -0
  98. package/dist/lib/consumers/get-estimate.service.d.ts +50 -0
  99. package/dist/lib/consumers/get-piped-producers-alt.service.d.ts +38 -1
  100. package/dist/lib/consumers/get-producers-piped.service.d.ts +33 -0
  101. package/dist/lib/consumers/get-videos.service.d.ts +33 -0
  102. package/dist/lib/consumers/mix-streams.service.d.ts +22 -0
  103. package/dist/lib/consumers/on-screen-changes.service.d.ts +40 -0
  104. package/dist/lib/consumers/prepopulate-user-media.service.d.ts +99 -0
  105. package/dist/lib/consumers/process-consumer-transports-audio.service.d.ts +29 -0
  106. package/dist/lib/consumers/process-consumer-transports.service.d.ts +37 -0
  107. package/dist/lib/consumers/re-port.service.d.ts +48 -0
  108. package/dist/lib/consumers/re-update-inter.service.d.ts +82 -0
  109. package/dist/lib/consumers/readjust.service.d.ts +50 -0
  110. package/dist/lib/consumers/receive-all-piped-transports.service.d.ts +36 -1
  111. package/dist/lib/consumers/receive-room-messages.service.d.ts +27 -0
  112. package/dist/lib/consumers/reorder-streams.service.d.ts +58 -0
  113. package/dist/lib/consumers/request-screen-share.service.d.ts +34 -0
  114. package/dist/lib/consumers/resume-pause-audio-streams.service.d.ts +51 -0
  115. package/dist/lib/consumers/resume-pause-streams.service.d.ts +33 -0
  116. package/dist/lib/consumers/resume-send-transport-audio.service.d.ts +76 -7
  117. package/dist/lib/consumers/signal-new-consumer-transport.service.d.ts +37 -37
  118. package/dist/lib/consumers/socket-receive-methods/join-consume-room.service.d.ts +33 -0
  119. package/dist/lib/consumers/socket-receive-methods/new-pipe-producer.service.d.ts +39 -0
  120. package/dist/lib/consumers/socket-receive-methods/producer-closed.service.d.ts +27 -0
  121. package/dist/lib/consumers/start-share-screen.service.d.ts +40 -0
  122. package/dist/lib/consumers/stop-share-screen.service.d.ts +55 -0
  123. package/dist/lib/consumers/stream-success-audio-switch.service.d.ts +148 -11
  124. package/dist/lib/consumers/stream-success-audio.service.d.ts +61 -0
  125. package/dist/lib/consumers/stream-success-screen.service.d.ts +50 -0
  126. package/dist/lib/consumers/stream-success-video.service.d.ts +58 -0
  127. package/dist/lib/consumers/switch-user-audio.service.d.ts +33 -0
  128. package/dist/lib/consumers/switch-user-video-alt.service.d.ts +32 -0
  129. package/dist/lib/consumers/switch-user-video.service.d.ts +47 -0
  130. package/dist/lib/consumers/trigger.service.d.ts +41 -0
  131. package/dist/lib/consumers/update-mini-cards-grid.service.d.ts +54 -0
  132. package/dist/lib/consumers/update-participant-audio-decibels.service.d.ts +45 -0
  133. package/dist/lib/methods/background-methods/launch-background.service.d.ts +25 -0
  134. package/dist/lib/methods/breakout-room-methods/breakout-room-updated.service.d.ts +71 -0
  135. package/dist/lib/methods/breakout-room-methods/launch-breakout-rooms.service.d.ts +24 -0
  136. package/dist/lib/methods/co-host-methods/launch-co-host.service.d.ts +24 -0
  137. package/dist/lib/methods/co-host-methods/modify-co-host-settings.service.d.ts +44 -0
  138. package/dist/lib/methods/display-settings-methods/launch-display-settings.service.d.ts +22 -0
  139. package/dist/lib/methods/display-settings-methods/modify-display-settings.service.d.ts +75 -0
  140. package/dist/lib/methods/exit-methods/confirm-exit.service.d.ts +29 -1
  141. package/dist/lib/methods/exit-methods/launch-confirm-exit.service.d.ts +20 -0
  142. package/dist/lib/methods/media-settings-methods/launch-media-settings.service.d.ts +35 -0
  143. package/dist/lib/methods/menu-methods/launch-menu-modal.service.d.ts +22 -0
  144. package/dist/lib/methods/message-methods/launch-messages.service.d.ts +22 -0
  145. package/dist/lib/methods/message-methods/send-message.service.d.ts +49 -0
  146. package/dist/lib/methods/participants-methods/launch-participants.service.d.ts +24 -0
  147. package/dist/lib/methods/participants-methods/message-participants.service.d.ts +46 -0
  148. package/dist/lib/methods/participants-methods/mute-participants.service.d.ts +39 -0
  149. package/dist/lib/methods/participants-methods/remove-participants.service.d.ts +45 -0
  150. package/dist/lib/methods/polls-methods/handle-create-poll.service.d.ts +38 -0
  151. package/dist/lib/methods/polls-methods/handle-end-poll.service.d.ts +32 -0
  152. package/dist/lib/methods/polls-methods/handle-vote-poll.service.d.ts +34 -0
  153. package/dist/lib/methods/polls-methods/launch-poll.service.d.ts +20 -0
  154. package/dist/lib/methods/polls-methods/poll-updated.service.d.ts +31 -0
  155. package/dist/lib/methods/recording-methods/check-pause-state.service.d.ts +24 -0
  156. package/dist/lib/methods/recording-methods/check-resume-state.service.d.ts +22 -0
  157. package/dist/lib/methods/recording-methods/confirm-recording.service.d.ts +63 -0
  158. package/dist/lib/methods/recording-methods/launch-recording.service.d.ts +43 -0
  159. package/dist/lib/methods/recording-methods/record-pause-timer.service.d.ts +27 -0
  160. package/dist/lib/methods/recording-methods/record-resume-timer.service.d.ts +44 -0
  161. package/dist/lib/methods/recording-methods/record-start-timer.service.d.ts +45 -0
  162. package/dist/lib/methods/recording-methods/record-update-timer.service.d.ts +32 -0
  163. package/dist/lib/methods/recording-methods/start-recording.service.d.ts +53 -0
  164. package/dist/lib/methods/recording-methods/stop-recording.service.d.ts +42 -1
  165. package/dist/lib/methods/recording-methods/update-recording.service.d.ts +51 -0
  166. package/dist/lib/methods/requests-methods/launch-requests.service.d.ts +25 -0
  167. package/dist/lib/methods/requests-methods/respond-to-requests.service.d.ts +39 -0
  168. package/dist/lib/methods/settings-methods/launch-settings.service.d.ts +25 -0
  169. package/dist/lib/methods/settings-methods/modify-settings.service.d.ts +42 -0
  170. package/dist/lib/methods/stream-methods/click-audio.service.d.ts +100 -0
  171. package/dist/lib/methods/stream-methods/click-chat.service.d.ts +31 -0
  172. package/dist/lib/methods/stream-methods/click-screen-share.service.d.ts +68 -0
  173. package/dist/lib/methods/stream-methods/click-video.service.d.ts +88 -0
  174. package/dist/lib/methods/stream-methods/switch-audio.service.d.ts +47 -0
  175. package/dist/lib/methods/stream-methods/switch-video-alt.service.d.ts +50 -0
  176. package/dist/lib/methods/stream-methods/switch-video.service.d.ts +56 -0
  177. package/dist/lib/methods/utils/check-limits-and-make-request.service.d.ts +23 -0
  178. package/dist/lib/methods/utils/create-response-join-room.util.d.ts +33 -0
  179. package/dist/lib/methods/utils/create-room-on-media-sfu.service.d.ts +25 -0
  180. package/dist/lib/methods/utils/format-number.service.d.ts +26 -14
  181. package/dist/lib/methods/utils/generate-random-messages.service.d.ts +33 -0
  182. package/dist/lib/methods/utils/generate-random-participants.service.d.ts +27 -0
  183. package/dist/lib/methods/utils/generate-random-polls.service.d.ts +26 -0
  184. package/dist/lib/methods/utils/generate-random-request-list.service.d.ts +36 -0
  185. package/dist/lib/methods/utils/generate-random-waiting-room-list.service.d.ts +21 -0
  186. package/dist/lib/methods/utils/get-modal-position.util.d.ts +13 -3
  187. package/dist/lib/methods/utils/get-overlay-position.util.d.ts +13 -3
  188. package/dist/lib/methods/utils/initial-values.util.d.ts +6 -0
  189. package/dist/lib/methods/utils/join-room-on-media-sfu.service.d.ts +52 -0
  190. package/dist/lib/methods/utils/meeting-timer/start-meeting-progress-timer.service.d.ts +37 -0
  191. package/dist/lib/methods/utils/mini-audio-player/mini-audio-player.component.d.ts +55 -0
  192. package/dist/lib/methods/utils/producer/a-params.service.d.ts +37 -0
  193. package/dist/lib/methods/utils/producer/h-params.service.d.ts +50 -0
  194. package/dist/lib/methods/utils/producer/screen-params.service.d.ts +37 -0
  195. package/dist/lib/methods/utils/producer/v-params.service.d.ts +50 -0
  196. package/dist/lib/methods/utils/producer/video-capture-constraints.service.d.ts +46 -0
  197. package/dist/lib/methods/utils/sleep.util.d.ts +9 -3
  198. package/dist/lib/methods/utils/sound-player.service.d.ts +21 -0
  199. package/dist/lib/methods/utils/validate-alphanumeric.service.d.ts +16 -0
  200. package/dist/lib/methods/waiting-methods/launch-waiting.service.d.ts +18 -0
  201. package/dist/lib/methods/waiting-methods/respond-to-waiting.service.d.ts +29 -0
  202. package/dist/lib/methods/whiteboard-methods/capture-canvas-stream.service.d.ts +46 -0
  203. package/dist/lib/methods/whiteboard-methods/launch-configure-whiteboard.service.d.ts +20 -0
  204. package/dist/lib/producer-client/producer-client-emits/create-device-client.service.d.ts +23 -0
  205. package/dist/lib/producer-client/producer-client-emits/join-room-client.service.d.ts +31 -0
  206. package/dist/lib/producer-client/producer-client-emits/update-room-parameters-client.service.d.ts +44 -0
  207. package/dist/lib/producers/producer-emits/join-con-room.service.d.ts +38 -0
  208. package/dist/lib/producers/producer-emits/join-local-room.service.d.ts +125 -0
  209. package/dist/lib/producers/producer-emits/join-room.service.d.ts +38 -0
  210. package/dist/lib/producers/socket-receive-methods/all-members-rest.service.d.ts +80 -2
  211. package/dist/lib/producers/socket-receive-methods/all-members.service.d.ts +78 -2
  212. package/dist/lib/producers/socket-receive-methods/all-waiting-room-members.service.d.ts +27 -0
  213. package/dist/lib/producers/socket-receive-methods/ban-participant.service.d.ts +36 -0
  214. package/dist/lib/producers/socket-receive-methods/control-media-host.service.d.ts +37 -0
  215. package/dist/lib/producers/socket-receive-methods/disconnect-user-self.service.d.ts +29 -1
  216. package/dist/lib/producers/socket-receive-methods/disconnect.service.d.ts +26 -0
  217. package/dist/lib/producers/socket-receive-methods/get-domains.service.d.ts +24 -9
  218. package/dist/lib/producers/socket-receive-methods/host-request-response.service.d.ts +31 -48
  219. package/dist/lib/producers/socket-receive-methods/meeting-ended.service.d.ts +29 -0
  220. package/dist/lib/producers/socket-receive-methods/meeting-still-there.service.d.ts +23 -0
  221. package/dist/lib/producers/socket-receive-methods/meeting-time-remaining.service.d.ts +27 -0
  222. package/dist/lib/producers/socket-receive-methods/participant-requested.service.d.ts +31 -0
  223. package/dist/lib/producers/socket-receive-methods/person-joined.service.d.ts +25 -0
  224. package/dist/lib/producers/socket-receive-methods/producer-media-closed.service.d.ts +61 -0
  225. package/dist/lib/producers/socket-receive-methods/producer-media-paused.service.d.ts +62 -0
  226. package/dist/lib/producers/socket-receive-methods/producer-media-resumed.service.d.ts +45 -0
  227. package/dist/lib/producers/socket-receive-methods/re-initiate-recording.service.d.ts +29 -0
  228. package/dist/lib/producers/socket-receive-methods/receive-message.service.d.ts +38 -0
  229. package/dist/lib/producers/socket-receive-methods/recording-notice.service.d.ts +38 -0
  230. package/dist/lib/producers/socket-receive-methods/room-record-params.service.d.ts +62 -0
  231. package/dist/lib/producers/socket-receive-methods/screen-producer-id.service.d.ts +41 -0
  232. package/dist/lib/producers/socket-receive-methods/start-records.service.d.ts +25 -0
  233. package/dist/lib/producers/socket-receive-methods/stopped-recording.service.d.ts +25 -0
  234. package/dist/lib/producers/socket-receive-methods/time-left-recording.service.d.ts +21 -0
  235. package/dist/lib/producers/socket-receive-methods/update-consuming-domains.service.d.ts +42 -0
  236. package/dist/lib/producers/socket-receive-methods/update-media-settings.service.d.ts +30 -0
  237. package/dist/lib/producers/socket-receive-methods/updated-co-host.service.d.ts +40 -0
  238. package/dist/lib/producers/socket-receive-methods/user-waiting.service.d.ts +14 -40
  239. package/dist/lib/sockets/socket-manager.service.d.ts +130 -0
  240. package/dist/public-api.d.ts +11 -1
  241. package/package.json +17 -20
  242. package/dist/esm2022/lib/@types/types.mjs +0 -2
  243. package/dist/esm2022/lib/components/background-components/background-modal/background-modal.component.mjs +0 -763
  244. package/dist/esm2022/lib/components/breakout-components/breakout-rooms-modal.component.mjs +0 -316
  245. package/dist/esm2022/lib/components/breakout-components/edit-room-modal/edit-room-modal.component.mjs +0 -95
  246. package/dist/esm2022/lib/components/breakout-components/room-list/room-list.component.mjs +0 -40
  247. package/dist/esm2022/lib/components/co-host-components/co-host-modal/co-host-modal.component.mjs +0 -246
  248. package/dist/esm2022/lib/components/display-components/alert-component/alert.component.component.mjs +0 -73
  249. package/dist/esm2022/lib/components/display-components/audio-card/audio-card.component.mjs +0 -297
  250. package/dist/esm2022/lib/components/display-components/audio-grid/audio-grid.component.mjs +0 -60
  251. package/dist/esm2022/lib/components/display-components/card-video-display/card-video-display.component.mjs +0 -94
  252. package/dist/esm2022/lib/components/display-components/control-buttons-alt-component/control-buttons-alt-component.component.mjs +0 -100
  253. package/dist/esm2022/lib/components/display-components/control-buttons-component/control-buttons-component.component.mjs +0 -231
  254. package/dist/esm2022/lib/components/display-components/control-buttons-component-touch/control-buttons-component-touch.component.mjs +0 -298
  255. package/dist/esm2022/lib/components/display-components/control-widgets/menu-participants-widget.component.mjs +0 -61
  256. package/dist/esm2022/lib/components/display-components/control-widgets/menu-record-widget.component.mjs +0 -43
  257. package/dist/esm2022/lib/components/display-components/control-widgets/menu-widget.component.mjs +0 -114
  258. package/dist/esm2022/lib/components/display-components/control-widgets/message-widget.component.mjs +0 -114
  259. package/dist/esm2022/lib/components/display-components/control-widgets/record-timer-widget.component.mjs +0 -36
  260. package/dist/esm2022/lib/components/display-components/control-widgets/screenshare-widget.component.mjs +0 -74
  261. package/dist/esm2022/lib/components/display-components/flexible-grid/flexible-grid.component.mjs +0 -142
  262. package/dist/esm2022/lib/components/display-components/flexible-video/flexible-video.component.mjs +0 -265
  263. package/dist/esm2022/lib/components/display-components/loading-modal/loading-modal.component.mjs +0 -100
  264. package/dist/esm2022/lib/components/display-components/main-aspect-component/main-aspect-component.component.mjs +0 -132
  265. package/dist/esm2022/lib/components/display-components/main-container-component/main-container-component.component.mjs +0 -119
  266. package/dist/esm2022/lib/components/display-components/main-grid-component/main-grid-component.component.mjs +0 -106
  267. package/dist/esm2022/lib/components/display-components/main-screen-component/main-screen-component.component.mjs +0 -180
  268. package/dist/esm2022/lib/components/display-components/meeting-progress-timer/meeting-progress-timer.component.mjs +0 -120
  269. package/dist/esm2022/lib/components/display-components/mini-audio/mini-audio.component.mjs +0 -326
  270. package/dist/esm2022/lib/components/display-components/mini-card/mini-card.component.mjs +0 -165
  271. package/dist/esm2022/lib/components/display-components/mini-card-audio/mini-card-audio.component.mjs +0 -230
  272. package/dist/esm2022/lib/components/display-components/other-grid-component/other-grid-component.component.mjs +0 -111
  273. package/dist/esm2022/lib/components/display-components/pagination/pagination.component.mjs +0 -328
  274. package/dist/esm2022/lib/components/display-components/sub-aspect-component/sub-aspect-component.component.mjs +0 -118
  275. package/dist/esm2022/lib/components/display-components/video-card/video-card.component.mjs +0 -330
  276. package/dist/esm2022/lib/components/display-settings-components/display-settings-modal.component.mjs +0 -95
  277. package/dist/esm2022/lib/components/event-settings-components/event-settings-modal/event-settings-modal.component.mjs +0 -190
  278. package/dist/esm2022/lib/components/exit-components/confirm-exit-modal/confirm-exit-modal.component.mjs +0 -119
  279. package/dist/esm2022/lib/components/media-settings-components/media-settings-modal/media-settings-modal.component.mjs +0 -209
  280. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-broadcast.component.mjs +0 -4189
  281. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-chat.component.mjs +0 -3705
  282. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-conference.component.mjs +0 -5024
  283. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-generic.component.mjs +0 -5333
  284. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-webinar.component.mjs +0 -5023
  285. package/dist/esm2022/lib/components/menu-components/custom-buttons/custom-buttons.component.mjs +0 -85
  286. package/dist/esm2022/lib/components/menu-components/meeting-id-component/meeting-id-component.component.mjs +0 -22
  287. package/dist/esm2022/lib/components/menu-components/meeting-passcode-component/meeting-passcode-component.component.mjs +0 -22
  288. package/dist/esm2022/lib/components/menu-components/menu-modal/menu-modal.component.mjs +0 -132
  289. package/dist/esm2022/lib/components/menu-components/share-buttons-component/share-buttons-component.component.mjs +0 -104
  290. package/dist/esm2022/lib/components/message-components/message-panel/message-panel.component.mjs +0 -204
  291. package/dist/esm2022/lib/components/message-components/messages-modal/messages-modal.component.mjs +0 -243
  292. package/dist/esm2022/lib/components/misc-components/confirm-here-modal/confirm-here-modal.component.mjs +0 -147
  293. package/dist/esm2022/lib/components/misc-components/pre-join-page/pre-join-page.component.mjs +0 -335
  294. package/dist/esm2022/lib/components/misc-components/share-event-modal/share-event-modal.component.mjs +0 -113
  295. package/dist/esm2022/lib/components/misc-components/welcome-page/welcome-page.component.mjs +0 -226
  296. package/dist/esm2022/lib/components/participants-components/participant-list/participant-list.component.mjs +0 -63
  297. package/dist/esm2022/lib/components/participants-components/participant-list-item/participant-list-item.component.mjs +0 -120
  298. package/dist/esm2022/lib/components/participants-components/participant-list-others/participant-list-others.component.mjs +0 -23
  299. package/dist/esm2022/lib/components/participants-components/participant-list-others-item/participant-list-others-item.component.mjs +0 -43
  300. package/dist/esm2022/lib/components/participants-components/participants-modal/participants-modal.component.mjs +0 -100
  301. package/dist/esm2022/lib/components/polls-components/poll-modal/poll-modal.component.mjs +0 -174
  302. package/dist/esm2022/lib/components/recording-components/advanced-panel-component/advanced-panel-components.component.mjs +0 -77
  303. package/dist/esm2022/lib/components/recording-components/recording-modal/recording-modal.component.mjs +0 -121
  304. package/dist/esm2022/lib/components/recording-components/standard-panel-component/standard-panel-component.component.mjs +0 -85
  305. package/dist/esm2022/lib/components/requests-components/render-request-component/render-request-component.component.mjs +0 -59
  306. package/dist/esm2022/lib/components/requests-components/requests-modal/requests-modal.component.mjs +0 -130
  307. package/dist/esm2022/lib/components/screenboard-components/screenboard/screenboard.component.mjs +0 -617
  308. package/dist/esm2022/lib/components/screenboard-components/screenboard-modal/screenboard-modal.component.mjs +0 -380
  309. package/dist/esm2022/lib/components/waiting-components/waiting-room-modal.component.mjs +0 -142
  310. package/dist/esm2022/lib/components/whiteboard-components/configure-whiteboard-modal/configure-whiteboard-modal.component.mjs +0 -265
  311. package/dist/esm2022/lib/components/whiteboard-components/whiteboard/whiteboard.component.mjs +0 -1784
  312. package/dist/esm2022/lib/consumers/add-videos-grid.service.mjs +0 -296
  313. package/dist/esm2022/lib/consumers/auto-adjust.service.mjs +0 -83
  314. package/dist/esm2022/lib/consumers/calculate-rows-and-columns.service.mjs +0 -42
  315. package/dist/esm2022/lib/consumers/change-vids.service.mjs +0 -486
  316. package/dist/esm2022/lib/consumers/check-grid.service.mjs +0 -79
  317. package/dist/esm2022/lib/consumers/check-permission.service.mjs +0 -80
  318. package/dist/esm2022/lib/consumers/check-screen-share.service.mjs +0 -71
  319. package/dist/esm2022/lib/consumers/close-and-resize.service.mjs +0 -229
  320. package/dist/esm2022/lib/consumers/compare-active-names.service.mjs +0 -75
  321. package/dist/esm2022/lib/consumers/compare-screen-states.service.mjs +0 -63
  322. package/dist/esm2022/lib/consumers/connect-ips.service.mjs +0 -112
  323. package/dist/esm2022/lib/consumers/connect-recv-transport.service.mjs +0 -113
  324. package/dist/esm2022/lib/consumers/connect-send-transport-audio.service.mjs +0 -46
  325. package/dist/esm2022/lib/consumers/connect-send-transport-screen.service.mjs +0 -62
  326. package/dist/esm2022/lib/consumers/connect-send-transport-video.service.mjs +0 -55
  327. package/dist/esm2022/lib/consumers/connect-send-transport.service.mjs +0 -86
  328. package/dist/esm2022/lib/consumers/consumer-resume.service.mjs +0 -332
  329. package/dist/esm2022/lib/consumers/control-media.service.mjs +0 -68
  330. package/dist/esm2022/lib/consumers/create-send-transport.service.mjs +0 -126
  331. package/dist/esm2022/lib/consumers/disconnect-send-transport-audio.service.mjs +0 -58
  332. package/dist/esm2022/lib/consumers/disconnect-send-transport-screen.service.mjs +0 -45
  333. package/dist/esm2022/lib/consumers/disconnect-send-transport-video.service.mjs +0 -56
  334. package/dist/esm2022/lib/consumers/disp-streams.service.mjs +0 -421
  335. package/dist/esm2022/lib/consumers/generate-page-content.service.mjs +0 -59
  336. package/dist/esm2022/lib/consumers/get-estimate.service.mjs +0 -70
  337. package/dist/esm2022/lib/consumers/get-piped-producers-alt.service.mjs +0 -49
  338. package/dist/esm2022/lib/consumers/get-producers-piped.service.mjs +0 -46
  339. package/dist/esm2022/lib/consumers/get-videos.service.mjs +0 -58
  340. package/dist/esm2022/lib/consumers/mix-streams.service.mjs +0 -73
  341. package/dist/esm2022/lib/consumers/on-screen-changes.service.mjs +0 -63
  342. package/dist/esm2022/lib/consumers/prepopulate-user-media.service.mjs +0 -442
  343. package/dist/esm2022/lib/consumers/process-consumer-transports-audio.service.mjs +0 -72
  344. package/dist/esm2022/lib/consumers/process-consumer-transports.service.mjs +0 -91
  345. package/dist/esm2022/lib/consumers/re-port.service.mjs +0 -66
  346. package/dist/esm2022/lib/consumers/re-update-inter.service.mjs +0 -157
  347. package/dist/esm2022/lib/consumers/readjust.service.mjs +0 -123
  348. package/dist/esm2022/lib/consumers/receive-all-piped-transports.service.mjs +0 -56
  349. package/dist/esm2022/lib/consumers/receive-room-messages.service.mjs +0 -42
  350. package/dist/esm2022/lib/consumers/reorder-streams.service.mjs +0 -181
  351. package/dist/esm2022/lib/consumers/request-screen-share.service.mjs +0 -67
  352. package/dist/esm2022/lib/consumers/resume-pause-audio-streams.service.mjs +0 -99
  353. package/dist/esm2022/lib/consumers/resume-pause-streams.service.mjs +0 -70
  354. package/dist/esm2022/lib/consumers/resume-send-transport-audio.service.mjs +0 -55
  355. package/dist/esm2022/lib/consumers/signal-new-consumer-transport.service.mjs +0 -136
  356. package/dist/esm2022/lib/consumers/socket-receive-methods/join-consume-room.service.mjs +0 -63
  357. package/dist/esm2022/lib/consumers/socket-receive-methods/new-pipe-producer.service.mjs +0 -61
  358. package/dist/esm2022/lib/consumers/socket-receive-methods/producer-closed.service.mjs +0 -51
  359. package/dist/esm2022/lib/consumers/start-share-screen.service.mjs +0 -80
  360. package/dist/esm2022/lib/consumers/stop-share-screen.service.mjs +0 -120
  361. package/dist/esm2022/lib/consumers/stream-success-audio-switch.service.mjs +0 -132
  362. package/dist/esm2022/lib/consumers/stream-success-audio.service.mjs +0 -149
  363. package/dist/esm2022/lib/consumers/stream-success-screen.service.mjs +0 -143
  364. package/dist/esm2022/lib/consumers/stream-success-video.service.mjs +0 -202
  365. package/dist/esm2022/lib/consumers/switch-user-audio.service.mjs +0 -87
  366. package/dist/esm2022/lib/consumers/switch-user-video-alt.service.mjs +0 -228
  367. package/dist/esm2022/lib/consumers/switch-user-video.service.mjs +0 -125
  368. package/dist/esm2022/lib/consumers/trigger.service.mjs +0 -172
  369. package/dist/esm2022/lib/consumers/update-mini-cards-grid.service.mjs +0 -81
  370. package/dist/esm2022/lib/consumers/update-participant-audio-decibels.service.mjs +0 -39
  371. package/dist/esm2022/lib/methods/background-methods/launch-background.service.mjs +0 -23
  372. package/dist/esm2022/lib/methods/breakout-room-methods/breakout-room-updated.service.mjs +0 -112
  373. package/dist/esm2022/lib/methods/breakout-room-methods/launch-breakout-rooms.service.mjs +0 -22
  374. package/dist/esm2022/lib/methods/co-host-methods/launch-co-host.service.mjs +0 -22
  375. package/dist/esm2022/lib/methods/co-host-methods/modify-co-host-settings.service.mjs +0 -60
  376. package/dist/esm2022/lib/methods/display-settings-methods/launch-display-settings.service.mjs +0 -24
  377. package/dist/esm2022/lib/methods/display-settings-methods/modify-display-settings.service.mjs +0 -119
  378. package/dist/esm2022/lib/methods/exit-methods/confirm-exit.service.mjs +0 -28
  379. package/dist/esm2022/lib/methods/exit-methods/launch-confirm-exit.service.mjs +0 -22
  380. package/dist/esm2022/lib/methods/media-settings-methods/launch-media-settings.service.mjs +0 -50
  381. package/dist/esm2022/lib/methods/menu-methods/launch-menu-modal.service.mjs +0 -22
  382. package/dist/esm2022/lib/methods/message-methods/launch-messages.service.mjs +0 -23
  383. package/dist/esm2022/lib/methods/message-methods/send-message.service.mjs +0 -94
  384. package/dist/esm2022/lib/methods/participants-methods/launch-participants.service.mjs +0 -23
  385. package/dist/esm2022/lib/methods/participants-methods/message-participants.service.mjs +0 -52
  386. package/dist/esm2022/lib/methods/participants-methods/mute-participants.service.mjs +0 -57
  387. package/dist/esm2022/lib/methods/participants-methods/remove-participants.service.mjs +0 -62
  388. package/dist/esm2022/lib/methods/polls-methods/handle-create-poll.service.mjs +0 -37
  389. package/dist/esm2022/lib/methods/polls-methods/handle-end-poll.service.mjs +0 -40
  390. package/dist/esm2022/lib/methods/polls-methods/handle-vote-poll.service.mjs +0 -49
  391. package/dist/esm2022/lib/methods/polls-methods/launch-poll.service.mjs +0 -23
  392. package/dist/esm2022/lib/methods/polls-methods/poll-updated.service.mjs +0 -64
  393. package/dist/esm2022/lib/methods/recording-methods/check-pause-state.service.mjs +0 -45
  394. package/dist/esm2022/lib/methods/recording-methods/check-resume-state.service.mjs +0 -34
  395. package/dist/esm2022/lib/methods/recording-methods/confirm-recording.service.mjs +0 -215
  396. package/dist/esm2022/lib/methods/recording-methods/launch-recording.service.mjs +0 -82
  397. package/dist/esm2022/lib/methods/recording-methods/record-pause-timer.service.mjs +0 -40
  398. package/dist/esm2022/lib/methods/recording-methods/record-resume-timer.service.mjs +0 -86
  399. package/dist/esm2022/lib/methods/recording-methods/record-start-timer.service.mjs +0 -89
  400. package/dist/esm2022/lib/methods/recording-methods/record-update-timer.service.mjs +0 -48
  401. package/dist/esm2022/lib/methods/recording-methods/start-recording.service.mjs +0 -147
  402. package/dist/esm2022/lib/methods/recording-methods/stop-recording.service.mjs +0 -74
  403. package/dist/esm2022/lib/methods/recording-methods/update-recording.service.mjs +0 -224
  404. package/dist/esm2022/lib/methods/requests-methods/launch-requests.service.mjs +0 -26
  405. package/dist/esm2022/lib/methods/requests-methods/respond-to-requests.service.mjs +0 -45
  406. package/dist/esm2022/lib/methods/settings-methods/launch-settings.service.mjs +0 -26
  407. package/dist/esm2022/lib/methods/settings-methods/modify-settings.service.mjs +0 -67
  408. package/dist/esm2022/lib/methods/stream-methods/click-audio.service.mjs +0 -178
  409. package/dist/esm2022/lib/methods/stream-methods/click-chat.service.mjs +0 -44
  410. package/dist/esm2022/lib/methods/stream-methods/click-screen-share.service.mjs +0 -110
  411. package/dist/esm2022/lib/methods/stream-methods/click-video.service.mjs +0 -183
  412. package/dist/esm2022/lib/methods/stream-methods/switch-audio.service.mjs +0 -33
  413. package/dist/esm2022/lib/methods/stream-methods/switch-video-alt.service.mjs +0 -66
  414. package/dist/esm2022/lib/methods/stream-methods/switch-video.service.mjs +0 -76
  415. package/dist/esm2022/lib/methods/utils/format-number.service.mjs +0 -45
  416. package/dist/esm2022/lib/methods/utils/generate-random-messages.service.mjs +0 -87
  417. package/dist/esm2022/lib/methods/utils/generate-random-participants.service.mjs +0 -99
  418. package/dist/esm2022/lib/methods/utils/generate-random-polls.service.mjs +0 -52
  419. package/dist/esm2022/lib/methods/utils/generate-random-request-list.service.mjs +0 -54
  420. package/dist/esm2022/lib/methods/utils/generate-random-waiting-room-list.service.mjs +0 -38
  421. package/dist/esm2022/lib/methods/utils/get-modal-position.util.mjs +0 -22
  422. package/dist/esm2022/lib/methods/utils/get-overlay-position.util.mjs +0 -21
  423. package/dist/esm2022/lib/methods/utils/initial-values.util.mjs +0 -379
  424. package/dist/esm2022/lib/methods/utils/meeting-timer/start-meeting-progress-timer.service.mjs +0 -59
  425. package/dist/esm2022/lib/methods/utils/mini-audio-player/mini-audio-player.component.mjs +0 -260
  426. package/dist/esm2022/lib/methods/utils/producer/a-params.service.mjs +0 -21
  427. package/dist/esm2022/lib/methods/utils/producer/h-params.service.mjs +0 -37
  428. package/dist/esm2022/lib/methods/utils/producer/screen-params.service.mjs +0 -24
  429. package/dist/esm2022/lib/methods/utils/producer/v-params.service.mjs +0 -37
  430. package/dist/esm2022/lib/methods/utils/producer/video-capture-constraints.service.mjs +0 -38
  431. package/dist/esm2022/lib/methods/utils/sleep.util.mjs +0 -11
  432. package/dist/esm2022/lib/methods/utils/sound-player.service.mjs +0 -42
  433. package/dist/esm2022/lib/methods/utils/validate-alphanumeric.service.mjs +0 -33
  434. package/dist/esm2022/lib/methods/waiting-methods/launch-waiting.service.mjs +0 -23
  435. package/dist/esm2022/lib/methods/waiting-methods/respond-to-waiting.service.mjs +0 -40
  436. package/dist/esm2022/lib/methods/whiteboard-methods/capture-canvas-stream.service.mjs +0 -69
  437. package/dist/esm2022/lib/methods/whiteboard-methods/launch-configure-whiteboard.service.mjs +0 -24
  438. package/dist/esm2022/lib/producer-client/producer-client-emits/create-device-client.service.mjs +0 -51
  439. package/dist/esm2022/lib/producer-client/producer-client-emits/join-room-client.service.mjs +0 -65
  440. package/dist/esm2022/lib/producer-client/producer-client-emits/update-room-parameters-client.service.mjs +0 -232
  441. package/dist/esm2022/lib/producers/producer-emits/join-con-room.service.mjs +0 -114
  442. package/dist/esm2022/lib/producers/producer-emits/join-room.service.mjs +0 -114
  443. package/dist/esm2022/lib/producers/socket-receive-methods/all-members-rest.service.mjs +0 -155
  444. package/dist/esm2022/lib/producers/socket-receive-methods/all-members.service.mjs +0 -147
  445. package/dist/esm2022/lib/producers/socket-receive-methods/all-waiting-room-members.service.mjs +0 -30
  446. package/dist/esm2022/lib/producers/socket-receive-methods/ban-participant.service.mjs +0 -40
  447. package/dist/esm2022/lib/producers/socket-receive-methods/control-media-host.service.mjs +0 -146
  448. package/dist/esm2022/lib/producers/socket-receive-methods/disconnect-user-self.service.mjs +0 -26
  449. package/dist/esm2022/lib/producers/socket-receive-methods/disconnect.service.mjs +0 -38
  450. package/dist/esm2022/lib/producers/socket-receive-methods/get-domains.service.mjs +0 -63
  451. package/dist/esm2022/lib/producers/socket-receive-methods/host-request-response.service.mjs +0 -167
  452. package/dist/esm2022/lib/producers/socket-receive-methods/meeting-ended.service.mjs +0 -44
  453. package/dist/esm2022/lib/producers/socket-receive-methods/meeting-still-there.service.mjs +0 -24
  454. package/dist/esm2022/lib/producers/socket-receive-methods/meeting-time-remaining.service.mjs +0 -36
  455. package/dist/esm2022/lib/producers/socket-receive-methods/participant-requested.service.mjs +0 -32
  456. package/dist/esm2022/lib/producers/socket-receive-methods/person-joined.service.mjs +0 -29
  457. package/dist/esm2022/lib/producers/socket-receive-methods/producer-media-closed.service.mjs +0 -68
  458. package/dist/esm2022/lib/producers/socket-receive-methods/producer-media-paused.service.mjs +0 -90
  459. package/dist/esm2022/lib/producers/socket-receive-methods/producer-media-resumed.service.mjs +0 -54
  460. package/dist/esm2022/lib/producers/socket-receive-methods/re-initiate-recording.service.mjs +0 -38
  461. package/dist/esm2022/lib/producers/socket-receive-methods/receive-message.service.mjs +0 -96
  462. package/dist/esm2022/lib/producers/socket-receive-methods/recording-notice.service.mjs +0 -195
  463. package/dist/esm2022/lib/producers/socket-receive-methods/room-record-params.service.mjs +0 -59
  464. package/dist/esm2022/lib/producers/socket-receive-methods/screen-producer-id.service.mjs +0 -45
  465. package/dist/esm2022/lib/producers/socket-receive-methods/start-records.service.mjs +0 -35
  466. package/dist/esm2022/lib/producers/socket-receive-methods/stopped-recording.service.mjs +0 -37
  467. package/dist/esm2022/lib/producers/socket-receive-methods/time-left-recording.service.mjs +0 -36
  468. package/dist/esm2022/lib/producers/socket-receive-methods/update-consuming-domains.service.mjs +0 -63
  469. package/dist/esm2022/lib/producers/socket-receive-methods/update-media-settings.service.mjs +0 -36
  470. package/dist/esm2022/lib/producers/socket-receive-methods/updated-co-host.service.mjs +0 -56
  471. package/dist/esm2022/lib/producers/socket-receive-methods/user-waiting.service.mjs +0 -78
  472. package/dist/esm2022/lib/sockets/socket-manager.service.mjs +0 -73
  473. package/dist/esm2022/mediasfu-angular.mjs +0 -5
  474. package/dist/esm2022/public-api.mjs +0 -187
@@ -11,8 +11,8 @@ export interface MeetingProgressTimerOptions {
11
11
  }
12
12
  export type MeetingProgressTimerType = (options: MeetingProgressTimerOptions) => HTMLElement;
13
13
  /**
14
- * Component to display a meeting progress timer.
15
- *s
14
+ * MeetingProgressTimer displays a customizable timer badge to track meeting progress time.
15
+ *
16
16
  * @selector app-meeting-progress-timer
17
17
  * @standalone true
18
18
  * @imports CommonModule
@@ -27,38 +27,33 @@ export type MeetingProgressTimerType = (options: MeetingProgressTimerOptions) =>
27
27
  * ```
28
28
  *
29
29
  * @styles
30
- * ```css
31
- * .badge-container {
32
- * padding: 5px;
33
- * position: relative;
34
- * z-index: 1000;
35
- * }
36
- * .progress-timer {
37
- * background-color: green;
38
- * padding: 5px;
39
- * border-radius: 5px;
40
- * color: white;
41
- * }
42
- * .progress-timer-text {
43
- * color: black;
44
- * }
45
- * ```
30
+ * - `.badge-container`: General container style with positioning.
31
+ * - `.progress-timer`: Timer badge with default padding, background, and border-radius.
32
+ * - `.progress-timer-text`: Text styling within the timer badge.
46
33
  *
47
- * @class MeetingProgressTimer
48
- * @implements OnInit, OnChanges
34
+ * @inputs
35
+ * - `meetingProgressTime` (string): Time to be displayed in the timer.
36
+ * - `initialBackgroundColor` (string): Background color of the timer badge. Default is 'green'.
37
+ * - `position` ('topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight'): Position of the timer on the screen. Default is 'topLeft'.
38
+ * - `textStyle` (object): Custom styles for the timer text.
39
+ * - `showTimer` (boolean): If true, displays the timer. Default is true.
49
40
  *
50
- * @property {string} meetingProgressTime - The time to be displayed in the timer.
51
- * @property {string} [initialBackgroundColor='green'] - The initial background color of the timer.
52
- * @property {'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight'} [position='topLeft'] - The position of the timer on the screen.
53
- * @property {{ [key: string]: string | number }} [textStyle={}] - The style to be applied to the timer text.
54
- * @property {boolean} [showTimer=true] - Flag to show or hide the timer.
41
+ * @property `positions` (object): Preset styles for timer positioning options.
55
42
  *
56
- * @property {{ [key: string]: { position: string, top?: string, bottom?: string, left?: string, right?: string } }} positions - The possible positions for the timer.
43
+ * @methods
44
+ * - `ngOnChanges(changes: SimpleChanges)`: Handles changes to input properties and updates styles accordingly.
57
45
  *
58
- * @method ngOnInit - Lifecycle hook that is called after data-bound properties are initialized.
59
- * @method ngOnChanges - Lifecycle hook that is called when any data-bound property of a directive changes.
60
- * @param {SimpleChanges} changes - The changed properties.
61
- */
46
+ * @example
47
+ * ```html
48
+ * <app-meeting-progress-timer
49
+ * [meetingProgressTime]="'10:30'"
50
+ * [initialBackgroundColor]="'blue'"
51
+ * [position]="'bottomRight'"
52
+ * [textStyle]="{ color: 'white', fontWeight: 'bold' }"
53
+ * [showTimer]="true"
54
+ * ></app-meeting-progress-timer>
55
+ * ```
56
+ **/
62
57
  export declare class MeetingProgressTimer implements OnChanges {
63
58
  meetingProgressTime: string;
64
59
  initialBackgroundColor: string;
@@ -15,76 +15,69 @@ export interface MiniAudioOptions {
15
15
  }
16
16
  export type MiniAudioType = (options: MiniAudioOptions) => HTMLElement;
17
17
  /**
18
- * MiniAudio component is a standalone Angular component that displays a mini audio player with waveform animations.
19
- * It supports various customizations including visibility, styles, text, and image properties.
20
- * The component can be dragged around the screen.
18
+ * MiniAudio component is a draggable, customizable mini audio player with optional waveform animations.
21
19
  *
22
20
  * @selector app-mini-audio
23
21
  * @standalone true
24
22
  * @imports CommonModule
25
23
  *
26
24
  * @template
27
- * The template includes a modal container with a card that displays an optional background image, name text, and waveform animations.
25
+ * ```html
26
+ * <div *ngIf="visible" class="modal-container" [ngStyle]="{ transform: 'translate(' + position.x + 'px, ' + position.y + 'px)' }" (mousedown)="handleMouseDown($event)">
27
+ * <div class="card" [ngStyle]="customStyle">
28
+ * <ng-container *ngIf="imageSource">
29
+ * <img [src]="imageSource" [ngStyle]="getImageStyle()" alt="Background" class="background-image" />
30
+ * </ng-container>
31
+ * <div class="name-text" [ngStyle]="combineStyles({ color: textColor }, nameTextStyling)">
32
+ * {{ name }}
33
+ * </div>
34
+ * <div [ngStyle]="getOverlayPosition(overlayPosition)" class="overlay-web">
35
+ * <div class="waveform-web">
36
+ * <div *ngFor="let animation of waveformAnimations; let i = index"
37
+ * [ngStyle]="{ height: animation == 0 ? '1px' : '30px', width: '10px', backgroundColor: barColor }"
38
+ * class="bar">
39
+ * </div>
40
+ * </div>
41
+ * </div>
42
+ * </div>
43
+ * </div>
44
+ * ```
28
45
  *
29
46
  * @styles
30
- * The styles define the appearance of the modal container, card, background image, name text, overlay, waveform, and bars.
31
- *
32
- * @class MiniAudio
33
- * @implements OnInit, OnDestroy
34
- *
35
- * @property {boolean} visible - Determines if the component is visible.
36
- * @property {any} customStyle - Custom styles for the component.
37
- * @property {string} name - The name text displayed in the component.
38
- * @property {boolean} showWaveform - Flag to show or hide the waveform animations.
39
- * @property {string} overlayPosition - Position of the overlay.
40
- * @property {string} barColor - Color of the waveform bars.
41
- * @property {string} textColor - Color of the name text.
42
- * @property {any} nameTextStyling - Additional styles for the name text.
43
- * @property {string} imageSource - Source URL for the background image.
44
- * @property {boolean} roundedImage - Flag to apply rounded corners to the background image.
45
- * @property {any} imageStyle - Custom styles for the background image.
46
- *
47
- * @constructor
48
- * The constructor allows optional dependency injection for all input properties.
49
- *
50
- * @method ngOnInit
51
- * Initializes the component and starts waveform animations if enabled.
52
- *
53
- * @method ngOnDestroy
54
- * Cleans up intervals to prevent memory leaks.
55
- *
56
- * @method animateWaveform
57
- * Starts the waveform animations by setting intervals for each bar.
58
- *
59
- * @method animateBar
60
- * Animates a single bar in the waveform.
61
- *
62
- * @method resetWaveform
63
- * Resets the waveform animations to their initial state.
64
- *
65
- * @method clearIntervals
66
- * Clears all animation intervals.
67
- *
68
- * @method getAnimationDuration
69
- * Returns the animation duration for a given bar index.
70
- *
71
- * @method getImageStyle
72
- * Returns the combined styles for the background image, including optional rounded corners.
73
- *
74
- * @method combineStyles
75
- * Combines base styles with additional styles.
76
- *
77
- * @method handleMouseDown
78
- * Handles the mousedown event to start dragging the component.
79
- *
80
- * @method handleMouseMove
81
- * Handles the mousemove event to update the component's position while dragging.
82
- *
83
- * @method handleMouseUp
84
- * Handles the mouseup event to stop dragging the component.
85
- *
86
- * @method getOverlayPosition
87
- * Returns the position styles for the overlay.
47
+ * - `.modal-container`: Positioning and drag area.
48
+ * - `.card`: The main container styling.
49
+ * - `.background-image`: Styling for an optional background image.
50
+ * - `.name-text`: Styling for name text with customizable color.
51
+ * - `.overlay-web` and `.waveform-web`: Contains and styles the waveform animation bars.
52
+ *
53
+ * @inputs
54
+ * - `visible` (boolean): Show/hide the component.
55
+ * - `customStyle` (object): Custom styles for the component.
56
+ * - `name` (string): Text to display as the name.
57
+ * - `showWaveform` (boolean): Show/hide waveform animations.
58
+ * - `overlayPosition` (string): Position of the overlay.
59
+ * - `barColor` (string): Color of waveform bars.
60
+ * - `textColor` (string): Color of name text.
61
+ * - `nameTextStyling` (object): Additional styles for the name text.
62
+ * - `imageSource` (string): URL of the background image.
63
+ * - `roundedImage` (boolean): If true, applies rounded corners to the image.
64
+ * - `imageStyle` (object): Custom styles for the image.
65
+ *
66
+ * @property `waveformAnimations` (array): Tracks animation states for each waveform bar.
67
+ * @property `position` (object): Tracks x and y positioning for dragging.
68
+ *
69
+ * @methods
70
+ * - `ngOnInit()`: Starts waveform animations if `showWaveform` is true.
71
+ * - `ngOnDestroy()`: Clears waveform animation intervals.
72
+ * - `animateWaveform()`: Sets intervals for each bar's animation.
73
+ * - `handleMouseDown(event: MouseEvent)`: Starts dragging on mousedown.
74
+ * - `handleMouseMove(event: MouseEvent)`: Updates position during drag.
75
+ * - `handleMouseUp()`: Ends dragging on mouseup.
76
+ *
77
+ * @example
78
+ * ```html
79
+ * <app-mini-audio [visible]="true" [name]="'Audio Player'" [barColor]="'blue'" [imageSource]="'/path/to/image.png'"></app-mini-audio>
80
+ * ```
88
81
  */
89
82
  export declare class MiniAudio implements OnInit, OnDestroy {
90
83
  visible: boolean;
@@ -9,7 +9,7 @@ export interface MiniCardOptions {
9
9
  }
10
10
  export type MiniCardType = (options: MiniCardOptions) => HTMLElement;
11
11
  /**
12
- * MiniCard component displays a card with either an image or initials.
12
+ * MiniCard component displays a customizable card with an image or initials.
13
13
  *
14
14
  * @component
15
15
  * @selector app-mini-card
@@ -17,6 +17,7 @@ export type MiniCardType = (options: MiniCardOptions) => HTMLElement;
17
17
  * @imports CommonModule
18
18
  *
19
19
  * @template
20
+ * ```html
20
21
  * <div class="mini-card" [ngStyle]="getMergedCardStyles()">
21
22
  * <div *ngIf="imageSource; else noImage" class="image-container">
22
23
  * <img [src]="imageSource" alt="Profile" [ngStyle]="getMergedImageStyles()" />
@@ -25,35 +26,30 @@ export type MiniCardType = (options: MiniCardOptions) => HTMLElement;
25
26
  * <div class="initials" [ngStyle]="getInitialsStyle()">{{ initials }}</div>
26
27
  * </ng-template>
27
28
  * </div>
29
+ * ```
28
30
  *
29
31
  * @styleUrls ['./mini-card.component.css']
30
32
  *
31
- * @property {string} initials - The initials to display if no image is provided.
32
- * @property {number} fontSize - The font size for the initials text. Default is 14.
33
- * @property {Partial<CSSStyleDeclaration>} customStyle - Custom styles for the card.
34
- * @property {string} imageSource - The source URL for the image.
35
- * @property {boolean} roundedImage - Whether the image should be rounded. Default is false.
36
- * @property {Partial<CSSStyleDeclaration>} imageStyle - Custom styles for the image.
33
+ * @inputs
34
+ * - `initials` (string): Initials to display if no image is provided.
35
+ * - `fontSize` (number): Font size for initials text, default is 14.
36
+ * - `customStyle` (CSSStyleDeclaration): Custom styles for the card.
37
+ * - `imageSource` (string): Source URL for the image.
38
+ * - `roundedImage` (boolean): Whether the image should be rounded, default is false.
39
+ * - `imageStyle` (CSSStyleDeclaration): Custom styles for the image.
37
40
  *
38
41
  * @constructor
39
- * @param {string} [injectedInitials] - Injected initials.
40
- * @param {number} [injectedFontSize] - Injected font size.
41
- * @param {Partial<CSSStyleDeclaration>} [injectedCustomStyle] - Injected custom styles.
42
- * @param {string} [injectedImageSource] - Injected image source.
43
- * @param {boolean} [injectedRoundedImage] - Injected rounded image flag.
44
- * @param {Partial<CSSStyleDeclaration>} [injectedImageStyle] - Injected image styles.
42
+ * - Optionally accepts injected values for each input property.
45
43
  *
46
- * @method getMergedCardStyles
47
- * @description Merges the default card styles with custom styles.
48
- * @returns {CSSStyleDeclaration} The merged card styles.
44
+ * @methods
45
+ * - `getMergedCardStyles()`: Returns merged styles for the card.
46
+ * - `getMergedImageStyles()`: Returns merged styles for the image.
47
+ * - `getInitialsStyle()`: Returns styles for the initials text.
49
48
  *
50
- * @method getMergedImageStyles
51
- * @description Merges the default image styles with custom styles.
52
- * @returns {CSSStyleDeclaration} The merged image styles.
53
- *
54
- * @method getInitialsStyle
55
- * @description Returns the styles for the initials text.
56
- * @returns {CSSStyleDeclaration} The initials text styles.
49
+ * @example
50
+ * ```html
51
+ * <app-mini-card initials="AB" fontSize="20" [roundedImage]="true" imageSource="/path/to/image.jpg"></app-mini-card>
52
+ * ```
57
53
  */
58
54
  export declare class MiniCard {
59
55
  initials: string;
@@ -13,61 +13,61 @@ export interface MiniCardAudioOptions {
13
13
  }
14
14
  export type MiniCardAudioType = (options: MiniCardAudioOptions) => HTMLElement;
15
15
  /**
16
- * MiniCardAudio component displays an audio card with optional waveform animation.
16
+ * MiniCardAudio component displays an audio card with optional waveform animation and overlay.
17
17
  *
18
- * @component
19
18
  * @selector app-mini-card-audio
20
19
  * @standalone true
21
20
  * @imports CommonModule
22
21
  *
23
22
  * @template
24
- * The template includes:
25
- * - A card container with customizable styles.
26
- * - An optional background image.
27
- * - An overlay with the name and waveform animation.
23
+ * - Displays:
24
+ * - A customizable card with optional image and name.
25
+ * - Overlay with waveform animation and text.
28
26
  *
29
27
  * @styles
30
- * The styles include:
31
- * - Card dimensions and background color.
32
- * - Overlay positioning and grid layout.
33
- * - Name column styling.
34
- * - Waveform bar styling.
35
- * - Background image positioning and optional rounded corners.
28
+ * - Customizable card, overlay, and waveform styles.
36
29
  *
37
30
  * @inputs
38
- * @param {any} customStyle - Custom styles for the card.
39
- * @param {string} name - The name to display on the card.
40
- * @param {boolean} showWaveform - Flag to show or hide the waveform animation.
41
- * @param {string} overlayPosition - Position of the overlay on the card.
42
- * @param {string} barColor - Color of the waveform bars.
43
- * @param {string} textColor - Color of the name text.
44
- * @param {string} imageSource - Source URL for the background image.
45
- * @param {boolean} roundedImage - Flag to apply rounded corners to the background image.
46
- * @param {any} imageStyle - Custom styles for the background image.
31
+ * - `customStyle` (Partial<CSSStyleDeclaration>): Custom CSS styles for the card.
32
+ * - `name` (string): Name displayed on the card.
33
+ * - `showWaveform` (boolean): Controls visibility of waveform animation.
34
+ * - `overlayPosition` (string): Position for the overlay on the card.
35
+ * - `barColor` (string): Color of waveform bars.
36
+ * - `textColor` (string): Color of the name text.
37
+ * - `imageSource` (string): URL for the background image.
38
+ * - `roundedImage` (boolean): Rounds image corners if true.
39
+ * - `imageStyle` (Partial<CSSStyleDeclaration>): Custom styles for the background image.
47
40
  *
48
- * @class
41
+ * @class MiniCardAudio
49
42
  * @implements OnInit, OnDestroy
50
43
  *
51
44
  * @constructor
52
- * @param {Partial<CSSStyleDeclaration>} injectedCustomStyle - Injected custom styles for the card.
53
- * @param {string} injectedName - Injected name to display on the card.
54
- * @param {boolean} injectedShowWaveform - Injected flag to show or hide the waveform animation.
55
- * @param {string} injectedOverlayPosition - Injected position of the overlay on the card.
56
- * @param {string} injectedBarColor - Injected color of the waveform bars.
57
- * @param {string} injectedTextColor - Injected color of the name text.
58
- * @param {string} injectedImageSource - Injected source URL for the background image.
59
- * @param {boolean} injectedRoundedImage - Injected flag to apply rounded corners to the background image.
60
- * @param {Partial<CSSStyleDeclaration>} injectedImageStyle - Injected custom styles for the background image.
45
+ * - Optional injected values for all input properties.
61
46
  *
62
47
  * @methods
63
- * @method ngOnInit - Lifecycle hook that is called after data-bound properties are initialized.
64
- * @method ngOnDestroy - Lifecycle hook that is called just before the component is destroyed.
65
- * @method animateWaveform - Starts the waveform animation.
66
- * @method resetWaveform - Resets the waveform animation.
67
- * @method clearIntervals - Clears all animation intervals.
68
- * @method getAnimationDuration - Returns the animation duration for a given index.
69
- * @method getImageStyle - Returns the styles for the background image.
70
- * @method getOverlayPosition - Returns the styles for the overlay position.
48
+ * - `ngOnInit`: Initializes the component, starts waveform animation if `showWaveform` is true.
49
+ * - `ngOnDestroy`: Cleans up intervals.
50
+ * - `animateWaveform`: Starts animation of the waveform bars.
51
+ * - `resetWaveform`: Resets waveform to initial state.
52
+ * - `clearIntervals`: Clears all active intervals.
53
+ * - `getAnimationDuration`: Returns duration for animation at a given index.
54
+ * - `getImageStyle`: Combines custom image styles with rounded corners if enabled.
55
+ * - `getOverlayPosition`: Uses utility to determine the overlay's position.
56
+ *
57
+ * @example
58
+ * ```html
59
+ * <app-mini-card-audio
60
+ * [customStyle]="{ backgroundColor: 'blue' }"
61
+ * name="Audio Name"
62
+ * [showWaveform]="true"
63
+ * overlayPosition="bottomRight"
64
+ * barColor="red"
65
+ * textColor="white"
66
+ * imageSource="/path/to/image.jpg"
67
+ * [roundedImage]="true"
68
+ * [imageStyle]="{ border: '2px solid black' }"
69
+ * ></app-mini-card-audio>
70
+ * ```
71
71
  */
72
72
  export declare class MiniCardAudio implements OnInit, OnDestroy {
73
73
  customStyle: any;
@@ -10,27 +10,42 @@ export interface OtherGridComponentOptions {
10
10
  }
11
11
  export type OtherGridComponentType = (options: OtherGridComponentOptions) => HTMLElement;
12
12
  /**
13
- * Component representing a customizable grid with an optional timer.
13
+ * OtherGridComponent represents a customizable grid container with optional meeting progress timer.
14
14
  *
15
15
  * @selector app-other-grid-component
16
16
  * @standalone true
17
17
  * @imports CommonModule, MeetingProgressTimer
18
18
  *
19
19
  * @template
20
- * <div [ngStyle]="{...}">
21
- * <app-meeting-progress-timer *ngIf="showTimer" [meetingProgressTime]="meetingProgressTime" [initialBackgroundColor]="timeBackgroundColor" [showTimer]="showTimer"></app-meeting-progress-timer>
22
- * <ng-content></ng-content>
23
- * </div>
20
+ * - The template consists of:
21
+ * - A grid container styled with specified dimensions, background color, and border.
22
+ * - An optional `MeetingProgressTimer` component displayed within the grid if `showTimer` is true.
24
23
  *
25
- * @class OtherGridComponent
24
+ * @styles
25
+ * - Default border, padding, and display styles for the grid container.
26
+ *
27
+ * @inputs
28
+ * - `backgroundColor` (string): Background color of the grid container. Default is `'transparent'`.
29
+ * - `width` (number): Width of the grid in pixels. Default is `0`.
30
+ * - `height` (number): Height of the grid in pixels. Default is `0`.
31
+ * - `showAspect` (boolean): Controls visibility of the grid container. Default is `true`.
32
+ * - `timeBackgroundColor` (string): Background color of the timer. Default is `'green'`.
33
+ * - `showTimer` (boolean): Determines if the timer should be displayed. Default is `false`.
34
+ * - `meetingProgressTime` (string): Time to display in the timer. Default is `'00:00:00'`.
26
35
  *
27
- * @property {string} backgroundColor - The background color of the grid. Default is 'transparent'.
28
- * @property {number} width - The width of the grid in pixels. Default is 0.
29
- * @property {number} height - The height of the grid in pixels. Default is 0.
30
- * @property {boolean} showAspect - Flag to show or hide the grid. Default is true.
31
- * @property {string} timeBackgroundColor - The background color of the timer. Default is 'green'.
32
- * @property {boolean} showTimer - Flag to show or hide the timer. Default is false.
33
- * @property {string} meetingProgressTime - The meeting progress time to be displayed in the timer. Default is '00:00:00'.
36
+ * @class OtherGridComponent
37
+ * @example
38
+ * ```html
39
+ * <app-other-grid-component
40
+ * [backgroundColor]="'lightgray'"
41
+ * [width]="300"
42
+ * [height]="200"
43
+ * [showAspect]="true"
44
+ * [timeBackgroundColor]="'blue'"
45
+ * [showTimer]="true"
46
+ * [meetingProgressTime]="'00:05:32'"
47
+ * ></app-other-grid-component>
48
+ * ```
34
49
  */
35
50
  export declare class OtherGridComponent {
36
51
  backgroundColor: string;
@@ -35,18 +35,17 @@ export interface PaginationOptions {
35
35
  }
36
36
  export type PaginationType = (options: PaginationOptions) => HTMLElement;
37
37
  /**
38
- * Pagination component for displaying and handling pagination controls.
38
+ * Pagination component for managing and displaying page navigation controls with various layouts and customizations.
39
39
  *
40
- * @component
41
40
  * @selector app-pagination
42
41
  * @standalone true
43
42
  * @imports [CommonModule, FontAwesomeModule]
44
43
  *
45
44
  * @description
46
- * This component renders pagination controls with customizable styles and behavior.
47
- * It supports horizontal and vertical layouts, different positions, and dynamic data.
45
+ * This component renders pagination controls, allowing users to navigate through pages. The controls support horizontal and vertical layouts, customizable styles, and dynamic page content handling, with special support for breakout room navigation.
48
46
  *
49
47
  * @example
48
+ * ```html
50
49
  * <app-pagination
51
50
  * [totalPages]="10"
52
51
  * [currentUserPage]="1"
@@ -59,27 +58,34 @@ export type PaginationType = (options: PaginationOptions) => HTMLElement;
59
58
  * [showAspect]="true"
60
59
  * [parameters]="paginationParameters">
61
60
  * </app-pagination>
61
+ * ```
62
62
  *
63
- * @input {number} totalPages - Total number of pages.
64
- * @input {number} currentUserPage - Current active page.
65
- * @input {Function} handlePageChange - Function to handle page change.
66
- * @input {'left' | 'middle' | 'right' | string} position - Position of the pagination controls.
67
- * @input {'top' | 'middle' | 'bottom' | string} location - Location of the pagination controls.
68
- * @input {'horizontal' | 'vertical' | string} direction - Direction of the pagination controls.
69
- * @input {any} buttonsContainerStyle - Custom styles for the buttons container.
70
- * @input {any} activePageStyle - Custom styles for the active page button.
71
- * @input {any} inactivePageStyle - Custom styles for the inactive page buttons.
72
- * @input {string} backgroundColor - Background color of the pagination controls.
73
- * @input {number} paginationHeight - Height of the pagination controls.
74
- * @input {boolean} showAspect - Flag to show or hide the pagination controls.
75
- * @input {PaginationParameters} parameters - Additional parameters for pagination.
63
+ * @input {number} totalPages - Total number of pages available for navigation.
64
+ * @input {number} currentUserPage - Current active page number.
65
+ * @input {Function} handlePageChange - Callback function to handle page changes.
66
+ * @input {'left' | 'middle' | 'right' | string} position - Horizontal position of the pagination controls (default is 'middle').
67
+ * @input {'top' | 'middle' | 'bottom' | string} location - Vertical position of the pagination controls (default is 'middle').
68
+ * @input {'horizontal' | 'vertical' | string} direction - Layout direction of the pagination controls (default is 'horizontal').
69
+ * @input {any} buttonsContainerStyle - Custom CSS styles for the buttons container.
70
+ * @input {any} activePageStyle - CSS styles for the active page button.
71
+ * @input {any} inactivePageStyle - CSS styles for inactive page buttons.
72
+ * @input {string} backgroundColor - Background color for the pagination controls.
73
+ * @input {number} paginationHeight - Height of the pagination controls in pixels.
74
+ * @input {boolean} showAspect - Flag to display or hide the pagination controls.
75
+ * @input {PaginationParameters} parameters - Additional configuration parameters for managing breakout rooms and related state.
76
76
  *
77
- * @method ngOnInit - Initializes the component and sets up initial data.
78
- * @method ngOnChanges - Handles changes to input properties and updates data accordingly.
79
- * @method handleClick - Handles click events on pagination buttons and performs necessary actions.
80
- * @method getPageStyle - Returns the style for a given page button based on its state.
81
- * @method isBreakoutRoom - Determines if a given item represents a breakout room.
82
- * @method getDisplayItem - Returns the display text for a given item.
77
+ * @property {number[]} data - Array representing pages to be displayed in pagination controls.
78
+ * @property {ComponentSizes} componentSizes - Stores calculated sizes for pagination controls.
79
+ *
80
+ * @method ngOnInit - Lifecycle hook that initializes the component and sets up page data.
81
+ * @method ngOnChanges - Handles input property changes to update page data when needed.
82
+ * @method handleClick - Asynchronously handles page button clicks and manages breakout room navigation logic.
83
+ * @method getPageStyle - Returns specific styles for a page button based on its active or inactive state.
84
+ * @method isBreakoutRoom - Checks if a page represents a breakout room.
85
+ * @method getDisplayItem - Returns the display label for a page, accounting for breakout room naming conventions.
86
+ *
87
+ * @dependencies
88
+ * This component requires an external pagination parameters configuration (`PaginationParameters`) and access to the `GeneratePageContent` service for managing dynamic content loading.
83
89
  */
84
90
  export declare class Pagination implements OnInit, OnChanges {
85
91
  private generatePageContentService;
@@ -9,38 +9,32 @@ export interface SubAspectComponentOptions {
9
9
  }
10
10
  export type SubAspectComponentType = (options: SubAspectComponentOptions) => HTMLElement;
11
11
  /**
12
- * @fileoverview SubAspectComponent is an Angular component that displays a sub-aspect of a media element.
13
- * It adjusts its size and visibility based on input properties and window events.
12
+ * SubAspectComponent is an Angular component that displays a sub-aspect of a media element with customizable dimensions and background color.
13
+ * The component adapts its size and visibility based on the provided properties and listens for window resize and orientation change events.
14
14
  *
15
- * @component
16
15
  * @selector app-sub-aspect-component
17
16
  * @standalone true
18
17
  * @imports CommonModule
19
18
  *
20
- * @template
21
- * <div *ngIf="showControls" [ngStyle]="{ position: 'absolute', bottom: '0', margin: '0', backgroundColor: backgroundColor, height: aspectStyles.height + 'px', width: aspectStyles.width + 'px' }">
22
- * <ng-content></ng-content>
23
- * </div>
19
+ * @example
20
+ * ```html
21
+ * <app-sub-aspect-component [backgroundColor]="'blue'" [showControls]="true" [containerWidthFraction]="0.8"></app-sub-aspect-component>
22
+ * ```
24
23
  *
25
- * @styles []
24
+ * @input {string} backgroundColor - The background color of the component. Default is 'transparent'.
25
+ * @input {boolean} showControls - Determines if controls are shown within the component. Default is true.
26
+ * @input {number} containerWidthFraction - Fraction of the window width for the component width. Default is 1.
27
+ * @input {number} containerHeightFraction - Fraction of the window height for the component height. Default is 1.
28
+ * @input {number} defaultFractionSub - The default fraction for the sub-aspect height. Default is 0.0.
26
29
  *
27
- * @class SubAspectComponent
28
- * @implements OnInit, OnDestroy, OnChanges
30
+ * @property {object} aspectStyles - Contains calculated styles for the component's height and width.
31
+ * @property {number} aspectStyles.height - Calculated height of the component.
32
+ * @property {number} aspectStyles.width - Calculated width of the component.
29
33
  *
30
- * @property {string} backgroundColor - The background color of the component. Default is 'transparent'.
31
- * @property {boolean} showControls - Determines whether the controls are shown. Default is true.
32
- * @property {number} containerWidthFraction - The fraction of the container's width. Default is 1.
33
- * @property {number} containerHeightFraction - The fraction of the container's height. Default is 1.
34
- * @property {number} defaultFractionSub - The default fraction for the sub-aspect. Default is 0.0.
35
- * @property {object} aspectStyles - The styles for the aspect, including height and width.
36
- * @property {number} aspectStyles.height - The height of the aspect.
37
- * @property {number} aspectStyles.width - The width of the aspect.
38
- * @property {number} subAspectFraction - The fraction of the sub-aspect.
39
- *
40
- * @method ngOnInit - Lifecycle hook that is called after data-bound properties are initialized. Adds event listeners for window resize and orientation change.
41
- * @method ngOnChanges - Lifecycle hook that is called when any data-bound property changes. Updates aspect styles if relevant properties change.
42
- * @method ngOnDestroy - Lifecycle hook that is called just before the component is destroyed. Removes event listeners for window resize and orientation change.
43
- * @method updateAspectStyles - Updates the aspect styles based on the current window size and input properties.
34
+ * @method ngOnInit - Initializes the component and adds event listeners for responsive adjustments.
35
+ * @method ngOnChanges - Updates the aspect styles when any of the input properties change.
36
+ * @method ngOnDestroy - Removes event listeners when the component is destroyed.
37
+ * @method updateAspectStyles - Calculates and applies updated styles based on the window size and input properties.
44
38
  */
45
39
  export declare class SubAspectComponent implements OnInit, OnDestroy, OnChanges {
46
40
  backgroundColor: string;