@tuki-io/tuki-widgets 0.0.73 → 0.0.75

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 (660) hide show
  1. package/.editorconfig +16 -0
  2. package/.hintrc +14 -0
  3. package/.vscode/extensions.json +4 -0
  4. package/.vscode/launch.json +20 -0
  5. package/.vscode/tasks.json +42 -0
  6. package/README.md +25 -24
  7. package/angular.json +141 -0
  8. package/package.json +48 -65
  9. package/projects/tuki/widgets/README.md +24 -0
  10. package/projects/tuki/widgets/di2mt/api/api.endpoints.ts +26 -0
  11. package/projects/tuki/widgets/di2mt/assets/icons/already_upgraded.png +0 -0
  12. package/projects/tuki/widgets/di2mt/assets/icons/check2_icon.png +0 -0
  13. package/projects/tuki/widgets/di2mt/assets/icons/check_icon.png +0 -0
  14. package/projects/tuki/widgets/di2mt/assets/icons/details_d_icon.svg +3 -0
  15. package/projects/tuki/widgets/di2mt/assets/icons/expand_icon.png +0 -0
  16. package/projects/tuki/widgets/di2mt/assets/icons/issue_icon.png +0 -0
  17. package/projects/tuki/widgets/di2mt/assets/icons/menu_icon.png +0 -0
  18. package/projects/tuki/widgets/di2mt/assets/icons/ready_to_upgrade.png +0 -0
  19. package/projects/tuki/widgets/di2mt/assets/icons/search_icon.png +0 -0
  20. package/projects/tuki/widgets/di2mt/assets/icons/site.png +0 -0
  21. package/projects/tuki/widgets/di2mt/assets/icons/user.png +0 -0
  22. package/projects/tuki/widgets/di2mt/assets/icons/warning_icon.png +0 -0
  23. package/projects/tuki/widgets/di2mt/ng-package.json +7 -0
  24. package/{di2mt/public-api.d.ts → projects/tuki/widgets/di2mt/public-api.ts} +27 -12
  25. package/projects/tuki/widgets/di2mt/shared/components/card/card.component.html +11 -0
  26. package/projects/tuki/widgets/di2mt/shared/components/card/card.component.scss +48 -0
  27. package/projects/tuki/widgets/di2mt/shared/components/card/card.component.ts +10 -0
  28. package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.html +15 -0
  29. package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.scss +38 -0
  30. package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.ts +71 -0
  31. package/projects/tuki/widgets/di2mt/shared/components/index.ts +6 -0
  32. package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.html +57 -0
  33. package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.scss +74 -0
  34. package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.ts +44 -0
  35. package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.html +28 -0
  36. package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.scss +55 -0
  37. package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.ts +11 -0
  38. package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.html +12 -0
  39. package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.scss +79 -0
  40. package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.ts +27 -0
  41. package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.html +28 -0
  42. package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.scss +244 -0
  43. package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.ts +28 -0
  44. package/projects/tuki/widgets/di2mt/shared/constants/app.constants.ts +96 -0
  45. package/projects/tuki/widgets/di2mt/shared/material.module.ts +36 -0
  46. package/projects/tuki/widgets/di2mt/shared/services/api.service.ts +92 -0
  47. package/projects/tuki/widgets/di2mt/shared/shared.module.ts +38 -0
  48. package/projects/tuki/widgets/di2mt/shared/types/constants.ts +15 -0
  49. package/projects/tuki/widgets/di2mt/shared/types/data-table.ts +5 -0
  50. package/projects/tuki/widgets/di2mt/shared/types/table/filter.ts +14 -0
  51. package/projects/tuki/widgets/di2mt/styles/tuki-widgets-theme.scss +13 -0
  52. package/projects/tuki/widgets/di2mt/styles/variables.scss +92 -0
  53. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.html +3 -0
  54. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.scss +37 -0
  55. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.ts +40 -0
  56. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.html +158 -0
  57. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.scss +430 -0
  58. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.ts +362 -0
  59. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.module.ts +33 -0
  60. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.service.ts +102 -0
  61. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/types/user-upgrade.ts +22 -0
  62. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.ts +52 -0
  63. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.ts +53 -0
  64. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.ts +67 -0
  65. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.html +7 -0
  66. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.scss +0 -0
  67. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.ts +45 -0
  68. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.html +7 -0
  69. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.scss +0 -0
  70. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.ts +45 -0
  71. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.ts +59 -0
  72. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.ts +70 -0
  73. package/{di2mt/widgets/upgrade-overview/types/upgrade-overview.d.ts → projects/tuki/widgets/di2mt/widgets/upgrade-overview/types/upgrade-overview.ts} +58 -56
  74. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.module.ts +42 -0
  75. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.service.ts +95 -0
  76. package/{di2mt/widgets/user-upgrade/types/user-upgrade.d.ts → projects/tuki/widgets/di2mt/widgets/user-upgrade/types/user-upgrade.ts} +19 -16
  77. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.html +186 -0
  78. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.scss +345 -0
  79. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.ts +313 -0
  80. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.module.ts +34 -0
  81. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.service.ts +79 -0
  82. package/projects/tuki/widgets/karma.conf.js +44 -0
  83. package/projects/tuki/widgets/ng-package.json +10 -0
  84. package/projects/tuki/widgets/package.json +13 -0
  85. package/projects/tuki/widgets/src/lib/widgets.component.spec.ts +23 -0
  86. package/projects/tuki/widgets/src/lib/widgets.component.ts +20 -0
  87. package/projects/tuki/widgets/src/lib/widgets.module.ts +16 -0
  88. package/projects/tuki/widgets/src/lib/widgets.service.spec.ts +16 -0
  89. package/projects/tuki/widgets/src/lib/widgets.service.ts +9 -0
  90. package/{public-api.d.ts → projects/tuki/widgets/src/public-api.ts} +7 -3
  91. package/projects/tuki/widgets/src/test.ts +27 -0
  92. package/projects/tuki/widgets/styles.scss +572 -0
  93. package/projects/tuki/widgets/tsconfig.lib.json +36 -0
  94. package/projects/tuki/widgets/tsconfig.lib.prod.json +10 -0
  95. package/projects/tuki/widgets/tsconfig.spec.json +17 -0
  96. package/projects/tuki/widgets/user-device-manage/ng-package.json +7 -0
  97. package/{user-device-manage/public-api.d.ts → projects/tuki/widgets/user-device-manage/public-api.ts} +8 -8
  98. package/projects/tuki/widgets/user-device-manage/src/app.constants.ts +96 -0
  99. package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-left.svg +5 -0
  100. package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-right.svg +5 -0
  101. package/projects/tuki/widgets/user-device-manage/src/assets/icons/close_icon_x.svg +3 -0
  102. package/projects/tuki/widgets/user-device-manage/src/assets/icons/delete_icon.svg +5 -0
  103. package/projects/tuki/widgets/user-device-manage/src/assets/icons/dragger-vertical-icon.svg +3 -0
  104. package/projects/tuki/widgets/user-device-manage/src/assets/icons/icon_user.svg +1 -0
  105. package/projects/tuki/widgets/user-device-manage/src/assets/icons/vartical_divider_icon.svg +3 -0
  106. package/projects/tuki/widgets/user-device-manage/src/classes/device.ts +292 -0
  107. package/projects/tuki/widgets/user-device-manage/src/classes/line-association-interface.ts +50 -0
  108. package/projects/tuki/widgets/user-device-manage/src/classes/line-association.ts +177 -0
  109. package/projects/tuki/widgets/user-device-manage/src/classes/line-call-info-display.ts +21 -0
  110. package/projects/tuki/widgets/user-device-manage/src/classes/line-directory.ts +41 -0
  111. package/projects/tuki/widgets/user-device-manage/src/classes/line.ts +144 -0
  112. package/projects/tuki/widgets/user-device-manage/src/classes/notification.ts +40 -0
  113. package/projects/tuki/widgets/user-device-manage/src/classes/recording-options.ts +6 -0
  114. package/projects/tuki/widgets/user-device-manage/src/classes/simplified-user.ts +169 -0
  115. package/projects/tuki/widgets/user-device-manage/src/classes/site-defaults.ts +167 -0
  116. package/projects/tuki/widgets/user-device-manage/src/classes/translation-pattern.ts +50 -0
  117. package/projects/tuki/widgets/user-device-manage/src/classes/types.ts +19 -0
  118. package/projects/tuki/widgets/user-device-manage/src/classes/user-interface.ts +225 -0
  119. package/projects/tuki/widgets/user-device-manage/src/classes/user.ts +8 -0
  120. package/projects/tuki/widgets/user-device-manage/src/common-functions.ts +16 -0
  121. package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.html +14 -0
  122. package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.scss +80 -0
  123. package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.ts +35 -0
  124. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.html +21 -0
  125. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.scss +97 -0
  126. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.ts +28 -0
  127. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.html +6 -0
  128. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.scss +20 -0
  129. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.ts +13 -0
  130. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.html +6 -0
  131. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.scss +4 -0
  132. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.ts +63 -0
  133. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.html +241 -0
  134. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.scss +500 -0
  135. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.ts +194 -0
  136. package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.html +27 -0
  137. package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.scss +131 -0
  138. package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.ts +25 -0
  139. package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.html +209 -0
  140. package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.scss +502 -0
  141. package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.ts +354 -0
  142. package/projects/tuki/widgets/user-device-manage/src/environments/environment.prod.ts +9 -0
  143. package/projects/tuki/widgets/user-device-manage/src/environments/environment.ts +10 -0
  144. package/projects/tuki/widgets/user-device-manage/src/interseptors/auth.interceptor.ts +35 -0
  145. package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.html +50 -0
  146. package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.scss +8 -0
  147. package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.ts +81 -0
  148. package/projects/tuki/widgets/user-device-manage/src/material.module.ts +87 -0
  149. package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.html +33 -0
  150. package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.scss +84 -0
  151. package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.ts +46 -0
  152. package/projects/tuki/widgets/user-device-manage/src/removeKynFromIBM.service.ts +25 -0
  153. package/projects/tuki/widgets/user-device-manage/src/services/api.service.ts +87 -0
  154. package/projects/tuki/widgets/user-device-manage/src/services/common-functions.ts +17 -0
  155. package/projects/tuki/widgets/user-device-manage/src/services/device.service.ts +95 -0
  156. package/projects/tuki/widgets/user-device-manage/src/services/dns.service.ts +111 -0
  157. package/projects/tuki/widgets/user-device-manage/src/services/line.service.ts +89 -0
  158. package/projects/tuki/widgets/user-device-manage/src/services/notification.service.ts +68 -0
  159. package/projects/tuki/widgets/user-device-manage/src/services/removeKynFromIBM.service.ts +25 -0
  160. package/projects/tuki/widgets/user-device-manage/src/services/site-settings.service.ts +82 -0
  161. package/projects/tuki/widgets/user-device-manage/src/services/sorting-utils.service.ts +203 -0
  162. package/projects/tuki/widgets/user-device-manage/src/services/user.service.ts +283 -0
  163. package/projects/tuki/widgets/user-device-manage/src/services/utils.service.ts +87 -0
  164. package/projects/tuki/widgets/user-device-manage/src/services/validation.service.ts +829 -0
  165. package/projects/tuki/widgets/user-device-manage/src/styles/_variables.scss +90 -0
  166. package/projects/tuki/widgets/user-device-manage/src/styles/form.scss +231 -0
  167. package/projects/tuki/widgets/user-device-manage/src/styles/icons.scss +32 -0
  168. package/projects/tuki/widgets/user-device-manage/src/styles/styles.scss +110 -0
  169. package/projects/tuki/widgets/user-device-manage/src/styles/tables.scss +30 -0
  170. package/projects/tuki/widgets/user-device-manage/src/user-device-manage.module.ts +73 -0
  171. package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.html +6 -0
  172. package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.scss +11 -0
  173. package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.ts +13 -0
  174. package/projects/tuki/widgets/user-manage/ng-package.json +7 -0
  175. package/{user-manage/public-api.d.ts → projects/tuki/widgets/user-manage/public-api.ts} +6 -6
  176. package/projects/tuki/widgets/user-manage/src/app.constants.ts +50 -0
  177. package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-left.svg +5 -0
  178. package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-right.svg +5 -0
  179. package/projects/tuki/widgets/user-manage/src/assets/icons/delete_icon.svg +5 -0
  180. package/projects/tuki/widgets/user-manage/src/assets/icons/dragger-vertical-icon.svg +3 -0
  181. package/projects/tuki/widgets/user-manage/src/assets/icons/icon_user.svg +1 -0
  182. package/projects/tuki/widgets/user-manage/src/assets/icons/vartical_divider_icon.svg +3 -0
  183. package/projects/tuki/widgets/user-manage/src/classes/device.ts +232 -0
  184. package/projects/tuki/widgets/user-manage/src/classes/line-association-interface.ts +43 -0
  185. package/projects/tuki/widgets/user-manage/src/classes/line-association.ts +161 -0
  186. package/projects/tuki/widgets/user-manage/src/classes/line-call-info-display.ts +21 -0
  187. package/projects/tuki/widgets/user-manage/src/classes/line-directory.ts +42 -0
  188. package/projects/tuki/widgets/user-manage/src/classes/line.ts +144 -0
  189. package/projects/tuki/widgets/user-manage/src/classes/notification.ts +39 -0
  190. package/projects/tuki/widgets/user-manage/src/classes/pagination.ts +18 -0
  191. package/projects/tuki/widgets/user-manage/src/classes/recording-options.ts +6 -0
  192. package/projects/tuki/widgets/user-manage/src/classes/simplified-user.ts +165 -0
  193. package/projects/tuki/widgets/user-manage/src/classes/table-data.ts +6 -0
  194. package/projects/tuki/widgets/user-manage/src/classes/translation-pattern.ts +49 -0
  195. package/projects/tuki/widgets/user-manage/src/classes/user-interface.ts +225 -0
  196. package/projects/tuki/widgets/user-manage/src/classes/user-list.ts +42 -0
  197. package/projects/tuki/widgets/user-manage/src/classes/user.ts +8 -0
  198. package/projects/tuki/widgets/user-manage/src/common-functions.ts +16 -0
  199. package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.html +27 -0
  200. package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.scss +131 -0
  201. package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.ts +25 -0
  202. package/projects/tuki/widgets/user-manage/src/environments/environment.prod.ts +9 -0
  203. package/projects/tuki/widgets/user-manage/src/environments/environment.ts +10 -0
  204. package/projects/tuki/widgets/user-manage/src/interseptors/auth.interceptor.ts +35 -0
  205. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.html +50 -0
  206. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.scss +8 -0
  207. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.ts +81 -0
  208. package/projects/tuki/widgets/user-manage/src/material.module.ts +85 -0
  209. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.html +33 -0
  210. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.scss +84 -0
  211. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.ts +46 -0
  212. package/projects/tuki/widgets/user-manage/src/removeKynFromIBM.service.ts +25 -0
  213. package/projects/tuki/widgets/user-manage/src/services/api.service.ts +90 -0
  214. package/projects/tuki/widgets/user-manage/src/services/dns.service.ts +116 -0
  215. package/projects/tuki/widgets/user-manage/src/services/line.service.ts +31 -0
  216. package/projects/tuki/widgets/user-manage/src/services/notification.service.ts +68 -0
  217. package/projects/tuki/widgets/user-manage/src/services/removeKynFromIBM.service.ts +25 -0
  218. package/projects/tuki/widgets/user-manage/src/services/site-settings.service.ts +35 -0
  219. package/projects/tuki/widgets/user-manage/src/services/sorting-utils.service.ts +203 -0
  220. package/projects/tuki/widgets/user-manage/src/services/user.service.ts +242 -0
  221. package/projects/tuki/widgets/user-manage/src/services/users-search.service.ts +59 -0
  222. package/projects/tuki/widgets/user-manage/src/services/utils.service.ts +71 -0
  223. package/projects/tuki/widgets/user-manage/src/styles/_variables.scss +90 -0
  224. package/projects/tuki/widgets/user-manage/src/styles/form.scss +231 -0
  225. package/projects/tuki/widgets/user-manage/src/styles/icons.scss +32 -0
  226. package/projects/tuki/widgets/user-manage/src/styles/styles.scss +110 -0
  227. package/projects/tuki/widgets/user-manage/src/styles/tables.scss +30 -0
  228. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.html +10 -0
  229. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.scss +429 -0
  230. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.ts +63 -0
  231. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.html +32 -0
  232. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.scss +444 -0
  233. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.ts +89 -0
  234. package/projects/tuki/widgets/user-manage/src/user-details/notification.service.ts +68 -0
  235. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.html +29 -0
  236. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.scss +64 -0
  237. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.ts +19 -0
  238. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.html +290 -0
  239. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.scss +463 -0
  240. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.ts +212 -0
  241. package/projects/tuki/widgets/user-manage/src/user-manage.module.ts +63 -0
  242. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.html +6 -0
  243. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.scss +11 -0
  244. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.ts +13 -0
  245. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.html +26 -0
  246. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.scss +41 -0
  247. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.ts +41 -0
  248. package/projects/tuki/widgets/users-list/ng-package.json +7 -0
  249. package/{users-list/public-api.d.ts → projects/tuki/widgets/users-list/public-api.ts} +8 -8
  250. package/projects/tuki/widgets/users-list/src/app.constants.ts +54 -0
  251. package/projects/tuki/widgets/users-list/src/assets/icons/close_icon_modal.svg +3 -0
  252. package/projects/tuki/widgets/users-list/src/assets/icons/icon_user.svg +1 -0
  253. package/projects/tuki/widgets/users-list/src/assets/icons/move_user_to_another_location.svg +14 -0
  254. package/projects/tuki/widgets/users-list/src/assets/icons/white-close-icon.svg +3 -0
  255. package/projects/tuki/widgets/users-list/src/classes/app-location.ts +36 -0
  256. package/projects/tuki/widgets/users-list/src/classes/device.ts +225 -0
  257. package/projects/tuki/widgets/users-list/src/classes/line.ts +144 -0
  258. package/projects/tuki/widgets/users-list/src/classes/move-user.ts +225 -0
  259. package/projects/tuki/widgets/users-list/src/classes/notification.ts +38 -0
  260. package/projects/tuki/widgets/users-list/src/classes/pagination.ts +18 -0
  261. package/projects/tuki/widgets/users-list/src/classes/simlified-user.ts +74 -0
  262. package/projects/tuki/widgets/users-list/src/classes/table-data.ts +6 -0
  263. package/projects/tuki/widgets/users-list/src/classes/user-interface.ts +225 -0
  264. package/projects/tuki/widgets/users-list/src/classes/user-list.ts +47 -0
  265. package/projects/tuki/widgets/users-list/src/classes/user.ts +8 -0
  266. package/projects/tuki/widgets/users-list/src/material.module.ts +94 -0
  267. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.html +37 -0
  268. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.scss +129 -0
  269. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.ts +46 -0
  270. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.html +31 -0
  271. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.scss +20 -0
  272. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.ts +26 -0
  273. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.html +222 -0
  274. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.scss +239 -0
  275. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.ts +206 -0
  276. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.html +12 -0
  277. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.scss +41 -0
  278. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.ts +36 -0
  279. package/projects/tuki/widgets/users-list/src/services/api-webex.service.ts +14 -0
  280. package/projects/tuki/widgets/users-list/src/services/api.service.ts +90 -0
  281. package/projects/tuki/widgets/users-list/src/services/dns.service.ts +128 -0
  282. package/projects/tuki/widgets/users-list/src/services/events-communication.service.ts +11 -0
  283. package/projects/tuki/widgets/users-list/src/services/move-user.service.ts +59 -0
  284. package/projects/tuki/widgets/users-list/src/services/notification.service.ts +68 -0
  285. package/projects/tuki/widgets/users-list/src/services/removeKynFromIBM.service.ts +25 -0
  286. package/projects/tuki/widgets/users-list/src/services/site-settings.service.ts +26 -0
  287. package/projects/tuki/widgets/users-list/src/services/user.service.ts +159 -0
  288. package/projects/tuki/widgets/users-list/src/services/users-search.service.ts +139 -0
  289. package/projects/tuki/widgets/users-list/src/styles/styles.scss +572 -0
  290. package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.html +15 -0
  291. package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.scss +103 -0
  292. package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.ts +35 -0
  293. package/projects/tuki/widgets/users-list/src/users-list.component.css +4 -0
  294. package/projects/tuki/widgets/users-list/src/users-list.component.css.map +1 -0
  295. package/projects/tuki/widgets/users-list/src/users-list.component.html +86 -0
  296. package/projects/tuki/widgets/users-list/src/users-list.component.scss +572 -0
  297. package/projects/tuki/widgets/users-list/src/users-list.component.ts +312 -0
  298. package/projects/tuki/widgets/users-list/src/users-list.module.ts +63 -0
  299. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css +11 -0
  300. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css.map +1 -0
  301. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.html +6 -0
  302. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.scss +11 -0
  303. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.ts +13 -0
  304. package/projects/tuki/widgets/users-list/src/utils/common-functions.ts +32 -0
  305. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.html +33 -0
  306. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.scss +84 -0
  307. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.ts +46 -0
  308. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css +45 -0
  309. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css.map +1 -0
  310. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.html +26 -0
  311. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.scss +41 -0
  312. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.ts +41 -0
  313. package/projects/tuki/widgets/users-list/src/utils/utils.service.ts +71 -0
  314. package/projects/widgets-playground/src/app/app.component.html +109 -0
  315. package/projects/widgets-playground/src/app/app.component.scss +15 -0
  316. package/projects/widgets-playground/src/app/app.component.spec.ts +31 -0
  317. package/projects/widgets-playground/src/app/app.component.ts +31 -0
  318. package/projects/widgets-playground/src/app/app.module.ts +43 -0
  319. package/projects/widgets-playground/src/assets/.gitkeep +0 -0
  320. package/projects/widgets-playground/src/assets/icons/already_upgraded.png +0 -0
  321. package/projects/widgets-playground/src/assets/icons/check2_icon.png +0 -0
  322. package/projects/widgets-playground/src/assets/icons/check_icon.png +0 -0
  323. package/projects/widgets-playground/src/assets/icons/expand_icon.png +0 -0
  324. package/projects/widgets-playground/src/assets/icons/issue_icon.png +0 -0
  325. package/projects/widgets-playground/src/assets/icons/menu_icon.png +0 -0
  326. package/projects/widgets-playground/src/assets/icons/ready_to_upgrade.png +0 -0
  327. package/projects/widgets-playground/src/assets/icons/search_icon.png +0 -0
  328. package/projects/widgets-playground/src/assets/icons/site.png +0 -0
  329. package/projects/widgets-playground/src/assets/icons/user.png +0 -0
  330. package/projects/widgets-playground/src/assets/icons/warning_icon.png +0 -0
  331. package/projects/widgets-playground/src/favicon.ico +0 -0
  332. package/projects/widgets-playground/src/index.html +13 -0
  333. package/projects/widgets-playground/src/main.ts +7 -0
  334. package/projects/widgets-playground/src/styles.scss +23 -0
  335. package/projects/widgets-playground/tsconfig.app.json +14 -0
  336. package/projects/widgets-playground/tsconfig.spec.json +14 -0
  337. package/proxy.conf.js +23 -0
  338. package/tsconfig.json +46 -0
  339. package/di2mt/api/api.endpoints.d.ts +0 -20
  340. package/di2mt/index.d.ts +0 -5
  341. package/di2mt/shared/components/card/card.component.d.ts +0 -6
  342. package/di2mt/shared/components/chart-card/chart-card.component.d.ts +0 -22
  343. package/di2mt/shared/components/stat-card/stat-card.component.d.ts +0 -14
  344. package/di2mt/shared/components/status-list-card/status-list-card.component.d.ts +0 -7
  345. package/di2mt/shared/components/summary-card/summary-card.component.d.ts +0 -9
  346. package/di2mt/shared/components/table-filters/table-filters.component.d.ts +0 -14
  347. package/di2mt/shared/material.module.d.ts +0 -15
  348. package/di2mt/shared/services/api.service.d.ts +0 -20
  349. package/di2mt/shared/shared.module.d.ts +0 -16
  350. package/di2mt/shared/types/constants.d.ts +0 -7
  351. package/di2mt/shared/types/data-table.d.ts +0 -5
  352. package/di2mt/shared/types/table/filter.d.ts +0 -16
  353. package/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.d.ts +0 -48
  354. package/di2mt/widgets/site-upgrade/site-upgrade.module.d.ts +0 -12
  355. package/di2mt/widgets/site-upgrade/site-upgrade.service.d.ts +0 -12
  356. package/di2mt/widgets/site-upgrade/types/user-upgrade.d.ts +0 -14
  357. package/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.d.ts +0 -19
  358. package/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.d.ts +0 -19
  359. package/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.d.ts +0 -18
  360. package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.d.ts +0 -19
  361. package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.d.ts +0 -19
  362. package/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.d.ts +0 -15
  363. package/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.d.ts +0 -18
  364. package/di2mt/widgets/upgrade-overview/upgrade-overview.module.d.ts +0 -15
  365. package/di2mt/widgets/upgrade-overview/upgrade-overview.service.d.ts +0 -17
  366. package/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.d.ts +0 -49
  367. package/di2mt/widgets/user-upgrade/user-upgrade.module.d.ts +0 -12
  368. package/di2mt/widgets/user-upgrade/user-upgrade.service.d.ts +0 -14
  369. package/esm2020/di2mt/api/api.endpoints.mjs +0 -21
  370. package/esm2020/di2mt/public-api.mjs +0 -23
  371. package/esm2020/di2mt/shared/components/card/card.component.mjs +0 -13
  372. package/esm2020/di2mt/shared/components/chart-card/chart-card.component.mjs +0 -62
  373. package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +0 -47
  374. package/esm2020/di2mt/shared/components/status-list-card/status-list-card.component.mjs +0 -17
  375. package/esm2020/di2mt/shared/components/summary-card/summary-card.component.mjs +0 -36
  376. package/esm2020/di2mt/shared/components/table-filters/table-filters.component.mjs +0 -37
  377. package/esm2020/di2mt/shared/material.module.mjs +0 -76
  378. package/esm2020/di2mt/shared/services/api.service.mjs +0 -86
  379. package/esm2020/di2mt/shared/shared.module.mjs +0 -61
  380. package/esm2020/di2mt/shared/types/constants.mjs +0 -12
  381. package/esm2020/di2mt/shared/types/data-table.mjs +0 -2
  382. package/esm2020/di2mt/shared/types/table/filter.mjs +0 -2
  383. package/esm2020/di2mt/tuki-io-tuki-widgets-di2mt.mjs +0 -5
  384. package/esm2020/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.mjs +0 -182
  385. package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.module.mjs +0 -40
  386. package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.service.mjs +0 -43
  387. package/esm2020/di2mt/widgets/site-upgrade/types/user-upgrade.mjs +0 -3
  388. package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.mjs +0 -64
  389. package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.mjs +0 -64
  390. package/esm2020/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.mjs +0 -68
  391. package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.mjs +0 -45
  392. package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.mjs +0 -45
  393. package/esm2020/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.mjs +0 -64
  394. package/esm2020/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.mjs +0 -74
  395. package/esm2020/di2mt/widgets/upgrade-overview/types/upgrade-overview.mjs +0 -2
  396. package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.module.mjs +0 -59
  397. package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.service.mjs +0 -82
  398. package/esm2020/di2mt/widgets/user-upgrade/types/user-upgrade.mjs +0 -3
  399. package/esm2020/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.mjs +0 -197
  400. package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.module.mjs +0 -40
  401. package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.service.mjs +0 -58
  402. package/esm2020/lib/widgets.component.mjs +0 -22
  403. package/esm2020/lib/widgets.module.mjs +0 -21
  404. package/esm2020/lib/widgets.service.mjs +0 -14
  405. package/esm2020/public-api.mjs +0 -7
  406. package/esm2020/tuki-io-tuki-widgets.mjs +0 -5
  407. package/esm2020/user-device-manage/public-api.mjs +0 -9
  408. package/esm2020/user-device-manage/src/app.constants.mjs +0 -95
  409. package/esm2020/user-device-manage/src/classes/device.mjs +0 -85
  410. package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +0 -2
  411. package/esm2020/user-device-manage/src/classes/line-association.mjs +0 -121
  412. package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +0 -10
  413. package/esm2020/user-device-manage/src/classes/line-directory.mjs +0 -27
  414. package/esm2020/user-device-manage/src/classes/line.mjs +0 -18
  415. package/esm2020/user-device-manage/src/classes/notification.mjs +0 -32
  416. package/esm2020/user-device-manage/src/classes/recording-options.mjs +0 -7
  417. package/esm2020/user-device-manage/src/classes/simplified-user.mjs +0 -111
  418. package/esm2020/user-device-manage/src/classes/site-defaults.mjs +0 -21
  419. package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +0 -32
  420. package/esm2020/user-device-manage/src/classes/types.mjs +0 -24
  421. package/esm2020/user-device-manage/src/common-functions.mjs +0 -19
  422. package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +0 -34
  423. package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +0 -31
  424. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +0 -16
  425. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +0 -64
  426. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +0 -179
  427. package/esm2020/user-device-manage/src/device-list/device-list.component.mjs +0 -24
  428. package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +0 -335
  429. package/esm2020/user-device-manage/src/environments/environment.mjs +0 -11
  430. package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +0 -36
  431. package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +0 -74
  432. package/esm2020/user-device-manage/src/material.module.mjs +0 -192
  433. package/esm2020/user-device-manage/src/notifications/notification.component.mjs +0 -35
  434. package/esm2020/user-device-manage/src/services/api.service.mjs +0 -79
  435. package/esm2020/user-device-manage/src/services/device.service.mjs +0 -83
  436. package/esm2020/user-device-manage/src/services/dns.service.mjs +0 -104
  437. package/esm2020/user-device-manage/src/services/line.service.mjs +0 -76
  438. package/esm2020/user-device-manage/src/services/notification.service.mjs +0 -62
  439. package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +0 -25
  440. package/esm2020/user-device-manage/src/services/site-settings.service.mjs +0 -70
  441. package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +0 -197
  442. package/esm2020/user-device-manage/src/services/user.service.mjs +0 -243
  443. package/esm2020/user-device-manage/src/services/utils.service.mjs +0 -87
  444. package/esm2020/user-device-manage/src/services/validation.service.mjs +0 -760
  445. package/esm2020/user-device-manage/src/user-device-manage.module.mjs +0 -107
  446. package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +0 -14
  447. package/esm2020/user-device-manage/tuki-io-tuki-widgets-user-device-manage.mjs +0 -5
  448. package/esm2020/user-manage/public-api.mjs +0 -7
  449. package/esm2020/user-manage/src/app.constants.mjs +0 -50
  450. package/esm2020/user-manage/src/classes/device.mjs +0 -37
  451. package/esm2020/user-manage/src/classes/line-association-interface.mjs +0 -2
  452. package/esm2020/user-manage/src/classes/line-association.mjs +0 -110
  453. package/esm2020/user-manage/src/classes/line-call-info-display.mjs +0 -10
  454. package/esm2020/user-manage/src/classes/line-directory.mjs +0 -27
  455. package/esm2020/user-manage/src/classes/line.mjs +0 -18
  456. package/esm2020/user-manage/src/classes/notification.mjs +0 -32
  457. package/esm2020/user-manage/src/classes/pagination.mjs +0 -8
  458. package/esm2020/user-manage/src/classes/recording-options.mjs +0 -7
  459. package/esm2020/user-manage/src/classes/simplified-user.mjs +0 -109
  460. package/esm2020/user-manage/src/classes/table-data.mjs +0 -2
  461. package/esm2020/user-manage/src/classes/translation-pattern.mjs +0 -32
  462. package/esm2020/user-manage/src/classes/user-list.mjs +0 -10
  463. package/esm2020/user-manage/src/common-functions.mjs +0 -19
  464. package/esm2020/user-manage/src/device-list/device-list.component.mjs +0 -24
  465. package/esm2020/user-manage/src/environments/environment.mjs +0 -11
  466. package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +0 -36
  467. package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +0 -74
  468. package/esm2020/user-manage/src/material.module.mjs +0 -188
  469. package/esm2020/user-manage/src/notifications/notification.component.mjs +0 -35
  470. package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +0 -25
  471. package/esm2020/user-manage/src/services/api.service.mjs +0 -79
  472. package/esm2020/user-manage/src/services/dns.service.mjs +0 -110
  473. package/esm2020/user-manage/src/services/line.service.mjs +0 -34
  474. package/esm2020/user-manage/src/services/notification.service.mjs +0 -62
  475. package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +0 -25
  476. package/esm2020/user-manage/src/services/site-settings.service.mjs +0 -36
  477. package/esm2020/user-manage/src/services/sorting-utils.service.mjs +0 -197
  478. package/esm2020/user-manage/src/services/user.service.mjs +0 -207
  479. package/esm2020/user-manage/src/services/users-search.service.mjs +0 -50
  480. package/esm2020/user-manage/src/services/utils.service.mjs +0 -73
  481. package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +0 -65
  482. package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +0 -78
  483. package/esm2020/user-manage/src/user-info/user-info.component.mjs +0 -20
  484. package/esm2020/user-manage/src/user-manage-widget.component.mjs +0 -208
  485. package/esm2020/user-manage/src/user-manage.module.mjs +0 -99
  486. package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +0 -14
  487. package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +0 -43
  488. package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +0 -5
  489. package/esm2020/users-list/public-api.mjs +0 -9
  490. package/esm2020/users-list/src/app.constants.mjs +0 -54
  491. package/esm2020/users-list/src/classes/app-location.mjs +0 -32
  492. package/esm2020/users-list/src/classes/device.mjs +0 -7
  493. package/esm2020/users-list/src/classes/line.mjs +0 -18
  494. package/esm2020/users-list/src/classes/move-user.mjs +0 -178
  495. package/esm2020/users-list/src/classes/notification.mjs +0 -31
  496. package/esm2020/users-list/src/classes/pagination.mjs +0 -8
  497. package/esm2020/users-list/src/classes/simlified-user.mjs +0 -50
  498. package/esm2020/users-list/src/classes/table-data.mjs +0 -2
  499. package/esm2020/users-list/src/classes/user-list.mjs +0 -14
  500. package/esm2020/users-list/src/material.module.mjs +0 -209
  501. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +0 -38
  502. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +0 -23
  503. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +0 -189
  504. package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +0 -38
  505. package/esm2020/users-list/src/services/api-webex.service.mjs +0 -18
  506. package/esm2020/users-list/src/services/api.service.mjs +0 -78
  507. package/esm2020/users-list/src/services/dns.service.mjs +0 -120
  508. package/esm2020/users-list/src/services/events-communication.service.mjs +0 -14
  509. package/esm2020/users-list/src/services/move-user.service.mjs +0 -53
  510. package/esm2020/users-list/src/services/notification.service.mjs +0 -62
  511. package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +0 -25
  512. package/esm2020/users-list/src/services/site-settings.service.mjs +0 -27
  513. package/esm2020/users-list/src/services/user.service.mjs +0 -142
  514. package/esm2020/users-list/src/services/users-search.service.mjs +0 -122
  515. package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +0 -34
  516. package/esm2020/users-list/src/users-list.component.mjs +0 -287
  517. package/esm2020/users-list/src/users-list.module.mjs +0 -92
  518. package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +0 -14
  519. package/esm2020/users-list/src/utils/common-functions.mjs +0 -32
  520. package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +0 -43
  521. package/esm2020/users-list/src/utils/utils.service.mjs +0 -73
  522. package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +0 -5
  523. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +0 -1469
  524. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +0 -1
  525. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +0 -3402
  526. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +0 -1
  527. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +0 -2124
  528. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +0 -1
  529. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +0 -1994
  530. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +0 -1
  531. package/fesm2015/tuki-io-tuki-widgets.mjs +0 -63
  532. package/fesm2015/tuki-io-tuki-widgets.mjs.map +0 -1
  533. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +0 -1460
  534. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +0 -1
  535. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +0 -3364
  536. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +0 -1
  537. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +0 -2107
  538. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +0 -1
  539. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +0 -1973
  540. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +0 -1
  541. package/fesm2020/tuki-io-tuki-widgets.mjs +0 -63
  542. package/fesm2020/tuki-io-tuki-widgets.mjs.map +0 -1
  543. package/index.d.ts +0 -5
  544. package/lib/widgets.component.d.ts +0 -8
  545. package/lib/widgets.module.d.ts +0 -7
  546. package/lib/widgets.service.d.ts +0 -6
  547. package/user-device-manage/index.d.ts +0 -5
  548. package/user-device-manage/src/app.constants.d.ts +0 -74
  549. package/user-device-manage/src/classes/device.d.ts +0 -233
  550. package/user-device-manage/src/classes/line-association-interface.d.ts +0 -45
  551. package/user-device-manage/src/classes/line-association.d.ts +0 -62
  552. package/user-device-manage/src/classes/line-call-info-display.d.ts +0 -11
  553. package/user-device-manage/src/classes/line-directory.d.ts +0 -15
  554. package/user-device-manage/src/classes/line.d.ts +0 -140
  555. package/user-device-manage/src/classes/notification.d.ts +0 -18
  556. package/user-device-manage/src/classes/recording-options.d.ts +0 -5
  557. package/user-device-manage/src/classes/simplified-user.d.ts +0 -52
  558. package/user-device-manage/src/classes/site-defaults.d.ts +0 -146
  559. package/user-device-manage/src/classes/translation-pattern.d.ts +0 -19
  560. package/user-device-manage/src/classes/types.d.ts +0 -19
  561. package/user-device-manage/src/common-functions.d.ts +0 -1
  562. package/user-device-manage/src/confirm-dialog/info-dialog.component.d.ts +0 -20
  563. package/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.d.ts +0 -15
  564. package/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.d.ts +0 -7
  565. package/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.d.ts +0 -24
  566. package/user-device-manage/src/device-associated-line/device-associated-line.component.d.ts +0 -89
  567. package/user-device-manage/src/device-list/device-list.component.d.ts +0 -11
  568. package/user-device-manage/src/device-manage-widget.component.d.ts +0 -71
  569. package/user-device-manage/src/environments/environment.d.ts +0 -9
  570. package/user-device-manage/src/interseptors/auth.interceptor.d.ts +0 -9
  571. package/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +0 -35
  572. package/user-device-manage/src/material.module.d.ts +0 -29
  573. package/user-device-manage/src/notifications/notification.component.d.ts +0 -19
  574. package/user-device-manage/src/services/api.service.d.ts +0 -20
  575. package/user-device-manage/src/services/device.service.d.ts +0 -21
  576. package/user-device-manage/src/services/dns.service.d.ts +0 -14
  577. package/user-device-manage/src/services/line.service.d.ts +0 -33
  578. package/user-device-manage/src/services/notification.service.d.ts +0 -18
  579. package/user-device-manage/src/services/removeKynFromIBM.service.d.ts +0 -8
  580. package/user-device-manage/src/services/site-settings.service.d.ts +0 -25
  581. package/user-device-manage/src/services/sorting-utils.service.d.ts +0 -26
  582. package/user-device-manage/src/services/user.service.d.ts +0 -51
  583. package/user-device-manage/src/services/utils.service.d.ts +0 -10
  584. package/user-device-manage/src/services/validation.service.d.ts +0 -165
  585. package/user-device-manage/src/user-device-manage.module.d.ts +0 -22
  586. package/user-device-manage/src/utils/app-loader/app-loader.d.ts +0 -6
  587. package/user-manage/index.d.ts +0 -5
  588. package/user-manage/src/app.constants.d.ts +0 -29
  589. package/user-manage/src/classes/device.d.ts +0 -203
  590. package/user-manage/src/classes/line-association-interface.d.ts +0 -40
  591. package/user-manage/src/classes/line-association.d.ts +0 -55
  592. package/user-manage/src/classes/line-call-info-display.d.ts +0 -11
  593. package/user-manage/src/classes/line-directory.d.ts +0 -16
  594. package/user-manage/src/classes/line.d.ts +0 -140
  595. package/user-manage/src/classes/notification.d.ts +0 -18
  596. package/user-manage/src/classes/pagination.d.ts +0 -13
  597. package/user-manage/src/classes/recording-options.d.ts +0 -5
  598. package/user-manage/src/classes/simplified-user.d.ts +0 -50
  599. package/user-manage/src/classes/table-data.d.ts +0 -5
  600. package/user-manage/src/classes/translation-pattern.d.ts +0 -18
  601. package/user-manage/src/classes/user-list.d.ts +0 -34
  602. package/user-manage/src/common-functions.d.ts +0 -1
  603. package/user-manage/src/device-list/device-list.component.d.ts +0 -11
  604. package/user-manage/src/environments/environment.d.ts +0 -9
  605. package/user-manage/src/interseptors/auth.interceptor.d.ts +0 -9
  606. package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +0 -35
  607. package/user-manage/src/material.module.d.ts +0 -28
  608. package/user-manage/src/notifications/notification.component.d.ts +0 -19
  609. package/user-manage/src/removeKynFromIBM.service.d.ts +0 -8
  610. package/user-manage/src/services/api.service.d.ts +0 -21
  611. package/user-manage/src/services/dns.service.d.ts +0 -14
  612. package/user-manage/src/services/line.service.d.ts +0 -17
  613. package/user-manage/src/services/notification.service.d.ts +0 -18
  614. package/user-manage/src/services/removeKynFromIBM.service.d.ts +0 -8
  615. package/user-manage/src/services/site-settings.service.d.ts +0 -9
  616. package/user-manage/src/services/sorting-utils.service.d.ts +0 -26
  617. package/user-manage/src/services/user.service.d.ts +0 -43
  618. package/user-manage/src/services/users-search.service.d.ts +0 -25
  619. package/user-manage/src/services/utils.service.d.ts +0 -9
  620. package/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.d.ts +0 -24
  621. package/user-manage/src/user-calling/user-calling.component.d.ts +0 -30
  622. package/user-manage/src/user-info/user-info.component.d.ts +0 -9
  623. package/user-manage/src/user-manage-widget.component.d.ts +0 -45
  624. package/user-manage/src/user-manage.module.d.ts +0 -21
  625. package/user-manage/src/utils/app-loader/app-loader.d.ts +0 -6
  626. package/user-manage/src/utils/pagination/pagination.component.d.ts +0 -18
  627. package/users-list/index.d.ts +0 -5
  628. package/users-list/src/app.constants.d.ts +0 -36
  629. package/users-list/src/classes/app-location.d.ts +0 -17
  630. package/users-list/src/classes/device.d.ts +0 -224
  631. package/users-list/src/classes/line.d.ts +0 -140
  632. package/users-list/src/classes/move-user.d.ts +0 -85
  633. package/users-list/src/classes/notification.d.ts +0 -18
  634. package/users-list/src/classes/pagination.d.ts +0 -13
  635. package/users-list/src/classes/simlified-user.d.ts +0 -25
  636. package/users-list/src/classes/table-data.d.ts +0 -5
  637. package/users-list/src/classes/user-list.d.ts +0 -36
  638. package/users-list/src/material.module.d.ts +0 -31
  639. package/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.d.ts +0 -21
  640. package/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.d.ts +0 -12
  641. package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +0 -55
  642. package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +0 -17
  643. package/users-list/src/services/api-webex.service.d.ts +0 -8
  644. package/users-list/src/services/api.service.d.ts +0 -21
  645. package/users-list/src/services/dns.service.d.ts +0 -18
  646. package/users-list/src/services/events-communication.service.d.ts +0 -8
  647. package/users-list/src/services/move-user.service.d.ts +0 -17
  648. package/users-list/src/services/notification.service.d.ts +0 -18
  649. package/users-list/src/services/removeKynFromIBM.service.d.ts +0 -8
  650. package/users-list/src/services/site-settings.service.d.ts +0 -11
  651. package/users-list/src/services/user.service.d.ts +0 -35
  652. package/users-list/src/services/users-search.service.d.ts +0 -34
  653. package/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.d.ts +0 -20
  654. package/users-list/src/users-list.component.d.ts +0 -60
  655. package/users-list/src/users-list.module.d.ts +0 -18
  656. package/users-list/src/utils/app-loader/app-loader.d.ts +0 -6
  657. package/users-list/src/utils/common-functions.d.ts +0 -2
  658. package/users-list/src/utils/pagination/pagination.component.d.ts +0 -18
  659. package/users-list/src/utils/utils.service.d.ts +0 -9
  660. /package/{di2mt → projects/tuki/widgets/di2mt}/README.md +0 -0
