@tuki-io/tuki-widgets 0.0.64 → 0.0.65

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 (655) 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 +10 -9
  7. package/angular.json +140 -0
  8. package/package.json +47 -65
  9. package/projects/tuki/widgets/README.md +24 -0
  10. package/projects/tuki/widgets/di2mt/api/api.endpoints.ts +20 -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/expand_icon.png +0 -0
  15. package/projects/tuki/widgets/di2mt/assets/icons/issue_icon.png +0 -0
  16. package/projects/tuki/widgets/di2mt/assets/icons/menu_icon.png +0 -0
  17. package/projects/tuki/widgets/di2mt/assets/icons/ready_to_upgrade.png +0 -0
  18. package/projects/tuki/widgets/di2mt/assets/icons/search_icon.png +0 -0
  19. package/projects/tuki/widgets/di2mt/assets/icons/site.png +0 -0
  20. package/projects/tuki/widgets/di2mt/assets/icons/user.png +0 -0
  21. package/projects/tuki/widgets/di2mt/assets/icons/warning_icon.png +0 -0
  22. package/projects/tuki/widgets/di2mt/ng-package.json +7 -0
  23. package/{di2mt/public-api.d.ts → projects/tuki/widgets/di2mt/public-api.ts} +12 -1
  24. package/projects/tuki/widgets/di2mt/shared/components/card/card.component.html +11 -0
  25. package/projects/tuki/widgets/di2mt/shared/components/card/card.component.scss +48 -0
  26. package/projects/tuki/widgets/di2mt/shared/components/card/card.component.ts +10 -0
  27. package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.html +15 -0
  28. package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.scss +38 -0
  29. package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.ts +71 -0
  30. package/{di2mt/shared/components/index.d.ts → projects/tuki/widgets/di2mt/shared/components/index.ts} +1 -1
  31. package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.html +57 -0
  32. package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.scss +74 -0
  33. package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.ts +44 -0
  34. package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.html +28 -0
  35. package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.scss +55 -0
  36. package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.ts +11 -0
  37. package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.html +12 -0
  38. package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.scss +76 -0
  39. package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.ts +27 -0
  40. package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.html +28 -0
  41. package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.scss +52 -0
  42. package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.ts +28 -0
  43. package/projects/tuki/widgets/di2mt/shared/material.module.ts +36 -0
  44. package/projects/tuki/widgets/di2mt/shared/services/api.service.ts +92 -0
  45. package/projects/tuki/widgets/di2mt/shared/shared.module.ts +38 -0
  46. package/projects/tuki/widgets/di2mt/shared/types/constants.ts +14 -0
  47. package/projects/tuki/widgets/di2mt/shared/types/data-table.ts +5 -0
  48. package/projects/tuki/widgets/di2mt/shared/types/table/filter.ts +14 -0
  49. package/projects/tuki/widgets/di2mt/styles/tuki-widgets-theme.scss +13 -0
  50. package/projects/tuki/widgets/di2mt/styles/variables.scss +92 -0
  51. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.html +92 -0
  52. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.scss +187 -0
  53. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.ts +205 -0
  54. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.module.ts +24 -0
  55. package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.service.ts +45 -0
  56. package/{di2mt/widgets/site-upgrade/types/user-upgrade.d.ts → projects/tuki/widgets/di2mt/widgets/site-upgrade/types/user-upgrade.ts} +2 -1
  57. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.ts +52 -0
  58. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.ts +53 -0
  59. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.ts +67 -0
  60. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.html +7 -0
  61. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.scss +0 -0
  62. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.ts +45 -0
  63. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.html +7 -0
  64. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.scss +0 -0
  65. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.ts +45 -0
  66. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.ts +59 -0
  67. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.ts +70 -0
  68. package/{di2mt/widgets/upgrade-overview/types/upgrade-overview.d.ts → projects/tuki/widgets/di2mt/widgets/upgrade-overview/types/upgrade-overview.ts} +20 -18
  69. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.module.ts +42 -0
  70. package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.service.ts +95 -0
  71. package/{di2mt/widgets/user-upgrade/types/user-upgrade.d.ts → projects/tuki/widgets/di2mt/widgets/user-upgrade/types/user-upgrade.ts} +3 -1
  72. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.html +131 -0
  73. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.scss +275 -0
  74. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.ts +218 -0
  75. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.module.ts +24 -0
  76. package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.service.ts +73 -0
  77. package/projects/tuki/widgets/karma.conf.js +44 -0
  78. package/projects/tuki/widgets/ng-package.json +7 -0
  79. package/projects/tuki/widgets/package.json +13 -0
  80. package/projects/tuki/widgets/src/lib/widgets.component.spec.ts +23 -0
  81. package/projects/tuki/widgets/src/lib/widgets.component.ts +20 -0
  82. package/projects/tuki/widgets/src/lib/widgets.module.ts +16 -0
  83. package/projects/tuki/widgets/src/lib/widgets.service.spec.ts +16 -0
  84. package/projects/tuki/widgets/src/lib/widgets.service.ts +9 -0
  85. package/{public-api.d.ts → projects/tuki/widgets/src/public-api.ts} +4 -0
  86. package/projects/tuki/widgets/src/test.ts +27 -0
  87. package/projects/tuki/widgets/styles.scss +572 -0
  88. package/projects/tuki/widgets/tsconfig.lib.json +36 -0
  89. package/projects/tuki/widgets/tsconfig.lib.prod.json +10 -0
  90. package/projects/tuki/widgets/tsconfig.spec.json +17 -0
  91. package/projects/tuki/widgets/user-device-manage/ng-package.json +7 -0
  92. package/projects/tuki/widgets/user-device-manage/src/app.constants.ts +96 -0
  93. package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-left.svg +5 -0
  94. package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-right.svg +5 -0
  95. package/projects/tuki/widgets/user-device-manage/src/assets/icons/close_icon_x.svg +3 -0
  96. package/projects/tuki/widgets/user-device-manage/src/assets/icons/delete_icon.svg +5 -0
  97. package/projects/tuki/widgets/user-device-manage/src/assets/icons/dragger-vertical-icon.svg +3 -0
  98. package/projects/tuki/widgets/user-device-manage/src/assets/icons/icon_user.svg +1 -0
  99. package/projects/tuki/widgets/user-device-manage/src/assets/icons/vartical_divider_icon.svg +3 -0
  100. package/projects/tuki/widgets/user-device-manage/src/classes/device.ts +292 -0
  101. package/projects/tuki/widgets/user-device-manage/src/classes/line-association-interface.ts +50 -0
  102. package/projects/tuki/widgets/user-device-manage/src/classes/line-association.ts +177 -0
  103. package/projects/tuki/widgets/user-device-manage/src/classes/line-call-info-display.ts +21 -0
  104. package/projects/tuki/widgets/user-device-manage/src/classes/line-directory.ts +41 -0
  105. package/projects/tuki/widgets/user-device-manage/src/classes/line.ts +144 -0
  106. package/projects/tuki/widgets/user-device-manage/src/classes/notification.ts +40 -0
  107. package/projects/tuki/widgets/user-device-manage/src/classes/recording-options.ts +6 -0
  108. package/projects/tuki/widgets/user-device-manage/src/classes/simplified-user.ts +169 -0
  109. package/projects/tuki/widgets/user-device-manage/src/classes/site-defaults.ts +167 -0
  110. package/projects/tuki/widgets/user-device-manage/src/classes/translation-pattern.ts +50 -0
  111. package/projects/tuki/widgets/user-device-manage/src/classes/types.ts +19 -0
  112. package/projects/tuki/widgets/user-device-manage/src/classes/user-interface.ts +225 -0
  113. package/projects/tuki/widgets/user-device-manage/src/classes/user.ts +8 -0
  114. package/projects/tuki/widgets/user-device-manage/src/common-functions.ts +16 -0
  115. package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.html +14 -0
  116. package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.scss +80 -0
  117. package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.ts +35 -0
  118. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.html +21 -0
  119. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.scss +97 -0
  120. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.ts +28 -0
  121. 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
  122. 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
  123. 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
  124. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.html +6 -0
  125. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.scss +4 -0
  126. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.ts +63 -0
  127. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.html +241 -0
  128. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.scss +500 -0
  129. package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.ts +194 -0
  130. package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.html +27 -0
  131. package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.scss +131 -0
  132. package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.ts +25 -0
  133. package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.html +209 -0
  134. package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.scss +502 -0
  135. package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.ts +354 -0
  136. package/projects/tuki/widgets/user-device-manage/src/environments/environment.prod.ts +9 -0
  137. package/projects/tuki/widgets/user-device-manage/src/environments/environment.ts +10 -0
  138. package/projects/tuki/widgets/user-device-manage/src/interseptors/auth.interceptor.ts +35 -0
  139. package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.html +50 -0
  140. package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.scss +8 -0
  141. package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.ts +81 -0
  142. package/projects/tuki/widgets/user-device-manage/src/material.module.ts +87 -0
  143. package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.html +33 -0
  144. package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.scss +84 -0
  145. package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.ts +46 -0
  146. package/projects/tuki/widgets/user-device-manage/src/removeKynFromIBM.service.ts +25 -0
  147. package/projects/tuki/widgets/user-device-manage/src/services/api.service.ts +87 -0
  148. package/projects/tuki/widgets/user-device-manage/src/services/common-functions.ts +17 -0
  149. package/projects/tuki/widgets/user-device-manage/src/services/device.service.ts +95 -0
  150. package/projects/tuki/widgets/user-device-manage/src/services/dns.service.ts +111 -0
  151. package/projects/tuki/widgets/user-device-manage/src/services/line.service.ts +89 -0
  152. package/projects/tuki/widgets/user-device-manage/src/services/notification.service.ts +68 -0
  153. package/projects/tuki/widgets/user-device-manage/src/services/removeKynFromIBM.service.ts +25 -0
  154. package/projects/tuki/widgets/user-device-manage/src/services/site-settings.service.ts +82 -0
  155. package/projects/tuki/widgets/user-device-manage/src/services/sorting-utils.service.ts +203 -0
  156. package/projects/tuki/widgets/user-device-manage/src/services/user.service.ts +283 -0
  157. package/projects/tuki/widgets/user-device-manage/src/services/utils.service.ts +87 -0
  158. package/projects/tuki/widgets/user-device-manage/src/services/validation.service.ts +829 -0
  159. package/projects/tuki/widgets/user-device-manage/src/styles/_variables.scss +90 -0
  160. package/projects/tuki/widgets/user-device-manage/src/styles/form.scss +231 -0
  161. package/projects/tuki/widgets/user-device-manage/src/styles/icons.scss +32 -0
  162. package/projects/tuki/widgets/user-device-manage/src/styles/styles.scss +110 -0
  163. package/projects/tuki/widgets/user-device-manage/src/styles/tables.scss +30 -0
  164. package/projects/tuki/widgets/user-device-manage/src/user-device-manage.module.ts +73 -0
  165. package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.html +6 -0
  166. package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.scss +11 -0
  167. package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.ts +13 -0
  168. package/projects/tuki/widgets/user-manage/ng-package.json +7 -0
  169. package/projects/tuki/widgets/user-manage/src/app.constants.ts +50 -0
  170. package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-left.svg +5 -0
  171. package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-right.svg +5 -0
  172. package/projects/tuki/widgets/user-manage/src/assets/icons/delete_icon.svg +5 -0
  173. package/projects/tuki/widgets/user-manage/src/assets/icons/dragger-vertical-icon.svg +3 -0
  174. package/projects/tuki/widgets/user-manage/src/assets/icons/icon_user.svg +1 -0
  175. package/projects/tuki/widgets/user-manage/src/assets/icons/vartical_divider_icon.svg +3 -0
  176. package/projects/tuki/widgets/user-manage/src/classes/device.ts +232 -0
  177. package/projects/tuki/widgets/user-manage/src/classes/line-association-interface.ts +43 -0
  178. package/projects/tuki/widgets/user-manage/src/classes/line-association.ts +161 -0
  179. package/projects/tuki/widgets/user-manage/src/classes/line-call-info-display.ts +21 -0
  180. package/projects/tuki/widgets/user-manage/src/classes/line-directory.ts +42 -0
  181. package/projects/tuki/widgets/user-manage/src/classes/line.ts +144 -0
  182. package/projects/tuki/widgets/user-manage/src/classes/notification.ts +39 -0
  183. package/projects/tuki/widgets/user-manage/src/classes/pagination.ts +18 -0
  184. package/projects/tuki/widgets/user-manage/src/classes/recording-options.ts +6 -0
  185. package/projects/tuki/widgets/user-manage/src/classes/simplified-user.ts +165 -0
  186. package/projects/tuki/widgets/user-manage/src/classes/table-data.ts +6 -0
  187. package/projects/tuki/widgets/user-manage/src/classes/translation-pattern.ts +49 -0
  188. package/projects/tuki/widgets/user-manage/src/classes/user-interface.ts +225 -0
  189. package/projects/tuki/widgets/user-manage/src/classes/user-list.ts +42 -0
  190. package/projects/tuki/widgets/user-manage/src/classes/user.ts +8 -0
  191. package/projects/tuki/widgets/user-manage/src/common-functions.ts +16 -0
  192. package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.html +27 -0
  193. package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.scss +131 -0
  194. package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.ts +25 -0
  195. package/projects/tuki/widgets/user-manage/src/environments/environment.prod.ts +9 -0
  196. package/projects/tuki/widgets/user-manage/src/environments/environment.ts +10 -0
  197. package/projects/tuki/widgets/user-manage/src/interseptors/auth.interceptor.ts +35 -0
  198. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.html +50 -0
  199. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.scss +8 -0
  200. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.ts +81 -0
  201. package/projects/tuki/widgets/user-manage/src/material.module.ts +85 -0
  202. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.html +33 -0
  203. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.scss +84 -0
  204. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.ts +46 -0
  205. package/projects/tuki/widgets/user-manage/src/removeKynFromIBM.service.ts +25 -0
  206. package/projects/tuki/widgets/user-manage/src/services/api.service.ts +90 -0
  207. package/projects/tuki/widgets/user-manage/src/services/dns.service.ts +116 -0
  208. package/projects/tuki/widgets/user-manage/src/services/line.service.ts +31 -0
  209. package/projects/tuki/widgets/user-manage/src/services/notification.service.ts +68 -0
  210. package/projects/tuki/widgets/user-manage/src/services/removeKynFromIBM.service.ts +25 -0
  211. package/projects/tuki/widgets/user-manage/src/services/site-settings.service.ts +35 -0
  212. package/projects/tuki/widgets/user-manage/src/services/sorting-utils.service.ts +203 -0
  213. package/projects/tuki/widgets/user-manage/src/services/user.service.ts +242 -0
  214. package/projects/tuki/widgets/user-manage/src/services/users-search.service.ts +59 -0
  215. package/projects/tuki/widgets/user-manage/src/services/utils.service.ts +71 -0
  216. package/projects/tuki/widgets/user-manage/src/styles/_variables.scss +90 -0
  217. package/projects/tuki/widgets/user-manage/src/styles/form.scss +231 -0
  218. package/projects/tuki/widgets/user-manage/src/styles/icons.scss +32 -0
  219. package/projects/tuki/widgets/user-manage/src/styles/styles.scss +110 -0
  220. package/projects/tuki/widgets/user-manage/src/styles/tables.scss +30 -0
  221. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.html +10 -0
  222. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.scss +429 -0
  223. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.ts +63 -0
  224. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.html +32 -0
  225. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.scss +444 -0
  226. package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.ts +89 -0
  227. package/projects/tuki/widgets/user-manage/src/user-details/notification.service.ts +68 -0
  228. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.html +29 -0
  229. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.scss +64 -0
  230. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.ts +19 -0
  231. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.html +290 -0
  232. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.scss +463 -0
  233. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.ts +212 -0
  234. package/projects/tuki/widgets/user-manage/src/user-manage.module.ts +63 -0
  235. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.html +6 -0
  236. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.scss +11 -0
  237. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.ts +13 -0
  238. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.html +26 -0
  239. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.scss +41 -0
  240. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.ts +41 -0
  241. package/projects/tuki/widgets/users-list/ng-package.json +6 -0
  242. package/projects/tuki/widgets/users-list/src/app.constants.ts +54 -0
  243. package/projects/tuki/widgets/users-list/src/assets/icons/close_icon_modal.svg +3 -0
  244. package/projects/tuki/widgets/users-list/src/assets/icons/icon_user.svg +1 -0
  245. package/projects/tuki/widgets/users-list/src/assets/icons/move_user_to_another_location.svg +14 -0
  246. package/projects/tuki/widgets/users-list/src/assets/icons/white-close-icon.svg +3 -0
  247. package/projects/tuki/widgets/users-list/src/classes/app-location.ts +36 -0
  248. package/projects/tuki/widgets/users-list/src/classes/device.ts +225 -0
  249. package/projects/tuki/widgets/users-list/src/classes/line.ts +144 -0
  250. package/projects/tuki/widgets/users-list/src/classes/move-user.ts +225 -0
  251. package/projects/tuki/widgets/users-list/src/classes/notification.ts +38 -0
  252. package/projects/tuki/widgets/users-list/src/classes/pagination.ts +18 -0
  253. package/projects/tuki/widgets/users-list/src/classes/simlified-user.ts +74 -0
  254. package/projects/tuki/widgets/users-list/src/classes/table-data.ts +6 -0
  255. package/projects/tuki/widgets/users-list/src/classes/user-interface.ts +225 -0
  256. package/projects/tuki/widgets/users-list/src/classes/user-list.ts +47 -0
  257. package/projects/tuki/widgets/users-list/src/classes/user.ts +8 -0
  258. package/projects/tuki/widgets/users-list/src/material.module.ts +94 -0
  259. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.html +37 -0
  260. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.scss +129 -0
  261. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.ts +46 -0
  262. 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
  263. 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
  264. 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
  265. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.html +222 -0
  266. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.scss +239 -0
  267. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.ts +206 -0
  268. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.html +12 -0
  269. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.scss +41 -0
  270. package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.ts +36 -0
  271. package/projects/tuki/widgets/users-list/src/services/api-webex.service.ts +14 -0
  272. package/projects/tuki/widgets/users-list/src/services/api.service.ts +90 -0
  273. package/projects/tuki/widgets/users-list/src/services/dns.service.ts +128 -0
  274. package/projects/tuki/widgets/users-list/src/services/events-communication.service.ts +11 -0
  275. package/projects/tuki/widgets/users-list/src/services/move-user.service.ts +59 -0
  276. package/projects/tuki/widgets/users-list/src/services/notification.service.ts +68 -0
  277. package/projects/tuki/widgets/users-list/src/services/removeKynFromIBM.service.ts +25 -0
  278. package/projects/tuki/widgets/users-list/src/services/site-settings.service.ts +26 -0
  279. package/projects/tuki/widgets/users-list/src/services/user.service.ts +159 -0
  280. package/projects/tuki/widgets/users-list/src/services/users-search.service.ts +137 -0
  281. package/projects/tuki/widgets/users-list/src/styles/styles.scss +572 -0
  282. package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.html +15 -0
  283. package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.scss +103 -0
  284. package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.ts +35 -0
  285. package/projects/tuki/widgets/users-list/src/users-list.component.css +4 -0
  286. package/projects/tuki/widgets/users-list/src/users-list.component.css.map +1 -0
  287. package/projects/tuki/widgets/users-list/src/users-list.component.html +86 -0
  288. package/projects/tuki/widgets/users-list/src/users-list.component.scss +572 -0
  289. package/projects/tuki/widgets/users-list/src/users-list.component.ts +312 -0
  290. package/projects/tuki/widgets/users-list/src/users-list.module.ts +63 -0
  291. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css +11 -0
  292. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css.map +1 -0
  293. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.html +6 -0
  294. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.scss +11 -0
  295. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.ts +13 -0
  296. package/projects/tuki/widgets/users-list/src/utils/common-functions.ts +32 -0
  297. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.html +33 -0
  298. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.scss +84 -0
  299. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.ts +46 -0
  300. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css +45 -0
  301. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css.map +1 -0
  302. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.html +26 -0
  303. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.scss +41 -0
  304. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.ts +41 -0
  305. package/projects/tuki/widgets/users-list/src/utils/utils.service.ts +71 -0
  306. package/projects/widgets-playground/src/app/app.component.html +63 -0
  307. package/projects/widgets-playground/src/app/app.component.scss +15 -0
  308. package/projects/widgets-playground/src/app/app.component.spec.ts +31 -0
  309. package/projects/widgets-playground/src/app/app.component.ts +31 -0
  310. package/projects/widgets-playground/src/app/app.module.ts +37 -0
  311. package/projects/widgets-playground/src/assets/.gitkeep +0 -0
  312. package/projects/widgets-playground/src/assets/icons/already_upgraded.png +0 -0
  313. package/projects/widgets-playground/src/assets/icons/check2_icon.png +0 -0
  314. package/projects/widgets-playground/src/assets/icons/check_icon.png +0 -0
  315. package/projects/widgets-playground/src/assets/icons/expand_icon.png +0 -0
  316. package/projects/widgets-playground/src/assets/icons/issue_icon.png +0 -0
  317. package/projects/widgets-playground/src/assets/icons/menu_icon.png +0 -0
  318. package/projects/widgets-playground/src/assets/icons/ready_to_upgrade.png +0 -0
  319. package/projects/widgets-playground/src/assets/icons/search_icon.png +0 -0
  320. package/projects/widgets-playground/src/assets/icons/site.png +0 -0
  321. package/projects/widgets-playground/src/assets/icons/user.png +0 -0
  322. package/projects/widgets-playground/src/assets/icons/warning_icon.png +0 -0
  323. package/projects/widgets-playground/src/favicon.ico +0 -0
  324. package/projects/widgets-playground/src/index.html +13 -0
  325. package/projects/widgets-playground/src/main.ts +7 -0
  326. package/projects/widgets-playground/src/styles.scss +23 -0
  327. package/projects/widgets-playground/tsconfig.app.json +14 -0
  328. package/projects/widgets-playground/tsconfig.spec.json +14 -0
  329. package/proxy.conf.js +23 -0
  330. package/tsconfig.json +46 -0
  331. package/di2mt/api/api.endpoints.d.ts +0 -20
  332. package/di2mt/index.d.ts +0 -5
  333. package/di2mt/shared/components/card/card.component.d.ts +0 -6
  334. package/di2mt/shared/components/chart-card/chart-card.component.d.ts +0 -22
  335. package/di2mt/shared/components/stat-card/stat-card.component.d.ts +0 -14
  336. package/di2mt/shared/components/status-list-card/status-list-card.component.d.ts +0 -7
  337. package/di2mt/shared/components/summary-card/summary-card.component.d.ts +0 -9
  338. package/di2mt/shared/components/table-filters/table-filters.component.d.ts +0 -14
  339. package/di2mt/shared/material.module.d.ts +0 -15
  340. package/di2mt/shared/services/api.service.d.ts +0 -20
  341. package/di2mt/shared/shared.module.d.ts +0 -16
  342. package/di2mt/shared/types/constants.d.ts +0 -7
  343. package/di2mt/shared/types/data-table.d.ts +0 -5
  344. package/di2mt/shared/types/table/filter.d.ts +0 -16
  345. package/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.d.ts +0 -47
  346. package/di2mt/widgets/site-upgrade/site-upgrade.module.d.ts +0 -12
  347. package/di2mt/widgets/site-upgrade/site-upgrade.service.d.ts +0 -12
  348. package/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.d.ts +0 -18
  349. package/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.d.ts +0 -18
  350. package/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.d.ts +0 -17
  351. package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.d.ts +0 -18
  352. package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.d.ts +0 -18
  353. package/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.d.ts +0 -14
  354. package/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.d.ts +0 -17
  355. package/di2mt/widgets/upgrade-overview/upgrade-overview.module.d.ts +0 -15
  356. package/di2mt/widgets/upgrade-overview/upgrade-overview.service.d.ts +0 -17
  357. package/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.d.ts +0 -48
  358. package/di2mt/widgets/user-upgrade/user-upgrade.module.d.ts +0 -12
  359. package/di2mt/widgets/user-upgrade/user-upgrade.service.d.ts +0 -14
  360. package/esm2020/di2mt/api/api.endpoints.mjs +0 -21
  361. package/esm2020/di2mt/public-api.mjs +0 -23
  362. package/esm2020/di2mt/shared/components/card/card.component.mjs +0 -13
  363. package/esm2020/di2mt/shared/components/chart-card/chart-card.component.mjs +0 -62
  364. package/esm2020/di2mt/shared/components/index.mjs +0 -7
  365. package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +0 -47
  366. package/esm2020/di2mt/shared/components/status-list-card/status-list-card.component.mjs +0 -17
  367. package/esm2020/di2mt/shared/components/summary-card/summary-card.component.mjs +0 -36
  368. package/esm2020/di2mt/shared/components/table-filters/table-filters.component.mjs +0 -37
  369. package/esm2020/di2mt/shared/material.module.mjs +0 -76
  370. package/esm2020/di2mt/shared/services/api.service.mjs +0 -86
  371. package/esm2020/di2mt/shared/shared.module.mjs +0 -61
  372. package/esm2020/di2mt/shared/types/constants.mjs +0 -12
  373. package/esm2020/di2mt/shared/types/data-table.mjs +0 -2
  374. package/esm2020/di2mt/shared/types/table/filter.mjs +0 -2
  375. package/esm2020/di2mt/tuki-io-tuki-widgets-di2mt.mjs +0 -5
  376. package/esm2020/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.mjs +0 -179
  377. package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.module.mjs +0 -40
  378. package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.service.mjs +0 -43
  379. package/esm2020/di2mt/widgets/site-upgrade/types/user-upgrade.mjs +0 -3
  380. package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.mjs +0 -61
  381. package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.mjs +0 -61
  382. package/esm2020/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.mjs +0 -65
  383. package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.mjs +0 -42
  384. package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.mjs +0 -42
  385. package/esm2020/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.mjs +0 -61
  386. package/esm2020/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.mjs +0 -71
  387. package/esm2020/di2mt/widgets/upgrade-overview/types/upgrade-overview.mjs +0 -2
  388. package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.module.mjs +0 -59
  389. package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.service.mjs +0 -82
  390. package/esm2020/di2mt/widgets/user-upgrade/types/user-upgrade.mjs +0 -3
  391. package/esm2020/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.mjs +0 -194
  392. package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.module.mjs +0 -40
  393. package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.service.mjs +0 -58
  394. package/esm2020/lib/widgets.component.mjs +0 -22
  395. package/esm2020/lib/widgets.module.mjs +0 -21
  396. package/esm2020/lib/widgets.service.mjs +0 -14
  397. package/esm2020/public-api.mjs +0 -7
  398. package/esm2020/tuki-io-tuki-widgets.mjs +0 -5
  399. package/esm2020/user-device-manage/public-api.mjs +0 -9
  400. package/esm2020/user-device-manage/src/app.constants.mjs +0 -95
  401. package/esm2020/user-device-manage/src/classes/device.mjs +0 -85
  402. package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +0 -2
  403. package/esm2020/user-device-manage/src/classes/line-association.mjs +0 -121
  404. package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +0 -10
  405. package/esm2020/user-device-manage/src/classes/line-directory.mjs +0 -27
  406. package/esm2020/user-device-manage/src/classes/line.mjs +0 -18
  407. package/esm2020/user-device-manage/src/classes/notification.mjs +0 -32
  408. package/esm2020/user-device-manage/src/classes/recording-options.mjs +0 -7
  409. package/esm2020/user-device-manage/src/classes/simplified-user.mjs +0 -111
  410. package/esm2020/user-device-manage/src/classes/site-defaults.mjs +0 -21
  411. package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +0 -32
  412. package/esm2020/user-device-manage/src/classes/types.mjs +0 -24
  413. package/esm2020/user-device-manage/src/common-functions.mjs +0 -19
  414. package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +0 -34
  415. package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +0 -31
  416. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +0 -16
  417. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +0 -64
  418. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +0 -179
  419. package/esm2020/user-device-manage/src/device-list/device-list.component.mjs +0 -24
  420. package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +0 -335
  421. package/esm2020/user-device-manage/src/environments/environment.mjs +0 -11
  422. package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +0 -36
  423. package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +0 -74
  424. package/esm2020/user-device-manage/src/material.module.mjs +0 -192
  425. package/esm2020/user-device-manage/src/notifications/notification.component.mjs +0 -35
  426. package/esm2020/user-device-manage/src/services/api.service.mjs +0 -79
  427. package/esm2020/user-device-manage/src/services/device.service.mjs +0 -83
  428. package/esm2020/user-device-manage/src/services/dns.service.mjs +0 -104
  429. package/esm2020/user-device-manage/src/services/line.service.mjs +0 -76
  430. package/esm2020/user-device-manage/src/services/notification.service.mjs +0 -62
  431. package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +0 -25
  432. package/esm2020/user-device-manage/src/services/site-settings.service.mjs +0 -70
  433. package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +0 -197
  434. package/esm2020/user-device-manage/src/services/user.service.mjs +0 -243
  435. package/esm2020/user-device-manage/src/services/utils.service.mjs +0 -87
  436. package/esm2020/user-device-manage/src/services/validation.service.mjs +0 -760
  437. package/esm2020/user-device-manage/src/user-device-manage.module.mjs +0 -107
  438. package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +0 -14
  439. package/esm2020/user-device-manage/tuki-io-tuki-widgets-user-device-manage.mjs +0 -5
  440. package/esm2020/user-manage/public-api.mjs +0 -7
  441. package/esm2020/user-manage/src/app.constants.mjs +0 -50
  442. package/esm2020/user-manage/src/classes/device.mjs +0 -37
  443. package/esm2020/user-manage/src/classes/line-association-interface.mjs +0 -2
  444. package/esm2020/user-manage/src/classes/line-association.mjs +0 -110
  445. package/esm2020/user-manage/src/classes/line-call-info-display.mjs +0 -10
  446. package/esm2020/user-manage/src/classes/line-directory.mjs +0 -27
  447. package/esm2020/user-manage/src/classes/line.mjs +0 -18
  448. package/esm2020/user-manage/src/classes/notification.mjs +0 -32
  449. package/esm2020/user-manage/src/classes/pagination.mjs +0 -8
  450. package/esm2020/user-manage/src/classes/recording-options.mjs +0 -7
  451. package/esm2020/user-manage/src/classes/simplified-user.mjs +0 -109
  452. package/esm2020/user-manage/src/classes/table-data.mjs +0 -2
  453. package/esm2020/user-manage/src/classes/translation-pattern.mjs +0 -32
  454. package/esm2020/user-manage/src/classes/user-list.mjs +0 -10
  455. package/esm2020/user-manage/src/common-functions.mjs +0 -19
  456. package/esm2020/user-manage/src/device-list/device-list.component.mjs +0 -24
  457. package/esm2020/user-manage/src/environments/environment.mjs +0 -11
  458. package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +0 -36
  459. package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +0 -74
  460. package/esm2020/user-manage/src/material.module.mjs +0 -188
  461. package/esm2020/user-manage/src/notifications/notification.component.mjs +0 -35
  462. package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +0 -25
  463. package/esm2020/user-manage/src/services/api.service.mjs +0 -79
  464. package/esm2020/user-manage/src/services/dns.service.mjs +0 -110
  465. package/esm2020/user-manage/src/services/line.service.mjs +0 -34
  466. package/esm2020/user-manage/src/services/notification.service.mjs +0 -62
  467. package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +0 -25
  468. package/esm2020/user-manage/src/services/site-settings.service.mjs +0 -36
  469. package/esm2020/user-manage/src/services/sorting-utils.service.mjs +0 -197
  470. package/esm2020/user-manage/src/services/user.service.mjs +0 -207
  471. package/esm2020/user-manage/src/services/users-search.service.mjs +0 -50
  472. package/esm2020/user-manage/src/services/utils.service.mjs +0 -73
  473. package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +0 -65
  474. package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +0 -78
  475. package/esm2020/user-manage/src/user-info/user-info.component.mjs +0 -20
  476. package/esm2020/user-manage/src/user-manage-widget.component.mjs +0 -208
  477. package/esm2020/user-manage/src/user-manage.module.mjs +0 -99
  478. package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +0 -14
  479. package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +0 -43
  480. package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +0 -5
  481. package/esm2020/users-list/public-api.mjs +0 -9
  482. package/esm2020/users-list/src/app.constants.mjs +0 -54
  483. package/esm2020/users-list/src/classes/app-location.mjs +0 -32
  484. package/esm2020/users-list/src/classes/device.mjs +0 -7
  485. package/esm2020/users-list/src/classes/line.mjs +0 -18
  486. package/esm2020/users-list/src/classes/move-user.mjs +0 -178
  487. package/esm2020/users-list/src/classes/notification.mjs +0 -31
  488. package/esm2020/users-list/src/classes/pagination.mjs +0 -8
  489. package/esm2020/users-list/src/classes/simlified-user.mjs +0 -50
  490. package/esm2020/users-list/src/classes/table-data.mjs +0 -2
  491. package/esm2020/users-list/src/classes/user-list.mjs +0 -14
  492. package/esm2020/users-list/src/material.module.mjs +0 -209
  493. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +0 -38
  494. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +0 -23
  495. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +0 -189
  496. package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +0 -38
  497. package/esm2020/users-list/src/services/api-webex.service.mjs +0 -18
  498. package/esm2020/users-list/src/services/api.service.mjs +0 -78
  499. package/esm2020/users-list/src/services/dns.service.mjs +0 -120
  500. package/esm2020/users-list/src/services/events-communication.service.mjs +0 -14
  501. package/esm2020/users-list/src/services/move-user.service.mjs +0 -53
  502. package/esm2020/users-list/src/services/notification.service.mjs +0 -62
  503. package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +0 -25
  504. package/esm2020/users-list/src/services/site-settings.service.mjs +0 -27
  505. package/esm2020/users-list/src/services/user.service.mjs +0 -142
  506. package/esm2020/users-list/src/services/users-search.service.mjs +0 -122
  507. package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +0 -34
  508. package/esm2020/users-list/src/users-list.component.mjs +0 -287
  509. package/esm2020/users-list/src/users-list.module.mjs +0 -92
  510. package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +0 -14
  511. package/esm2020/users-list/src/utils/common-functions.mjs +0 -32
  512. package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +0 -43
  513. package/esm2020/users-list/src/utils/utils.service.mjs +0 -73
  514. package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +0 -5
  515. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +0 -1438
  516. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +0 -1
  517. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +0 -3402
  518. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +0 -1
  519. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +0 -2124
  520. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +0 -1
  521. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +0 -1994
  522. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +0 -1
  523. package/fesm2015/tuki-io-tuki-widgets.mjs +0 -63
  524. package/fesm2015/tuki-io-tuki-widgets.mjs.map +0 -1
  525. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +0 -1429
  526. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +0 -1
  527. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +0 -3364
  528. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +0 -1
  529. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +0 -2107
  530. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +0 -1
  531. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +0 -1973
  532. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +0 -1
  533. package/fesm2020/tuki-io-tuki-widgets.mjs +0 -63
  534. package/fesm2020/tuki-io-tuki-widgets.mjs.map +0 -1
  535. package/index.d.ts +0 -5
  536. package/lib/widgets.component.d.ts +0 -8
  537. package/lib/widgets.module.d.ts +0 -7
  538. package/lib/widgets.service.d.ts +0 -6
  539. package/user-device-manage/index.d.ts +0 -5
  540. package/user-device-manage/src/app.constants.d.ts +0 -74
  541. package/user-device-manage/src/classes/device.d.ts +0 -233
  542. package/user-device-manage/src/classes/line-association-interface.d.ts +0 -45
  543. package/user-device-manage/src/classes/line-association.d.ts +0 -62
  544. package/user-device-manage/src/classes/line-call-info-display.d.ts +0 -11
  545. package/user-device-manage/src/classes/line-directory.d.ts +0 -15
  546. package/user-device-manage/src/classes/line.d.ts +0 -140
  547. package/user-device-manage/src/classes/notification.d.ts +0 -18
  548. package/user-device-manage/src/classes/recording-options.d.ts +0 -5
  549. package/user-device-manage/src/classes/simplified-user.d.ts +0 -52
  550. package/user-device-manage/src/classes/site-defaults.d.ts +0 -146
  551. package/user-device-manage/src/classes/translation-pattern.d.ts +0 -19
  552. package/user-device-manage/src/classes/types.d.ts +0 -19
  553. package/user-device-manage/src/common-functions.d.ts +0 -1
  554. package/user-device-manage/src/confirm-dialog/info-dialog.component.d.ts +0 -20
  555. package/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.d.ts +0 -15
  556. package/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.d.ts +0 -7
  557. package/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.d.ts +0 -24
  558. package/user-device-manage/src/device-associated-line/device-associated-line.component.d.ts +0 -89
  559. package/user-device-manage/src/device-list/device-list.component.d.ts +0 -11
  560. package/user-device-manage/src/device-manage-widget.component.d.ts +0 -71
  561. package/user-device-manage/src/environments/environment.d.ts +0 -9
  562. package/user-device-manage/src/interseptors/auth.interceptor.d.ts +0 -9
  563. package/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +0 -35
  564. package/user-device-manage/src/material.module.d.ts +0 -29
  565. package/user-device-manage/src/notifications/notification.component.d.ts +0 -19
  566. package/user-device-manage/src/services/api.service.d.ts +0 -20
  567. package/user-device-manage/src/services/device.service.d.ts +0 -21
  568. package/user-device-manage/src/services/dns.service.d.ts +0 -14
  569. package/user-device-manage/src/services/line.service.d.ts +0 -33
  570. package/user-device-manage/src/services/notification.service.d.ts +0 -18
  571. package/user-device-manage/src/services/removeKynFromIBM.service.d.ts +0 -8
  572. package/user-device-manage/src/services/site-settings.service.d.ts +0 -25
  573. package/user-device-manage/src/services/sorting-utils.service.d.ts +0 -26
  574. package/user-device-manage/src/services/user.service.d.ts +0 -51
  575. package/user-device-manage/src/services/utils.service.d.ts +0 -10
  576. package/user-device-manage/src/services/validation.service.d.ts +0 -165
  577. package/user-device-manage/src/user-device-manage.module.d.ts +0 -22
  578. package/user-device-manage/src/utils/app-loader/app-loader.d.ts +0 -6
  579. package/user-manage/index.d.ts +0 -5
  580. package/user-manage/src/app.constants.d.ts +0 -29
  581. package/user-manage/src/classes/device.d.ts +0 -203
  582. package/user-manage/src/classes/line-association-interface.d.ts +0 -40
  583. package/user-manage/src/classes/line-association.d.ts +0 -55
  584. package/user-manage/src/classes/line-call-info-display.d.ts +0 -11
  585. package/user-manage/src/classes/line-directory.d.ts +0 -16
  586. package/user-manage/src/classes/line.d.ts +0 -140
  587. package/user-manage/src/classes/notification.d.ts +0 -18
  588. package/user-manage/src/classes/pagination.d.ts +0 -13
  589. package/user-manage/src/classes/recording-options.d.ts +0 -5
  590. package/user-manage/src/classes/simplified-user.d.ts +0 -50
  591. package/user-manage/src/classes/table-data.d.ts +0 -5
  592. package/user-manage/src/classes/translation-pattern.d.ts +0 -18
  593. package/user-manage/src/classes/user-list.d.ts +0 -34
  594. package/user-manage/src/common-functions.d.ts +0 -1
  595. package/user-manage/src/device-list/device-list.component.d.ts +0 -11
  596. package/user-manage/src/environments/environment.d.ts +0 -9
  597. package/user-manage/src/interseptors/auth.interceptor.d.ts +0 -9
  598. package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +0 -35
  599. package/user-manage/src/material.module.d.ts +0 -28
  600. package/user-manage/src/notifications/notification.component.d.ts +0 -19
  601. package/user-manage/src/removeKynFromIBM.service.d.ts +0 -8
  602. package/user-manage/src/services/api.service.d.ts +0 -21
  603. package/user-manage/src/services/dns.service.d.ts +0 -14
  604. package/user-manage/src/services/line.service.d.ts +0 -17
  605. package/user-manage/src/services/notification.service.d.ts +0 -18
  606. package/user-manage/src/services/removeKynFromIBM.service.d.ts +0 -8
  607. package/user-manage/src/services/site-settings.service.d.ts +0 -9
  608. package/user-manage/src/services/sorting-utils.service.d.ts +0 -26
  609. package/user-manage/src/services/user.service.d.ts +0 -43
  610. package/user-manage/src/services/users-search.service.d.ts +0 -25
  611. package/user-manage/src/services/utils.service.d.ts +0 -9
  612. package/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.d.ts +0 -24
  613. package/user-manage/src/user-calling/user-calling.component.d.ts +0 -30
  614. package/user-manage/src/user-info/user-info.component.d.ts +0 -9
  615. package/user-manage/src/user-manage-widget.component.d.ts +0 -45
  616. package/user-manage/src/user-manage.module.d.ts +0 -21
  617. package/user-manage/src/utils/app-loader/app-loader.d.ts +0 -6
  618. package/user-manage/src/utils/pagination/pagination.component.d.ts +0 -18
  619. package/users-list/index.d.ts +0 -5
  620. package/users-list/src/app.constants.d.ts +0 -36
  621. package/users-list/src/classes/app-location.d.ts +0 -17
  622. package/users-list/src/classes/device.d.ts +0 -224
  623. package/users-list/src/classes/line.d.ts +0 -140
  624. package/users-list/src/classes/move-user.d.ts +0 -85
  625. package/users-list/src/classes/notification.d.ts +0 -18
  626. package/users-list/src/classes/pagination.d.ts +0 -13
  627. package/users-list/src/classes/simlified-user.d.ts +0 -25
  628. package/users-list/src/classes/table-data.d.ts +0 -5
  629. package/users-list/src/classes/user-list.d.ts +0 -36
  630. package/users-list/src/material.module.d.ts +0 -31
  631. package/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.d.ts +0 -21
  632. package/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.d.ts +0 -12
  633. package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +0 -55
  634. package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +0 -17
  635. package/users-list/src/services/api-webex.service.d.ts +0 -8
  636. package/users-list/src/services/api.service.d.ts +0 -21
  637. package/users-list/src/services/dns.service.d.ts +0 -18
  638. package/users-list/src/services/events-communication.service.d.ts +0 -8
  639. package/users-list/src/services/move-user.service.d.ts +0 -17
  640. package/users-list/src/services/notification.service.d.ts +0 -18
  641. package/users-list/src/services/removeKynFromIBM.service.d.ts +0 -8
  642. package/users-list/src/services/site-settings.service.d.ts +0 -11
  643. package/users-list/src/services/user.service.d.ts +0 -35
  644. package/users-list/src/services/users-search.service.d.ts +0 -34
  645. package/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.d.ts +0 -20
  646. package/users-list/src/users-list.component.d.ts +0 -60
  647. package/users-list/src/users-list.module.d.ts +0 -18
  648. package/users-list/src/utils/app-loader/app-loader.d.ts +0 -6
  649. package/users-list/src/utils/common-functions.d.ts +0 -2
  650. package/users-list/src/utils/pagination/pagination.component.d.ts +0 -18
  651. package/users-list/src/utils/utils.service.d.ts +0 -9
  652. /package/{di2mt → projects/tuki/widgets/di2mt}/README.md +0 -0
  653. /package/{user-device-manage/public-api.d.ts → projects/tuki/widgets/user-device-manage/public-api.ts} +0 -0
  654. /package/{user-manage/public-api.d.ts → projects/tuki/widgets/user-manage/public-api.ts} +0 -0
  655. /package/{users-list/public-api.d.ts → projects/tuki/widgets/users-list/public-api.ts} +0 -0
