@tuki-io/tuki-widgets 0.0.219-dev.3 → 0.0.219-dev.30

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 (245) hide show
  1. package/README.md +24 -24
  2. package/esm2020/contact-center/cc-readiness/cc-readiness.module.mjs +1 -1
  3. package/esm2020/contact-center/cc-readiness/cc-readiness.service.mjs +1 -1
  4. package/esm2020/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.mjs +3 -3
  5. package/esm2020/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.mjs +3 -3
  6. package/esm2020/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.mjs +2 -2
  7. package/esm2020/di2mt/widgets/upgrade-overview/cards/pending-activation-users/pending-activation-users.component.mjs +17 -17
  8. package/esm2020/lib/widgets.component.mjs +9 -9
  9. package/esm2020/lib/widgets.module.mjs +1 -1
  10. package/esm2020/lib/widgets.service.mjs +1 -1
  11. package/esm2020/meetings/public-api.mjs +8 -0
  12. package/esm2020/meetings/src/components/live-meetings/live-meeting/live-meeting.component.mjs +107 -0
  13. package/esm2020/meetings/src/components/live-meetings/live-meetings.component.mjs +95 -0
  14. package/esm2020/meetings/src/components/meeting-spaces/meeting-space/meeting-space.component.mjs +96 -0
  15. package/esm2020/meetings/src/components/meeting-spaces/meeting-spaces.component.mjs +66 -0
  16. package/esm2020/meetings/src/material.module.mjs +62 -0
  17. package/esm2020/meetings/src/meetings.component.mjs +65 -0
  18. package/esm2020/meetings/src/meetings.module.mjs +48 -0
  19. package/esm2020/meetings/src/services/api.service.mjs +67 -0
  20. package/esm2020/meetings/src/services/live-meetings.service.mjs +178 -0
  21. package/esm2020/meetings/src/services/meeting-spaces.service.mjs +198 -0
  22. package/esm2020/meetings/src/types/live-meeting.mjs +2 -0
  23. package/esm2020/meetings/src/types/meeting-space.mjs +2 -0
  24. package/esm2020/meetings/tuki-io-tuki-widgets-meetings.mjs +5 -0
  25. package/esm2020/public-api.mjs +1 -1
  26. package/esm2020/shared/public-api.mjs +4 -0
  27. package/esm2020/shared/src/ui/material.module.mjs +188 -0
  28. package/esm2020/shared/src/ui/shared.module.mjs +36 -0
  29. package/esm2020/shared/src/ui/tk-page-section/tk-page-section.component.mjs +13 -0
  30. package/esm2020/shared/src/ui/tk-page-section-row/tk-page-section-row.component.mjs +13 -0
  31. package/esm2020/shared/src/ui/ui.module.mjs +37 -0
  32. package/esm2020/shared/tuki-io-tuki-widgets-shared.mjs +5 -0
  33. package/esm2020/user-creation/src/app.constants.mjs +1 -1
  34. package/esm2020/user-creation/src/classes/notification.mjs +1 -1
  35. package/esm2020/user-creation/src/classes/site.mjs +1 -1
  36. package/esm2020/user-creation/src/environments/environment.mjs +1 -1
  37. package/esm2020/user-creation/src/interfaces/user-creation-wizard.interfaces.mjs +1 -1
  38. package/esm2020/user-creation/src/shared/components/notification/notification.component.mjs +3 -3
  39. package/esm2020/user-creation/src/shared/pipes/truncate.pipe.mjs +1 -1
  40. package/esm2020/user-creation/src/shared/services/notification.service.mjs +1 -1
  41. package/esm2020/user-creation/src/shared/services/user-creation-api.service.mjs +1 -1
  42. package/esm2020/user-creation/src/shared/services/utils.mjs +1 -1
  43. package/esm2020/user-creation/src/utils/app-loader/app-loader.mjs +3 -3
  44. package/esm2020/user-creation/src/utils/build-savable-end-user.mjs +1 -1
  45. package/esm2020/user-creation/src/utils/device-default-prefix.mjs +19 -2
  46. package/esm2020/user-creation/src/utils/device-name-dynamic-tokens.mjs +4 -0
  47. package/esm2020/user-creation/src/utils/device-name-validation.mjs +1 -1
  48. package/esm2020/user-creation/src/utils/model.mjs +1 -1
  49. package/esm2020/user-creation/src/utils/parse-device-name-rule.mjs +6 -3
  50. package/esm2020/user-creation/src/widgets/user-creation-wizard/components/user-details-step/user-details-step.component.mjs +60 -13
  51. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +8 -6
  52. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.service.mjs +13 -9
  53. package/esm2020/user-device-manage/public-api.mjs +1 -1
  54. package/esm2020/user-device-manage/src/app.constants.mjs +1 -1
  55. package/esm2020/user-device-manage/src/classes/device.mjs +1 -1
  56. package/esm2020/user-device-manage/src/classes/deviceProfile.mjs +1 -1
  57. package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +1 -1
  58. package/esm2020/user-device-manage/src/classes/line-association.mjs +1 -1
  59. package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +1 -1
  60. package/esm2020/user-device-manage/src/classes/line-directory.mjs +1 -1
  61. package/esm2020/user-device-manage/src/classes/line.mjs +1 -1
  62. package/esm2020/user-device-manage/src/classes/notification.mjs +1 -1
  63. package/esm2020/user-device-manage/src/classes/recording-options.mjs +1 -1
  64. package/esm2020/user-device-manage/src/classes/simplified-user.mjs +1 -1
  65. package/esm2020/user-device-manage/src/classes/site-defaults.mjs +1 -1
  66. package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +1 -1
  67. package/esm2020/user-device-manage/src/classes/types.mjs +1 -1
  68. package/esm2020/user-device-manage/src/common-functions.mjs +1 -1
  69. package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +3 -3
  70. package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +3 -3
  71. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +3 -3
  72. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +3 -3
  73. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +1 -1
  74. package/esm2020/user-device-manage/src/device-info/device-info.component.mjs +3 -3
  75. package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +2 -2
  76. package/esm2020/user-device-manage/src/environments/environment.mjs +1 -1
  77. package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +1 -1
  78. package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +3 -3
  79. package/esm2020/user-device-manage/src/material.module.mjs +1 -1
  80. package/esm2020/user-device-manage/src/notifications/notification.component.mjs +3 -3
  81. package/esm2020/user-device-manage/src/pipes/mac-address.pipe.mjs +1 -1
  82. package/esm2020/user-device-manage/src/services/api.service.mjs +1 -1
  83. package/esm2020/user-device-manage/src/services/device.service.mjs +1 -1
  84. package/esm2020/user-device-manage/src/services/dns.service.mjs +1 -1
  85. package/esm2020/user-device-manage/src/services/line.service.mjs +1 -1
  86. package/esm2020/user-device-manage/src/services/notification.service.mjs +1 -1
  87. package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +1 -1
  88. package/esm2020/user-device-manage/src/services/site-settings.service.mjs +1 -1
  89. package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +1 -1
  90. package/esm2020/user-device-manage/src/services/user.service.mjs +1 -1
  91. package/esm2020/user-device-manage/src/services/utils.service.mjs +1 -1
  92. package/esm2020/user-device-manage/src/services/validation.service.mjs +1 -1
  93. package/esm2020/user-device-manage/src/user-device-manage.module.mjs +1 -4
  94. package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +3 -3
  95. package/esm2020/user-manage/public-api.mjs +1 -1
  96. package/esm2020/user-manage/src/app.constants.mjs +7 -1
  97. package/esm2020/user-manage/src/classes/device.mjs +1 -1
  98. package/esm2020/user-manage/src/classes/line-association-interface.mjs +1 -1
  99. package/esm2020/user-manage/src/classes/line-association.mjs +1 -1
  100. package/esm2020/user-manage/src/classes/line-call-info-display.mjs +1 -1
  101. package/esm2020/user-manage/src/classes/line-directory.mjs +1 -1
  102. package/esm2020/user-manage/src/classes/line.mjs +1 -1
  103. package/esm2020/user-manage/src/classes/notification.mjs +1 -1
  104. package/esm2020/user-manage/src/classes/pagination.mjs +1 -1
  105. package/esm2020/user-manage/src/classes/recording-options.mjs +1 -1
  106. package/esm2020/user-manage/src/classes/simplified-user.mjs +5 -3
  107. package/esm2020/user-manage/src/classes/table-data.mjs +1 -1
  108. package/esm2020/user-manage/src/classes/translation-pattern.mjs +1 -1
  109. package/esm2020/user-manage/src/classes/user-list.mjs +1 -1
  110. package/esm2020/user-manage/src/common-functions.mjs +1 -1
  111. package/esm2020/user-manage/src/device-list/device-list.component.mjs +7 -4
  112. package/esm2020/user-manage/src/device-list/device-row/device-row.component.mjs +6 -3
  113. package/esm2020/user-manage/src/environments/environment.mjs +1 -1
  114. package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +1 -1
  115. package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +3 -3
  116. package/esm2020/user-manage/src/material.module.mjs +14 -7
  117. package/esm2020/user-manage/src/notifications/notification.component.mjs +3 -3
  118. package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +1 -1
  119. package/esm2020/user-manage/src/services/api.service.mjs +1 -1
  120. package/esm2020/user-manage/src/services/dcp-api.service.mjs +79 -0
  121. package/esm2020/user-manage/src/services/dns.service.mjs +1 -1
  122. package/esm2020/user-manage/src/services/line.service.mjs +1 -1
  123. package/esm2020/user-manage/src/services/notification.service.mjs +1 -1
  124. package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +1 -1
  125. package/esm2020/user-manage/src/services/site-settings.service.mjs +1 -1
  126. package/esm2020/user-manage/src/services/sorting-utils.service.mjs +1 -1
  127. package/esm2020/user-manage/src/services/user.service.mjs +65 -19
  128. package/esm2020/user-manage/src/services/utils.service.mjs +1 -1
  129. package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +3 -3
  130. package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +12 -7
  131. package/esm2020/user-manage/src/user-info/user-info.component.mjs +3 -3
  132. package/esm2020/user-manage/src/user-manage-widget.component.mjs +64 -23
  133. package/esm2020/user-manage/src/user-manage.module.mjs +10 -3
  134. package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +3 -3
  135. package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +3 -3
  136. package/esm2020/users-list/public-api.mjs +1 -1
  137. package/esm2020/users-list/src/app.constants.mjs +3 -1
  138. package/esm2020/users-list/src/classes/app-location.mjs +1 -1
  139. package/esm2020/users-list/src/classes/device.mjs +1 -1
  140. package/esm2020/users-list/src/classes/line.mjs +1 -1
  141. package/esm2020/users-list/src/classes/move-user.mjs +1 -1
  142. package/esm2020/users-list/src/classes/notification.mjs +1 -1
  143. package/esm2020/users-list/src/classes/simlified-user.mjs +1 -1
  144. package/esm2020/users-list/src/classes/table-data.mjs +1 -1
  145. package/esm2020/users-list/src/classes/user-list.mjs +2 -1
  146. package/esm2020/users-list/src/components/table-toolbar/table-toolbar.component.mjs +3 -3
  147. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +3 -3
  148. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +3 -3
  149. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +14 -3
  150. package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +5 -3
  151. package/esm2020/users-list/src/services/api-webex.service.mjs +1 -1
  152. package/esm2020/users-list/src/services/api.service.mjs +1 -1
  153. package/esm2020/users-list/src/services/dns.service.mjs +1 -1
  154. package/esm2020/users-list/src/services/events-communication.service.mjs +1 -1
  155. package/esm2020/users-list/src/services/notification.service.mjs +1 -1
  156. package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +1 -1
  157. package/esm2020/users-list/src/services/site-settings.service.mjs +1 -1
  158. package/esm2020/users-list/src/services/user.service.mjs +8 -1
  159. package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +3 -3
  160. package/esm2020/users-list/src/users-list.component.mjs +118 -22
  161. package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +3 -3
  162. package/esm2020/users-list/src/utils/common-functions.mjs +1 -1
  163. package/esm2020/users-list/src/utils/notifications/notification.component.mjs +3 -3
  164. package/esm2020/users-list/src/utils/utils.service.mjs +1 -1
  165. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs +2 -2
  166. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
  167. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +20 -20
  168. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  169. package/fesm2015/tuki-io-tuki-widgets-meetings.mjs +952 -0
  170. package/fesm2015/tuki-io-tuki-widgets-meetings.mjs.map +1 -0
  171. package/fesm2015/tuki-io-tuki-widgets-shared.mjs +280 -0
  172. package/fesm2015/tuki-io-tuki-widgets-shared.mjs.map +1 -0
  173. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +114 -36
  174. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  175. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +18 -31
  176. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  177. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +262 -69
  178. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  179. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +157 -37
  180. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  181. package/fesm2015/tuki-io-tuki-widgets.mjs +8 -8
  182. package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -1
  183. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs +2 -2
  184. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
  185. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +20 -20
  186. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  187. package/fesm2020/tuki-io-tuki-widgets-meetings.mjs +948 -0
  188. package/fesm2020/tuki-io-tuki-widgets-meetings.mjs.map +1 -0
  189. package/fesm2020/tuki-io-tuki-widgets-shared.mjs +280 -0
  190. package/fesm2020/tuki-io-tuki-widgets-shared.mjs.map +1 -0
  191. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +107 -32
  192. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  193. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +18 -31
  194. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  195. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +257 -67
  196. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  197. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +156 -37
  198. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  199. package/fesm2020/tuki-io-tuki-widgets.mjs +8 -8
  200. package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -1
  201. package/meetings/index.d.ts +5 -0
  202. package/meetings/public-api.d.ts +2 -0
  203. package/meetings/src/components/live-meetings/live-meeting/live-meeting.component.d.ts +34 -0
  204. package/meetings/src/components/live-meetings/live-meetings.component.d.ts +42 -0
  205. package/meetings/src/components/meeting-spaces/meeting-space/meeting-space.component.d.ts +33 -0
  206. package/meetings/src/components/meeting-spaces/meeting-spaces.component.d.ts +28 -0
  207. package/meetings/src/material.module.d.ts +13 -0
  208. package/meetings/src/meetings.component.d.ts +29 -0
  209. package/meetings/src/meetings.module.d.ts +15 -0
  210. package/meetings/src/services/api.service.d.ts +18 -0
  211. package/meetings/src/services/live-meetings.service.d.ts +9 -0
  212. package/meetings/src/services/meeting-spaces.service.d.ts +16 -0
  213. package/meetings/src/types/live-meeting.d.ts +71 -0
  214. package/meetings/src/types/meeting-space.d.ts +50 -0
  215. package/package.json +17 -1
  216. package/shared/index.d.ts +5 -0
  217. package/shared/public-api.d.ts +3 -0
  218. package/shared/src/ui/material.module.d.ts +28 -0
  219. package/shared/src/ui/shared.module.d.ts +10 -0
  220. package/{user-device-manage/src/shared/tk-page-section/page-section.component.d.ts → shared/src/ui/tk-page-section/tk-page-section.component.d.ts} +1 -1
  221. package/shared/src/ui/tk-page-section-row/tk-page-section-row.component.d.ts +6 -0
  222. package/shared/src/ui/ui.module.d.ts +11 -0
  223. package/user-creation/src/utils/device-default-prefix.d.ts +7 -2
  224. package/user-creation/src/utils/device-name-dynamic-tokens.d.ts +1 -0
  225. package/user-creation/src/utils/parse-device-name-rule.d.ts +1 -0
  226. package/user-creation/src/widgets/user-creation-wizard/components/user-details-step/user-details-step.component.d.ts +2 -0
  227. package/user-device-manage/src/classes/simplified-user.d.ts +1 -1
  228. package/user-device-manage/src/user-device-manage.module.d.ts +9 -10
  229. package/user-manage/src/app.constants.d.ts +6 -0
  230. package/user-manage/src/classes/simplified-user.d.ts +11 -1
  231. package/user-manage/src/device-list/device-list.component.d.ts +2 -0
  232. package/user-manage/src/material.module.d.ts +2 -1
  233. package/user-manage/src/services/dcp-api.service.d.ts +21 -0
  234. package/user-manage/src/services/user.service.d.ts +8 -1
  235. package/user-manage/src/user-calling/user-calling.component.d.ts +3 -2
  236. package/user-manage/src/user-manage-widget.component.d.ts +10 -2
  237. package/user-manage/src/user-manage.module.d.ts +2 -1
  238. package/users-list/src/app.constants.d.ts +2 -0
  239. package/users-list/src/classes/simlified-user.d.ts +1 -1
  240. package/users-list/src/classes/user-list.d.ts +4 -0
  241. package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +3 -1
  242. package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +2 -1
  243. package/users-list/src/services/user.service.d.ts +1 -0
  244. package/users-list/src/users-list.component.d.ts +6 -1
  245. package/esm2020/user-device-manage/src/shared/tk-page-section/page-section.component.mjs +0 -13