@@ -1,65 +0,0 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "../../services/user.service";
4
- import * as i2 from "../../services/dns.service";
5
- import * as i3 from "@angular/common";
6
- import * as i4 from "@angular/forms";
7
- import * as i5 from "@angular/material/progress-spinner";
8
- import * as i6 from "@angular/material/form-field";
9
- import * as i7 from "@angular/material/core";
10
- import * as i8 from "@angular/material/select";
11
- export class UserCallingExtensionComponent {
12
- get user() {
13
- return this.userService.user;
14
- }
15
- get availableNumbers() {
16
- // @ts-ignore
17
- return this.routePartition && this.dnsService.availableNumbers ? this.dnsService.availableNumbers[this.routePartition] : null;
18
- }
19
- constructor(userService, dnsService) {
20
- this.userService = userService;
21
- this.dnsService = dnsService;
22
- this.onChange = new EventEmitter();
23
- }
24
- ngOnInit() {
25
- this.getData();
26
- }
27
- onChangeField(event) {
28
- // if (!token) {
29
- // return;
30
- // }
31
- // (this.userService.user as any)[token] = this.form?.get(token)?.value;
32
- this.onChange.emit(event?.value);
33
- }
34
- getData() {
35
- if (!this.siteId || !this.routePartition) {
36
- return;
37
- }
38
- this.dataPending = true;
39
- this.dnsService.getNumberRange(String(this.siteId), this.routePartition)
40
- .subscribe(() => {
41
- if (this.availableNumbers) {
42
- // @ts-ignore
43
- this.dnsService.availableNumbers[this.routePartition].push(this.directoryNumber);
44
- }
45
- this.dataPending = false;
46
- });
47
- }
48
- }
49
- UserCallingExtensionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserCallingExtensionComponent, deps: [{ token: i1.UserService }, { token: i2.DnsService }], target: i0.ɵɵFactoryTarget.Component });
50
- UserCallingExtensionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: UserCallingExtensionComponent, selector: "app-user-calling-extension", inputs: { control: "control", routePartition: "routePartition", directoryNumber: "directoryNumber", siteId: "siteId" }, outputs: { onChange: "onChange" }, ngImport: i0, template: "<div *ngIf=\"this.availableNumbers?.length\" class=\"user-calling-extension\">\n <mat-form-field appearance=\"outline\">\n <mat-select [formControl]=\"control\" name=\"extension\"\n (selectionChange)=\"this.onChangeField($event)\">\n <mat-option *ngFor=\"let option of this.availableNumbers; let i = index;\"[value]=\"option\">{{option}}</mat-option>\n </mat-select>\n </mat-form-field>\n\n <mat-spinner *ngIf=\"this.dataPending\" [diameter]=\"50\"></mat-spinner>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css?family=Poppins:400,100,200,300,500,600,800,700,900\";.user-calling-extension{max-width:200px;margin:0 0 0 6px}.fa:hover{color:#0d56aa!important}.mat-icon-button{background:transparent}.icon-webex-box{width:2rem;height:2rem;font-size:.7rem;line-height:1rem;display:inline-block;background:#d0d0d0;border-radius:2rem;line-height:40px;text-align:center}.icon-webex{filter:invert(12%) sepia(14%) saturate(4%) hue-rotate(354deg) brightness(103%) contrast(90%);background-repeat:no-repeat;background-position:center;display:inline-block;height:1rem;width:1rem}.icon-webex-user{background-image:url(\"data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22a%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 16.67 15.56%22%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill%3Anone%3Bstroke%3A%232c355d%3Bstroke-width%3A1.4px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath class%3D%22b%22 d%3D%22M4.87%2C3.89c0-1.72%2C1.51-3.19%2C3.47-3.19s3.47%2C1.47%2C3.47%2C3.19-1.51%2C3.19-3.47%2C3.19-3.47-1.47-3.47-3.19ZM.7%2C12.64c0-.37%2C.19-.76%2C.67-1.17%2C.48-.41%2C1.17-.78%2C2-1.09%2C1.66-.62%2C3.66-.93%2C4.97-.93s3.31%2C.31%2C4.97%2C.93c.83%2C.31%2C1.52%2C.68%2C2%2C1.09%2C.47%2C.41%2C.67%2C.8%2C.67%2C1.17v2.22H.7v-2.22Z%22%2F%3E%3C%2Fsvg%3E\")}.icon-user-status{display:inline-block}*{margin:0}body{background:#f7f7f7}body,th,td{font-family:Poppins,Poppins,sans-serif;font-size:14px}th{color:#0000008a;text-align:left}td{box-sizing:border-box;padding:10px 5px 10px 0}.content-box{margin:auto;position:relative;width:95%}.content-box table{width:100%}.edit-icon-td{width:50px;position:relative}.edit-icon-td button{position:absolute;top:4px}.mat-progress-spinner circle,.mat-spinner circle{stroke:gray!important}.data-loader{position:absolute;top:calc(50% - 25px);left:calc(50% - 25px)}.flex-box{display:flex;justify-content:flex-start}.spinner-container{width:100%;display:flex;justify-content:center;align-items:center}.spinner-container ::ng-deep .mat-progress-spinner circle,.mat-spinner circle{stroke:#000}.user-info-box{background:white;display:grid;grid-template-columns:30% 70%;border-radius:8px;border:rgba(0,0,0,.2) 1px solid;padding:24px;font-weight:400;font-size:14px}.user-info-box h3{display:block;font-weight:500;font-size:16px}.mat-divider{margin:5px 0!important}.info-boxes-container{padding:24px 0;display:flex;flex-direction:column;gap:24px}.header-box{height:60px;width:100%;line-height:60px;background:white;border-bottom:1px solid #dedddd}.header-box .header-back-block{float:left}.header-box .header-button-block{float:right}.webex-table{width:100%;margin:auto}.webex-table tr{border-bottom:1px solid #dedede}.webex-table th{background:#f7f7f7;color:#636363;font-size:12px}.webex-table td{background:#fff;color:#636363;font-size:14px}.webex-table tr:hover td{background:#ededed;cursor:pointer}.webex-table th.mat-header-cell,.webex-table td.mat-cell,.webex-table td.mat-footer-cell{border-bottom:1px solid #dedede}.webex-table tr.mat-header-row{height:37px}.mat-form-field{padding:0 0 5px;width:93%}.mat-form-field.mat-form-field-disabled{border-bottom:none}.mat-error{color:#c73636;margin:13px 0 0}.select-box{border-radius:30px;background:#F3F6F6;border:1px solid #E2E9EF;height:35px;position:relative}.select-box select{border:none!important;background:transparent;height:100%;width:92%;margin:auto;display:block}option:focus,option:focus-visible{border:none!important;outline:none!important}option{height:30px;cursor:pointer;color:#636363}option:hover{background:#ededed!important}.mat-select{height:100%!important}.info-holder,.input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__name,.input-holder__name{font-weight:500!important;font-size:14px!important}.info-holder__inputs .input-holder,.input-holder__inputs .input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__inputs .input-holder__name,.input-holder__inputs .input-holder__name{font-weight:400!important;font-size:14px!important}table{border-collapse:collapse;border-spacing:0}.mat-form-field-appearance-outline .mat-form-field-infix{padding:0!important}.mat-divider{margin:12px 0}::ng-deep .mat-form-field-wrapper{height:30px}::ng-deep .mat-form-field-flex{height:30px}::ng-deep .mat-form-field-appearance-outline .mat-form-field-outline{height:35px}:ng-deep .mat-form-field-outline .mat-form-field-outline-thick{height:35px}::ng-deep .mat-select{line-height:20px}::ng-deep .mat-form-field-infix{border-top:0px!important}::ng-deep .mat-tab-group{font-family:Inter,sans-serif}::ng-deep .mat-tab-label{font-weight:500!important;font-size:16px!important;height:auto!important;min-width:auto!important;padding:0!important;opacity:1!important;color:#000!important}::ng-deep .mat-ink-bar{background-color:#000!important;height:3px!important}::ng-deep .mat-tab-labels{gap:30px}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i5.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "diameter", "strokeWidth", "mode", "value"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: i6.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "component", type: i7.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "component", type: i8.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }] });
51
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserCallingExtensionComponent, decorators: [{
52
- type: Component,
53
- args: [{ selector: 'app-user-calling-extension', template: "<div *ngIf=\"this.availableNumbers?.length\" class=\"user-calling-extension\">\n <mat-form-field appearance=\"outline\">\n <mat-select [formControl]=\"control\" name=\"extension\"\n (selectionChange)=\"this.onChangeField($event)\">\n <mat-option *ngFor=\"let option of this.availableNumbers; let i = index;\"[value]=\"option\">{{option}}</mat-option>\n </mat-select>\n </mat-form-field>\n\n <mat-spinner *ngIf=\"this.dataPending\" [diameter]=\"50\"></mat-spinner>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css?family=Poppins:400,100,200,300,500,600,800,700,900\";.user-calling-extension{max-width:200px;margin:0 0 0 6px}.fa:hover{color:#0d56aa!important}.mat-icon-button{background:transparent}.icon-webex-box{width:2rem;height:2rem;font-size:.7rem;line-height:1rem;display:inline-block;background:#d0d0d0;border-radius:2rem;line-height:40px;text-align:center}.icon-webex{filter:invert(12%) sepia(14%) saturate(4%) hue-rotate(354deg) brightness(103%) contrast(90%);background-repeat:no-repeat;background-position:center;display:inline-block;height:1rem;width:1rem}.icon-webex-user{background-image:url(\"data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22a%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 16.67 15.56%22%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill%3Anone%3Bstroke%3A%232c355d%3Bstroke-width%3A1.4px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath class%3D%22b%22 d%3D%22M4.87%2C3.89c0-1.72%2C1.51-3.19%2C3.47-3.19s3.47%2C1.47%2C3.47%2C3.19-1.51%2C3.19-3.47%2C3.19-3.47-1.47-3.47-3.19ZM.7%2C12.64c0-.37%2C.19-.76%2C.67-1.17%2C.48-.41%2C1.17-.78%2C2-1.09%2C1.66-.62%2C3.66-.93%2C4.97-.93s3.31%2C.31%2C4.97%2C.93c.83%2C.31%2C1.52%2C.68%2C2%2C1.09%2C.47%2C.41%2C.67%2C.8%2C.67%2C1.17v2.22H.7v-2.22Z%22%2F%3E%3C%2Fsvg%3E\")}.icon-user-status{display:inline-block}*{margin:0}body{background:#f7f7f7}body,th,td{font-family:Poppins,Poppins,sans-serif;font-size:14px}th{color:#0000008a;text-align:left}td{box-sizing:border-box;padding:10px 5px 10px 0}.content-box{margin:auto;position:relative;width:95%}.content-box table{width:100%}.edit-icon-td{width:50px;position:relative}.edit-icon-td button{position:absolute;top:4px}.mat-progress-spinner circle,.mat-spinner circle{stroke:gray!important}.data-loader{position:absolute;top:calc(50% - 25px);left:calc(50% - 25px)}.flex-box{display:flex;justify-content:flex-start}.spinner-container{width:100%;display:flex;justify-content:center;align-items:center}.spinner-container ::ng-deep .mat-progress-spinner circle,.mat-spinner circle{stroke:#000}.user-info-box{background:white;display:grid;grid-template-columns:30% 70%;border-radius:8px;border:rgba(0,0,0,.2) 1px solid;padding:24px;font-weight:400;font-size:14px}.user-info-box h3{display:block;font-weight:500;font-size:16px}.mat-divider{margin:5px 0!important}.info-boxes-container{padding:24px 0;display:flex;flex-direction:column;gap:24px}.header-box{height:60px;width:100%;line-height:60px;background:white;border-bottom:1px solid #dedddd}.header-box .header-back-block{float:left}.header-box .header-button-block{float:right}.webex-table{width:100%;margin:auto}.webex-table tr{border-bottom:1px solid #dedede}.webex-table th{background:#f7f7f7;color:#636363;font-size:12px}.webex-table td{background:#fff;color:#636363;font-size:14px}.webex-table tr:hover td{background:#ededed;cursor:pointer}.webex-table th.mat-header-cell,.webex-table td.mat-cell,.webex-table td.mat-footer-cell{border-bottom:1px solid #dedede}.webex-table tr.mat-header-row{height:37px}.mat-form-field{padding:0 0 5px;width:93%}.mat-form-field.mat-form-field-disabled{border-bottom:none}.mat-error{color:#c73636;margin:13px 0 0}.select-box{border-radius:30px;background:#F3F6F6;border:1px solid #E2E9EF;height:35px;position:relative}.select-box select{border:none!important;background:transparent;height:100%;width:92%;margin:auto;display:block}option:focus,option:focus-visible{border:none!important;outline:none!important}option{height:30px;cursor:pointer;color:#636363}option:hover{background:#ededed!important}.mat-select{height:100%!important}.info-holder,.input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__name,.input-holder__name{font-weight:500!important;font-size:14px!important}.info-holder__inputs .input-holder,.input-holder__inputs .input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__inputs .input-holder__name,.input-holder__inputs .input-holder__name{font-weight:400!important;font-size:14px!important}table{border-collapse:collapse;border-spacing:0}.mat-form-field-appearance-outline .mat-form-field-infix{padding:0!important}.mat-divider{margin:12px 0}::ng-deep .mat-form-field-wrapper{height:30px}::ng-deep .mat-form-field-flex{height:30px}::ng-deep .mat-form-field-appearance-outline .mat-form-field-outline{height:35px}:ng-deep .mat-form-field-outline .mat-form-field-outline-thick{height:35px}::ng-deep .mat-select{line-height:20px}::ng-deep .mat-form-field-infix{border-top:0px!important}::ng-deep .mat-tab-group{font-family:Inter,sans-serif}::ng-deep .mat-tab-label{font-weight:500!important;font-size:16px!important;height:auto!important;min-width:auto!important;padding:0!important;opacity:1!important;color:#000!important}::ng-deep .mat-ink-bar{background-color:#000!important;height:3px!important}::ng-deep .mat-tab-labels{gap:30px}\n"] }]
54
- }], ctorParameters: function () { return [{ type: i1.UserService }, { type: i2.DnsService }]; }, propDecorators: { control: [{
55
- type: Input
56
- }], routePartition: [{
57
- type: Input
58
- }], directoryNumber: [{
59
- type: Input
60
- }], siteId: [{
61
- type: Input
62
- }], onChange: [{
63
- type: Output
64
- }] } });
65
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1jYWxsaW5nLWV4dGVuc2lvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dWtpL3dpZGdldHMvdXNlci1tYW5hZ2Uvc3JjL3VzZXItY2FsbGluZy91c2VyLWNhbGxpbmctZXh0ZW5zaW9uL3VzZXItY2FsbGluZy1leHRlbnNpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVraS93aWRnZXRzL3VzZXItbWFuYWdlL3NyYy91c2VyLWNhbGxpbmcvdXNlci1jYWxsaW5nLWV4dGVuc2lvbi91c2VyLWNhbGxpbmctZXh0ZW5zaW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7Ozs7Ozs7QUFXL0UsTUFBTSxPQUFPLDZCQUE2QjtJQVF4QyxJQUFJLElBQUk7UUFDTixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDO0lBQy9CLENBQUM7SUFFRCxJQUFJLGdCQUFnQjtRQUNsQixhQUFhO1FBQ2IsT0FBTyxJQUFJLENBQUMsY0FBYyxJQUFJLElBQUksQ0FBQyxVQUFVLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDaEksQ0FBQztJQUdELFlBQ1MsV0FBd0IsRUFDdkIsVUFBc0I7UUFEdkIsZ0JBQVcsR0FBWCxXQUFXLENBQWE7UUFDdkIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQWZ0QixhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztJQWlCaEQsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDakIsQ0FBQztJQUVNLGFBQWEsQ0FBQyxLQUFVO1FBQzdCLGdCQUFnQjtRQUNoQixZQUFZO1FBQ1osSUFBSTtRQUNKLHdFQUF3RTtRQUN4RSxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsS0FBSyxDQUFDLENBQUM7SUFFbkMsQ0FBQztJQUVPLE9BQU87UUFDYixJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sSUFBSSxDQUFDLElBQUksQ0FBQyxjQUFjLEVBQUU7WUFDeEMsT0FBTztTQUNSO1FBQ0QsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7UUFDeEIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRSxJQUFJLENBQUMsY0FBYyxDQUFDO2FBQ3JFLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLElBQUksQ0FBQyxnQkFBZ0IsRUFBRTtnQkFDekIsYUFBYTtnQkFDYixJQUFJLENBQUMsVUFBVSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDO2FBQ2xGO1lBQ0QsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDM0IsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDOzsySEFsRFUsNkJBQTZCOytHQUE3Qiw2QkFBNkIsNk5DWDFDLHdmQVVBOzRGRENhLDZCQUE2QjtrQkFMekMsU0FBUzsrQkFDRSw0QkFBNEI7MkhBSzdCLE9BQU87c0JBQWYsS0FBSztnQkFDRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLGVBQWU7c0JBQXZCLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNJLFFBQVE7c0JBQWpCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IFNpbXBsaWZpZWRVc2VyIH0gZnJvbSAnLi4vLi4vY2xhc3Nlcy9zaW1wbGlmaWVkLXVzZXInO1xuaW1wb3J0IHsgVXNlclNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy91c2VyLnNlcnZpY2UnO1xuaW1wb3J0IHsgRG5zU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2Rucy5zZXJ2aWNlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLXVzZXItY2FsbGluZy1leHRlbnNpb24nLFxuICB0ZW1wbGF0ZVVybDogJy4vdXNlci1jYWxsaW5nLWV4dGVuc2lvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3VzZXItY2FsbGluZy1leHRlbnNpb24uY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgVXNlckNhbGxpbmdFeHRlbnNpb25Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2w7XG4gIEBJbnB1dCgpIHJvdXRlUGFydGl0aW9uITogc3RyaW5nO1xuICBASW5wdXQoKSBkaXJlY3RvcnlOdW1iZXIhOiBzdHJpbmc7XG4gIEBJbnB1dCgpIHNpdGVJZCE6IG51bWJlcjtcbiAgQE91dHB1dCgpIG9uQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG4gIHB1YmxpYyBkYXRhUGVuZGluZyE6IGJvb2xlYW47XG5cbiAgZ2V0IHVzZXIoKTogU2ltcGxpZmllZFVzZXIge1xuICAgIHJldHVybiB0aGlzLnVzZXJTZXJ2aWNlLnVzZXI7XG4gIH1cblxuICBnZXQgYXZhaWxhYmxlTnVtYmVycygpOiBhbnkge1xuICAgIC8vIEB0cy1pZ25vcmVcbiAgICByZXR1cm4gdGhpcy5yb3V0ZVBhcnRpdGlvbiAmJiB0aGlzLmRuc1NlcnZpY2UuYXZhaWxhYmxlTnVtYmVycyA/IHRoaXMuZG5zU2VydmljZS5hdmFpbGFibGVOdW1iZXJzW3RoaXMucm91dGVQYXJ0aXRpb25dIDogbnVsbDtcbiAgfVxuXG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHVibGljIHVzZXJTZXJ2aWNlOiBVc2VyU2VydmljZSxcbiAgICBwcml2YXRlIGRuc1NlcnZpY2U6IERuc1NlcnZpY2VcbiAgKSB7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmdldERhdGEoKTtcbiAgfVxuXG4gIHB1YmxpYyBvbkNoYW5nZUZpZWxkKGV2ZW50OiBhbnkpOiB2b2lkIHtcbiAgICAvLyBpZiAoIXRva2VuKSB7XG4gICAgLy8gICByZXR1cm47XG4gICAgLy8gfVxuICAgIC8vICh0aGlzLnVzZXJTZXJ2aWNlLnVzZXIgYXMgYW55KVt0b2tlbl0gPSB0aGlzLmZvcm0/LmdldCh0b2tlbik/LnZhbHVlO1xuICAgIHRoaXMub25DaGFuZ2UuZW1pdChldmVudD8udmFsdWUpO1xuXG4gIH1cblxuICBwcml2YXRlIGdldERhdGEoKSB7XG4gICAgaWYgKCF0aGlzLnNpdGVJZCB8fCAhdGhpcy5yb3V0ZVBhcnRpdGlvbikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cbiAgICB0aGlzLmRhdGFQZW5kaW5nID0gdHJ1ZTtcbiAgICB0aGlzLmRuc1NlcnZpY2UuZ2V0TnVtYmVyUmFuZ2UoU3RyaW5nKHRoaXMuc2l0ZUlkKSwgdGhpcy5yb3V0ZVBhcnRpdGlvbilcbiAgICAgIC5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICBpZiAodGhpcy5hdmFpbGFibGVOdW1iZXJzKSB7XG4gICAgICAgICAgLy8gQHRzLWlnbm9yZVxuICAgICAgICAgIHRoaXMuZG5zU2VydmljZS5hdmFpbGFibGVOdW1iZXJzW3RoaXMucm91dGVQYXJ0aXRpb25dLnB1c2godGhpcy5kaXJlY3RvcnlOdW1iZXIpO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuZGF0YVBlbmRpbmcgPSBmYWxzZTtcbiAgICAgIH0pO1xuICB9XG59XG4iLCI8ZGl2ICpuZ0lmPVwidGhpcy5hdmFpbGFibGVOdW1iZXJzPy5sZW5ndGhcIiBjbGFzcz1cInVzZXItY2FsbGluZy1leHRlbnNpb25cIj5cbiAgPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJvdXRsaW5lXCI+XG4gICAgPG1hdC1zZWxlY3QgW2Zvcm1Db250cm9sXT1cImNvbnRyb2xcIiBuYW1lPVwiZXh0ZW5zaW9uXCJcbiAgICAgICAgICAgICAgICAoc2VsZWN0aW9uQ2hhbmdlKT1cInRoaXMub25DaGFuZ2VGaWVsZCgkZXZlbnQpXCI+XG4gICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgb3B0aW9uIG9mIHRoaXMuYXZhaWxhYmxlTnVtYmVyczsgbGV0IGkgPSBpbmRleDtcIlt2YWx1ZV09XCJvcHRpb25cIj57e29wdGlvbn19PC9tYXQtb3B0aW9uPlxuICAgIDwvbWF0LXNlbGVjdD5cbiAgPC9tYXQtZm9ybS1maWVsZD5cblxuICA8bWF0LXNwaW5uZXIgKm5nSWY9XCJ0aGlzLmRhdGFQZW5kaW5nXCIgW2RpYW1ldGVyXT1cIjUwXCI+PC9tYXQtc3Bpbm5lcj5cbjwvZGl2PlxuIl19
@@ -1,78 +0,0 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "../services/user.service";
4
- import * as i2 from "../services/dns.service";
5
- import * as i3 from "@angular/common";
6
- import * as i4 from "@angular/forms";
7
- import * as i5 from "./user-calling-extension/user-calling-extension.component";
8
- export class UserCallingComponent {
9
- get form() {
10
- return this.userService?.user?.devices[0] && this.userService?.user?.devices[0].lineAssociations[0].form;
11
- }
12
- get formControl() {
13
- const control = this.form?.get('directoryNumber');
14
- return control;
15
- }
16
- get lineAssociation() {
17
- return this.userService?.user?.devices[0].lineAssociations[0];
18
- }
19
- get user() {
20
- return this.userService.user;
21
- }
22
- constructor(userService, dnsService) {
23
- this.userService = userService;
24
- this.dnsService = dnsService;
25
- this.onExtensionChange = new EventEmitter();
26
- }
27
- ngOnInit() {
28
- // this.getData();
29
- }
30
- onDirectoryNumberChange(value) {
31
- if (this.lineAssociation && this.lineAssociation.directoryNumber) {
32
- // @ts-ignore
33
- this.userService.user.devices[0].lineAssociations[0].directoryNumber.directoryNumber = value;
34
- this.onExtensionChange.next(true);
35
- }
36
- }
37
- onChangeField(token) {
38
- if (!token) {
39
- return;
40
- }
41
- this.userService.user[token] = this.form?.get(token)?.value;
42
- }
43
- toggleEditMode() {
44
- this.userService.user.toggleEditMode();
45
- }
46
- isSavingDisabled() {
47
- return !this.userService.hasUnsavedChanges() || this.userService.hasExistedUserId;
48
- }
49
- onChangeExtension(value) {
50
- if (this.lineAssociation && this.lineAssociation.directoryNumber) {
51
- // @ts-ignore
52
- this.userService.user.devices[0].lineAssociations[0].directoryNumber.directoryNumber = value;
53
- }
54
- }
55
- getData() {
56
- this.dataPending = true;
57
- this.dnsService.getNumberRange(String(this.siteId), this.userId)
58
- .subscribe({
59
- complete: (v) => {
60
- this.dataPending = false;
61
- },
62
- error: (e) => this.dataPending = false,
63
- });
64
- }
65
- }
66
- UserCallingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserCallingComponent, deps: [{ token: i1.UserService }, { token: i2.DnsService }], target: i0.ɵɵFactoryTarget.Component });
67
- UserCallingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: UserCallingComponent, selector: "app-user-calling", inputs: { siteId: "siteId", userId: "userId" }, outputs: { onExtensionChange: "onExtensionChange" }, ngImport: i0, template: "<div id=\"user-calling\" class=\"info-boxes-container\" *ngIf=\"siteId && lineAssociation && form\" [formGroup]=\"form\">\n <!-- USER INFO BOX-->\n <div class=\"user-info-box user-details-box\">\n <h3 class=\"user-box-title\">Numbers</h3>\n <div class=\"form-holder__inputs\">\n <h4>Directory Number</h4>\n <table>\n <tr>\n <th>Type</th>\n <th>Number</th>\n <th>Extension</th>\n </tr>\n <tr >\n <td></td>\n <td></td>\n <td>\n <app-user-calling-extension\n *ngIf=\"formControl\"\n [siteId]=\"this.siteId\"\n [control]=\"formControl\"\n [routePartition]=\"this.lineAssociation?.directoryNumber?.routePartitionName\"\n [directoryNumber]=\"this.lineAssociation?.directoryNumber?.directoryNumber\"\n (onChange)=\"onDirectoryNumberChange($event)\">\n </app-user-calling-extension>\n\n </td>\n </tr>\n </table>\n </div>\n\n </div>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css?family=Poppins:400,100,200,300,500,600,800,700,900\";#user-calling{height:calc(100vh - 100px)}#user-calling table{margin:10px 0;width:100%}#user-calling th{color:#000;text-align:left;background:#efefef;font-size:14px;font-weight:500;padding:2px 5px}.fa:hover{color:#0d56aa!important}.mat-icon-button{background:transparent}.icon-webex-box{width:2rem;height:2rem;font-size:.7rem;line-height:1rem;display:inline-block;background:#d0d0d0;border-radius:2rem;line-height:40px;text-align:center}.icon-webex{filter:invert(12%) sepia(14%) saturate(4%) hue-rotate(354deg) brightness(103%) contrast(90%);background-repeat:no-repeat;background-position:center;display:inline-block;height:1rem;width:1rem}.icon-webex-user{background-image:url(\"data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22a%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 16.67 15.56%22%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill%3Anone%3Bstroke%3A%232c355d%3Bstroke-width%3A1.4px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath class%3D%22b%22 d%3D%22M4.87%2C3.89c0-1.72%2C1.51-3.19%2C3.47-3.19s3.47%2C1.47%2C3.47%2C3.19-1.51%2C3.19-3.47%2C3.19-3.47-1.47-3.47-3.19ZM.7%2C12.64c0-.37%2C.19-.76%2C.67-1.17%2C.48-.41%2C1.17-.78%2C2-1.09%2C1.66-.62%2C3.66-.93%2C4.97-.93s3.31%2C.31%2C4.97%2C.93c.83%2C.31%2C1.52%2C.68%2C2%2C1.09%2C.47%2C.41%2C.67%2C.8%2C.67%2C1.17v2.22H.7v-2.22Z%22%2F%3E%3C%2Fsvg%3E\")}.icon-user-status{display:inline-block}*{margin:0}body{background:#f7f7f7}body,th,td{font-family:Poppins,Poppins,sans-serif;font-size:14px}th{color:#0000008a;text-align:left}td{box-sizing:border-box;padding:10px 5px 10px 0}.content-box{margin:auto;position:relative;width:95%}.content-box table{width:100%}.edit-icon-td{width:50px;position:relative}.edit-icon-td button{position:absolute;top:4px}.mat-progress-spinner circle,.mat-spinner circle{stroke:gray!important}.data-loader{position:absolute;top:calc(50% - 25px);left:calc(50% - 25px)}.flex-box{display:flex;justify-content:flex-start}.spinner-container{width:100%;display:flex;justify-content:center;align-items:center}.spinner-container ::ng-deep .mat-progress-spinner circle,.mat-spinner circle{stroke:#000}.user-info-box{background:white;display:grid;grid-template-columns:30% 70%;border-radius:8px;border:rgba(0,0,0,.2) 1px solid;padding:24px;font-weight:400;font-size:14px}.user-info-box h3{display:block;font-weight:500;font-size:16px}.mat-divider{margin:5px 0!important}.info-boxes-container{padding:24px 0;display:flex;flex-direction:column;gap:24px}.header-box{height:60px;width:100%;line-height:60px;background:white;border-bottom:1px solid #dedddd}.header-box .header-back-block{float:left}.header-box .header-button-block{float:right}.webex-table{width:100%;margin:auto}.webex-table tr{border-bottom:1px solid #dedede}.webex-table th{background:#f7f7f7;color:#636363;font-size:12px}.webex-table td{background:#fff;color:#636363;font-size:14px}.webex-table tr:hover td{background:#ededed;cursor:pointer}.webex-table th.mat-header-cell,.webex-table td.mat-cell,.webex-table td.mat-footer-cell{border-bottom:1px solid #dedede}.webex-table tr.mat-header-row{height:37px}.mat-form-field{padding:0 0 5px;width:93%}.mat-form-field.mat-form-field-disabled{border-bottom:none}.mat-error{color:#c73636;margin:13px 0 0}.select-box{border-radius:30px;background:#F3F6F6;border:1px solid #E2E9EF;height:35px;position:relative}.select-box select{border:none!important;background:transparent;height:100%;width:92%;margin:auto;display:block}option:focus,option:focus-visible{border:none!important;outline:none!important}option{height:30px;cursor:pointer;color:#636363}option:hover{background:#ededed!important}.mat-select{height:100%!important;line-height:35px!important}.info-holder,.input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__name,.input-holder__name{font-weight:500!important;font-size:14px!important}.info-holder__inputs .input-holder,.input-holder__inputs .input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__inputs .input-holder__name,.input-holder__inputs .input-holder__name{font-weight:400!important;font-size:14px!important}table{border-collapse:collapse;border-spacing:0}.mat-form-field-appearance-outline .mat-form-field-infix{padding:0!important}.mat-divider{margin:12px 0}::ng-deep .mat-form-field-wrapper{height:30px}::ng-deep .mat-form-field-flex{height:30px}::ng-deep .mat-form-field-appearance-outline .mat-form-field-outline{height:35px}:ng-deep .mat-form-field-outline .mat-form-field-outline-thick{height:35px}::ng-deep .mat-select{line-height:20px}::ng-deep .mat-form-field-infix{border-top:0px!important}::ng-deep .mat-tab-group{font-family:Inter,sans-serif}::ng-deep .mat-tab-label{font-weight:500!important;font-size:16px!important;height:auto!important;min-width:auto!important;padding:0!important;opacity:1!important;color:#000!important}::ng-deep .mat-ink-bar{background-color:#000!important;height:3px!important}::ng-deep .mat-tab-labels{gap:30px}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i5.UserCallingExtensionComponent, selector: "app-user-calling-extension", inputs: ["control", "routePartition", "directoryNumber", "siteId"], outputs: ["onChange"] }] });
68
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserCallingComponent, decorators: [{
69
- type: Component,
70
- args: [{ selector: 'app-user-calling', template: "<div id=\"user-calling\" class=\"info-boxes-container\" *ngIf=\"siteId && lineAssociation && form\" [formGroup]=\"form\">\n <!-- USER INFO BOX-->\n <div class=\"user-info-box user-details-box\">\n <h3 class=\"user-box-title\">Numbers</h3>\n <div class=\"form-holder__inputs\">\n <h4>Directory Number</h4>\n <table>\n <tr>\n <th>Type</th>\n <th>Number</th>\n <th>Extension</th>\n </tr>\n <tr >\n <td></td>\n <td></td>\n <td>\n <app-user-calling-extension\n *ngIf=\"formControl\"\n [siteId]=\"this.siteId\"\n [control]=\"formControl\"\n [routePartition]=\"this.lineAssociation?.directoryNumber?.routePartitionName\"\n [directoryNumber]=\"this.lineAssociation?.directoryNumber?.directoryNumber\"\n (onChange)=\"onDirectoryNumberChange($event)\">\n </app-user-calling-extension>\n\n </td>\n </tr>\n </table>\n </div>\n\n </div>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css?family=Poppins:400,100,200,300,500,600,800,700,900\";#user-calling{height:calc(100vh - 100px)}#user-calling table{margin:10px 0;width:100%}#user-calling th{color:#000;text-align:left;background:#efefef;font-size:14px;font-weight:500;padding:2px 5px}.fa:hover{color:#0d56aa!important}.mat-icon-button{background:transparent}.icon-webex-box{width:2rem;height:2rem;font-size:.7rem;line-height:1rem;display:inline-block;background:#d0d0d0;border-radius:2rem;line-height:40px;text-align:center}.icon-webex{filter:invert(12%) sepia(14%) saturate(4%) hue-rotate(354deg) brightness(103%) contrast(90%);background-repeat:no-repeat;background-position:center;display:inline-block;height:1rem;width:1rem}.icon-webex-user{background-image:url(\"data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22a%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 16.67 15.56%22%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill%3Anone%3Bstroke%3A%232c355d%3Bstroke-width%3A1.4px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath class%3D%22b%22 d%3D%22M4.87%2C3.89c0-1.72%2C1.51-3.19%2C3.47-3.19s3.47%2C1.47%2C3.47%2C3.19-1.51%2C3.19-3.47%2C3.19-3.47-1.47-3.47-3.19ZM.7%2C12.64c0-.37%2C.19-.76%2C.67-1.17%2C.48-.41%2C1.17-.78%2C2-1.09%2C1.66-.62%2C3.66-.93%2C4.97-.93s3.31%2C.31%2C4.97%2C.93c.83%2C.31%2C1.52%2C.68%2C2%2C1.09%2C.47%2C.41%2C.67%2C.8%2C.67%2C1.17v2.22H.7v-2.22Z%22%2F%3E%3C%2Fsvg%3E\")}.icon-user-status{display:inline-block}*{margin:0}body{background:#f7f7f7}body,th,td{font-family:Poppins,Poppins,sans-serif;font-size:14px}th{color:#0000008a;text-align:left}td{box-sizing:border-box;padding:10px 5px 10px 0}.content-box{margin:auto;position:relative;width:95%}.content-box table{width:100%}.edit-icon-td{width:50px;position:relative}.edit-icon-td button{position:absolute;top:4px}.mat-progress-spinner circle,.mat-spinner circle{stroke:gray!important}.data-loader{position:absolute;top:calc(50% - 25px);left:calc(50% - 25px)}.flex-box{display:flex;justify-content:flex-start}.spinner-container{width:100%;display:flex;justify-content:center;align-items:center}.spinner-container ::ng-deep .mat-progress-spinner circle,.mat-spinner circle{stroke:#000}.user-info-box{background:white;display:grid;grid-template-columns:30% 70%;border-radius:8px;border:rgba(0,0,0,.2) 1px solid;padding:24px;font-weight:400;font-size:14px}.user-info-box h3{display:block;font-weight:500;font-size:16px}.mat-divider{margin:5px 0!important}.info-boxes-container{padding:24px 0;display:flex;flex-direction:column;gap:24px}.header-box{height:60px;width:100%;line-height:60px;background:white;border-bottom:1px solid #dedddd}.header-box .header-back-block{float:left}.header-box .header-button-block{float:right}.webex-table{width:100%;margin:auto}.webex-table tr{border-bottom:1px solid #dedede}.webex-table th{background:#f7f7f7;color:#636363;font-size:12px}.webex-table td{background:#fff;color:#636363;font-size:14px}.webex-table tr:hover td{background:#ededed;cursor:pointer}.webex-table th.mat-header-cell,.webex-table td.mat-cell,.webex-table td.mat-footer-cell{border-bottom:1px solid #dedede}.webex-table tr.mat-header-row{height:37px}.mat-form-field{padding:0 0 5px;width:93%}.mat-form-field.mat-form-field-disabled{border-bottom:none}.mat-error{color:#c73636;margin:13px 0 0}.select-box{border-radius:30px;background:#F3F6F6;border:1px solid #E2E9EF;height:35px;position:relative}.select-box select{border:none!important;background:transparent;height:100%;width:92%;margin:auto;display:block}option:focus,option:focus-visible{border:none!important;outline:none!important}option{height:30px;cursor:pointer;color:#636363}option:hover{background:#ededed!important}.mat-select{height:100%!important;line-height:35px!important}.info-holder,.input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__name,.input-holder__name{font-weight:500!important;font-size:14px!important}.info-holder__inputs .input-holder,.input-holder__inputs .input-holder{display:grid;grid-template-columns:30% 70%;align-items:baseline}.info-holder__inputs .input-holder__name,.input-holder__inputs .input-holder__name{font-weight:400!important;font-size:14px!important}table{border-collapse:collapse;border-spacing:0}.mat-form-field-appearance-outline .mat-form-field-infix{padding:0!important}.mat-divider{margin:12px 0}::ng-deep .mat-form-field-wrapper{height:30px}::ng-deep .mat-form-field-flex{height:30px}::ng-deep .mat-form-field-appearance-outline .mat-form-field-outline{height:35px}:ng-deep .mat-form-field-outline .mat-form-field-outline-thick{height:35px}::ng-deep .mat-select{line-height:20px}::ng-deep .mat-form-field-infix{border-top:0px!important}::ng-deep .mat-tab-group{font-family:Inter,sans-serif}::ng-deep .mat-tab-label{font-weight:500!important;font-size:16px!important;height:auto!important;min-width:auto!important;padding:0!important;opacity:1!important;color:#000!important}::ng-deep .mat-ink-bar{background-color:#000!important;height:3px!important}::ng-deep .mat-tab-labels{gap:30px}\n"] }]
71
- }], ctorParameters: function () { return [{ type: i1.UserService }, { type: i2.DnsService }]; }, propDecorators: { siteId: [{
72
- type: Input
73
- }], userId: [{
74
- type: Input
75
- }], onExtensionChange: [{
76
- type: Output
77
- }] } });
78
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1jYWxsaW5nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1a2kvd2lkZ2V0cy91c2VyLW1hbmFnZS9zcmMvdXNlci1jYWxsaW5nL3VzZXItY2FsbGluZy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dWtpL3dpZGdldHMvdXNlci1tYW5hZ2Uvc3JjL3VzZXItY2FsbGluZy91c2VyLWNhbGxpbmcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7OztBQWEvRSxNQUFNLE9BQU8sb0JBQW9CO0lBTS9CLElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLFdBQVcsRUFBRSxJQUFJLEVBQUUsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDM0csQ0FBQztJQUVELElBQUksV0FBVztRQUNiLE1BQU0sT0FBTyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsR0FBRyxDQUFDLGlCQUFpQixDQUFnQixDQUFDO1FBQ2pFLE9BQU8sT0FBTyxDQUFDO0lBQ2pCLENBQUM7SUFFRCxJQUFJLGVBQWU7UUFDakIsT0FBTyxJQUFJLENBQUMsV0FBVyxFQUFFLElBQUksRUFBRSxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDaEUsQ0FBQztJQUVELElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUM7SUFDL0IsQ0FBQztJQUdELFlBQ1MsV0FBd0IsRUFDdkIsVUFBc0I7UUFEdkIsZ0JBQVcsR0FBWCxXQUFXLENBQWE7UUFDdkIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQXZCdEIsc0JBQWlCLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztJQXlCdEQsQ0FBQztJQUVELFFBQVE7UUFDTixrQkFBa0I7SUFDcEIsQ0FBQztJQUVELHVCQUF1QixDQUFDLEtBQVU7UUFDaEMsSUFBSSxJQUFJLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQyxlQUFlLENBQUMsZUFBZSxFQUFFO1lBQ2hFLGFBQWE7WUFDYixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLENBQUMsZUFBZSxDQUFDLGVBQWUsR0FBRyxLQUFLLENBQUM7WUFDN0YsSUFBSSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztTQUNuQztJQUNILENBQUM7SUFFTSxhQUFhLENBQUMsS0FBYTtRQUNoQyxJQUFJLENBQUMsS0FBSyxFQUFFO1lBQ1YsT0FBTztTQUNSO1FBQ0EsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFZLENBQUMsS0FBSyxDQUFDLEdBQUcsSUFBSSxDQUFDLElBQUksRUFBRSxHQUFHLENBQUMsS0FBSyxDQUFDLEVBQUUsS0FBSyxDQUFDO0lBRXZFLENBQUM7SUFFTSxjQUFjO1FBQ25CLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQ3pDLENBQUM7SUFFTSxnQkFBZ0I7UUFDckIsT0FBTyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsaUJBQWlCLEVBQUUsSUFBSSxJQUFJLENBQUMsV0FBVyxDQUFDLGdCQUFnQixDQUFDO0lBQ3BGLENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxLQUFhO1FBQ3BDLElBQUksSUFBSSxDQUFDLGVBQWUsSUFBSSxJQUFJLENBQUMsZUFBZSxDQUFDLGVBQWUsRUFBRTtZQUNoRSxhQUFhO1lBQ2IsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxlQUFlLEdBQUcsS0FBSyxDQUFDO1NBQzlGO0lBQ0gsQ0FBQztJQUVPLE9BQU87UUFDYixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztRQUN4QixJQUFJLENBQUMsVUFBVSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUM7YUFDN0QsU0FBUyxDQUFDO1lBQ1QsUUFBUSxFQUFFLENBQUMsQ0FBTSxFQUFFLEVBQUU7Z0JBQ25CLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1lBQzNCLENBQUM7WUFDRCxLQUFLLEVBQUUsQ0FBQyxDQUFNLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSztTQUM1QyxDQUFDLENBQUM7SUFDUCxDQUFDOztrSEExRVUsb0JBQW9CO3NHQUFwQixvQkFBb0IsNkpDYmpDLGdpQ0FnQ0E7NEZEbkJhLG9CQUFvQjtrQkFMaEMsU0FBUzsrQkFDRSxrQkFBa0I7MkhBS25CLE1BQU07c0JBQWQsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0ksaUJBQWlCO3NCQUExQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wsIEZvcm1Hcm91cCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IFNpbXBsaWZpZWRVc2VyIH0gZnJvbSAnLi4vY2xhc3Nlcy9zaW1wbGlmaWVkLXVzZXInO1xuaW1wb3J0IHsgTGluZUFzc29jaWF0aW9uIH0gZnJvbSAnLi4vY2xhc3Nlcy9saW5lLWFzc29jaWF0aW9uJztcbmltcG9ydCB7IExpbmVBc3NvY2lhdGlvbkludGVyZmFjZSB9IGZyb20gJy4uL2NsYXNzZXMvbGluZS1hc3NvY2lhdGlvbi1pbnRlcmZhY2UnO1xuaW1wb3J0IHsgVXNlclNlcnZpY2UgfSBmcm9tICcuLi9zZXJ2aWNlcy91c2VyLnNlcnZpY2UnO1xuaW1wb3J0IHsgRG5zU2VydmljZSB9IGZyb20gJy4uL3NlcnZpY2VzL2Rucy5zZXJ2aWNlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLXVzZXItY2FsbGluZycsXG4gIHRlbXBsYXRlVXJsOiAnLi91c2VyLWNhbGxpbmcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi91c2VyLWNhbGxpbmcuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgVXNlckNhbGxpbmdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBASW5wdXQoKSBzaXRlSWQhOiBudW1iZXI7XG4gIEBJbnB1dCgpIHVzZXJJZCE6IHN0cmluZztcbiAgQE91dHB1dCgpIG9uRXh0ZW5zaW9uQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG4gIHB1YmxpYyBkYXRhUGVuZGluZyE6IGJvb2xlYW47XG5cbiAgZ2V0IGZvcm0oKTogRm9ybUdyb3VwIHtcbiAgICByZXR1cm4gdGhpcy51c2VyU2VydmljZT8udXNlcj8uZGV2aWNlc1swXSAmJiB0aGlzLnVzZXJTZXJ2aWNlPy51c2VyPy5kZXZpY2VzWzBdLmxpbmVBc3NvY2lhdGlvbnNbMF0uZm9ybTtcbiAgfVxuXG4gIGdldCBmb3JtQ29udHJvbCgpOiBGb3JtQ29udHJvbCB7XG4gICAgY29uc3QgY29udHJvbCA9IHRoaXMuZm9ybT8uZ2V0KCdkaXJlY3RvcnlOdW1iZXInKSBhcyBGb3JtQ29udHJvbDtcbiAgICByZXR1cm4gY29udHJvbDtcbiAgfVxuXG4gIGdldCBsaW5lQXNzb2NpYXRpb24oKTogTGluZUFzc29jaWF0aW9uIHwgTGluZUFzc29jaWF0aW9uSW50ZXJmYWNlIHtcbiAgICByZXR1cm4gdGhpcy51c2VyU2VydmljZT8udXNlcj8uZGV2aWNlc1swXS5saW5lQXNzb2NpYXRpb25zWzBdO1xuICB9XG5cbiAgZ2V0IHVzZXIoKTogU2ltcGxpZmllZFVzZXIge1xuICAgIHJldHVybiB0aGlzLnVzZXJTZXJ2aWNlLnVzZXI7XG4gIH1cblxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHB1YmxpYyB1c2VyU2VydmljZTogVXNlclNlcnZpY2UsXG4gICAgcHJpdmF0ZSBkbnNTZXJ2aWNlOiBEbnNTZXJ2aWNlXG4gICkge1xuICB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgLy8gdGhpcy5nZXREYXRhKCk7XG4gIH1cblxuICBvbkRpcmVjdG9yeU51bWJlckNoYW5nZSh2YWx1ZTogYW55KTogdm9pZCB7XG4gICAgaWYgKHRoaXMubGluZUFzc29jaWF0aW9uICYmIHRoaXMubGluZUFzc29jaWF0aW9uLmRpcmVjdG9yeU51bWJlcikge1xuICAgICAgLy8gQHRzLWlnbm9yZVxuICAgICAgdGhpcy51c2VyU2VydmljZS51c2VyLmRldmljZXNbMF0ubGluZUFzc29jaWF0aW9uc1swXS5kaXJlY3RvcnlOdW1iZXIuZGlyZWN0b3J5TnVtYmVyID0gdmFsdWU7XG4gICAgICB0aGlzLm9uRXh0ZW5zaW9uQ2hhbmdlLm5leHQodHJ1ZSk7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIG9uQ2hhbmdlRmllbGQodG9rZW46IHN0cmluZyk6IHZvaWQge1xuICAgIGlmICghdG9rZW4pIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG4gICAgKHRoaXMudXNlclNlcnZpY2UudXNlciBhcyBhbnkpW3Rva2VuXSA9IHRoaXMuZm9ybT8uZ2V0KHRva2VuKT8udmFsdWU7XG5cbiAgfVxuXG4gIHB1YmxpYyB0b2dnbGVFZGl0TW9kZSgpIHtcbiAgICB0aGlzLnVzZXJTZXJ2aWNlLnVzZXIudG9nZ2xlRWRpdE1vZGUoKTtcbiAgfVxuXG4gIHB1YmxpYyBpc1NhdmluZ0Rpc2FibGVkKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiAhdGhpcy51c2VyU2VydmljZS5oYXNVbnNhdmVkQ2hhbmdlcygpIHx8IHRoaXMudXNlclNlcnZpY2UuaGFzRXhpc3RlZFVzZXJJZDtcbiAgfVxuXG4gIHB1YmxpYyBvbkNoYW5nZUV4dGVuc2lvbih2YWx1ZTogc3RyaW5nKTogdm9pZCB7XG4gICAgaWYgKHRoaXMubGluZUFzc29jaWF0aW9uICYmIHRoaXMubGluZUFzc29jaWF0aW9uLmRpcmVjdG9yeU51bWJlcikge1xuICAgICAgLy8gQHRzLWlnbm9yZVxuICAgICAgdGhpcy51c2VyU2VydmljZS51c2VyLmRldmljZXNbMF0ubGluZUFzc29jaWF0aW9uc1swXS5kaXJlY3RvcnlOdW1iZXIuZGlyZWN0b3J5TnVtYmVyID0gdmFsdWU7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBnZXREYXRhKCkge1xuICAgIHRoaXMuZGF0YVBlbmRpbmcgPSB0cnVlO1xuICAgIHRoaXMuZG5zU2VydmljZS5nZXROdW1iZXJSYW5nZShTdHJpbmcodGhpcy5zaXRlSWQpLCB0aGlzLnVzZXJJZClcbiAgICAgIC5zdWJzY3JpYmUoe1xuICAgICAgICBjb21wbGV0ZTogKHY6IGFueSkgPT4ge1xuICAgICAgICAgIHRoaXMuZGF0YVBlbmRpbmcgPSBmYWxzZTtcbiAgICAgICAgfSxcbiAgICAgICAgZXJyb3I6IChlOiBhbnkpID0+IHRoaXMuZGF0YVBlbmRpbmcgPSBmYWxzZSxcbiAgICAgIH0pO1xuICB9XG59XG4iLCI8ZGl2IGlkPVwidXNlci1jYWxsaW5nXCIgY2xhc3M9XCJpbmZvLWJveGVzLWNvbnRhaW5lclwiICpuZ0lmPVwic2l0ZUlkICYmIGxpbmVBc3NvY2lhdGlvbiAmJiBmb3JtXCIgW2Zvcm1Hcm91cF09XCJmb3JtXCI+XG4gIDwhLS0gICAgVVNFUiBJTkZPIEJPWC0tPlxuICA8ZGl2IGNsYXNzPVwidXNlci1pbmZvLWJveCB1c2VyLWRldGFpbHMtYm94XCI+XG4gICAgPGgzIGNsYXNzPVwidXNlci1ib3gtdGl0bGVcIj5OdW1iZXJzPC9oMz5cbiAgICA8ZGl2IGNsYXNzPVwiZm9ybS1ob2xkZXJfX2lucHV0c1wiPlxuICAgICAgPGg0PkRpcmVjdG9yeSBOdW1iZXI8L2g0PlxuICAgICAgPHRhYmxlPlxuICAgICAgICA8dHI+XG4gICAgICAgICAgPHRoPlR5cGU8L3RoPlxuICAgICAgICAgIDx0aD5OdW1iZXI8L3RoPlxuICAgICAgICAgIDx0aD5FeHRlbnNpb248L3RoPlxuICAgICAgICA8L3RyPlxuICAgICAgICA8dHIgPlxuICAgICAgICAgIDx0ZD48L3RkPlxuICAgICAgICAgIDx0ZD48L3RkPlxuICAgICAgICAgIDx0ZD5cbiAgICAgICAgICAgIDxhcHAtdXNlci1jYWxsaW5nLWV4dGVuc2lvblxuICAgICAgICAgICAgICAqbmdJZj1cImZvcm1Db250cm9sXCJcbiAgICAgICAgICAgICAgW3NpdGVJZF09XCJ0aGlzLnNpdGVJZFwiXG4gICAgICAgICAgICAgIFtjb250cm9sXT1cImZvcm1Db250cm9sXCJcbiAgICAgICAgICAgICAgW3JvdXRlUGFydGl0aW9uXT1cInRoaXMubGluZUFzc29jaWF0aW9uPy5kaXJlY3RvcnlOdW1iZXI/LnJvdXRlUGFydGl0aW9uTmFtZVwiXG4gICAgICAgICAgICAgIFtkaXJlY3RvcnlOdW1iZXJdPVwidGhpcy5saW5lQXNzb2NpYXRpb24/LmRpcmVjdG9yeU51bWJlcj8uZGlyZWN0b3J5TnVtYmVyXCJcbiAgICAgICAgICAgICAgKG9uQ2hhbmdlKT1cIm9uRGlyZWN0b3J5TnVtYmVyQ2hhbmdlKCRldmVudClcIj5cbiAgICAgICAgICAgIDwvYXBwLXVzZXItY2FsbGluZy1leHRlbnNpb24+XG5cbiAgICAgICAgICA8L3RkPlxuICAgICAgICA8L3RyPlxuICAgICAgPC90YWJsZT5cbiAgICA8L2Rpdj5cblxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
@@ -1,20 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- export class UserInfoComponent {
5
- }
6
- UserInfoComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserInfoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7
- UserInfoComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: UserInfoComponent, selector: "app-user-info", inputs: { name: "name", active: "active", email: "email", position: "position" }, ngImport: i0, template: "<div class=\"info-holder\">\n <div class=\"content-box flex-box\">\n <div class=\"info-holder__user-image\">\n <img src=\"../../../assets/a24749b225874bb3e3a4cb5d2f42e82c.png\" alt=\"\" class=\"avatar\">\n </div>\n <div class=\"info-holder__user-information\">\n <div class=\"info-holder__user-name\">{{name}}</div>\n <div class=\"info-holder__user-breadcrumbs\">\n <div class=\"is-active\" *ngIf=\"active; else notActive\">\n <span class=\"icon-user-status icon-user-status-active\"></span>Active\n </div>\n <div class=\"icon-separator\"></div>\n <div class=\"email\">{{email}}</div>\n <div class=\"icon-separator\"></div>\n <div class=\"position\">{{position}}</div>\n </div>\n </div>\n </div>\n\n</div>\n\n<ng-template #notActive>\n <div class=\"is-active\">\n <svg width=\"8\" height=\"9\" viewBox=\"0 0 8 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 8.5C6.20914 8.5 8 6.70914 8 4.5C8 2.29086 6.20914 0.5 4 0.5C1.79086 0.5 0 2.29086 0 4.5C0 6.70914 1.79086 8.5 4 8.5Z\" fill=\"grey\"/>\n </svg>\n <div>Not active</div>\n </div>\n</ng-template>\n", styles: [".info-holder{display:flex;gap:16px;align-items:center;font-family:Inter,sans-serif;height:102px;width:100%;background:white;margin:0 0 30px}.info-holder__user-image img{width:40px;border-radius:120px;margin:20px 0 0}.info-holder__user-information{padding:10px;margin:10px;gap:10px;display:flex;flex-direction:column}.info-holder__user-name{font-size:20px;font-weight:500}.info-holder__user-breadcrumbs{display:flex;gap:8px;font-weight:400;font-size:14px;color:#000000b3;align-items:center}.info-holder .icon-separator{height:5px;width:5px;background-color:#000000b3;border-radius:50%}.info-holder .is-active{display:flex;gap:8px;align-items:center}.icon-user-status{width:.5rem;height:.5rem;border-radius:50%;background-color:#707070;margin:0 5px 0 0}.icon-user-status.icon-user-status-active{background-color:#1d805f;display:inline-block}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserInfoComponent, decorators: [{
9
- type: Component,
10
- args: [{ selector: 'app-user-info', template: "<div class=\"info-holder\">\n <div class=\"content-box flex-box\">\n <div class=\"info-holder__user-image\">\n <img src=\"../../../assets/a24749b225874bb3e3a4cb5d2f42e82c.png\" alt=\"\" class=\"avatar\">\n </div>\n <div class=\"info-holder__user-information\">\n <div class=\"info-holder__user-name\">{{name}}</div>\n <div class=\"info-holder__user-breadcrumbs\">\n <div class=\"is-active\" *ngIf=\"active; else notActive\">\n <span class=\"icon-user-status icon-user-status-active\"></span>Active\n </div>\n <div class=\"icon-separator\"></div>\n <div class=\"email\">{{email}}</div>\n <div class=\"icon-separator\"></div>\n <div class=\"position\">{{position}}</div>\n </div>\n </div>\n </div>\n\n</div>\n\n<ng-template #notActive>\n <div class=\"is-active\">\n <svg width=\"8\" height=\"9\" viewBox=\"0 0 8 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 8.5C6.20914 8.5 8 6.70914 8 4.5C8 2.29086 6.20914 0.5 4 0.5C1.79086 0.5 0 2.29086 0 4.5C0 6.70914 1.79086 8.5 4 8.5Z\" fill=\"grey\"/>\n </svg>\n <div>Not active</div>\n </div>\n</ng-template>\n", styles: [".info-holder{display:flex;gap:16px;align-items:center;font-family:Inter,sans-serif;height:102px;width:100%;background:white;margin:0 0 30px}.info-holder__user-image img{width:40px;border-radius:120px;margin:20px 0 0}.info-holder__user-information{padding:10px;margin:10px;gap:10px;display:flex;flex-direction:column}.info-holder__user-name{font-size:20px;font-weight:500}.info-holder__user-breadcrumbs{display:flex;gap:8px;font-weight:400;font-size:14px;color:#000000b3;align-items:center}.info-holder .icon-separator{height:5px;width:5px;background-color:#000000b3;border-radius:50%}.info-holder .is-active{display:flex;gap:8px;align-items:center}.icon-user-status{width:.5rem;height:.5rem;border-radius:50%;background-color:#707070;margin:0 5px 0 0}.icon-user-status.icon-user-status-active{background-color:#1d805f;display:inline-block}\n"] }]
11
- }], propDecorators: { name: [{
12
- type: Input
13
- }], active: [{
14
- type: Input
15
- }], email: [{
16
- type: Input
17
- }], position: [{
18
- type: Input
19
- }] } });
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1pbmZvLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1a2kvd2lkZ2V0cy91c2VyLW1hbmFnZS9zcmMvdXNlci1pbmZvL3VzZXItaW5mby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dWtpL3dpZGdldHMvdXNlci1tYW5hZ2Uvc3JjL3VzZXItaW5mby91c2VyLWluZm8uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7OztBQU9qRCxNQUFNLE9BQU8saUJBQWlCOzsrR0FBakIsaUJBQWlCO21HQUFqQixpQkFBaUIsdUlDUDlCLDR0Q0E2QkE7NEZEdEJhLGlCQUFpQjtrQkFMN0IsU0FBUzsrQkFDRSxlQUFlOzhCQU16QixJQUFJO3NCQURILEtBQUs7Z0JBR04sTUFBTTtzQkFETCxLQUFLO2dCQUdOLEtBQUs7c0JBREosS0FBSztnQkFHTixRQUFRO3NCQURQLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC11c2VyLWluZm8nLFxuICB0ZW1wbGF0ZVVybDogJy4vdXNlci1pbmZvLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vdXNlci1pbmZvLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgVXNlckluZm9Db21wb25lbnQge1xuICBASW5wdXQoKVxuICBuYW1lITogc3RyaW5nO1xuICBASW5wdXQoKVxuICBhY3RpdmUhOiBib29sZWFuO1xuICBASW5wdXQoKVxuICBlbWFpbCE6IHN0cmluZztcbiAgQElucHV0KClcbiAgcG9zaXRpb24hOiBzdHJpbmc7XG5cblxufVxuIiwiPGRpdiBjbGFzcz1cImluZm8taG9sZGVyXCI+XG4gIDxkaXYgY2xhc3M9XCJjb250ZW50LWJveCBmbGV4LWJveFwiPlxuICAgIDxkaXYgY2xhc3M9XCJpbmZvLWhvbGRlcl9fdXNlci1pbWFnZVwiPlxuICAgICAgPGltZyBzcmM9XCIuLi8uLi8uLi9hc3NldHMvYTI0NzQ5YjIyNTg3NGJiM2UzYTRjYjVkMmY0MmU4MmMucG5nXCIgYWx0PVwiXCIgY2xhc3M9XCJhdmF0YXJcIj5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiaW5mby1ob2xkZXJfX3VzZXItaW5mb3JtYXRpb25cIj5cbiAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLWhvbGRlcl9fdXNlci1uYW1lXCI+e3tuYW1lfX08L2Rpdj5cbiAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLWhvbGRlcl9fdXNlci1icmVhZGNydW1ic1wiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXMtYWN0aXZlXCIgKm5nSWY9XCJhY3RpdmU7IGVsc2Ugbm90QWN0aXZlXCI+XG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJpY29uLXVzZXItc3RhdHVzIGljb24tdXNlci1zdGF0dXMtYWN0aXZlXCI+PC9zcGFuPkFjdGl2ZVxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImljb24tc2VwYXJhdG9yXCI+PC9kaXY+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJlbWFpbFwiPnt7ZW1haWx9fTwvZGl2PlxuICAgICAgICA8ZGl2IGNsYXNzPVwiaWNvbi1zZXBhcmF0b3JcIj48L2Rpdj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInBvc2l0aW9uXCI+e3twb3NpdGlvbn19PC9kaXY+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG5cbjwvZGl2PlxuXG48bmctdGVtcGxhdGUgI25vdEFjdGl2ZT5cbiAgICA8ZGl2IGNsYXNzPVwiaXMtYWN0aXZlXCI+XG4gICAgICAgIDxzdmcgd2lkdGg9XCI4XCIgaGVpZ2h0PVwiOVwiIHZpZXdCb3g9XCIwIDAgOCA5XCIgZmlsbD1cIm5vbmVcIiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCI+XG4gICAgICAgICAgICA8cGF0aCBmaWxsLXJ1bGU9XCJldmVub2RkXCIgY2xpcC1ydWxlPVwiZXZlbm9kZFwiIGQ9XCJNNCA4LjVDNi4yMDkxNCA4LjUgOCA2LjcwOTE0IDggNC41QzggMi4yOTA4NiA2LjIwOTE0IDAuNSA0IDAuNUMxLjc5MDg2IDAuNSAwIDIuMjkwODYgMCA0LjVDMCA2LjcwOTE0IDEuNzkwODYgOC41IDQgOC41WlwiIGZpbGw9XCJncmV5XCIvPlxuICAgICAgICA8L3N2Zz5cbiAgICAgICAgPGRpdj5Ob3QgYWN0aXZlPC9kaXY+XG4gICAgPC9kaXY+XG48L25nLXRlbXBsYXRlPlxuIl19