@@ -1,50 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { ListUser } from '../classes/user-list';
3
- import { BehaviorSubject } from 'rxjs';
4
- import { API, PAGINATION_DEFAULTS, PAGINATION_SIZE_OPTIONS } from '../app.constants';
5
- import { map } from 'rxjs/operators';
6
- import * as i0 from "@angular/core";
7
- import * as i1 from "./api.service";
8
- import * as i2 from "../removeKynFromIBM.service";
9
- export class UsersSearchService {
10
- constructor(apiService, removeKynFromIBMService) {
11
- this.apiService = apiService;
12
- this.removeKynFromIBMService = removeKynFromIBMService;
13
- this.siteId = -1;
14
- this.userId = '';
15
- this.userIdExistPending = false;
16
- this.hasExistedUserId = false;
17
- this.pageSize = PAGINATION_DEFAULTS.SIZE;
18
- this.pageIndex = PAGINATION_DEFAULTS.SIZE;
19
- this.pageSizeOptions = PAGINATION_SIZE_OPTIONS;
20
- this.foundUsers$ = new BehaviorSubject(null);
21
- }
22
- getPagination() {
23
- return {
24
- total: this.total,
25
- pageSizeOptions: this.pageSizeOptions,
26
- pageSize: this.pageSize,
27
- pageIndex: this.pageIndex
28
- };
29
- }
30
- quickRegularUsersSearch() {
31
- this.searchParams = this.searchParams || { customerid: this.customerId };
32
- this.searchParams['provisionType'] = 'CUCM';
33
- return this.apiService.fetchPagination(API.QUICK_USERS_SEARCH, this.pageSize, this.pageIndex, this.searchParams)
34
- .pipe(map((res) => {
35
- this.total = res.total;
36
- // this.totals = this.totals || {};
37
- // this.totals['users'] = res.total;
38
- const users = res.pageData && res.pageData.length ? res.pageData.map(user => new ListUser(user)) : [];
39
- // this.foundUsers$.next(this.removeKynFromIBMService.removeCUCMS(users, this.customerId));
40
- this.foundUsers$.next(users);
41
- }));
42
- // .pipe(this.handleError(true));
43
- }
44
- }
45
- UsersSearchService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UsersSearchService, deps: [{ token: i1.APIService }, { token: i2.RemoveKynFromIBMService }], target: i0.ɵɵFactoryTarget.Injectable });
46
- UsersSearchService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UsersSearchService });
47
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UsersSearchService, decorators: [{
48
- type: Injectable
49
- }], ctorParameters: function () { return [{ type: i1.APIService }, { type: i2.RemoveKynFromIBMService }]; } });
50
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtc2VhcmNoLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dWtpL3dpZGdldHMvdXNlci1tYW5hZ2Uvc3JjL3NlcnZpY2VzL3VzZXJzLXNlYXJjaC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFHbkQsT0FBTyxFQUFFLFFBQVEsRUFBcUIsTUFBTSxzQkFBc0IsQ0FBQztBQUNuRSxPQUFPLEVBQUUsZUFBZSxFQUFjLE1BQU0sTUFBTSxDQUFDO0FBQ25ELE9BQU8sRUFBRSxHQUFHLEVBQUUsbUJBQW1CLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUVyRixPQUFPLEVBQUUsR0FBRyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7QUFPckMsTUFBTSxPQUFPLGtCQUFrQjtJQWE3QixZQUNVLFVBQXNCLEVBQ3RCLHVCQUFnRDtRQURoRCxlQUFVLEdBQVYsVUFBVSxDQUFZO1FBQ3RCLDRCQUF1QixHQUF2Qix1QkFBdUIsQ0FBeUI7UUFkMUQsV0FBTSxHQUFXLENBQUMsQ0FBQyxDQUFDO1FBQ3BCLFdBQU0sR0FBVyxFQUFFLENBQUM7UUFFcEIsdUJBQWtCLEdBQUcsS0FBSyxDQUFDO1FBQzNCLHFCQUFnQixHQUFHLEtBQUssQ0FBQztRQUN6QixhQUFRLEdBQUcsbUJBQW1CLENBQUMsSUFBSSxDQUFDO1FBQ3BDLGNBQVMsR0FBRyxtQkFBbUIsQ0FBQyxJQUFJLENBQUM7UUFDckMsb0JBQWUsR0FBRyx1QkFBdUIsQ0FBQztRQVN4QyxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBRS9DLENBQUM7SUFFTSxhQUFhO1FBQ2xCLE9BQU87WUFDTCxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUs7WUFDakIsZUFBZSxFQUFFLElBQUksQ0FBQyxlQUFlO1lBQ3JDLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUTtZQUN2QixTQUFTLEVBQUUsSUFBSSxDQUFDLFNBQVM7U0FDMUIsQ0FBQztJQUNKLENBQUM7SUFFTSx1QkFBdUI7UUFDNUIsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUMsWUFBWSxJQUFJLEVBQUMsVUFBVSxFQUFFLElBQUksQ0FBQyxVQUFVLEVBQUMsQ0FBQztRQUN2RSxJQUFJLENBQUMsWUFBWSxDQUFDLGVBQWUsQ0FBQyxHQUFHLE1BQU0sQ0FBQztRQUM1QyxPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsZUFBZSxDQUFDLEdBQUcsQ0FBQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxTQUFTLEVBQUUsSUFBSSxDQUFDLFlBQVksQ0FBQzthQUM3RyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBdUIsRUFBRSxFQUFFO1lBQ3BDLElBQUksQ0FBQyxLQUFLLEdBQUcsR0FBRyxDQUFDLEtBQUssQ0FBQztZQUN2QixtQ0FBbUM7WUFDbkMsb0NBQW9DO1lBQ3BDLE1BQU0sS0FBSyxHQUFHLEdBQUcsQ0FBQyxRQUFRLElBQUksR0FBRyxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsSUFBSSxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1lBQ3RHLDJGQUEyRjtZQUMzRixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMvQixDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ0osaUNBQWlDO0lBQ3JDLENBQUM7O2dIQTNDVSxrQkFBa0I7b0hBQWxCLGtCQUFrQjs0RkFBbEIsa0JBQWtCO2tCQUQ5QixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFNpbXBsaWZpZWRVc2VyIH0gZnJvbSAnLi4vY2xhc3Nlcy9zaW1wbGlmaWVkLXVzZXInO1xyXG5pbXBvcnQgeyBBUElTZXJ2aWNlIH0gZnJvbSAnLi9hcGkuc2VydmljZSc7XHJcbmltcG9ydCB7IExpc3RVc2VyLCBMaXN0VXNlckludGVyZmFjZSB9IGZyb20gJy4uL2NsYXNzZXMvdXNlci1saXN0JztcclxuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IEFQSSwgUEFHSU5BVElPTl9ERUZBVUxUUywgUEFHSU5BVElPTl9TSVpFX09QVElPTlMgfSBmcm9tICcuLi9hcHAuY29uc3RhbnRzJztcclxuaW1wb3J0IHsgVGFibGVEYXRhSW50ZXJmYWNlIH0gZnJvbSAnLi4vY2xhc3Nlcy90YWJsZS1kYXRhJztcclxuaW1wb3J0IHsgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xyXG5pbXBvcnQgeyBSZW1vdmVLeW5Gcm9tSUJNU2VydmljZSB9IGZyb20gJy4uL3JlbW92ZUt5bkZyb21JQk0uc2VydmljZSc7XHJcbmltcG9ydCB7IFBhZ2luYXRpb25EYXRhRHRvIH0gZnJvbSAnLi4vY2xhc3Nlcy9wYWdpbmF0aW9uJztcclxuXHJcblxyXG5cclxuQEluamVjdGFibGUoKVxyXG5leHBvcnQgY2xhc3MgVXNlcnNTZWFyY2hTZXJ2aWNlICB7XHJcbiAgc2l0ZUlkOiBudW1iZXIgPSAtMTtcclxuICB1c2VySWQ6IHN0cmluZyA9ICcnO1xyXG4gIGN1c3RvbWVySWQhOiBudW1iZXI7XHJcbiAgdXNlcklkRXhpc3RQZW5kaW5nID0gZmFsc2U7XHJcbiAgaGFzRXhpc3RlZFVzZXJJZCA9IGZhbHNlO1xyXG4gIHBhZ2VTaXplID0gUEFHSU5BVElPTl9ERUZBVUxUUy5TSVpFO1xyXG4gIHBhZ2VJbmRleCA9IFBBR0lOQVRJT05fREVGQVVMVFMuU0laRTtcclxuICBwYWdlU2l6ZU9wdGlvbnMgPSBQQUdJTkFUSU9OX1NJWkVfT1BUSU9OUztcclxuICB0b3RhbCE6IG51bWJlcjtcclxuICBzZWFyY2hQYXJhbXMhOiBhbnk7XHJcbiAgZm91bmRVc2VycyQhOiBhbnk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHJpdmF0ZSBhcGlTZXJ2aWNlOiBBUElTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSByZW1vdmVLeW5Gcm9tSUJNU2VydmljZTogUmVtb3ZlS3luRnJvbUlCTVNlcnZpY2VcclxuICApIHtcclxuICAgIHRoaXMuZm91bmRVc2VycyQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0KG51bGwpO1xyXG5cclxuICB9XHJcblxyXG4gIHB1YmxpYyBnZXRQYWdpbmF0aW9uKCk6IFBhZ2luYXRpb25EYXRhRHRvIHtcclxuICAgIHJldHVybiB7XHJcbiAgICAgIHRvdGFsOiB0aGlzLnRvdGFsLFxyXG4gICAgICBwYWdlU2l6ZU9wdGlvbnM6IHRoaXMucGFnZVNpemVPcHRpb25zLFxyXG4gICAgICBwYWdlU2l6ZTogdGhpcy5wYWdlU2l6ZSxcclxuICAgICAgcGFnZUluZGV4OiB0aGlzLnBhZ2VJbmRleFxyXG4gICAgfTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBxdWlja1JlZ3VsYXJVc2Vyc1NlYXJjaCgpIHtcclxuICAgIHRoaXMuc2VhcmNoUGFyYW1zID0gdGhpcy5zZWFyY2hQYXJhbXMgfHwge2N1c3RvbWVyaWQ6IHRoaXMuY3VzdG9tZXJJZH07XHJcbiAgICB0aGlzLnNlYXJjaFBhcmFtc1sncHJvdmlzaW9uVHlwZSddID0gJ0NVQ00nO1xyXG4gICAgcmV0dXJuIHRoaXMuYXBpU2VydmljZS5mZXRjaFBhZ2luYXRpb24oQVBJLlFVSUNLX1VTRVJTX1NFQVJDSCwgdGhpcy5wYWdlU2l6ZSwgdGhpcy5wYWdlSW5kZXgsIHRoaXMuc2VhcmNoUGFyYW1zKVxyXG4gICAgICAucGlwZShtYXAoKHJlczogVGFibGVEYXRhSW50ZXJmYWNlKSA9PiB7XHJcbiAgICAgICAgdGhpcy50b3RhbCA9IHJlcy50b3RhbDtcclxuICAgICAgICAvLyB0aGlzLnRvdGFscyA9IHRoaXMudG90YWxzIHx8IHt9O1xyXG4gICAgICAgIC8vIHRoaXMudG90YWxzWyd1c2VycyddID0gcmVzLnRvdGFsO1xyXG4gICAgICAgIGNvbnN0IHVzZXJzID0gcmVzLnBhZ2VEYXRhICYmIHJlcy5wYWdlRGF0YS5sZW5ndGggPyByZXMucGFnZURhdGEubWFwKHVzZXIgPT4gbmV3IExpc3RVc2VyKHVzZXIpKSA6IFtdO1xyXG4gICAgICAgIC8vIHRoaXMuZm91bmRVc2VycyQubmV4dCh0aGlzLnJlbW92ZUt5bkZyb21JQk1TZXJ2aWNlLnJlbW92ZUNVQ01TKHVzZXJzLCB0aGlzLmN1c3RvbWVySWQpKTtcclxuICAgICAgICB0aGlzLmZvdW5kVXNlcnMkLm5leHQodXNlcnMpO1xyXG4gICAgICB9KSk7XHJcbiAgICAgIC8vIC5waXBlKHRoaXMuaGFuZGxlRXJyb3IodHJ1ZSkpO1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -1,73 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class UtilsService {
4
- static sortSortArrayByProperty(array, sortBy) {
5
- if (!array) {
6
- return null;
7
- }
8
- return array.sort((a, b) => {
9
- if (!a[sortBy] && !b[sortBy]) {
10
- return 0;
11
- }
12
- if (a[sortBy] && !b[sortBy]) {
13
- return 1;
14
- }
15
- if (!a[sortBy] && b[sortBy]) {
16
- return -1;
17
- }
18
- const positionA = a[sortBy];
19
- const positionB = b[sortBy];
20
- return (positionA < positionB) ? -1 : (positionA > positionB) ? 1 : 0;
21
- });
22
- }
23
- static diff(origObject, updatedObj, path, keysToIgnore) {
24
- let result = [];
25
- if (Object.is(origObject, updatedObj)) {
26
- return undefined;
27
- }
28
- if (!updatedObj || typeof updatedObj !== 'object') {
29
- return updatedObj;
30
- }
31
- const concat = Array.from(new Set([...Object.keys(origObject || {}), ...Object.keys(updatedObj || {})]));
32
- const filter = keysToIgnore ? concat.filter(key => !keysToIgnore.includes(key)) : concat;
33
- filter
34
- .forEach(key => {
35
- if (typeof updatedObj[key] === 'object' && typeof origObject[key] === 'object') {
36
- if (UtilsService.differs(updatedObj[key], origObject[key])) {
37
- const newPath = `${path}${path ? '.' : ''}${key}`;
38
- const values = UtilsService.diff(origObject[key], updatedObj[key], newPath, keysToIgnore);
39
- if (values !== undefined) {
40
- result = [...result, ...values];
41
- }
42
- }
43
- }
44
- else if (updatedObj && !origObject || updatedObj[key] !== origObject[key] && !Object.is(origObject[key], updatedObj[key])) {
45
- const value = updatedObj ? UtilsService.formatIfEmpty(updatedObj[key]) : null;
46
- result.push(`${path}${path ? '.' : ''}${key}=${value}`);
47
- }
48
- });
49
- return result;
50
- }
51
- static formatIfEmpty(value) {
52
- if (value) {
53
- return value;
54
- }
55
- switch (typeof value) {
56
- case 'boolean':
57
- return value;
58
- case 'string':
59
- return '';
60
- default:
61
- return null;
62
- }
63
- }
64
- static differs(obj1, obj2) {
65
- return JSON.stringify(obj1) !== JSON.stringify(obj2);
66
- }
67
- }
68
- UtilsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UtilsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
69
- UtilsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UtilsService });
70
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UtilsService, decorators: [{
71
- type: Injectable
72
- }] });
73
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbHMuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1a2kvd2lkZ2V0cy91c2VyLW1hbmFnZS9zcmMvc2VydmljZXMvdXRpbHMuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUczQyxNQUFNLE9BQU8sWUFBWTtJQUV2QixNQUFNLENBQUMsdUJBQXVCLENBQUMsS0FBUyxFQUFFLE1BQWM7UUFDdEQsSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNWLE9BQU8sSUFBSSxDQUFDO1NBQ2I7UUFDRCxPQUFPLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUU7WUFDekIsSUFBSSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsRUFBRTtnQkFDNUIsT0FBTyxDQUFDLENBQUM7YUFDVjtZQUNELElBQUksQ0FBQyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxFQUFFO2dCQUMzQixPQUFPLENBQUMsQ0FBQzthQUNWO1lBQ0QsSUFBSSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsTUFBTSxDQUFDLEVBQUU7Z0JBQzNCLE9BQU8sQ0FBQyxDQUFDLENBQUM7YUFDWDtZQUNELE1BQU0sU0FBUyxHQUFHLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUM1QixNQUFNLFNBQVMsR0FBRyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDNUIsT0FBTyxDQUFDLFNBQVMsR0FBRyxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsU0FBUyxHQUFHLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUN4RSxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxNQUFNLENBQUMsSUFBSSxDQUFDLFVBQWUsRUFBRSxVQUFlLEVBQUUsSUFBWSxFQUFFLFlBQXVCO1FBQ2pGLElBQUksTUFBTSxHQUFRLEVBQUUsQ0FBQztRQUNyQixJQUFJLE1BQU0sQ0FBQyxFQUFFLENBQUMsVUFBVSxFQUFFLFVBQVUsQ0FBQyxFQUFFO1lBQ3JDLE9BQU8sU0FBUyxDQUFDO1NBQ2xCO1FBQ0QsSUFBSSxDQUFDLFVBQVUsSUFBSSxPQUFPLFVBQVUsS0FBSyxRQUFRLEVBQUU7WUFDakQsT0FBTyxVQUFVLENBQUM7U0FDbkI7UUFDRCxNQUFNLE1BQU0sR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksR0FBRyxDQUFDLENBQUMsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLFVBQVUsSUFBSSxFQUFFLENBQUMsRUFBRSxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUMsVUFBVSxJQUFJLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ3pHLE1BQU0sTUFBTSxHQUFHLFlBQVksQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUM7UUFDekYsTUFBTTthQUNILE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRTtZQUNiLElBQUksT0FBTyxVQUFVLENBQUMsR0FBRyxDQUFDLEtBQUssUUFBUSxJQUFJLE9BQU8sVUFBVSxDQUFDLEdBQUcsQ0FBQyxLQUFLLFFBQVEsRUFBRTtnQkFDOUUsSUFBSSxZQUFZLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsRUFBRSxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsRUFBRTtvQkFDMUQsTUFBTSxPQUFPLEdBQUcsR0FBRyxJQUFJLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsR0FBRyxHQUFHLEVBQUUsQ0FBQztvQkFDbEQsTUFBTSxNQUFNLEdBQUcsWUFBWSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLEVBQUUsVUFBVSxDQUFDLEdBQUcsQ0FBQyxFQUFFLE9BQU8sRUFBRSxZQUFZLENBQUMsQ0FBQztvQkFDMUYsSUFBSSxNQUFNLEtBQUssU0FBUyxFQUFFO3dCQUN4QixNQUFNLEdBQUcsQ0FBQyxHQUFHLE1BQU0sRUFBRSxHQUFHLE1BQU0sQ0FBQyxDQUFDO3FCQUNqQztpQkFDRjthQUNGO2lCQUFNLElBQUksVUFBVSxJQUFJLENBQUMsVUFBVSxJQUFJLFVBQVUsQ0FBQyxHQUFHLENBQUMsS0FBSyxVQUFVLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsRUFBRSxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsRUFBRTtnQkFDM0gsTUFBTSxLQUFLLEdBQUcsVUFBVSxDQUFDLENBQUMsQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7Z0JBQzlFLE1BQU0sQ0FBQyxJQUFJLENBQUMsR0FBRyxJQUFJLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsR0FBRyxHQUFHLElBQUksS0FBSyxFQUFFLENBQUMsQ0FBQzthQUN6RDtRQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0wsT0FBTyxNQUFNLENBQUM7SUFDaEIsQ0FBQztJQUVELE1BQU0sQ0FBQyxhQUFhLENBQUMsS0FBVTtRQUM3QixJQUFJLEtBQUssRUFBRTtZQUNULE9BQU8sS0FBSyxDQUFDO1NBQ2Q7UUFDRCxRQUFRLE9BQU8sS0FBSyxFQUFFO1lBQ3BCLEtBQUssU0FBUztnQkFDWixPQUFPLEtBQUssQ0FBQztZQUNmLEtBQUssUUFBUTtnQkFDWCxPQUFPLEVBQUUsQ0FBQztZQUNaO2dCQUNFLE9BQU8sSUFBSSxDQUFDO1NBQ2Y7SUFDSCxDQUFDO0lBRUQsTUFBTSxDQUFDLE9BQU8sQ0FBQyxJQUFTLEVBQUUsSUFBUztRQUNqQyxPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLEtBQUssSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN2RCxDQUFDOzswR0FsRVUsWUFBWTs4R0FBWixZQUFZOzRGQUFaLFlBQVk7a0JBRHhCLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ASW5qZWN0YWJsZSgpXHJcbmV4cG9ydCBjbGFzcyBVdGlsc1NlcnZpY2Uge1xyXG5cclxuICBzdGF0aWMgc29ydFNvcnRBcnJheUJ5UHJvcGVydHkoYXJyYXk6IFtdLCBzb3J0Qnk6IHN0cmluZykge1xyXG4gICAgaWYgKCFhcnJheSkge1xyXG4gICAgICByZXR1cm4gbnVsbDtcclxuICAgIH1cclxuICAgIHJldHVybiBhcnJheS5zb3J0KChhLCBiKSA9PiB7XHJcbiAgICAgIGlmICghYVtzb3J0QnldICYmICFiW3NvcnRCeV0pIHtcclxuICAgICAgICByZXR1cm4gMDtcclxuICAgICAgfVxyXG4gICAgICBpZiAoYVtzb3J0QnldICYmICFiW3NvcnRCeV0pIHtcclxuICAgICAgICByZXR1cm4gMTtcclxuICAgICAgfVxyXG4gICAgICBpZiAoIWFbc29ydEJ5XSAmJiBiW3NvcnRCeV0pIHtcclxuICAgICAgICByZXR1cm4gLTE7XHJcbiAgICAgIH1cclxuICAgICAgY29uc3QgcG9zaXRpb25BID0gYVtzb3J0QnldO1xyXG4gICAgICBjb25zdCBwb3NpdGlvbkIgPSBiW3NvcnRCeV07XHJcbiAgICAgIHJldHVybiAocG9zaXRpb25BIDwgcG9zaXRpb25CKSA/IC0xIDogKHBvc2l0aW9uQSA+IHBvc2l0aW9uQikgPyAxIDogMDtcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgc3RhdGljIGRpZmYob3JpZ09iamVjdDogYW55LCB1cGRhdGVkT2JqOiBhbnksIHBhdGg6IHN0cmluZywga2V5c1RvSWdub3JlPzogc3RyaW5nW10pIHtcclxuICAgIGxldCByZXN1bHQ6IGFueSA9IFtdO1xyXG4gICAgaWYgKE9iamVjdC5pcyhvcmlnT2JqZWN0LCB1cGRhdGVkT2JqKSkge1xyXG4gICAgICByZXR1cm4gdW5kZWZpbmVkO1xyXG4gICAgfVxyXG4gICAgaWYgKCF1cGRhdGVkT2JqIHx8IHR5cGVvZiB1cGRhdGVkT2JqICE9PSAnb2JqZWN0Jykge1xyXG4gICAgICByZXR1cm4gdXBkYXRlZE9iajtcclxuICAgIH1cclxuICAgIGNvbnN0IGNvbmNhdCA9IEFycmF5LmZyb20obmV3IFNldChbLi4uT2JqZWN0LmtleXMob3JpZ09iamVjdCB8fCB7fSksIC4uLk9iamVjdC5rZXlzKHVwZGF0ZWRPYmogfHwge30pXSkpO1xyXG4gICAgY29uc3QgZmlsdGVyID0ga2V5c1RvSWdub3JlID8gY29uY2F0LmZpbHRlcihrZXkgPT4gIWtleXNUb0lnbm9yZS5pbmNsdWRlcyhrZXkpKSA6IGNvbmNhdDtcclxuICAgIGZpbHRlclxyXG4gICAgICAuZm9yRWFjaChrZXkgPT4ge1xyXG4gICAgICAgIGlmICh0eXBlb2YgdXBkYXRlZE9ialtrZXldID09PSAnb2JqZWN0JyAmJiB0eXBlb2Ygb3JpZ09iamVjdFtrZXldID09PSAnb2JqZWN0Jykge1xyXG4gICAgICAgICAgaWYgKFV0aWxzU2VydmljZS5kaWZmZXJzKHVwZGF0ZWRPYmpba2V5XSwgb3JpZ09iamVjdFtrZXldKSkge1xyXG4gICAgICAgICAgICBjb25zdCBuZXdQYXRoID0gYCR7cGF0aH0ke3BhdGggPyAnLicgOiAnJ30ke2tleX1gO1xyXG4gICAgICAgICAgICBjb25zdCB2YWx1ZXMgPSBVdGlsc1NlcnZpY2UuZGlmZihvcmlnT2JqZWN0W2tleV0sIHVwZGF0ZWRPYmpba2V5XSwgbmV3UGF0aCwga2V5c1RvSWdub3JlKTtcclxuICAgICAgICAgICAgaWYgKHZhbHVlcyAhPT0gdW5kZWZpbmVkKSB7XHJcbiAgICAgICAgICAgICAgcmVzdWx0ID0gWy4uLnJlc3VsdCwgLi4udmFsdWVzXTtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH0gZWxzZSBpZiAodXBkYXRlZE9iaiAmJiAhb3JpZ09iamVjdCB8fCB1cGRhdGVkT2JqW2tleV0gIT09IG9yaWdPYmplY3Rba2V5XSAmJiAhT2JqZWN0LmlzKG9yaWdPYmplY3Rba2V5XSwgdXBkYXRlZE9ialtrZXldKSkge1xyXG4gICAgICAgICAgY29uc3QgdmFsdWUgPSB1cGRhdGVkT2JqID8gVXRpbHNTZXJ2aWNlLmZvcm1hdElmRW1wdHkodXBkYXRlZE9ialtrZXldKSA6IG51bGw7XHJcbiAgICAgICAgICByZXN1bHQucHVzaChgJHtwYXRofSR7cGF0aCA/ICcuJyA6ICcnfSR7a2V5fT0ke3ZhbHVlfWApO1xyXG4gICAgICAgIH1cclxuICAgICAgfSk7XHJcbiAgICByZXR1cm4gcmVzdWx0O1xyXG4gIH1cclxuXHJcbiAgc3RhdGljIGZvcm1hdElmRW1wdHkodmFsdWU6IGFueSkge1xyXG4gICAgaWYgKHZhbHVlKSB7XHJcbiAgICAgIHJldHVybiB2YWx1ZTtcclxuICAgIH1cclxuICAgIHN3aXRjaCAodHlwZW9mIHZhbHVlKSB7XHJcbiAgICAgIGNhc2UgJ2Jvb2xlYW4nOlxyXG4gICAgICAgIHJldHVybiB2YWx1ZTtcclxuICAgICAgY2FzZSAnc3RyaW5nJzpcclxuICAgICAgICByZXR1cm4gJyc7XHJcbiAgICAgIGRlZmF1bHQ6XHJcbiAgICAgICAgcmV0dXJuIG51bGw7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBzdGF0aWMgZGlmZmVycyhvYmoxOiBhbnksIG9iajI6IGFueSk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIEpTT04uc3RyaW5naWZ5KG9iajEpICE9PSBKU09OLnN0cmluZ2lmeShvYmoyKTtcclxuICB9XHJcbn1cclxuIl19
@@ -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\">\r\n <mat-form-field appearance=\"outline\">\r\n <mat-select [formControl]=\"control\" name=\"extension\"\r\n (selectionChange)=\"this.onChangeField($event)\">\r\n <mat-option *ngFor=\"let option of this.availableNumbers; let i = index;\"[value]=\"option\">{{option}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n\r\n <mat-spinner *ngIf=\"this.dataPending\" [diameter]=\"50\"></mat-spinner>\r\n</div>\r\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\">\r\n <mat-form-field appearance=\"outline\">\r\n <mat-select [formControl]=\"control\" name=\"extension\"\r\n (selectionChange)=\"this.onChangeField($event)\">\r\n <mat-option *ngFor=\"let option of this.availableNumbers; let i = index;\"[value]=\"option\">{{option}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n\r\n <mat-spinner *ngIf=\"this.dataPending\" [diameter]=\"50\"></mat-spinner>\r\n</div>\r\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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1jYWxsaW5nLWV4dGVuc2lvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dWtpL3dpZGdldHMvdXNlci1tYW5hZ2Uvc3JjL3VzZXItY2FsbGluZy91c2VyLWNhbGxpbmctZXh0ZW5zaW9uL3VzZXItY2FsbGluZy1leHRlbnNpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVraS93aWRnZXRzL3VzZXItbWFuYWdlL3NyYy91c2VyLWNhbGxpbmcvdXNlci1jYWxsaW5nLWV4dGVuc2lvbi91c2VyLWNhbGxpbmctZXh0ZW5zaW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7Ozs7Ozs7QUFXL0UsTUFBTSxPQUFPLDZCQUE2QjtJQVF4QyxJQUFJLElBQUk7UUFDTixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDO0lBQy9CLENBQUM7SUFFRCxJQUFJLGdCQUFnQjtRQUNsQixhQUFhO1FBQ2IsT0FBTyxJQUFJLENBQUMsY0FBYyxJQUFJLElBQUksQ0FBQyxVQUFVLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDaEksQ0FBQztJQUdELFlBQ1MsV0FBd0IsRUFDdkIsVUFBc0I7UUFEdkIsZ0JBQVcsR0FBWCxXQUFXLENBQWE7UUFDdkIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQWZ0QixhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztJQWlCaEQsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDakIsQ0FBQztJQUVNLGFBQWEsQ0FBQyxLQUFVO1FBQzdCLGdCQUFnQjtRQUNoQixZQUFZO1FBQ1osSUFBSTtRQUNKLHdFQUF3RTtRQUN4RSxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsS0FBSyxDQUFDLENBQUM7SUFFbkMsQ0FBQztJQUVPLE9BQU87UUFDYixJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sSUFBSSxDQUFDLElBQUksQ0FBQyxjQUFjLEVBQUU7WUFDeEMsT0FBTztTQUNSO1FBQ0QsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7UUFDeEIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRSxJQUFJLENBQUMsY0FBYyxDQUFDO2FBQ3JFLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLElBQUksQ0FBQyxnQkFBZ0IsRUFBRTtnQkFDekIsYUFBYTtnQkFDYixJQUFJLENBQUMsVUFBVSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDO2FBQ2xGO1lBQ0QsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDM0IsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDOzsySEFsRFUsNkJBQTZCOytHQUE3Qiw2QkFBNkIsNk5DWDFDLDRnQkFVQTs0RkRDYSw2QkFBNkI7a0JBTHpDLFNBQVM7K0JBQ0UsNEJBQTRCOzJIQUs3QixPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csY0FBYztzQkFBdEIsS0FBSztnQkFDRyxlQUFlO3NCQUF2QixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDSSxRQUFRO3NCQUFqQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgU2ltcGxpZmllZFVzZXIgfSBmcm9tICcuLi8uLi9jbGFzc2VzL3NpbXBsaWZpZWQtdXNlcic7XHJcbmltcG9ydCB7IFVzZXJTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvdXNlci5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRG5zU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2Rucy5zZXJ2aWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXBwLXVzZXItY2FsbGluZy1leHRlbnNpb24nLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi91c2VyLWNhbGxpbmctZXh0ZW5zaW9uLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi91c2VyLWNhbGxpbmctZXh0ZW5zaW9uLmNvbXBvbmVudC5zY3NzJ10sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBVc2VyQ2FsbGluZ0V4dGVuc2lvbkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgQElucHV0KCkgY29udHJvbCE6IEZvcm1Db250cm9sO1xyXG4gIEBJbnB1dCgpIHJvdXRlUGFydGl0aW9uITogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIGRpcmVjdG9yeU51bWJlciE6IHN0cmluZztcclxuICBASW5wdXQoKSBzaXRlSWQhOiBudW1iZXI7XHJcbiAgQE91dHB1dCgpIG9uQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XHJcbiAgcHVibGljIGRhdGFQZW5kaW5nITogYm9vbGVhbjtcclxuXHJcbiAgZ2V0IHVzZXIoKTogU2ltcGxpZmllZFVzZXIge1xyXG4gICAgcmV0dXJuIHRoaXMudXNlclNlcnZpY2UudXNlcjtcclxuICB9XHJcblxyXG4gIGdldCBhdmFpbGFibGVOdW1iZXJzKCk6IGFueSB7XHJcbiAgICAvLyBAdHMtaWdub3JlXHJcbiAgICByZXR1cm4gdGhpcy5yb3V0ZVBhcnRpdGlvbiAmJiB0aGlzLmRuc1NlcnZpY2UuYXZhaWxhYmxlTnVtYmVycyA/IHRoaXMuZG5zU2VydmljZS5hdmFpbGFibGVOdW1iZXJzW3RoaXMucm91dGVQYXJ0aXRpb25dIDogbnVsbDtcclxuICB9XHJcblxyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHB1YmxpYyB1c2VyU2VydmljZTogVXNlclNlcnZpY2UsXHJcbiAgICBwcml2YXRlIGRuc1NlcnZpY2U6IERuc1NlcnZpY2VcclxuICApIHtcclxuICB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5nZXREYXRhKCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25DaGFuZ2VGaWVsZChldmVudDogYW55KTogdm9pZCB7XHJcbiAgICAvLyBpZiAoIXRva2VuKSB7XHJcbiAgICAvLyAgIHJldHVybjtcclxuICAgIC8vIH1cclxuICAgIC8vICh0aGlzLnVzZXJTZXJ2aWNlLnVzZXIgYXMgYW55KVt0b2tlbl0gPSB0aGlzLmZvcm0/LmdldCh0b2tlbik/LnZhbHVlO1xyXG4gICAgdGhpcy5vbkNoYW5nZS5lbWl0KGV2ZW50Py52YWx1ZSk7XHJcblxyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBnZXREYXRhKCkge1xyXG4gICAgaWYgKCF0aGlzLnNpdGVJZCB8fCAhdGhpcy5yb3V0ZVBhcnRpdGlvbikge1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcbiAgICB0aGlzLmRhdGFQZW5kaW5nID0gdHJ1ZTtcclxuICAgIHRoaXMuZG5zU2VydmljZS5nZXROdW1iZXJSYW5nZShTdHJpbmcodGhpcy5zaXRlSWQpLCB0aGlzLnJvdXRlUGFydGl0aW9uKVxyXG4gICAgICAuc3Vic2NyaWJlKCgpID0+IHtcclxuICAgICAgICBpZiAodGhpcy5hdmFpbGFibGVOdW1iZXJzKSB7XHJcbiAgICAgICAgICAvLyBAdHMtaWdub3JlXHJcbiAgICAgICAgICB0aGlzLmRuc1NlcnZpY2UuYXZhaWxhYmxlTnVtYmVyc1t0aGlzLnJvdXRlUGFydGl0aW9uXS5wdXNoKHRoaXMuZGlyZWN0b3J5TnVtYmVyKTtcclxuICAgICAgICB9XHJcbiAgICAgICAgdGhpcy5kYXRhUGVuZGluZyA9IGZhbHNlO1xyXG4gICAgICB9KTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiAqbmdJZj1cInRoaXMuYXZhaWxhYmxlTnVtYmVycz8ubGVuZ3RoXCIgY2xhc3M9XCJ1c2VyLWNhbGxpbmctZXh0ZW5zaW9uXCI+XHJcbiAgPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJvdXRsaW5lXCI+XHJcbiAgICA8bWF0LXNlbGVjdCBbZm9ybUNvbnRyb2xdPVwiY29udHJvbFwiIG5hbWU9XCJleHRlbnNpb25cIlxyXG4gICAgICAgICAgICAgICAgKHNlbGVjdGlvbkNoYW5nZSk9XCJ0aGlzLm9uQ2hhbmdlRmllbGQoJGV2ZW50KVwiPlxyXG4gICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgb3B0aW9uIG9mIHRoaXMuYXZhaWxhYmxlTnVtYmVyczsgbGV0IGkgPSBpbmRleDtcIlt2YWx1ZV09XCJvcHRpb25cIj57e29wdGlvbn19PC9tYXQtb3B0aW9uPlxyXG4gICAgPC9tYXQtc2VsZWN0PlxyXG4gIDwvbWF0LWZvcm0tZmllbGQ+XHJcblxyXG4gIDxtYXQtc3Bpbm5lciAqbmdJZj1cInRoaXMuZGF0YVBlbmRpbmdcIiBbZGlhbWV0ZXJdPVwiNTBcIj48L21hdC1zcGlubmVyPlxyXG48L2Rpdj5cclxuIl19
@@ -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\">\r\n <!-- USER INFO BOX-->\r\n <div class=\"user-info-box user-details-box\">\r\n <h3 class=\"user-box-title\">Numbers</h3>\r\n <div class=\"form-holder__inputs\">\r\n <h4>Directory Number</h4>\r\n <table>\r\n <tr>\r\n <th>Type</th>\r\n <th>Number</th>\r\n <th>Extension</th>\r\n </tr>\r\n <tr >\r\n <td></td>\r\n <td></td>\r\n <td>\r\n <app-user-calling-extension\r\n *ngIf=\"formControl\"\r\n [siteId]=\"this.siteId\"\r\n [control]=\"formControl\"\r\n [routePartition]=\"this.lineAssociation?.directoryNumber?.routePartitionName\"\r\n [directoryNumber]=\"this.lineAssociation?.directoryNumber?.directoryNumber\"\r\n (onChange)=\"onDirectoryNumberChange($event)\">\r\n </app-user-calling-extension>\r\n\r\n </td>\r\n </tr>\r\n </table>\r\n </div>\r\n\r\n </div>\r\n</div>\r\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\">\r\n <!-- USER INFO BOX-->\r\n <div class=\"user-info-box user-details-box\">\r\n <h3 class=\"user-box-title\">Numbers</h3>\r\n <div class=\"form-holder__inputs\">\r\n <h4>Directory Number</h4>\r\n <table>\r\n <tr>\r\n <th>Type</th>\r\n <th>Number</th>\r\n <th>Extension</th>\r\n </tr>\r\n <tr >\r\n <td></td>\r\n <td></td>\r\n <td>\r\n <app-user-calling-extension\r\n *ngIf=\"formControl\"\r\n [siteId]=\"this.siteId\"\r\n [control]=\"formControl\"\r\n [routePartition]=\"this.lineAssociation?.directoryNumber?.routePartitionName\"\r\n [directoryNumber]=\"this.lineAssociation?.directoryNumber?.directoryNumber\"\r\n (onChange)=\"onDirectoryNumberChange($event)\">\r\n </app-user-calling-extension>\r\n\r\n </td>\r\n </tr>\r\n </table>\r\n </div>\r\n\r\n </div>\r\n</div>\r\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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1jYWxsaW5nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1a2kvd2lkZ2V0cy91c2VyLW1hbmFnZS9zcmMvdXNlci1jYWxsaW5nL3VzZXItY2FsbGluZy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dWtpL3dpZGdldHMvdXNlci1tYW5hZ2Uvc3JjL3VzZXItY2FsbGluZy91c2VyLWNhbGxpbmcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7OztBQWEvRSxNQUFNLE9BQU8sb0JBQW9CO0lBTS9CLElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLFdBQVcsRUFBRSxJQUFJLEVBQUUsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDM0csQ0FBQztJQUVELElBQUksV0FBVztRQUNiLE1BQU0sT0FBTyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsR0FBRyxDQUFDLGlCQUFpQixDQUFnQixDQUFDO1FBQ2pFLE9BQU8sT0FBTyxDQUFDO0lBQ2pCLENBQUM7SUFFRCxJQUFJLGVBQWU7UUFDakIsT0FBTyxJQUFJLENBQUMsV0FBVyxFQUFFLElBQUksRUFBRSxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDaEUsQ0FBQztJQUVELElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUM7SUFDL0IsQ0FBQztJQUdELFlBQ1MsV0FBd0IsRUFDdkIsVUFBc0I7UUFEdkIsZ0JBQVcsR0FBWCxXQUFXLENBQWE7UUFDdkIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQXZCdEIsc0JBQWlCLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztJQXlCdEQsQ0FBQztJQUVELFFBQVE7UUFDTixrQkFBa0I7SUFDcEIsQ0FBQztJQUVELHVCQUF1QixDQUFDLEtBQVU7UUFDaEMsSUFBSSxJQUFJLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQyxlQUFlLENBQUMsZUFBZSxFQUFFO1lBQ2hFLGFBQWE7WUFDYixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLENBQUMsZUFBZSxDQUFDLGVBQWUsR0FBRyxLQUFLLENBQUM7WUFDN0YsSUFBSSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztTQUNuQztJQUNILENBQUM7SUFFTSxhQUFhLENBQUMsS0FBYTtRQUNoQyxJQUFJLENBQUMsS0FBSyxFQUFFO1lBQ1YsT0FBTztTQUNSO1FBQ0EsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFZLENBQUMsS0FBSyxDQUFDLEdBQUcsSUFBSSxDQUFDLElBQUksRUFBRSxHQUFHLENBQUMsS0FBSyxDQUFDLEVBQUUsS0FBSyxDQUFDO0lBRXZFLENBQUM7SUFFTSxjQUFjO1FBQ25CLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQ3pDLENBQUM7SUFFTSxnQkFBZ0I7UUFDckIsT0FBTyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsaUJBQWlCLEVBQUUsSUFBSSxJQUFJLENBQUMsV0FBVyxDQUFDLGdCQUFnQixDQUFDO0lBQ3BGLENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxLQUFhO1FBQ3BDLElBQUksSUFBSSxDQUFDLGVBQWUsSUFBSSxJQUFJLENBQUMsZUFBZSxDQUFDLGVBQWUsRUFBRTtZQUNoRSxhQUFhO1lBQ2IsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxlQUFlLEdBQUcsS0FBSyxDQUFDO1NBQzlGO0lBQ0gsQ0FBQztJQUVPLE9BQU87UUFDYixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztRQUN4QixJQUFJLENBQUMsVUFBVSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUM7YUFDN0QsU0FBUyxDQUFDO1lBQ1QsUUFBUSxFQUFFLENBQUMsQ0FBTSxFQUFFLEVBQUU7Z0JBQ25CLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1lBQzNCLENBQUM7WUFDRCxLQUFLLEVBQUUsQ0FBQyxDQUFNLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSztTQUM1QyxDQUFDLENBQUM7SUFDUCxDQUFDOztrSEExRVUsb0JBQW9CO3NHQUFwQixvQkFBb0IsNkpDYmpDLGdtQ0FnQ0E7NEZEbkJhLG9CQUFvQjtrQkFMaEMsU0FBUzsrQkFDRSxrQkFBa0I7MkhBS25CLE1BQU07c0JBQWQsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0ksaUJBQWlCO3NCQUExQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQ29udHJvbCwgRm9ybUdyb3VwIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBTaW1wbGlmaWVkVXNlciB9IGZyb20gJy4uL2NsYXNzZXMvc2ltcGxpZmllZC11c2VyJztcclxuaW1wb3J0IHsgTGluZUFzc29jaWF0aW9uIH0gZnJvbSAnLi4vY2xhc3Nlcy9saW5lLWFzc29jaWF0aW9uJztcclxuaW1wb3J0IHsgTGluZUFzc29jaWF0aW9uSW50ZXJmYWNlIH0gZnJvbSAnLi4vY2xhc3Nlcy9saW5lLWFzc29jaWF0aW9uLWludGVyZmFjZSc7XHJcbmltcG9ydCB7IFVzZXJTZXJ2aWNlIH0gZnJvbSAnLi4vc2VydmljZXMvdXNlci5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRG5zU2VydmljZSB9IGZyb20gJy4uL3NlcnZpY2VzL2Rucy5zZXJ2aWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXBwLXVzZXItY2FsbGluZycsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3VzZXItY2FsbGluZy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vdXNlci1jYWxsaW5nLmNvbXBvbmVudC5zY3NzJ10sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBVc2VyQ2FsbGluZ0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgQElucHV0KCkgc2l0ZUlkITogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIHVzZXJJZCE6IHN0cmluZztcclxuICBAT3V0cHV0KCkgb25FeHRlbnNpb25DaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcclxuICBwdWJsaWMgZGF0YVBlbmRpbmchOiBib29sZWFuO1xyXG5cclxuICBnZXQgZm9ybSgpOiBGb3JtR3JvdXAge1xyXG4gICAgcmV0dXJuIHRoaXMudXNlclNlcnZpY2U/LnVzZXI/LmRldmljZXNbMF0gJiYgdGhpcy51c2VyU2VydmljZT8udXNlcj8uZGV2aWNlc1swXS5saW5lQXNzb2NpYXRpb25zWzBdLmZvcm07XHJcbiAgfVxyXG5cclxuICBnZXQgZm9ybUNvbnRyb2woKTogRm9ybUNvbnRyb2wge1xyXG4gICAgY29uc3QgY29udHJvbCA9IHRoaXMuZm9ybT8uZ2V0KCdkaXJlY3RvcnlOdW1iZXInKSBhcyBGb3JtQ29udHJvbDtcclxuICAgIHJldHVybiBjb250cm9sO1xyXG4gIH1cclxuXHJcbiAgZ2V0IGxpbmVBc3NvY2lhdGlvbigpOiBMaW5lQXNzb2NpYXRpb24gfCBMaW5lQXNzb2NpYXRpb25JbnRlcmZhY2Uge1xyXG4gICAgcmV0dXJuIHRoaXMudXNlclNlcnZpY2U/LnVzZXI/LmRldmljZXNbMF0ubGluZUFzc29jaWF0aW9uc1swXTtcclxuICB9XHJcblxyXG4gIGdldCB1c2VyKCk6IFNpbXBsaWZpZWRVc2VyIHtcclxuICAgIHJldHVybiB0aGlzLnVzZXJTZXJ2aWNlLnVzZXI7XHJcbiAgfVxyXG5cclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgdXNlclNlcnZpY2U6IFVzZXJTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBkbnNTZXJ2aWNlOiBEbnNTZXJ2aWNlXHJcbiAgKSB7XHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIC8vIHRoaXMuZ2V0RGF0YSgpO1xyXG4gIH1cclxuXHJcbiAgb25EaXJlY3RvcnlOdW1iZXJDaGFuZ2UodmFsdWU6IGFueSk6IHZvaWQge1xyXG4gICAgaWYgKHRoaXMubGluZUFzc29jaWF0aW9uICYmIHRoaXMubGluZUFzc29jaWF0aW9uLmRpcmVjdG9yeU51bWJlcikge1xyXG4gICAgICAvLyBAdHMtaWdub3JlXHJcbiAgICAgIHRoaXMudXNlclNlcnZpY2UudXNlci5kZXZpY2VzWzBdLmxpbmVBc3NvY2lhdGlvbnNbMF0uZGlyZWN0b3J5TnVtYmVyLmRpcmVjdG9yeU51bWJlciA9IHZhbHVlO1xyXG4gICAgICB0aGlzLm9uRXh0ZW5zaW9uQ2hhbmdlLm5leHQodHJ1ZSk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25DaGFuZ2VGaWVsZCh0b2tlbjogc3RyaW5nKTogdm9pZCB7XHJcbiAgICBpZiAoIXRva2VuKSB7XHJcbiAgICAgIHJldHVybjtcclxuICAgIH1cclxuICAgICh0aGlzLnVzZXJTZXJ2aWNlLnVzZXIgYXMgYW55KVt0b2tlbl0gPSB0aGlzLmZvcm0/LmdldCh0b2tlbik/LnZhbHVlO1xyXG5cclxuICB9XHJcblxyXG4gIHB1YmxpYyB0b2dnbGVFZGl0TW9kZSgpIHtcclxuICAgIHRoaXMudXNlclNlcnZpY2UudXNlci50b2dnbGVFZGl0TW9kZSgpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGlzU2F2aW5nRGlzYWJsZWQoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gIXRoaXMudXNlclNlcnZpY2UuaGFzVW5zYXZlZENoYW5nZXMoKSB8fCB0aGlzLnVzZXJTZXJ2aWNlLmhhc0V4aXN0ZWRVc2VySWQ7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25DaGFuZ2VFeHRlbnNpb24odmFsdWU6IHN0cmluZyk6IHZvaWQge1xyXG4gICAgaWYgKHRoaXMubGluZUFzc29jaWF0aW9uICYmIHRoaXMubGluZUFzc29jaWF0aW9uLmRpcmVjdG9yeU51bWJlcikge1xyXG4gICAgICAvLyBAdHMtaWdub3JlXHJcbiAgICAgIHRoaXMudXNlclNlcnZpY2UudXNlci5kZXZpY2VzWzBdLmxpbmVBc3NvY2lhdGlvbnNbMF0uZGlyZWN0b3J5TnVtYmVyLmRpcmVjdG9yeU51bWJlciA9IHZhbHVlO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBnZXREYXRhKCkge1xyXG4gICAgdGhpcy5kYXRhUGVuZGluZyA9IHRydWU7XHJcbiAgICB0aGlzLmRuc1NlcnZpY2UuZ2V0TnVtYmVyUmFuZ2UoU3RyaW5nKHRoaXMuc2l0ZUlkKSwgdGhpcy51c2VySWQpXHJcbiAgICAgIC5zdWJzY3JpYmUoe1xyXG4gICAgICAgIGNvbXBsZXRlOiAodjogYW55KSA9PiB7XHJcbiAgICAgICAgICB0aGlzLmRhdGFQZW5kaW5nID0gZmFsc2U7XHJcbiAgICAgICAgfSxcclxuICAgICAgICBlcnJvcjogKGU6IGFueSkgPT4gdGhpcy5kYXRhUGVuZGluZyA9IGZhbHNlLFxyXG4gICAgICB9KTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiBpZD1cInVzZXItY2FsbGluZ1wiIGNsYXNzPVwiaW5mby1ib3hlcy1jb250YWluZXJcIiAqbmdJZj1cInNpdGVJZCAmJiBsaW5lQXNzb2NpYXRpb24gJiYgZm9ybVwiIFtmb3JtR3JvdXBdPVwiZm9ybVwiPlxyXG4gIDwhLS0gICAgVVNFUiBJTkZPIEJPWC0tPlxyXG4gIDxkaXYgY2xhc3M9XCJ1c2VyLWluZm8tYm94IHVzZXItZGV0YWlscy1ib3hcIj5cclxuICAgIDxoMyBjbGFzcz1cInVzZXItYm94LXRpdGxlXCI+TnVtYmVyczwvaDM+XHJcbiAgICA8ZGl2IGNsYXNzPVwiZm9ybS1ob2xkZXJfX2lucHV0c1wiPlxyXG4gICAgICA8aDQ+RGlyZWN0b3J5IE51bWJlcjwvaDQ+XHJcbiAgICAgIDx0YWJsZT5cclxuICAgICAgICA8dHI+XHJcbiAgICAgICAgICA8dGg+VHlwZTwvdGg+XHJcbiAgICAgICAgICA8dGg+TnVtYmVyPC90aD5cclxuICAgICAgICAgIDx0aD5FeHRlbnNpb248L3RoPlxyXG4gICAgICAgIDwvdHI+XHJcbiAgICAgICAgPHRyID5cclxuICAgICAgICAgIDx0ZD48L3RkPlxyXG4gICAgICAgICAgPHRkPjwvdGQ+XHJcbiAgICAgICAgICA8dGQ+XHJcbiAgICAgICAgICAgIDxhcHAtdXNlci1jYWxsaW5nLWV4dGVuc2lvblxyXG4gICAgICAgICAgICAgICpuZ0lmPVwiZm9ybUNvbnRyb2xcIlxyXG4gICAgICAgICAgICAgIFtzaXRlSWRdPVwidGhpcy5zaXRlSWRcIlxyXG4gICAgICAgICAgICAgIFtjb250cm9sXT1cImZvcm1Db250cm9sXCJcclxuICAgICAgICAgICAgICBbcm91dGVQYXJ0aXRpb25dPVwidGhpcy5saW5lQXNzb2NpYXRpb24/LmRpcmVjdG9yeU51bWJlcj8ucm91dGVQYXJ0aXRpb25OYW1lXCJcclxuICAgICAgICAgICAgICBbZGlyZWN0b3J5TnVtYmVyXT1cInRoaXMubGluZUFzc29jaWF0aW9uPy5kaXJlY3RvcnlOdW1iZXI/LmRpcmVjdG9yeU51bWJlclwiXHJcbiAgICAgICAgICAgICAgKG9uQ2hhbmdlKT1cIm9uRGlyZWN0b3J5TnVtYmVyQ2hhbmdlKCRldmVudClcIj5cclxuICAgICAgICAgICAgPC9hcHAtdXNlci1jYWxsaW5nLWV4dGVuc2lvbj5cclxuXHJcbiAgICAgICAgICA8L3RkPlxyXG4gICAgICAgIDwvdHI+XHJcbiAgICAgIDwvdGFibGU+XHJcbiAgICA8L2Rpdj5cclxuXHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
@@ -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\">\r\n <div class=\"content-box flex-box\">\r\n <div class=\"info-holder__user-image\">\r\n <img src=\"../../../assets/a24749b225874bb3e3a4cb5d2f42e82c.png\" alt=\"\" class=\"avatar\">\r\n </div>\r\n <div class=\"info-holder__user-information\">\r\n <div class=\"info-holder__user-name\">{{name}}</div>\r\n <div class=\"info-holder__user-breadcrumbs\">\r\n <div class=\"is-active\" *ngIf=\"active; else notActive\">\r\n <span class=\"icon-user-status icon-user-status-active\"></span>Active\r\n </div>\r\n <div class=\"icon-separator\"></div>\r\n <div class=\"email\">{{email}}</div>\r\n <div class=\"icon-separator\"></div>\r\n <div class=\"position\">{{position}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n\r\n<ng-template #notActive>\r\n <div class=\"is-active\">\r\n <svg width=\"8\" height=\"9\" viewBox=\"0 0 8 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\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\"/>\r\n </svg>\r\n <div>Not active</div>\r\n </div>\r\n</ng-template>\r\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\">\r\n <div class=\"content-box flex-box\">\r\n <div class=\"info-holder__user-image\">\r\n <img src=\"../../../assets/a24749b225874bb3e3a4cb5d2f42e82c.png\" alt=\"\" class=\"avatar\">\r\n </div>\r\n <div class=\"info-holder__user-information\">\r\n <div class=\"info-holder__user-name\">{{name}}</div>\r\n <div class=\"info-holder__user-breadcrumbs\">\r\n <div class=\"is-active\" *ngIf=\"active; else notActive\">\r\n <span class=\"icon-user-status icon-user-status-active\"></span>Active\r\n </div>\r\n <div class=\"icon-separator\"></div>\r\n <div class=\"email\">{{email}}</div>\r\n <div class=\"icon-separator\"></div>\r\n <div class=\"position\">{{position}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n\r\n<ng-template #notActive>\r\n <div class=\"is-active\">\r\n <svg width=\"8\" height=\"9\" viewBox=\"0 0 8 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\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\"/>\r\n </svg>\r\n <div>Not active</div>\r\n </div>\r\n</ng-template>\r\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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1pbmZvLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1a2kvd2lkZ2V0cy91c2VyLW1hbmFnZS9zcmMvdXNlci1pbmZvL3VzZXItaW5mby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dWtpL3dpZGdldHMvdXNlci1tYW5hZ2Uvc3JjL3VzZXItaW5mby91c2VyLWluZm8uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7OztBQU9qRCxNQUFNLE9BQU8saUJBQWlCOzsrR0FBakIsaUJBQWlCO21HQUFqQixpQkFBaUIsdUlDUDlCLHN4Q0E2QkE7NEZEdEJhLGlCQUFpQjtrQkFMN0IsU0FBUzsrQkFDRSxlQUFlOzhCQU16QixJQUFJO3NCQURILEtBQUs7Z0JBR04sTUFBTTtzQkFETCxLQUFLO2dCQUdOLEtBQUs7c0JBREosS0FBSztnQkFHTixRQUFRO3NCQURQLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2FwcC11c2VyLWluZm8nLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi91c2VyLWluZm8uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL3VzZXItaW5mby5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBVc2VySW5mb0NvbXBvbmVudCB7XHJcbiAgQElucHV0KClcclxuICBuYW1lITogc3RyaW5nO1xyXG4gIEBJbnB1dCgpXHJcbiAgYWN0aXZlITogYm9vbGVhbjtcclxuICBASW5wdXQoKVxyXG4gIGVtYWlsITogc3RyaW5nO1xyXG4gIEBJbnB1dCgpXHJcbiAgcG9zaXRpb24hOiBzdHJpbmc7XHJcblxyXG5cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwiaW5mby1ob2xkZXJcIj5cclxuICA8ZGl2IGNsYXNzPVwiY29udGVudC1ib3ggZmxleC1ib3hcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJpbmZvLWhvbGRlcl9fdXNlci1pbWFnZVwiPlxyXG4gICAgICA8aW1nIHNyYz1cIi4uLy4uLy4uL2Fzc2V0cy9hMjQ3NDliMjI1ODc0YmIzZTNhNGNiNWQyZjQyZTgyYy5wbmdcIiBhbHQ9XCJcIiBjbGFzcz1cImF2YXRhclwiPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwiaW5mby1ob2xkZXJfX3VzZXItaW5mb3JtYXRpb25cIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImluZm8taG9sZGVyX191c2VyLW5hbWVcIj57e25hbWV9fTwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiaW5mby1ob2xkZXJfX3VzZXItYnJlYWRjcnVtYnNcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXMtYWN0aXZlXCIgKm5nSWY9XCJhY3RpdmU7IGVsc2Ugbm90QWN0aXZlXCI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1cImljb24tdXNlci1zdGF0dXMgaWNvbi11c2VyLXN0YXR1cy1hY3RpdmVcIj48L3NwYW4+QWN0aXZlXHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImljb24tc2VwYXJhdG9yXCI+PC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImVtYWlsXCI+e3tlbWFpbH19PC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImljb24tc2VwYXJhdG9yXCI+PC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInBvc2l0aW9uXCI+e3twb3NpdGlvbn19PC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcblxyXG48L2Rpdj5cclxuXHJcbjxuZy10ZW1wbGF0ZSAjbm90QWN0aXZlPlxyXG4gICAgPGRpdiBjbGFzcz1cImlzLWFjdGl2ZVwiPlxyXG4gICAgICAgIDxzdmcgd2lkdGg9XCI4XCIgaGVpZ2h0PVwiOVwiIHZpZXdCb3g9XCIwIDAgOCA5XCIgZmlsbD1cIm5vbmVcIiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCI+XHJcbiAgICAgICAgICAgIDxwYXRoIGZpbGwtcnVsZT1cImV2ZW5vZGRcIiBjbGlwLXJ1bGU9XCJldmVub2RkXCIgZD1cIk00IDguNUM2LjIwOTE0IDguNSA4IDYuNzA5MTQgOCA0LjVDOCAyLjI5MDg2IDYuMjA5MTQgMC41IDQgMC41QzEuNzkwODYgMC41IDAgMi4yOTA4NiAwIDQuNUMwIDYuNzA5MTQgMS43OTA4NiA4LjUgNCA4LjVaXCIgZmlsbD1cImdyZXlcIi8+XHJcbiAgICAgICAgPC9zdmc+XHJcbiAgICAgICAgPGRpdj5Ob3QgYWN0aXZlPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19