@@ -19,17 +19,17 @@ class WidgetsComponent {
19
19
  }
20
20
  }
21
21
  WidgetsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WidgetsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
22
- WidgetsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WidgetsComponent, selector: "lib-widgets", ngImport: i0, template: `
23
- <p>
24
- widgets works!
25
- </p>
22
+ WidgetsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WidgetsComponent, selector: "lib-widgets", ngImport: i0, template: `
23
+ <p>
24
+ widgets works!
25
+ </p>
26
26
  `, isInline: true });
27
27
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WidgetsComponent, decorators: [{
28
28
  type: Component,
29
- args: [{ selector: 'lib-widgets', template: `
30
- <p>
31
- widgets works!
32
- </p>
29
+ args: [{ selector: 'lib-widgets', template: `
30
+ <p>
31
+ widgets works!
32
+ </p>
33
33
  ` }]
34
34
  }], ctorParameters: function () { return []; } });
35
35
 
@@ -1 +1 @@
1
- {"version":3,"file":"tuki-io-tuki-widgets.mjs","sources":["../../../../projects/tuki/widgets/src/lib/widgets.service.ts","../../../../projects/tuki/widgets/src/lib/widgets.component.ts","../../../../projects/tuki/widgets/src/lib/widgets.module.ts","../../../../projects/tuki/widgets/src/public-api.ts","../../../../projects/tuki/widgets/src/tuki-io-tuki-widgets.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class WidgetsService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-widgets',\n template: `\n <p>\n widgets works!\n </p>\n `,\n styles: [\n ]\n})\nexport class WidgetsComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { WidgetsComponent } from './widgets.component';\n\n\n\n@NgModule({\n declarations: [\n WidgetsComponent\n ],\n imports: [\n ],\n exports: [\n WidgetsComponent\n ]\n})\nexport class WidgetsModule { }\n","/*\n * Public API Surface of widgets\n */\n\nexport * from './lib/widgets.service';\nexport * from './lib/widgets.component';\nexport * from './lib/widgets.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,cAAc,CAAA;AAEzB,IAAA,WAAA,GAAA,GAAiB;;4GAFN,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAd,cAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,cAFb,MAAM,EAAA,CAAA,CAAA;4FAEP,cAAc,EAAA,UAAA,EAAA,CAAA;kBAH1B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;MCQY,gBAAgB,CAAA;AAE3B,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;8GALU,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAhB,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,gBAAgB,EARjB,QAAA,EAAA,aAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;4FAIU,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAV5B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,aAAa,EACb,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,CAAA;;;MCOU,aAAa,CAAA;;2GAAb,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;4GAAb,aAAa,EAAA,YAAA,EAAA,CARtB,gBAAgB,CAAA,EAAA,OAAA,EAAA,CAKhB,gBAAgB,CAAA,EAAA,CAAA,CAAA;4GAGP,aAAa,EAAA,CAAA,CAAA;4FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBAVzB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,gBAAgB;AACjB,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,gBAAgB;AACjB,qBAAA;AACF,iBAAA,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
1
+ {"version":3,"file":"tuki-io-tuki-widgets.mjs","sources":["../../../../projects/tuki/widgets/src/lib/widgets.service.ts","../../../../projects/tuki/widgets/src/lib/widgets.component.ts","../../../../projects/tuki/widgets/src/lib/widgets.module.ts","../../../../projects/tuki/widgets/src/public-api.ts","../../../../projects/tuki/widgets/src/tuki-io-tuki-widgets.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class WidgetsService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-widgets',\r\n template: `\r\n <p>\r\n widgets works!\r\n </p>\r\n `,\r\n styles: [\r\n ]\r\n})\r\nexport class WidgetsComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { WidgetsComponent } from './widgets.component';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n WidgetsComponent\r\n ],\r\n imports: [\r\n ],\r\n exports: [\r\n WidgetsComponent\r\n ]\r\n})\r\nexport class WidgetsModule { }\r\n","/*\r\n * Public API Surface of widgets\r\n */\r\n\r\nexport * from './lib/widgets.service';\r\nexport * from './lib/widgets.component';\r\nexport * from './lib/widgets.module';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,cAAc,CAAA;AAEzB,IAAA,WAAA,GAAA,GAAiB;;4GAFN,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAd,cAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,cAFb,MAAM,EAAA,CAAA,CAAA;4FAEP,cAAc,EAAA,UAAA,EAAA,CAAA;kBAH1B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;MCQY,gBAAgB,CAAA;AAE3B,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;8GALU,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAhB,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,gBAAgB,EARjB,QAAA,EAAA,aAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;4FAIU,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAV5B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,aAAa,EACb,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,CAAA;;;MCOU,aAAa,CAAA;;2GAAb,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;4GAAb,aAAa,EAAA,YAAA,EAAA,CARtB,gBAAgB,CAAA,EAAA,OAAA,EAAA,CAKhB,gBAAgB,CAAA,EAAA,CAAA,CAAA;4GAGP,aAAa,EAAA,CAAA,CAAA;4FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBAVzB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,gBAAgB;AACjB,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,gBAAgB;AACjB,qBAAA;AACF,iBAAA,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@tuki-io/tuki-widgets/meetings" />
5
+ export * from './public-api';
@@ -0,0 +1,2 @@
1
+ export * from './src/meetings.module';
2
+ export * from './src/meetings.component';
@@ -0,0 +1,34 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { LiveMeetingsService } from '../../../services/live-meetings.service';
3
+ import { LiveMeetingDetails, LiveMeetingLobbyEntry, LiveMeetingParticipant } from '../../../types/live-meeting';
4
+ import * as i0 from "@angular/core";
5
+ export type LiveMeetingTab = 'participants' | 'lobby';
6
+ export declare class LiveMeetingComponent implements OnInit {
7
+ private liveMeetingsService;
8
+ meetingId: string | null;
9
+ back: EventEmitter<void>;
10
+ details: LiveMeetingDetails | null;
11
+ activeTab: LiveMeetingTab;
12
+ searchTerm: string;
13
+ openActionsMenuId: string | null;
14
+ constructor(liveMeetingsService: LiveMeetingsService);
15
+ ngOnInit(): void;
16
+ get filteredParticipants(): LiveMeetingParticipant[];
17
+ get lobby(): LiveMeetingLobbyEntry[];
18
+ setTab(tab: LiveMeetingTab): void;
19
+ onBack(): void;
20
+ toggleLock(): void;
21
+ toggleRecording(): void;
22
+ toggleStreaming(): void;
23
+ muteAll(): void;
24
+ unmuteAll(): void;
25
+ toggleParticipantAudio(participant: LiveMeetingParticipant): void;
26
+ toggleParticipantVideo(participant: LiveMeetingParticipant): void;
27
+ removeParticipant(participant: LiveMeetingParticipant): void;
28
+ toggleActionsMenu(participant: LiveMeetingParticipant): void;
29
+ closeActionsMenu(): void;
30
+ admitFromLobby(entry: LiveMeetingLobbyEntry): void;
31
+ denyFromLobby(entry: LiveMeetingLobbyEntry): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<LiveMeetingComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<LiveMeetingComponent, "tk-live-meeting", never, { "meetingId": "meetingId"; }, { "back": "back"; }, never, never, false, never>;
34
+ }
@@ -0,0 +1,42 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { LiveMeetingsService } from '../../services/live-meetings.service';
3
+ import { LiveMeeting, LiveMeetingsSummary } from '../../types/live-meeting';
4
+ import * as i0 from "@angular/core";
5
+ interface LiveMeetingsStatCard {
6
+ label: string;
7
+ value: number;
8
+ icon?: string;
9
+ }
10
+ export declare class LiveMeetingsComponent implements OnInit {
11
+ private liveMeetingsService;
12
+ openLiveMeeting: EventEmitter<string>;
13
+ meetings: LiveMeeting[];
14
+ summary: LiveMeetingsSummary | null;
15
+ searchTerm: string;
16
+ isAutoRefreshOn: boolean;
17
+ lastUpdatedLabel: string;
18
+ isFilterPanelOpen: boolean;
19
+ filters: {
20
+ lockState: string;
21
+ cluster: string;
22
+ startTimeAfter: string;
23
+ minParticipants: number | null;
24
+ owner: string;
25
+ };
26
+ constructor(liveMeetingsService: LiveMeetingsService);
27
+ ngOnInit(): void;
28
+ get statCards(): LiveMeetingsStatCard[];
29
+ get filteredMeetings(): LiveMeeting[];
30
+ get owners(): string[];
31
+ get clusters(): string[];
32
+ toggleFilterPanel(): void;
33
+ closeFilterPanel(): void;
34
+ clearFilters(): void;
35
+ onOpenLiveMeeting(meeting: LiveMeeting): void;
36
+ toggleAutoRefresh(): void;
37
+ refresh(): void;
38
+ private load;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<LiveMeetingsComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<LiveMeetingsComponent, "tk-live-meetings", never, {}, { "openLiveMeeting": "openLiveMeeting"; }, never, never, false, never>;
41
+ }
42
+ export {};
@@ -0,0 +1,33 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { MeetingSpacesService } from '../../../services/meeting-spaces.service';
3
+ import { MeetingSpaceAccessRole, MeetingSpaceDetails, MeetingSpacePresentationQuality, MeetingSpaceVideoLayout, MeetingSpaceVideoQuality } from '../../../types/meeting-space';
4
+ import * as i0 from "@angular/core";
5
+ export type MeetingSpaceFormMode = 'create' | 'edit';
6
+ interface Option<T> {
7
+ value: T;
8
+ label: string;
9
+ }
10
+ export declare class MeetingSpaceComponent implements OnInit {
11
+ private meetingSpacesService;
12
+ mode: MeetingSpaceFormMode;
13
+ meetingSpaceId: string | null;
14
+ back: EventEmitter<void>;
15
+ saved: EventEmitter<MeetingSpaceDetails>;
16
+ details: MeetingSpaceDetails;
17
+ readonly clusters: string[];
18
+ readonly videoLayouts: Option<MeetingSpaceVideoLayout>[];
19
+ readonly videoQualities: Option<MeetingSpaceVideoQuality>[];
20
+ readonly presentationQualities: Option<MeetingSpacePresentationQuality>[];
21
+ constructor(meetingSpacesService: MeetingSpacesService);
22
+ ngOnInit(): void;
23
+ get isEdit(): boolean;
24
+ get browserJoinLink(): string;
25
+ addAccessRole(): void;
26
+ removeAccessRole(role: MeetingSpaceAccessRole): void;
27
+ trackByRoleId(_index: number, role: MeetingSpaceAccessRole): string;
28
+ onCancel(): void;
29
+ onSubmit(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSpaceComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<MeetingSpaceComponent, "tk-meeting-space", never, { "mode": "mode"; "meetingSpaceId": "meetingSpaceId"; }, { "back": "back"; "saved": "saved"; }, never, never, false, never>;
32
+ }
33
+ export {};
@@ -0,0 +1,28 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { MeetingSpacesService } from '../../services/meeting-spaces.service';
3
+ import { MeetingSpace } from '../../types/meeting-space';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MeetingSpacesComponent implements OnInit {
6
+ private meetingSpacesService;
7
+ createMeetingSpace: EventEmitter<void>;
8
+ editMeetingSpace: EventEmitter<string>;
9
+ meetingSpaces: MeetingSpace[];
10
+ searchTerm: string;
11
+ isFilterPanelOpen: boolean;
12
+ filters: {
13
+ owner: string;
14
+ cluster: string;
15
+ };
16
+ constructor(meetingSpacesService: MeetingSpacesService);
17
+ ngOnInit(): void;
18
+ get owners(): string[];
19
+ get clusters(): string[];
20
+ get filteredMeetingSpaces(): MeetingSpace[];
21
+ onCreateMeetingSpace(): void;
22
+ onEditMeetingSpace(space: MeetingSpace): void;
23
+ toggleFilterPanel(): void;
24
+ closeFilterPanel(): void;
25
+ clearFilters(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSpacesComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<MeetingSpacesComponent, "tk-meeting-spaces", never, {}, { "createMeetingSpace": "createMeetingSpace"; "editMeetingSpace": "editMeetingSpace"; }, never, never, false, never>;
28
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/material/button";
3
+ import * as i2 from "@angular/material/icon";
4
+ import * as i3 from "@angular/material/table";
5
+ import * as i4 from "@angular/material/progress-spinner";
6
+ import * as i5 from "@angular/material/form-field";
7
+ import * as i6 from "@angular/material/input";
8
+ import * as i7 from "@angular/material/tabs";
9
+ export declare class MaterialModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.MatButtonModule, typeof i2.MatIconModule, typeof i3.MatTableModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatFormFieldModule, typeof i6.MatInputModule, typeof i7.MatTabsModule], [typeof i1.MatButtonModule, typeof i2.MatIconModule, typeof i3.MatTableModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatFormFieldModule, typeof i6.MatInputModule, typeof i7.MatTabsModule]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
13
+ }
@@ -0,0 +1,29 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { APIService } from './services/api.service';
3
+ import { MeetingSpaceFormMode } from './components/meeting-spaces/meeting-space/meeting-space.component';
4
+ import { MeetingSpaceDetails } from './types/meeting-space';
5
+ import * as i0 from "@angular/core";
6
+ export type MeetingEnvironmentStatus = 'healthy' | 'warning' | 'critical';
7
+ export type MeetingsView = 'list' | 'meeting-space' | 'live-meeting';
8
+ export declare class MeetingsComponent implements OnInit {
9
+ private apiService;
10
+ host: string;
11
+ token: string;
12
+ environmentStatusLabel: string;
13
+ environmentStatusState: MeetingEnvironmentStatus;
14
+ liveCount: number;
15
+ view: MeetingsView;
16
+ meetingSpaceMode: MeetingSpaceFormMode;
17
+ selectedMeetingSpaceId: string | null;
18
+ selectedLiveMeetingId: string | null;
19
+ constructor(apiService: APIService);
20
+ ngOnInit(): void;
21
+ onCreateMeetingSpace(): void;
22
+ onEditMeetingSpace(meetingSpaceId: string): void;
23
+ onMeetingSpaceBack(): void;
24
+ onMeetingSpaceSaved(_details: MeetingSpaceDetails): void;
25
+ onOpenLiveMeeting(meetingId: string): void;
26
+ onLiveMeetingBack(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<MeetingsComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<MeetingsComponent, "tk-meetings", never, { "host": "host"; "token": "token"; "environmentStatusLabel": "environmentStatusLabel"; "environmentStatusState": "environmentStatusState"; "liveCount": "liveCount"; }, {}, never, never, false, never>;
29
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./meetings.component";
3
+ import * as i2 from "./components/meeting-spaces/meeting-spaces.component";
4
+ import * as i3 from "./components/meeting-spaces/meeting-space/meeting-space.component";
5
+ import * as i4 from "./components/live-meetings/live-meetings.component";
6
+ import * as i5 from "./components/live-meetings/live-meeting/live-meeting.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "@angular/common/http";
9
+ import * as i8 from "@angular/forms";
10
+ import * as i9 from "./material.module";
11
+ export declare class MeetingsModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MeetingsModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MeetingsModule, [typeof i1.MeetingsComponent, typeof i2.MeetingSpacesComponent, typeof i3.MeetingSpaceComponent, typeof i4.LiveMeetingsComponent, typeof i5.LiveMeetingComponent], [typeof i6.CommonModule, typeof i7.HttpClientModule, typeof i8.FormsModule, typeof i9.MaterialModule], [typeof i1.MeetingsComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<MeetingsModule>;
15
+ }
@@ -0,0 +1,18 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class APIService {
5
+ private httpClient;
6
+ token: string;
7
+ apiUrl: string;
8
+ constructor(httpClient: HttpClient);
9
+ fetch(url: string, params?: any, cache?: boolean): Observable<any>;
10
+ post(url: string, body: any, params?: {}): Observable<any>;
11
+ put(url: string, body?: null, params?: {}): Observable<Object>;
12
+ delete(url: string, params?: {}): Observable<Object>;
13
+ private prepareEncodedParams;
14
+ private getHeaders;
15
+ private getParameterByName;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<APIService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<APIService>;
18
+ }
@@ -0,0 +1,9 @@
1
+ import { Observable } from 'rxjs';
2
+ import { LiveMeetingDetails, LiveMeetingsSnapshot } from '../types/live-meeting';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LiveMeetingsService {
5
+ fetchLiveMeetings(): Observable<LiveMeetingsSnapshot>;
6
+ getOne(id: string): Observable<LiveMeetingDetails | undefined>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<LiveMeetingsService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<LiveMeetingsService>;
9
+ }
@@ -0,0 +1,16 @@
1
+ import { Observable } from 'rxjs';
2
+ import { MeetingSpace, MeetingSpaceDetails } from '../types/meeting-space';
3
+ import * as i0 from "@angular/core";
4
+ export declare function createDefaultMeetingSpaceDetails(): MeetingSpaceDetails;
5
+ export declare class MeetingSpacesService {
6
+ private meetingSpaces;
7
+ private meetingSpaceDetailsById;
8
+ private nextId;
9
+ fetchMeetingSpaces(): Observable<MeetingSpace[]>;
10
+ getOne(id: string): Observable<MeetingSpaceDetails>;
11
+ save(details: MeetingSpaceDetails): Observable<MeetingSpaceDetails>;
12
+ put(id: string, details: MeetingSpaceDetails): Observable<MeetingSpaceDetails>;
13
+ private toMeetingSpace;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSpacesService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<MeetingSpacesService>;
16
+ }
@@ -0,0 +1,71 @@
1
+ export type LiveMeetingLockState = 'locked' | 'unlocked';
2
+ export type LiveMeetingQuality = 'good' | 'fair' | 'poor';
3
+ export interface LiveMeetingActivity {
4
+ recording: boolean;
5
+ streaming: boolean;
6
+ presenting: boolean;
7
+ }
8
+ export interface LiveMeeting {
9
+ id: string;
10
+ title: string;
11
+ ownerName: string;
12
+ ownerEmail: string;
13
+ participants: number;
14
+ lobbyCount: number;
15
+ lockState: LiveMeetingLockState;
16
+ activity: LiveMeetingActivity;
17
+ startTime: string;
18
+ duration: string;
19
+ quality: LiveMeetingQuality;
20
+ cluster: string;
21
+ }
22
+ export interface LiveMeetingsSummary {
23
+ activeMeetings: number;
24
+ connectedParticipants: number;
25
+ waitingInLobby: number;
26
+ recording: number;
27
+ streaming: number;
28
+ qualityWarnings: number;
29
+ }
30
+ export interface LiveMeetingsSnapshot {
31
+ summary: LiveMeetingsSummary;
32
+ meetings: LiveMeeting[];
33
+ }
34
+ export type LiveMeetingParticipantStatus = 'connected' | 'disconnected';
35
+ export interface LiveMeetingParticipant {
36
+ id: string;
37
+ name: string;
38
+ initials: string;
39
+ subBadge?: string;
40
+ status: LiveMeetingParticipantStatus;
41
+ audioMuted: boolean;
42
+ videoOn: boolean;
43
+ joinTime: string;
44
+ quality: LiveMeetingQuality | null;
45
+ endpoint: string;
46
+ endpointIcon?: 'mail' | 'call';
47
+ }
48
+ export interface LiveMeetingLobbyEntry {
49
+ id: string;
50
+ name: string;
51
+ endpoint: string;
52
+ waitingSince: string;
53
+ }
54
+ export interface LiveMeetingDetails {
55
+ id: string;
56
+ title: string;
57
+ ownerName: string;
58
+ ownerEmail: string;
59
+ meetingId: string;
60
+ startTime: string;
61
+ duration: string;
62
+ lockState: LiveMeetingLockState;
63
+ quality: LiveMeetingQuality;
64
+ cluster: string;
65
+ isRecording: boolean;
66
+ isStreaming: boolean;
67
+ connectedCount: number;
68
+ lobbyCount: number;
69
+ participants: LiveMeetingParticipant[];
70
+ lobby: LiveMeetingLobbyEntry[];
71
+ }
@@ -0,0 +1,50 @@
1
+ export interface MeetingSpace {
2
+ id: string;
3
+ name: string;
4
+ uri: string;
5
+ meetingId: string;
6
+ participants: number;
7
+ owner: string;
8
+ cluster: string;
9
+ managed?: boolean;
10
+ }
11
+ export type MeetingSpaceVisibility = 'members-only' | 'public' | 'private';
12
+ export interface MeetingSpaceAccessRole {
13
+ id: string;
14
+ name: string;
15
+ primary?: boolean;
16
+ visibility: MeetingSpaceVisibility;
17
+ passcode: string;
18
+ activatesMeetingOnJoin: boolean;
19
+ allowUnauthenticatedJoin: boolean;
20
+ participantsWaitInLobby: boolean;
21
+ grantMeetingHostControls: boolean;
22
+ }
23
+ export type MeetingSpaceVideoLayout = 'all-equal' | 'speaker-only' | 'telepresence' | 'stacked' | 'one-plus-five' | 'one-plus-seven' | 'one-plus-nine' | 'more';
24
+ export type MeetingSpaceVideoQuality = '480p30' | '720p30' | '1080p30';
25
+ export type MeetingSpacePresentationQuality = '720p5' | '1080p30';
26
+ export interface MeetingSpaceDetails {
27
+ id: string;
28
+ name: string;
29
+ owner: string;
30
+ description: string;
31
+ cluster: string;
32
+ tag: string;
33
+ meetingId: string;
34
+ meetingUri: string;
35
+ secondaryUri: string;
36
+ password: string;
37
+ enabled: boolean;
38
+ accessRolesEnabled: boolean;
39
+ accessRoles: MeetingSpaceAccessRole[];
40
+ defaultVideoLayout: MeetingSpaceVideoLayout;
41
+ participantLabels: boolean;
42
+ allowPresentation: boolean;
43
+ disconnectOthersAllowed: boolean;
44
+ videoQuality: MeetingSpaceVideoQuality;
45
+ presentationQuality: MeetingSpacePresentationQuality;
46
+ allowRecording: boolean;
47
+ allowStreaming: boolean;
48
+ sipRecorderUri: string;
49
+ sipStreamerUri: string;
50
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuki-io/tuki-widgets",
3
- "version": "0.0.219-dev.3",
3
+ "version": "0.0.219-dev.30",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",
@@ -44,6 +44,22 @@
44
44
  "node": "./fesm2015/tuki-io-tuki-widgets-di2mt.mjs",
45
45
  "default": "./fesm2020/tuki-io-tuki-widgets-di2mt.mjs"
46
46
  },
47
+ "./meetings": {
48
+ "types": "./meetings/index.d.ts",
49
+ "esm2020": "./esm2020/meetings/tuki-io-tuki-widgets-meetings.mjs",
50
+ "es2020": "./fesm2020/tuki-io-tuki-widgets-meetings.mjs",
51
+ "es2015": "./fesm2015/tuki-io-tuki-widgets-meetings.mjs",
52
+ "node": "./fesm2015/tuki-io-tuki-widgets-meetings.mjs",
53
+ "default": "./fesm2020/tuki-io-tuki-widgets-meetings.mjs"
54
+ },
55
+ "./shared": {
56
+ "types": "./shared/index.d.ts",
57
+ "esm2020": "./esm2020/shared/tuki-io-tuki-widgets-shared.mjs",
58
+ "es2020": "./fesm2020/tuki-io-tuki-widgets-shared.mjs",
59
+ "es2015": "./fesm2015/tuki-io-tuki-widgets-shared.mjs",
60
+ "node": "./fesm2015/tuki-io-tuki-widgets-shared.mjs",
61
+ "default": "./fesm2020/tuki-io-tuki-widgets-shared.mjs"
62
+ },
47
63
  "./user-creation": {
48
64
  "types": "./user-creation/index.d.ts",
49
65
  "esm2020": "./esm2020/user-creation/tuki-io-tuki-widgets-user-creation.mjs",
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@tuki-io/tuki-widgets/shared" />
5
+ export * from './public-api';
@@ -0,0 +1,3 @@
1
+ export * from './src/ui/ui.module';
2
+ export * from './src/ui/tk-page-section/tk-page-section.component';
3
+ export * from './src/ui/tk-page-section-row/tk-page-section-row.component';
@@ -0,0 +1,28 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/cdk/drag-drop";
3
+ import * as i2 from "@angular/material/button";
4
+ import * as i3 from "@angular/material/list";
5
+ import * as i4 from "@angular/material/progress-spinner";
6
+ import * as i5 from "@angular/material/expansion";
7
+ import * as i6 from "@angular/material/input";
8
+ import * as i7 from "@angular/material/tree";
9
+ import * as i8 from "@angular/material/core";
10
+ import * as i9 from "@angular/material/datepicker";
11
+ import * as i10 from "@angular/material/tooltip";
12
+ import * as i11 from "@angular/material/autocomplete";
13
+ import * as i12 from "@angular/material/chips";
14
+ import * as i13 from "@angular/material/sidenav";
15
+ import * as i14 from "@angular/material/form-field";
16
+ import * as i15 from "@angular/material/stepper";
17
+ import * as i16 from "@angular/material/tabs";
18
+ import * as i17 from "@angular/material/card";
19
+ import * as i18 from "@angular/material/select";
20
+ import * as i19 from "@angular/material/checkbox";
21
+ import * as i20 from "@angular/material/slide-toggle";
22
+ import * as i21 from "@angular/material/table";
23
+ import * as i22 from "@angular/material/paginator";
24
+ export declare class MaterialModule {
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
26
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i18.MatSelectModule, typeof i19.MatCheckboxModule, typeof i20.MatSlideToggleModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule], [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i19.MatCheckboxModule, typeof i18.MatSelectModule, typeof i20.MatSlideToggleModule, typeof i4.MatProgressSpinnerModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule]>;
27
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
28
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./material.module";
4
+ import * as i3 from "ng-apexcharts";
5
+ import * as i4 from "@angular/common/http";
6
+ export declare class SharedModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.CommonModule, typeof i2.MaterialModule, typeof i3.NgApexchartsModule, typeof i4.HttpClientModule], [typeof i1.CommonModule, typeof i2.MaterialModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
10
+ }
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class PageSectionComponent {
3
3
  heading: string;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<PageSectionComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<PageSectionComponent, "lib-page-section", never, { "heading": "heading"; }, {}, never, ["heading-icon", "content"], false, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageSectionComponent, "tk-page-section", never, { "heading": "heading"; }, {}, never, ["content"], false, never>;
6
6
  }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class PageSectionRowComponent {
3
+ label: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageSectionRowComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageSectionRowComponent, "tk-page-section-row", never, { "label": "label"; }, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tk-page-section/tk-page-section.component";
3
+ import * as i2 from "./tk-page-section-row/tk-page-section-row.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "./shared.module";
6
+ import * as i5 from "./material.module";
7
+ export declare class UIModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<UIModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UIModule, [typeof i1.PageSectionComponent, typeof i2.PageSectionRowComponent], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.MaterialModule], [typeof i1.PageSectionComponent, typeof i2.PageSectionRowComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<UIModule>;
11
+ }
@@ -1,5 +1,10 @@
1
- import { DeviceInterface } from '../interfaces/user-creation-wizard.interfaces';
1
+ import { DeviceDefaultsInterface, DeviceInterface } from '../interfaces/user-creation-wizard.interfaces';
2
2
  /** Matches device types like `Cisco 8851`. */
3
3
  export declare const CISCO_DIGIT_DEVICE_TYPE_PATTERN: RegExp;
4
4
  export declare const DEFAULT_SEP_DEVICE_PREFIX = "SEP";
5
- export declare function applyDefaultDevicePrefixIfMissing(device: Pick<DeviceInterface, 'prefix' | 'deviceType'>): void;
5
+ /**
6
+ * Extracts a literal prefix from `deviceNameExplained` patterns such as
7
+ * `SEP[mac]`, `TCT[0-9A-Z._-]{1,12}`, or `[A-Z0-9]{1,15}` (no prefix).
8
+ */
9
+ export declare function extractDevicePrefixFromNameExplained(deviceNameExplained: string | null | undefined): string | null;
10
+ export declare function applyDefaultDevicePrefixIfMissing(device: Pick<DeviceInterface, 'prefix' | 'deviceType'>, defaults: DeviceDefaultsInterface): void;
@@ -0,0 +1 @@
1
+ export declare function deviceNameHasDynamicTokens(name: string | null | undefined): boolean;
@@ -3,6 +3,7 @@
3
3
  * to validate the name field value (without matPrefix).
4
4
  *
5
5
  * - `([sS][eE][pP]|BAT)[0-9a-fA-F]{12}` → `[0-9a-fA-F]{12}`
6
+ * - `TCT[0-9A-Z._-]{1,12}` → `[0-9A-Z._-]{1,12}`
6
7
  * - `[a-zA-Z0-9]{1,15}` → `[a-zA-Z0-9]{1,15}` (unchanged)
7
8
  */
8
9
  export declare function parseDeviceNameRegexBody(deviceNameRegex: string | null | undefined): string;
@@ -45,6 +45,7 @@ export declare class UserDetailsStepComponent implements OnInit, OnDestroy {
45
45
  getDeviceProfileNamePrefix(index: number): string | null;
46
46
  getDeviceNameValidationCaption(index: number): string;
47
47
  getDeviceProfileNameValidationCaption(index: number): string;
48
+ isDeviceNameReadonly(index: number, isProfile: boolean): boolean;
48
49
  getFilteredNumbers(lineIndex: number): string[];
49
50
  getFilteredRoutePartitions(lineIndex: number): string[];
50
51
  filterAvailableNumbers(lineIndex: number, event: Event): void;
@@ -79,6 +80,7 @@ export declare class UserDetailsStepComponent implements OnInit, OnDestroy {
79
80
  private applyNumberFilter;
80
81
  private applyRoutePartitionFilter;
81
82
  private filterOptions;
83
+ private createAvailableNumberValidator;
82
84
  private extractDirectoryNumber;
83
85
  private createUserIdAsyncValidator;
84
86
  static ɵfac: i0.ɵɵFactoryDeclaration<UserDetailsStepComponent, never>;
@@ -29,7 +29,7 @@ export declare class SimplifiedUser {
29
29
  displayName: string;
30
30
  viewMode: string;
31
31
  hasModifiedCache: boolean;
32
- newUserId?: string;
32
+ newUserid?: string;
33
33
  editMode: boolean;
34
34
  form: FormGroup;
35
35
  viewType?: any;
@@ -9,17 +9,16 @@ import * as i7 from "./device-associated-line/device-associated-line-extension/d
9
9
  import * as i8 from "./device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component";
10
10
  import * as i9 from "./device-associated-line/associated-line-row/associated-line-row.component";
11
11
  import * as i10 from "./confirm-dialog/info-dialog.component";
12
- import * as i11 from "./shared/tk-page-section/page-section.component";
13
- import * as i12 from "./device-info/device-info.component";
14
- import * as i13 from "./pipes/mac-address.pipe";
15
- import * as i14 from "@angular/common";
16
- import * as i15 from "@angular/platform-browser";
17
- import * as i16 from "@angular/platform-browser/animations";
18
- import * as i17 from "@angular/forms";
19
- import * as i18 from "@angular/common/http";
20
- import * as i19 from "./material.module";
12
+ import * as i11 from "./device-info/device-info.component";
13
+ import * as i12 from "./pipes/mac-address.pipe";
14
+ import * as i13 from "@angular/common";
15
+ import * as i14 from "@angular/platform-browser";
16
+ import * as i15 from "@angular/platform-browser/animations";
17
+ import * as i16 from "@angular/forms";
18
+ import * as i17 from "@angular/common/http";
19
+ import * as i18 from "./material.module";
21
20
  export declare class UserDeviceManageModule {
22
21
  static ɵfac: i0.ɵɵFactoryDeclaration<UserDeviceManageModule, never>;
23
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserDeviceManageModule, [typeof i1.AppLoaderComponent, typeof i2.NotificationsComponent, typeof i3.LazyLoadingSelectComponent, typeof i4.DeviceListComponent, typeof i5.DeviceManageWidgetComponent, typeof i6.DeviceAssociatedLineComponent, typeof i7.DeviceAssociatedLineExtensionComponent, typeof i8.DeviceAssociatedLineDetailsBoxComponent, typeof i9.AssociatedLineRowComponent, typeof i10.InfoDialogComponent, typeof i11.PageSectionComponent, typeof i12.DeviceInfoComponent, typeof i13.MacAddressPipe], [typeof i14.CommonModule, typeof i15.BrowserModule, typeof i16.BrowserAnimationsModule, typeof i17.FormsModule, typeof i17.ReactiveFormsModule, typeof i18.HttpClientModule, typeof i19.MaterialModule], [typeof i5.DeviceManageWidgetComponent]>;
22
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserDeviceManageModule, [typeof i1.AppLoaderComponent, typeof i2.NotificationsComponent, typeof i3.LazyLoadingSelectComponent, typeof i4.DeviceListComponent, typeof i5.DeviceManageWidgetComponent, typeof i6.DeviceAssociatedLineComponent, typeof i7.DeviceAssociatedLineExtensionComponent, typeof i8.DeviceAssociatedLineDetailsBoxComponent, typeof i9.AssociatedLineRowComponent, typeof i10.InfoDialogComponent, typeof i11.DeviceInfoComponent, typeof i12.MacAddressPipe], [typeof i13.CommonModule, typeof i14.BrowserModule, typeof i15.BrowserAnimationsModule, typeof i16.FormsModule, typeof i16.ReactiveFormsModule, typeof i17.HttpClientModule, typeof i18.MaterialModule], [typeof i5.DeviceManageWidgetComponent]>;
24
23
  static ɵinj: i0.ɵɵInjectorDeclaration<UserDeviceManageModule>;
25
24
  }