@sunbird-cb/utils 1.0.19 → 1.0.21-ang-13-16

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 (409) hide show
  1. package/esm2022/lib/components/image-crop/image-crop.component.mjs +172 -0
  2. package/esm2022/lib/components/image-crop/image-crop.module.mjs +55 -0
  3. package/esm2022/lib/constants/features.enum.mjs +555 -0
  4. package/esm2022/lib/constants/instances.enum.mjs +5 -0
  5. package/esm2022/lib/constants/misc.constants.mjs +2 -0
  6. package/esm2022/lib/directives/class-change-on-scroll/class-change-on-scroll.directive.mjs +87 -0
  7. package/esm2022/lib/directives/class-change-on-scroll/class-change-on-scroll.module.mjs +20 -0
  8. package/esm2022/lib/directives/default-thumbnail/default-thumbnail.directive.mjs +40 -0
  9. package/esm2022/lib/directives/default-thumbnail/default-thumbnail.module.mjs +20 -0
  10. package/esm2022/lib/directives/image-responsive/image-responsive.directive.mjs +86 -0
  11. package/esm2022/lib/directives/image-responsive/image-responsive.module.mjs +20 -0
  12. package/esm2022/lib/directives/in-view-port/in-view-port.directive.mjs +62 -0
  13. package/esm2022/lib/directives/in-view-port/in-view-port.module.mjs +20 -0
  14. package/esm2022/lib/directives/navigation/navigation.directive.mjs +43 -0
  15. package/esm2022/lib/directives/navigation/navigation.module.mjs +20 -0
  16. package/esm2022/lib/directives/permission/permission.directive.mjs +14 -0
  17. package/esm2022/lib/directives/permission/permission.module.mjs +20 -0
  18. package/esm2022/lib/helpers/functions/getStringifiedQueryParams.mjs +9 -0
  19. package/esm2022/lib/helpers/horizontal-scroller/horizontal-scroller.component.mjs +96 -0
  20. package/esm2022/lib/helpers/horizontal-scroller/horizontal-scroller.module.mjs +32 -0
  21. package/esm2022/lib/helpers/logout/logout.component.mjs +44 -0
  22. package/esm2022/lib/helpers/logout/logout.module.mjs +27 -0
  23. package/esm2022/lib/models/contentRating.model.mjs +2 -0
  24. package/esm2022/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.module.mjs +18 -0
  25. package/esm2022/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.pipe.mjs +57 -0
  26. package/esm2022/lib/pipes/pipe-count-transform/pipe-count-transform.module.mjs +20 -0
  27. package/esm2022/lib/pipes/pipe-count-transform/pipe-count-transform.pipe.mjs +37 -0
  28. package/esm2022/lib/pipes/pipe-date-concat/pipe-date-concat.module.mjs +20 -0
  29. package/esm2022/lib/pipes/pipe-date-concat/pipe-date-concat.pipe.mjs +36 -0
  30. package/esm2022/lib/pipes/pipe-duration-transform/pipe-duration-transform.module.mjs +20 -0
  31. package/esm2022/lib/pipes/pipe-duration-transform/pipe-duration-transform.pipe.mjs +64 -0
  32. package/esm2022/lib/pipes/pipe-filter/pipe-filter.module.mjs +20 -0
  33. package/esm2022/lib/pipes/pipe-filter/pipe-filter.pipe.mjs +20 -0
  34. package/esm2022/lib/pipes/pipe-filter-search/pipe-filter-search.module.mjs +20 -0
  35. package/esm2022/lib/pipes/pipe-filter-search/pipe-filter-search.pipe.mjs +34 -0
  36. package/esm2022/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.module.mjs +20 -0
  37. package/esm2022/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.pipe.mjs +16 -0
  38. package/esm2022/lib/pipes/pipe-limit-to/pipe-limit-to.module.mjs +20 -0
  39. package/esm2022/lib/pipes/pipe-limit-to/pipe-limit-to.pipe.mjs +29 -0
  40. package/esm2022/lib/pipes/pipe-list-filter/pipe-list-filter.module.mjs +20 -0
  41. package/esm2022/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.mjs +21 -0
  42. package/esm2022/lib/pipes/pipe-name-transform/pipe-name-transform.module.mjs +20 -0
  43. package/esm2022/lib/pipes/pipe-name-transform/pipe-name-transform.pipe.mjs +29 -0
  44. package/esm2022/lib/pipes/pipe-order-by/pipe-order-by.module.mjs +20 -0
  45. package/esm2022/lib/pipes/pipe-order-by/pipe-order-by.pipe.mjs +17 -0
  46. package/esm2022/lib/pipes/pipe-partial-content/pipe-partial-content.module.mjs +20 -0
  47. package/esm2022/lib/pipes/pipe-partial-content/pipe-partial-content.pipe.mjs +22 -0
  48. package/esm2022/lib/pipes/pipe-relative-time/pipe-relative-time.module.mjs +20 -0
  49. package/esm2022/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.mjs +21 -0
  50. package/esm2022/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.module.mjs +20 -0
  51. package/esm2022/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.pipe.mjs +33 -0
  52. package/esm2022/lib/resolvers/explore-detail.resolver.mjs +76 -0
  53. package/esm2022/lib/resolvers/marketing-offering.resolve.mjs +35 -0
  54. package/esm2022/lib/resolvers/page.constant.mjs +4 -0
  55. package/esm2022/lib/resolvers/page.model.mjs +2 -0
  56. package/esm2022/lib/resolvers/page.resolver.mjs +82 -0
  57. package/esm2022/lib/resolvers/resolver.model.mjs +2 -0
  58. package/esm2022/lib/services/auth-keycloak.service.mjs +52 -0
  59. package/esm2022/lib/services/auth-microsoft.service.mjs +173 -0
  60. package/esm2022/lib/services/card-content.model.mjs +11 -0
  61. package/esm2022/lib/services/configurations.model.mjs +2 -0
  62. package/esm2022/lib/services/configurations.service.mjs +65 -0
  63. package/esm2022/lib/services/content-strip-multiple.model.mjs +2 -0
  64. package/esm2022/lib/services/event.model.mjs +121 -0
  65. package/esm2022/lib/services/event.service.mjs +204 -0
  66. package/esm2022/lib/services/logger.service.mjs +45 -0
  67. package/esm2022/lib/services/ms-office.model.mjs +2 -0
  68. package/esm2022/lib/services/subapplication-respond.service.mjs +76 -0
  69. package/esm2022/lib/services/telemetry.service.mjs +502 -0
  70. package/esm2022/lib/services/user-preference.model.mjs +2 -0
  71. package/esm2022/lib/services/user-preference.service.mjs +92 -0
  72. package/esm2022/lib/services/utility.service.mjs +122 -0
  73. package/esm2022/lib/services/value.service.mjs +25 -0
  74. package/esm2022/lib/services/widget-content.model.mjs +107 -0
  75. package/esm2022/lib/services/widget-content.service.mjs +182 -0
  76. package/esm2022/lib/services/widget-resolver.model.mjs +2 -0
  77. package/esm2022/lib/services/widget-search.model.mjs +2 -0
  78. package/esm2022/public-api.mjs +74 -0
  79. package/esm2022/sunbird-cb-utils.mjs +2 -0
  80. package/fesm2022/sunbird-cb-utils.mjs +3902 -0
  81. package/fesm2022/sunbird-cb-utils.mjs.map +1 -0
  82. package/index.d.ts +3 -0
  83. package/lib/components/image-crop/image-crop.component.d.ts +6 -2
  84. package/lib/components/image-crop/image-crop.component.d.ts.map +1 -0
  85. package/lib/components/image-crop/image-crop.module.d.ts +15 -0
  86. package/lib/components/image-crop/image-crop.module.d.ts.map +1 -0
  87. package/lib/constants/features.enum.d.ts +1 -0
  88. package/lib/constants/features.enum.d.ts.map +1 -0
  89. package/lib/constants/instances.enum.d.ts +1 -0
  90. package/lib/constants/instances.enum.d.ts.map +1 -0
  91. package/lib/constants/misc.constants.d.ts +3 -2
  92. package/lib/constants/misc.constants.d.ts.map +1 -0
  93. package/lib/directives/class-change-on-scroll/class-change-on-scroll.directive.d.ts +7 -3
  94. package/lib/directives/class-change-on-scroll/class-change-on-scroll.directive.d.ts.map +1 -0
  95. package/lib/directives/class-change-on-scroll/class-change-on-scroll.module.d.ts +7 -0
  96. package/lib/directives/class-change-on-scroll/class-change-on-scroll.module.d.ts.map +1 -0
  97. package/lib/directives/default-thumbnail/default-thumbnail.directive.d.ts +4 -0
  98. package/lib/directives/default-thumbnail/default-thumbnail.directive.d.ts.map +1 -0
  99. package/lib/directives/default-thumbnail/default-thumbnail.module.d.ts +7 -0
  100. package/lib/directives/default-thumbnail/default-thumbnail.module.d.ts.map +1 -0
  101. package/lib/directives/image-responsive/image-responsive.directive.d.ts +4 -0
  102. package/lib/directives/image-responsive/image-responsive.directive.d.ts.map +1 -0
  103. package/lib/directives/image-responsive/image-responsive.module.d.ts +7 -0
  104. package/lib/directives/image-responsive/image-responsive.module.d.ts.map +1 -0
  105. package/lib/directives/in-view-port/in-view-port.directive.d.ts +4 -0
  106. package/lib/directives/in-view-port/in-view-port.directive.d.ts.map +1 -0
  107. package/lib/directives/in-view-port/in-view-port.module.d.ts +7 -0
  108. package/lib/directives/in-view-port/in-view-port.module.d.ts.map +1 -0
  109. package/lib/directives/navigation/navigation.directive.d.ts +4 -0
  110. package/lib/directives/navigation/navigation.directive.d.ts.map +1 -0
  111. package/lib/directives/navigation/navigation.module.d.ts +7 -0
  112. package/lib/directives/navigation/navigation.module.d.ts.map +1 -0
  113. package/lib/directives/permission/permission.directive.d.ts +4 -0
  114. package/lib/directives/permission/permission.directive.d.ts.map +1 -0
  115. package/lib/directives/permission/permission.module.d.ts +7 -0
  116. package/lib/directives/permission/permission.module.d.ts.map +1 -0
  117. package/lib/helpers/functions/getStringifiedQueryParams.d.ts +1 -0
  118. package/lib/helpers/functions/getStringifiedQueryParams.d.ts.map +1 -0
  119. package/lib/helpers/horizontal-scroller/horizontal-scroller.component.d.ts +4 -0
  120. package/lib/helpers/horizontal-scroller/horizontal-scroller.component.d.ts.map +1 -0
  121. package/lib/helpers/horizontal-scroller/horizontal-scroller.module.d.ts +10 -0
  122. package/lib/helpers/horizontal-scroller/horizontal-scroller.module.d.ts.map +1 -0
  123. package/lib/helpers/logout/logout.component.d.ts +6 -2
  124. package/lib/helpers/logout/logout.component.d.ts.map +1 -0
  125. package/lib/helpers/logout/logout.module.d.ts +9 -0
  126. package/lib/helpers/logout/logout.module.d.ts.map +1 -0
  127. package/lib/models/contentRating.model.d.ts +1 -0
  128. package/lib/models/contentRating.model.d.ts.map +1 -0
  129. package/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.module.d.ts +7 -0
  130. package/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.module.d.ts.map +1 -0
  131. package/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.pipe.d.ts +4 -0
  132. package/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.pipe.d.ts.map +1 -0
  133. package/lib/pipes/pipe-count-transform/pipe-count-transform.module.d.ts +7 -0
  134. package/lib/pipes/pipe-count-transform/pipe-count-transform.module.d.ts.map +1 -0
  135. package/lib/pipes/pipe-count-transform/pipe-count-transform.pipe.d.ts +4 -0
  136. package/lib/pipes/pipe-count-transform/pipe-count-transform.pipe.d.ts.map +1 -0
  137. package/lib/pipes/pipe-date-concat/pipe-date-concat.module.d.ts +7 -0
  138. package/lib/pipes/pipe-date-concat/pipe-date-concat.module.d.ts.map +1 -0
  139. package/lib/pipes/pipe-date-concat/pipe-date-concat.pipe.d.ts +4 -0
  140. package/lib/pipes/pipe-date-concat/pipe-date-concat.pipe.d.ts.map +1 -0
  141. package/lib/pipes/pipe-duration-transform/pipe-duration-transform.module.d.ts +7 -0
  142. package/lib/pipes/pipe-duration-transform/pipe-duration-transform.module.d.ts.map +1 -0
  143. package/lib/pipes/pipe-duration-transform/pipe-duration-transform.pipe.d.ts +4 -0
  144. package/lib/pipes/pipe-duration-transform/pipe-duration-transform.pipe.d.ts.map +1 -0
  145. package/lib/pipes/pipe-filter/pipe-filter.module.d.ts +7 -0
  146. package/lib/pipes/pipe-filter/pipe-filter.module.d.ts.map +1 -0
  147. package/lib/pipes/pipe-filter/pipe-filter.pipe.d.ts +4 -0
  148. package/lib/pipes/pipe-filter/pipe-filter.pipe.d.ts.map +1 -0
  149. package/lib/pipes/pipe-filter-search/pipe-filter-search.module.d.ts +7 -0
  150. package/lib/pipes/pipe-filter-search/pipe-filter-search.module.d.ts.map +1 -0
  151. package/lib/pipes/pipe-filter-search/pipe-filter-search.pipe.d.ts +4 -0
  152. package/lib/pipes/pipe-filter-search/pipe-filter-search.pipe.d.ts.map +1 -0
  153. package/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.module.d.ts +7 -0
  154. package/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.module.d.ts.map +1 -0
  155. package/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.pipe.d.ts +4 -0
  156. package/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.pipe.d.ts.map +1 -0
  157. package/lib/pipes/pipe-limit-to/pipe-limit-to.module.d.ts +7 -0
  158. package/lib/pipes/pipe-limit-to/pipe-limit-to.module.d.ts.map +1 -0
  159. package/lib/pipes/pipe-limit-to/pipe-limit-to.pipe.d.ts +4 -0
  160. package/lib/pipes/pipe-limit-to/pipe-limit-to.pipe.d.ts.map +1 -0
  161. package/lib/pipes/pipe-list-filter/pipe-list-filter.module.d.ts +7 -0
  162. package/lib/pipes/pipe-list-filter/pipe-list-filter.module.d.ts.map +1 -0
  163. package/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.d.ts +4 -0
  164. package/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.d.ts.map +1 -0
  165. package/lib/pipes/pipe-name-transform/pipe-name-transform.module.d.ts +7 -0
  166. package/lib/pipes/pipe-name-transform/pipe-name-transform.module.d.ts.map +1 -0
  167. package/lib/pipes/pipe-name-transform/pipe-name-transform.pipe.d.ts +4 -0
  168. package/lib/pipes/pipe-name-transform/pipe-name-transform.pipe.d.ts.map +1 -0
  169. package/lib/pipes/pipe-order-by/pipe-order-by.module.d.ts +7 -0
  170. package/lib/pipes/pipe-order-by/pipe-order-by.module.d.ts.map +1 -0
  171. package/lib/pipes/pipe-order-by/pipe-order-by.pipe.d.ts +8 -4
  172. package/lib/pipes/pipe-order-by/pipe-order-by.pipe.d.ts.map +1 -0
  173. package/lib/pipes/pipe-partial-content/pipe-partial-content.module.d.ts +7 -0
  174. package/lib/pipes/pipe-partial-content/pipe-partial-content.module.d.ts.map +1 -0
  175. package/lib/pipes/pipe-partial-content/pipe-partial-content.pipe.d.ts +4 -0
  176. package/lib/pipes/pipe-partial-content/pipe-partial-content.pipe.d.ts.map +1 -0
  177. package/lib/pipes/pipe-relative-time/pipe-relative-time.module.d.ts +7 -0
  178. package/lib/pipes/pipe-relative-time/pipe-relative-time.module.d.ts.map +1 -0
  179. package/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.d.ts +4 -0
  180. package/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.d.ts.map +1 -0
  181. package/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.module.d.ts +7 -0
  182. package/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.module.d.ts.map +1 -0
  183. package/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.pipe.d.ts +4 -0
  184. package/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.pipe.d.ts.map +1 -0
  185. package/lib/resolvers/explore-detail.resolver.d.ts +6 -2
  186. package/lib/resolvers/explore-detail.resolver.d.ts.map +1 -0
  187. package/lib/resolvers/marketing-offering.resolve.d.ts +6 -2
  188. package/lib/resolvers/marketing-offering.resolve.d.ts.map +1 -0
  189. package/lib/resolvers/page.constant.d.ts +1 -0
  190. package/lib/resolvers/page.constant.d.ts.map +1 -0
  191. package/lib/resolvers/page.model.d.ts +2 -1
  192. package/lib/resolvers/page.model.d.ts.map +1 -0
  193. package/lib/resolvers/page.resolver.d.ts +6 -2
  194. package/lib/resolvers/page.resolver.d.ts.map +1 -0
  195. package/lib/resolvers/resolver.model.d.ts +1 -0
  196. package/lib/resolvers/resolver.model.d.ts.map +1 -0
  197. package/lib/services/auth-keycloak.service.d.ts +7 -23
  198. package/lib/services/auth-keycloak.service.d.ts.map +1 -0
  199. package/lib/services/auth-microsoft.service.d.ts +6 -2
  200. package/lib/services/auth-microsoft.service.d.ts.map +1 -0
  201. package/lib/services/card-content.model.d.ts +1 -0
  202. package/lib/services/card-content.model.d.ts.map +1 -0
  203. package/lib/services/configurations.model.d.ts +27 -24
  204. package/lib/services/configurations.model.d.ts.map +1 -0
  205. package/lib/services/configurations.service.d.ts +4 -0
  206. package/lib/services/configurations.service.d.ts.map +1 -0
  207. package/lib/services/content-strip-multiple.model.d.ts +8 -6
  208. package/lib/services/content-strip-multiple.model.d.ts.map +1 -0
  209. package/lib/services/event.model.d.ts +2 -1
  210. package/lib/services/event.model.d.ts.map +1 -0
  211. package/lib/services/event.service.d.ts +4 -0
  212. package/lib/services/event.service.d.ts.map +1 -0
  213. package/lib/services/logger.service.d.ts +8 -4
  214. package/lib/services/logger.service.d.ts.map +1 -0
  215. package/lib/services/ms-office.model.d.ts +1 -0
  216. package/lib/services/ms-office.model.d.ts.map +1 -0
  217. package/lib/services/subapplication-respond.service.d.ts +5 -10
  218. package/lib/services/subapplication-respond.service.d.ts.map +1 -0
  219. package/lib/services/telemetry.service.d.ts +6 -2
  220. package/lib/services/telemetry.service.d.ts.map +1 -0
  221. package/lib/services/user-preference.model.d.ts +1 -0
  222. package/lib/services/user-preference.model.d.ts.map +1 -0
  223. package/lib/services/user-preference.service.d.ts +4 -0
  224. package/lib/services/user-preference.service.d.ts.map +1 -0
  225. package/lib/services/utility.service.d.ts +11 -7
  226. package/lib/services/utility.service.d.ts.map +1 -0
  227. package/lib/services/value.service.d.ts +4 -0
  228. package/lib/services/value.service.d.ts.map +1 -0
  229. package/lib/services/widget-content.model.d.ts +21 -19
  230. package/lib/services/widget-content.model.d.ts.map +1 -0
  231. package/lib/services/widget-content.service.d.ts +4 -0
  232. package/lib/services/widget-content.service.d.ts.map +1 -0
  233. package/lib/services/widget-resolver.model.d.ts +2 -1
  234. package/lib/services/widget-resolver.model.d.ts.map +1 -0
  235. package/lib/services/widget-search.model.d.ts +1 -0
  236. package/lib/services/widget-search.model.d.ts.map +1 -0
  237. package/package.json +28 -25
  238. package/public-api.d.ts +7 -0
  239. package/public-api.d.ts.map +1 -0
  240. package/sunbird-cb-utils-1.0.21-ang-13-16.tgz +0 -0
  241. package/sunbird-cb-utils.d.ts.map +1 -0
  242. package/bundles/sunbird-cb-utils.umd.js +0 -5878
  243. package/bundles/sunbird-cb-utils.umd.js.map +0 -1
  244. package/bundles/sunbird-cb-utils.umd.min.js +0 -16
  245. package/bundles/sunbird-cb-utils.umd.min.js.map +0 -1
  246. package/esm2015/lib/components/image-crop/image-crop.component.js +0 -195
  247. package/esm2015/lib/components/image-crop/image-crop.module.js +0 -27
  248. package/esm2015/lib/constants/features.enum.js +0 -555
  249. package/esm2015/lib/constants/instances.enum.js +0 -5
  250. package/esm2015/lib/constants/misc.constants.js +0 -1
  251. package/esm2015/lib/directives/class-change-on-scroll/class-change-on-scroll.directive.js +0 -87
  252. package/esm2015/lib/directives/class-change-on-scroll/class-change-on-scroll.module.js +0 -15
  253. package/esm2015/lib/directives/default-thumbnail/default-thumbnail.directive.js +0 -38
  254. package/esm2015/lib/directives/default-thumbnail/default-thumbnail.module.js +0 -15
  255. package/esm2015/lib/directives/image-responsive/image-responsive.directive.js +0 -92
  256. package/esm2015/lib/directives/image-responsive/image-responsive.module.js +0 -15
  257. package/esm2015/lib/directives/in-view-port/in-view-port.directive.js +0 -68
  258. package/esm2015/lib/directives/in-view-port/in-view-port.module.js +0 -15
  259. package/esm2015/lib/directives/navigation/navigation.directive.js +0 -39
  260. package/esm2015/lib/directives/navigation/navigation.module.js +0 -15
  261. package/esm2015/lib/directives/permission/permission.directive.js +0 -11
  262. package/esm2015/lib/directives/permission/permission.module.js +0 -15
  263. package/esm2015/lib/helpers/functions/getStringifiedQueryParams.js +0 -9
  264. package/esm2015/lib/helpers/horizontal-scroller/horizontal-scroller.component.js +0 -99
  265. package/esm2015/lib/helpers/horizontal-scroller/horizontal-scroller.module.js +0 -19
  266. package/esm2015/lib/helpers/logout/logout.component.js +0 -57
  267. package/esm2015/lib/helpers/logout/logout.module.js +0 -18
  268. package/esm2015/lib/models/contentRating.model.js +0 -12
  269. package/esm2015/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.module.js +0 -13
  270. package/esm2015/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.pipe.js +0 -59
  271. package/esm2015/lib/pipes/pipe-count-transform/pipe-count-transform.module.js +0 -15
  272. package/esm2015/lib/pipes/pipe-count-transform/pipe-count-transform.pipe.js +0 -33
  273. package/esm2015/lib/pipes/pipe-date-concat/pipe-date-concat.module.js +0 -15
  274. package/esm2015/lib/pipes/pipe-date-concat/pipe-date-concat.pipe.js +0 -43
  275. package/esm2015/lib/pipes/pipe-duration-transform/pipe-duration-transform.module.js +0 -15
  276. package/esm2015/lib/pipes/pipe-duration-transform/pipe-duration-transform.pipe.js +0 -60
  277. package/esm2015/lib/pipes/pipe-filter/pipe-filter.module.js +0 -15
  278. package/esm2015/lib/pipes/pipe-filter/pipe-filter.pipe.js +0 -16
  279. package/esm2015/lib/pipes/pipe-filter-search/pipe-filter-search.module.js +0 -15
  280. package/esm2015/lib/pipes/pipe-filter-search/pipe-filter-search.pipe.js +0 -30
  281. package/esm2015/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.module.js +0 -15
  282. package/esm2015/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.pipe.js +0 -12
  283. package/esm2015/lib/pipes/pipe-limit-to/pipe-limit-to.module.js +0 -15
  284. package/esm2015/lib/pipes/pipe-limit-to/pipe-limit-to.pipe.js +0 -25
  285. package/esm2015/lib/pipes/pipe-list-filter/pipe-list-filter.module.js +0 -15
  286. package/esm2015/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.js +0 -17
  287. package/esm2015/lib/pipes/pipe-name-transform/pipe-name-transform.module.js +0 -15
  288. package/esm2015/lib/pipes/pipe-name-transform/pipe-name-transform.pipe.js +0 -31
  289. package/esm2015/lib/pipes/pipe-order-by/pipe-order-by.module.js +0 -15
  290. package/esm2015/lib/pipes/pipe-order-by/pipe-order-by.pipe.js +0 -16
  291. package/esm2015/lib/pipes/pipe-partial-content/pipe-partial-content.module.js +0 -15
  292. package/esm2015/lib/pipes/pipe-partial-content/pipe-partial-content.pipe.js +0 -18
  293. package/esm2015/lib/pipes/pipe-relative-time/pipe-relative-time.module.js +0 -15
  294. package/esm2015/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.js +0 -17
  295. package/esm2015/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.module.js +0 -15
  296. package/esm2015/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.pipe.js +0 -35
  297. package/esm2015/lib/resolvers/explore-detail.resolver.js +0 -89
  298. package/esm2015/lib/resolvers/marketing-offering.resolve.js +0 -40
  299. package/esm2015/lib/resolvers/page.constant.js +0 -4
  300. package/esm2015/lib/resolvers/page.model.js +0 -47
  301. package/esm2015/lib/resolvers/page.resolver.js +0 -90
  302. package/esm2015/lib/resolvers/resolver.model.js +0 -6
  303. package/esm2015/lib/services/auth-keycloak.service.js +0 -245
  304. package/esm2015/lib/services/auth-microsoft.service.js +0 -196
  305. package/esm2015/lib/services/card-content.model.js +0 -32
  306. package/esm2015/lib/services/configurations.model.js +0 -508
  307. package/esm2015/lib/services/configurations.service.js +0 -112
  308. package/esm2015/lib/services/content-strip-multiple.model.js +0 -75
  309. package/esm2015/lib/services/event.model.js +0 -229
  310. package/esm2015/lib/services/event.service.js +0 -212
  311. package/esm2015/lib/services/logger.service.js +0 -55
  312. package/esm2015/lib/services/ms-office.model.js +0 -8
  313. package/esm2015/lib/services/subapplication-respond.service.js +0 -225
  314. package/esm2015/lib/services/telemetry.service.js +0 -449
  315. package/esm2015/lib/services/user-preference.model.js +0 -38
  316. package/esm2015/lib/services/user-preference.service.js +0 -90
  317. package/esm2015/lib/services/utility.service.js +0 -145
  318. package/esm2015/lib/services/value.service.js +0 -31
  319. package/esm2015/lib/services/widget-content.model.js +0 -342
  320. package/esm2015/lib/services/widget-content.service.js +0 -192
  321. package/esm2015/lib/services/widget-resolver.model.js +0 -57
  322. package/esm2015/lib/services/widget-search.model.js +0 -126
  323. package/esm2015/public-api.js +0 -68
  324. package/esm2015/sunbird-cb-utils.js +0 -8
  325. package/esm5/lib/components/image-crop/image-crop.component.js +0 -200
  326. package/esm5/lib/components/image-crop/image-crop.module.js +0 -31
  327. package/esm5/lib/constants/features.enum.js +0 -555
  328. package/esm5/lib/constants/instances.enum.js +0 -5
  329. package/esm5/lib/constants/misc.constants.js +0 -1
  330. package/esm5/lib/directives/class-change-on-scroll/class-change-on-scroll.directive.js +0 -105
  331. package/esm5/lib/directives/class-change-on-scroll/class-change-on-scroll.module.js +0 -19
  332. package/esm5/lib/directives/default-thumbnail/default-thumbnail.directive.js +0 -40
  333. package/esm5/lib/directives/default-thumbnail/default-thumbnail.module.js +0 -19
  334. package/esm5/lib/directives/image-responsive/image-responsive.directive.js +0 -95
  335. package/esm5/lib/directives/image-responsive/image-responsive.module.js +0 -19
  336. package/esm5/lib/directives/in-view-port/in-view-port.directive.js +0 -73
  337. package/esm5/lib/directives/in-view-port/in-view-port.module.js +0 -19
  338. package/esm5/lib/directives/navigation/navigation.directive.js +0 -41
  339. package/esm5/lib/directives/navigation/navigation.module.js +0 -19
  340. package/esm5/lib/directives/permission/permission.directive.js +0 -14
  341. package/esm5/lib/directives/permission/permission.module.js +0 -19
  342. package/esm5/lib/helpers/functions/getStringifiedQueryParams.js +0 -9
  343. package/esm5/lib/helpers/horizontal-scroller/horizontal-scroller.component.js +0 -103
  344. package/esm5/lib/helpers/horizontal-scroller/horizontal-scroller.module.js +0 -23
  345. package/esm5/lib/helpers/logout/logout.component.js +0 -63
  346. package/esm5/lib/helpers/logout/logout.module.js +0 -22
  347. package/esm5/lib/models/contentRating.model.js +0 -12
  348. package/esm5/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.module.js +0 -17
  349. package/esm5/lib/pipes/pipe-concise-date-range/pipe-concise-date-range.pipe.js +0 -63
  350. package/esm5/lib/pipes/pipe-count-transform/pipe-count-transform.module.js +0 -19
  351. package/esm5/lib/pipes/pipe-count-transform/pipe-count-transform.pipe.js +0 -37
  352. package/esm5/lib/pipes/pipe-date-concat/pipe-date-concat.module.js +0 -19
  353. package/esm5/lib/pipes/pipe-date-concat/pipe-date-concat.pipe.js +0 -45
  354. package/esm5/lib/pipes/pipe-duration-transform/pipe-duration-transform.module.js +0 -19
  355. package/esm5/lib/pipes/pipe-duration-transform/pipe-duration-transform.pipe.js +0 -64
  356. package/esm5/lib/pipes/pipe-filter/pipe-filter.module.js +0 -19
  357. package/esm5/lib/pipes/pipe-filter/pipe-filter.pipe.js +0 -20
  358. package/esm5/lib/pipes/pipe-filter-search/pipe-filter-search.module.js +0 -19
  359. package/esm5/lib/pipes/pipe-filter-search/pipe-filter-search.pipe.js +0 -38
  360. package/esm5/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.module.js +0 -19
  361. package/esm5/lib/pipes/pipe-html-tag-removal/pipe-html-tag-removal.pipe.js +0 -16
  362. package/esm5/lib/pipes/pipe-limit-to/pipe-limit-to.module.js +0 -19
  363. package/esm5/lib/pipes/pipe-limit-to/pipe-limit-to.pipe.js +0 -30
  364. package/esm5/lib/pipes/pipe-list-filter/pipe-list-filter.module.js +0 -19
  365. package/esm5/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.js +0 -21
  366. package/esm5/lib/pipes/pipe-name-transform/pipe-name-transform.module.js +0 -19
  367. package/esm5/lib/pipes/pipe-name-transform/pipe-name-transform.pipe.js +0 -35
  368. package/esm5/lib/pipes/pipe-order-by/pipe-order-by.module.js +0 -19
  369. package/esm5/lib/pipes/pipe-order-by/pipe-order-by.pipe.js +0 -18
  370. package/esm5/lib/pipes/pipe-partial-content/pipe-partial-content.module.js +0 -19
  371. package/esm5/lib/pipes/pipe-partial-content/pipe-partial-content.pipe.js +0 -34
  372. package/esm5/lib/pipes/pipe-relative-time/pipe-relative-time.module.js +0 -19
  373. package/esm5/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.js +0 -21
  374. package/esm5/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.module.js +0 -19
  375. package/esm5/lib/pipes/pipe-safe-sanitizer/pipe-safe-sanitizer.pipe.js +0 -38
  376. package/esm5/lib/resolvers/explore-detail.resolver.js +0 -93
  377. package/esm5/lib/resolvers/marketing-offering.resolve.js +0 -43
  378. package/esm5/lib/resolvers/page.constant.js +0 -4
  379. package/esm5/lib/resolvers/page.model.js +0 -47
  380. package/esm5/lib/resolvers/page.resolver.js +0 -98
  381. package/esm5/lib/resolvers/resolver.model.js +0 -6
  382. package/esm5/lib/services/auth-keycloak.service.js +0 -316
  383. package/esm5/lib/services/auth-microsoft.service.js +0 -251
  384. package/esm5/lib/services/card-content.model.js +0 -32
  385. package/esm5/lib/services/configurations.model.js +0 -508
  386. package/esm5/lib/services/configurations.service.js +0 -114
  387. package/esm5/lib/services/content-strip-multiple.model.js +0 -75
  388. package/esm5/lib/services/event.model.js +0 -229
  389. package/esm5/lib/services/event.service.js +0 -216
  390. package/esm5/lib/services/logger.service.js +0 -73
  391. package/esm5/lib/services/ms-office.model.js +0 -8
  392. package/esm5/lib/services/subapplication-respond.service.js +0 -230
  393. package/esm5/lib/services/telemetry.service.js +0 -484
  394. package/esm5/lib/services/user-preference.model.js +0 -38
  395. package/esm5/lib/services/user-preference.service.js +0 -109
  396. package/esm5/lib/services/utility.service.js +0 -178
  397. package/esm5/lib/services/value.service.js +0 -33
  398. package/esm5/lib/services/widget-content.model.js +0 -342
  399. package/esm5/lib/services/widget-content.service.js +0 -214
  400. package/esm5/lib/services/widget-resolver.model.js +0 -57
  401. package/esm5/lib/services/widget-search.model.js +0 -126
  402. package/esm5/public-api.js +0 -68
  403. package/esm5/sunbird-cb-utils.js +0 -8
  404. package/fesm2015/sunbird-cb-utils.js +0 -5182
  405. package/fesm2015/sunbird-cb-utils.js.map +0 -1
  406. package/fesm5/sunbird-cb-utils.js +0 -5605
  407. package/fesm5/sunbird-cb-utils.js.map +0 -1
  408. package/sunbird-cb-utils.d.ts +0 -7
  409. package/sunbird-cb-utils.metadata.json +0 -1
@@ -1,16 +0,0 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@angular/material/dialog"),require("@angular/material/snack-bar"),require("rxjs"),require("@angular/cdk/layout"),require("rxjs/operators"),require("@angular/common"),require("@angular/material"),require("ngx-image-cropper"),require("keycloak-angular"),require("@angular/common/http"),require("@angular/cdk/platform"),require("@angular/router"),require("moment"),require("lodash"),require("@angular/platform-browser")):"function"==typeof define&&define.amd?define("@sunbird-cb/utils",["exports","@angular/core","@angular/material/dialog","@angular/material/snack-bar","rxjs","@angular/cdk/layout","rxjs/operators","@angular/common","@angular/material","ngx-image-cropper","keycloak-angular","@angular/common/http","@angular/cdk/platform","@angular/router","moment","lodash","@angular/platform-browser"],t):t(((e=e||self)["sunbird-cb"]=e["sunbird-cb"]||{},e["sunbird-cb"].utils={}),e.ng.core,e.ng.material.dialog,e.ng.material["snack-bar"],e.rxjs,e.ng.cdk.layout,e.rxjs.operators,e.ng.common,e.ng.material,e.ngxImageCropper,e["keycloak-angular"],e.ng.common.http,e.ng.cdk.platform,e.ng.router,e.moment,e._,e.ng.platformBrowser)}(this,(function(e,t,n,i,r,o,a,s,c,l,E,u,_,p,S,A,d){"use strict";
2
- /*! *****************************************************************************
3
- Copyright (c) Microsoft Corporation.
4
-
5
- Permission to use, copy, modify, and/or distribute this software for any
6
- purpose with or without fee is hereby granted.
7
-
8
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
9
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
11
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
13
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14
- PERFORMANCE OF THIS SOFTWARE.
15
- ***************************************************************************** */var I=function(){return(I=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)};function T(e,t,n,i){return new(n||(n=Promise))((function(r,o){function a(e){try{c(i.next(e))}catch(e){o(e)}}function s(e){try{c(i.throw(e))}catch(e){o(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}c((i=i.apply(e,t||[])).next())}))}function g(e,t){var n,i,r,o,a={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(o){return function(s){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,i&&(r=2&o[0]?i.return:o[0]?i.throw||((r=i.return)&&r.call(i),0):i.next)&&!(r=r.call(i,o[1])).done)return r;switch(i=0,r&&(o=[2&o[0],r.value]),o[0]){case 0:case 1:r=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,i=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(!(r=a.trys,(r=r.length>0&&r[r.length-1])||6!==o[0]&&2!==o[0])){a=0;continue}if(3===o[0]&&(!r||o[1]>r[0]&&o[1]<r[3])){a.label=o[1];break}if(6===o[0]&&a.label<r[1]){a.label=r[1],r=o;break}if(r&&a.label<r[2]){a.label=r[2],a.ops.push(o);break}r[2]&&a.ops.pop(),a.trys.pop();continue}o=t.call(e,a)}catch(e){o=[6,e],i=0}finally{n=r=0}if(5&o[0])throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}([o,s])}}}function h(e){var t="function"==typeof Symbol&&Symbol.iterator,n=t&&e[t],i=0;if(n)return n.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&i>=e.length&&(e=void 0),{value:e&&e[i++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function f(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var i,r,o=n.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(e){r={error:e}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a}var N=function(){function e(){this.appSetup=!0,this.userUrl="",this.baseUrl="assets/configurations",this.sitePath="assets/configurations",this.hostPath=window.location.host.replace(":","_"),this.userRoles=null,this.userGroups=null,this.restrictedFeatures=null,this.restrictedWidgets=null,this.instanceConfig=null,this.appsConfig=null,this.rootOrg=null,this.org=null,this.activeOrg="",this.isProduction=!1,this.hasAcceptedTnc=!1,this.profileDetailsStatus=!1,this.userPreference=null,this.userProfile=null,this.userProfileV2=null,this.isAuthenticated=!1,this.isNewUser=!1,this.isActive=!0,this.pinnedApps=new r.BehaviorSubject(new Set),this.prefChangeNotifier=new r.ReplaySubject(1),this.tourGuideNotifier=new r.ReplaySubject,this.authChangeNotifier=new r.ReplaySubject(1),this.activeThemeObject=null,this.activeFontObject=null,this.isDarkMode=!1,this.isIntranetAllowed=!1,this.isRTL=!1,this.activeLocale=null,this.activeLocaleGroup="",this.completedActivity=null,this.completedTour=!1,this.profileSettings=["profilePicture","learningTime","learningPoints"],this.primaryNavBar={color:"primary"},this.pageNavBar={color:"primary"},this.primaryNavBarConfig=null,this.updateOrgReadData=new r.BehaviorSubject(""),this.updateOrgReadDataObservable=this.updateOrgReadData.asObservable()}return e.prototype.updateOrgData=function(e){this.updateOrgReadData.next(e)},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e},token:e,providedIn:"root"}),e}();var m=function(){function e(e){this.breakpointObserver=e,this.isXSmall$=this.breakpointObserver.observe([o.Breakpoints.XSmall]).pipe(a.map((function(e){return e.matches}))),this.isLtMedium$=this.breakpointObserver.observe([o.Breakpoints.XSmall,o.Breakpoints.Small]).pipe(a.map((function(e){return e.matches})))}return e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:o.BreakpointObserver}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(o.BreakpointObserver))},token:e,providedIn:"root"}),e}();var C=function(){function e(e,n,i,r,o){this.dialogRef=e,this.configSvc=n,this.snackBar=i,this.valueSvc=r,this.data=new t.EventEmitter,this.isRoundCrop=!1,this.isNotOfRequiredSize=!1,this.imageFileBase64="",this.width="",this.height="",this.imageDimensions="",this.croppedHeight="",this.croppedWidth="",this.cropperReadyToStart=!1,this.fileName="",this.canvasRotation=0,this.transform={},this.resetValue=!1,this.isXSmall=!1,this.isThumbnail=!0,this.isRoundCrop=o.isRoundCrop,o.imageFile&&(this.imageFile=o.imageFile),o.imageFileName&&(this.fileName=o.imageFileName),o.isRoundCrop||(o.height&&(this.opHeight=o.height),o.width&&(this.opWidth=o.width))}return e.prototype.ngOnInit=function(){var e=this;this.thumbnailSizeDetection(),this.valueSvc.isXSmall$.subscribe((function(t){e.isXSmall=t,e.isXSmall?e.dialogRef.updateSize("90%"):e.dialogRef.updateSize("70%")}))},e.prototype.changeToDefaultImg=function(e){e.target.src=this.configSvc.instanceConfig?this.configSvc.instanceConfig.logos.defaultContent:""},e.prototype.imageCropped=function(e){this.imageFileBase64=e.base64,this.cropimageFile=this.base64ImageToBlob(this.imageFileBase64),this.croppedHeight=e.height,this.croppedWidth=e.width},e.prototype.openSnackBar=function(e){this.snackBar.open(e,"X",{duration:2e3})},e.prototype.continueToImageCrop=function(){this.isNotOfRequiredSize=!1},e.prototype.thumbnailSizeDetection=function(){var e=this,t=new FileReader;t.readAsDataURL(this.imageFile),t.onload=function(){var n=new Image;n.src=t.result,n.onload=function(){if(e.width=n.width,e.height=n.height,!e.isRoundCrop){if(e.height===e.opHeight&&e.width===e.opWidth)return void e.openSnackBar("Image is of the required dimensions of the thumbnail, croping is not available!");(e.height<e.opHeight||e.width<e.opWidth)&&(e.isNotOfRequiredSize=!0)}}}},e.prototype.base64ImageToBlob=function(e){for(var t=e.indexOf(";base64,"),n=e.substr(t+8),i=atob(n),r=new ArrayBuffer(i.length),o=new Uint8Array(r),a=0;a<i.length;a+=1)o[a]=i.charCodeAt(a);var s=new Blob([o],{type:"image/png"}),c=s;return c.lastModifiedDate=new Date,c.name=this.fileName,new File([s],this.fileName,{type:"image/jpeg"})},e.prototype.flipAfterRotate=function(){var e=this.transform.flipH,t=this.transform.flipV;this.transform=I({},this.transform,{flipH:t,flipV:e})},e.prototype.rotateLeft=function(){this.canvasRotation=this.canvasRotation-1,this.flipAfterRotate()},e.prototype.rotateRight=function(){this.canvasRotation=this.canvasRotation+1,this.flipAfterRotate()},e.prototype.flipHorizontal=function(){this.transform=I({},this.transform,{flipH:!this.transform.flipH})},e.prototype.zoom=function(e){this.resetValue=!1,this.transform=I({},this.transform,{scale:e.value})},e.prototype.croppingImage=function(){this.dialogRef.close(this.cropimageFile)},e.prototype.reset=function(){this.resetValue=!0,this.canvasRotation=0,this.transform={}},e.prototype.close=function(){this.dialogRef.close()},e.decorators=[{type:t.Component,args:[{selector:"ws-utils-image-crop",template:'<ng-container *ngIf="isNotOfRequiredSize">\r\n <mat-dialog-content>\r\n <div class="flex pl-4">\r\n <mat-icon class="ws-mat-warn-text largeicon padding-remove-left">warning</mat-icon>\r\n <h2 class="text-xl" i18n>This image will appear stretched as it is not in proper dimension. Do you want to\r\n continue?</h2>\r\n </div>\r\n <div class="text-sm pl-4">\r\n <div i18n class="pb-2">Note:</div>\r\n <div i18n class="pb-2">Required dimensions : 265 * 150</div>\r\n <div class="flex flex-wrap items-baseline">\r\n <div>Current dimensions:</div>\r\n <div class="pl-1">{{ width }} * {{ height }} px</div>\r\n </div>\r\n </div>\r\n </mat-dialog-content>\r\n <mat-dialog-actions class="flex flex-end">\r\n <div class="flex flex-end">\r\n <button mat-raised-button autofocus type="button" (click)=" close()">\r\n <span i18n>No</span>\r\n </button>\r\n <button mat-raised-button type="button" class="text-white ws-mat-primary-background text-white"\r\n (click)=" continueToImageCrop()">\r\n <span class="text-white" i18n>Yes</span>\r\n </button>\r\n </div>\r\n </mat-dialog-actions>\r\n</ng-container>\r\n<ng-container *ngIf="isRoundCrop">\r\n \x3c!-- For Profile image - start --\x3e\r\n <div class="flex flex-between">\r\n <mat-icon class=" ws-mat-primary-text margin-bottom-xxs">crop</mat-icon>\r\n <p mat-dialog-title class="text-3xl font-weight-bold ws-mat-primary-text" i18n>Profile Photo</p>\r\n <mat-icon class="float-right flex-end cursor-pointer" (click)="close()" i18n>close</mat-icon>\r\n\r\n </div>\r\n <mat-dialog-content class="p-0 overflow-hidden " *ngIf="isRoundCrop">\r\n <div class="flex flex-between">\r\n <div class="profile-slides">\r\n <image-cropper #imageCropper class="image-cropper-profile" [imageFile]="imageFile" [maintainAspectRatio]="true"\r\n [aspectRatio]="250 / 250" [resizeToWidth]="100" [roundCropper]="isRoundCrop" [resizeToHeight]="120"\r\n [cropperMinWidth]="500" [format]="\'jpeg\'" [transform]="transform" [canvasRotation]="canvasRotation"\r\n (imageCropped)="imageCropped($event)">\r\n </image-cropper>\r\n </div>\r\n </div>\r\n <ul class="toolbar cf">\r\n <li><button mat-raised-button class="mat-button" (click)="rotateLeft()">\r\n <mat-icon class="text-white large-icon ws-mat-primary-text">rotate_left</mat-icon>\r\n <span class="button-text" i18n>Rotate Left</span>\r\n </button>\r\n </li>\r\n <li><button mat-raised-button class="mat-button" (click)="rotateRight()">\r\n <mat-icon class="text-white medium-icon ws-mat-primary-text">rotate_right</mat-icon>\r\n <span class="button-text" i18n>Rotate Right</span>\r\n </button></li>\r\n <li><button mat-raised-button class="mat-button" (click)="flipHorizontal()">\r\n <mat-icon class="text-white medium-icon ws-mat-primary-text">flip</mat-icon>\r\n <span class="button-text" i18n>Flip Horizontal</span>\r\n </button></li>\r\n <li><a href="#"><i class="icon-cloud"></i></a></li>\r\n </ul>\r\n </mat-dialog-content>\r\n</ng-container> \x3c!-- For Profile image - end --\x3e\r\n<ng-container>\r\n <ng-container *ngIf="!isNotOfRequiredSize && !isRoundCrop ">\r\n <div class="flex flex-between">\r\n <mat-icon class=" ws-mat-primary-text margin-bottom-xxs">crop</mat-icon>\r\n <p mat-dialog-title class="text-3xl title-margin font-weight-bold ws-mat-primary-text" i18n>Edit Image</p>\r\n <mat-icon class="float-right flex-end cursor-pointer" (click)="close()" i18n>\r\n close</mat-icon>\r\n </div>\r\n <mat-dialog-content *ngIf="!isRoundCrop">\r\n <div class="flex flex-between">\r\n <div class="Slides">\r\n <image-cropper #imageCropper class="image-cropper padding-remove" [imageFile]="imageFile"\r\n [maintainAspectRatio]="true" [aspectRatio]="opWidth / opHeight" [resizeToWidth]="opWidth"\r\n [roundCropper]="isRoundCrop" [resizeToHeight]="opHeight" [cropperMinWidth]="opWidth" [format]="\'jpeg\'"\r\n [transform]="transform" [canvasRotation]="canvasRotation" (imageCropped)="imageCropped($event)">\r\n </image-cropper>\r\n <div class="flex flex-between">\r\n <span class="my-3" i18n>Zoom</span>\r\n <mat-slider class="w-full mx-3" color="primary" (input)="zoom($event)" min="1" max="2.5" step="0.1">\r\n </mat-slider>\r\n </div>\r\n <div class="edit-feature-window " *ngIf="!isXSmall">\r\n <div class="flex flex-between">\r\n <button mat-raised-button class="mat-button" (click)="rotateLeft()">\r\n <mat-icon class="text-white large-icon ws-mat-primary-text">rotate_left</mat-icon>\r\n <span class="button-text" i18n>Rotate Left</span>\r\n </button>\r\n <button mat-raised-button class="mat-button" (click)="rotateRight()">\r\n <mat-icon class="text-white medium-icon ws-mat-primary-text">rotate_right</mat-icon>\r\n <span class="button-text" i18n>Rotate Right</span>\r\n </button>\r\n <button mat-raised-button class="mat-button" (click)="flipHorizontal()">\r\n <mat-icon class="text-white medium-icon ws-mat-primary-text">flip</mat-icon>\r\n <span class="button-text" i18n>Flip Horizontal</span>\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n <mat-card class="ws-mat-primary-border-top-bolder mat-elevation-z6 margin-bottom-l button-text"\r\n *ngIf="isThumbnail">\r\n <img [src]="imageFileBase64" height="auto" width="100%" (error)="changeToDefaultImg($event)" />\r\n <div class="flex flex-middle justify-center margin-bottom-s padding-top-s">\r\n <mat-icon class="ws-mat-primary-text padding-right-s">image</mat-icon>\r\n <b class="mat-title margin-remove ws-mat-primary-text" i18n>Preview</b>\r\n </div>\r\n </mat-card>\r\n </div>\r\n <div class="edit-feature-window heightwidth">\r\n \x3c!-- <div class="flex flex-middle margin-left-l margin-bottom-s padding-top-s">\r\n <mat-icon class="ws-mat-primary-text padding-right-s">swap_horiz</mat-icon>\r\n <b class="mat-body margin-remove " i18n>Cropped dimensions: {{ opWidth }} * {{ opHeight }} px</b>\r\n </div> --\x3e\r\n <div class="flex flex-middle margin-left-l margin-bottom-s padding-top-s">\r\n <mat-icon class="ws-mat-primary-text padding-right-s">swap_horiz</mat-icon>\r\n <b class="mat-body margin-remove ">\r\n <span i18n>Cropped Width: </span>\r\n <span>{{ croppedWidth }}</span>\r\n <span i18n>px</span>\r\n </b>\r\n </div>\r\n <div class="flex flex-middle margin-left-l margin-bottom-s padding-top-s">\r\n <mat-icon class="ws-mat-primary-text padding-right-s">swap_vert</mat-icon>\r\n <b class="mat-body margin-remove ">\r\n <span i18n>Cropped Height: </span>\r\n <span>{{ croppedHeight }}</span>\r\n <span i18n>px</span>\r\n </b>\r\n </div>\r\n </div>\r\n </mat-dialog-content>\r\n </ng-container>\r\n <mat-dialog-actions align="end" *ngIf="!isNotOfRequiredSize ">\r\n <div class="flex flex-end margin-bottom-s">\r\n \x3c!-- <button mat-raised-button type="button" (click)=" reset()">\r\n <span i18n>Reset</span>\r\n </button> --\x3e\r\n <button mat-raised-button type="button" class="text-white ws-mat-primary-background text-white"\r\n (click)=" croppingImage()">\r\n <span class="text-white" i18n>Apply</span>\r\n </button>\r\n </div>\r\n </mat-dialog-actions>\r\n</ng-container>\r\n',styles:['.image-cropper{max-height:55vh}::ng-deep image-cropper .overlay{background-color:transparent!important}.Slides{display:block;height:auto;width:50%;position:relative;margin-left:auto;margin-right:auto;padding:0 1.25em}.cursor{cursor:pointer}.edit-feature-window{background:0 0;justify-content:center}mat-toolbar{background-color:#fff!important;z-index:1!important}mat-dialog-content{padding:1.25em!important}.heightwidth{display:flex}@media only screen and (max-width:1030px){.Slides{padding:0;width:100%}mat-dialog-content{padding:.25em .5em!important}.heightwidth{display:block}.mat-button{min-width:auto;padding:0 14px}.button-text{display:none}}.largeicon{font-size:2em;padding:.13em .5em}.tooltip{background:#b71c1c}.dimension-icon{position:relative;top:.35em;padding:0 0 0 .3em}.image-cropper-profile{max-height:55vh}.profile-slides{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);display:block;height:auto;width:50%;position:relative;margin-left:auto;margin-right:auto}@media only screen and (max-width:1030px){.profile-slides{padding:0;width:100%}}.toolbar{left:50%;margin:1em 0 0 -10em;position:absolute;width:auto;border-radius:4px}.cf:after,.cf:before{content:"";display:table}.cf:after{clear:both}.toolbar li{float:left;list-style:none}.toolbar a{border-left:0 solid rgba(79,123,170,.4);border-right:1px solid rgba(255,255,255,.3)}.toolbar li:first-child a{border-left:none;border-radius:4px 0 0 4px}.toolbar li:last-child a{border-right:none;border-radius:0 4px 4px 0}']}]}],e.ctorParameters=function(){return[{type:n.MatDialogRef},{type:N},{type:i.MatSnackBar},{type:m},{type:void 0,decorators:[{type:t.Inject,args:[n.MAT_DIALOG_DATA]}]}]},e.propDecorators={data:[{type:t.Output}]},e}();var R=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[C],imports:[s.CommonModule,l.ImageCropperModule,c.MatIconModule,c.MatButtonModule,c.MatDialogModule,c.MatToolbarModule,c.MatDialogModule,c.MatCardModule,c.MatTooltipModule,c.MatSliderModule],exports:[C],entryComponents:[C]}]}],e}(),O={ScrollingUp:0,ScrollingDown:1,NoScrolling:2};O[O.ScrollingUp]="ScrollingUp",O[O.ScrollingDown]="ScrollingDown",O[O.NoScrolling]="NoScrolling";var y=function(){function e(){this.wsClassOnScrollDirChange=5e3,this.hasScrolledDown=!1,this.windowScrollSubscription=null,this.lastScreenTop=0,this.currState=O.NoScrolling}return Object.defineProperty(e.prototype,"isScrollingDown",{get:function(){return this.currState===O.ScrollingDown},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isScrollingUp",{get:function(){return this.currState===O.ScrollingUp},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isNotScrolling",{get:function(){return this.currState===O.NoScrolling},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){var e=this;this.windowScrollSubscription=r.fromEvent(window,"scroll").pipe(a.debounceTime(50)).subscribe((function(){clearTimeout(e.timeoutTimer);var t=window.scrollY;e.hasScrolledDown=t>56,e.setScrollState(e.lastScreenTop,t),e.lastScreenTop=t}))},e.prototype.ngAfterViewInit=function(){},e.prototype.ngOnDestroy=function(){this.windowScrollSubscription&&this.windowScrollSubscription.unsubscribe()},e.prototype.setScrollState=function(e,t){void 0===e&&(e=0),void 0===t&&(t=0),this.currState=e>t?O.ScrollingUp:e<t?O.ScrollingDown:O.NoScrolling,this.currState!==O.NoScrolling&&this.resetScrollingState()},e.prototype.resetScrollingState=function(){var e=this;this.timeoutTimer=setTimeout((function(){e.setScrollState()}),this.wsClassOnScrollDirChange||5e3)},e.decorators=[{type:t.Directive,args:[{selector:"[wsUtilsClassChangeOnScroll]"}]}],e.ctorParameters=function(){return[]},e.propDecorators={wsClassOnScrollDirChange:[{type:t.Input}],isScrollingDown:[{type:t.HostBinding,args:["class.scrolling-down"]}],isScrollingUp:[{type:t.HostBinding,args:["class.scrolling-up"]}],isNotScrolling:[{type:t.HostBinding,args:["class.scrolling-no"]}],hasScrolledDown:[{type:t.HostBinding,args:["class.scrolled-down"]}]},e}();var P=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[y],imports:[s.CommonModule],exports:[y]}]}],e}(),L=function(){function e(){this.wsUtilsDefaultThumbnail="",this.src="",this.isSrcUpdateAttemptedForDefault=!1,this.srcUrl=""}return e.prototype.updateSrc=function(){this.isSrcUpdateAttemptedForDefault||(this.srcUrl=this.wsUtilsDefaultThumbnail,this.isSrcUpdateAttemptedForDefault=!0)},e.prototype.ngOnChanges=function(){this.src&&(this.srcUrl=this.src)},e.decorators=[{type:t.Directive,args:[{selector:"[wsUtilsDefaultThumbnail]"}]}],e.propDecorators={wsUtilsDefaultThumbnail:[{type:t.Input}],src:[{type:t.Input}],srcUrl:[{type:t.HostBinding,args:["src"]}],updateSrc:[{type:t.HostListener,args:["error"]}]},e}();var v=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[L],imports:[s.CommonModule],exports:[L]}]}],e}();var b="(max-width: 450px)",V="(min-width: 450.001px) and (max-width: 768px)",D="(min-width: 768.001px) and (max-width: 1024px)",w="(min-width: 1024.001px) and (max-width: 1400px)",G="(min-width: 1400.001px) and (max-width: 1920px)",U="(min-width: 1920.001px)",M=function(){function e(e){var t=this;this.breakpointObserver=e,this.src=null,this.srcBindUrl="",this.currentSize="",this.breakpointSubscription=null,this.breakpointSubscription=this.breakpointObserver.observe([b,V,D,w,G,U]).pipe(a.distinctUntilChanged()).subscribe((function(e){e.breakpoints[U]?t.currentSize="xxl":e.breakpoints[G]?t.currentSize="xl":e.breakpoints[w]?t.currentSize="l":e.breakpoints[D]?t.currentSize="m":e.breakpoints[V]?t.currentSize="s":e.breakpoints[b]?t.currentSize="xs":t.currentSize="xl",t.setSrc()}))}return e.prototype.ngOnChanges=function(){this.src&&this.setSrc()},e.prototype.ngOnDestroy=function(){this.breakpointSubscription&&this.breakpointSubscription.unsubscribe()},e.prototype.setSrc=function(){this.currentSize&&this.src&&this.src[this.currentSize]&&(this.srcBindUrl=this.src[this.currentSize])},e.decorators=[{type:t.Directive,args:[{selector:"[wsUtilsImageResponsive]"}]}],e.ctorParameters=function(){return[{type:o.BreakpointObserver}]},e.propDecorators={src:[{type:t.Input}],srcBindUrl:[{type:t.HostBinding,args:["src"]}]},e}();var W=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[M],imports:[s.CommonModule],exports:[M]}]}],e}(),F=function(){function e(e){this._el=e,this.inViewport=new t.EventEmitter}return e.prototype.ngOnInit=function(){var e=this;this.check(),this.scroll=r.fromEvent(window,"scroll").pipe(a.debounceTime(100)).subscribe((function(){e.check()})),this.resize=r.fromEvent(window,"resize").pipe(a.debounceTime(100)).subscribe((function(){e.check()}))},e.prototype.ngOnDestroy=function(){this.scroll.unsubscribe(),this.resize.unsubscribe()},e.prototype.check=function(e,t){void 0===e&&(e=!0),void 0===t&&(t="both");var n=this._el.nativeElement,i=n.offsetWidth*n.offsetHeight,r=n.getBoundingClientRect(),o=window.innerWidth,a=window.innerHeight,s=r.top>=0&&r.top<a,c=r.bottom>0&&r.bottom<=a,l=r.left>=0&&r.left<o,E=r.right>0&&r.right<=o,u=e?s||c:s&&c,_=e?l||E:l&&E,p=!1;"both"===t?p=!!(i&&u&&_):"vertical"===t?p=!(!i||!u):"horizontal"===t&&(p=!(!i||!_)),this.inViewport.emit(p)},e.decorators=[{type:t.Directive,args:[{selector:"[wsUtilsInViewPort]"}]}],e.ctorParameters=function(){return[{type:t.ElementRef}]},e.propDecorators={inViewport:[{type:t.Output}]},e}();var k=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[F],exports:[F],imports:[s.CommonModule]}]}],e}(),H=function(){function e(){this.wsUtilsNavigation="",this.openInNewTab=!1,this.routeUrl=""}return e.prototype.onMouseEnter=function(e){(this.openInNewTab||this.wsUtilsNavigation.includes("mailto"))&&(e.preventDefault(),e.stopPropagation(),this.routeUrl="./",window.open(this.wsUtilsNavigation))},e.prototype.ngOnChanges=function(){(this.openInNewTab||this.wsUtilsNavigation.includes("mailto"))&&(this.routeUrl="./")},e.decorators=[{type:t.Directive,args:[{selector:"[wsUtilsNavigation]"}]}],e.ctorParameters=function(){return[]},e.propDecorators={wsUtilsNavigation:[{type:t.Input}],openInNewTab:[{type:t.Input}],routeUrl:[{type:t.Input},{type:t.HostBinding,args:["attr.routerLink"]}],onMouseEnter:[{type:t.HostListener,args:["mousedown",["$event"]]}]},e}();var B=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[H],imports:[s.CommonModule],exports:[H]}]}],e}(),Y=function(){function e(){}return e.decorators=[{type:t.Directive,args:[{selector:"[wsUtilsPermission]"}]}],e.ctorParameters=function(){return[]},e}(),x=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[Y],imports:[s.CommonModule],exports:[Y]}]}],e}();var K=function(){function e(){this.loadStatus="none",this.onHover=!1,this.loadNext=new t.EventEmitter,this.horizontalScrollElem=null,this.enablePrev=!1,this.enableNext=!1,this.scrollObserver=null}return e.prototype.ngOnInit=function(){var e=this;if(this.horizontalScrollElem){var t=this.horizontalScrollElem;this.scrollObserver=r.fromEvent(t.nativeElement,"scroll").pipe(a.debounceTime(100),a.throttleTime(100)).subscribe((function(n){e.updateNavigationBtnStatus(t.nativeElement)}))}},e.prototype.ngOnChanges=function(){var e=this;r.timer(100).subscribe((function(){e.horizontalScrollElem&&e.updateNavigationBtnStatus(e.horizontalScrollElem.nativeElement)}))},e.prototype.ngOnDestroy=function(){this.scrollObserver&&this.scrollObserver.unsubscribe()},e.prototype.showPrev=function(){if(this.horizontalScrollElem&&this.horizontalScrollElem){var e=this.horizontalScrollElem.nativeElement.clientWidth;this.horizontalScrollElem.nativeElement.scrollTo({left:this.horizontalScrollElem.nativeElement.scrollLeft-e,behavior:"smooth"})}},e.prototype.showNext=function(){if(this.horizontalScrollElem&&this.horizontalScrollElem){var e=this.horizontalScrollElem.nativeElement.clientWidth;this.horizontalScrollElem.nativeElement.scrollTo({left:this.horizontalScrollElem.nativeElement.scrollLeft+e,behavior:"smooth"})}},e.prototype.updateNavigationBtnStatus=function(e){this.enablePrev=!0,this.enableNext=!0,0===e.scrollLeft&&(this.enablePrev=!1),e.scrollWidth===e.clientWidth+e.scrollLeft&&("hasMore"===this.loadStatus?this.loadNext.emit():this.enableNext=!1)},e.decorators=[{type:t.Component,args:[{selector:"ws-utils-horizontal-scroller",template:'<section class="horizontal-scroll-container h-full">\r\n <button i18n-aria-label name="content-backward-button" mat-mini-fab color="primary" (click)="showPrev()"\r\n class="prevBtn hidden-touch border-radius-xs" [hidden]="!enablePrev" [ngClass]="{\'prevBtnHover\': onHover}">\r\n <mat-icon>navigate_before</mat-icon>\r\n </button>\r\n <div name="horizontal-scroll-content-strip" class="horizontal-scroll-content" #horizontalScrollElem>\r\n <ng-content></ng-content>\r\n </div>\r\n <button i18n-aria-label name="content-forward-button" mat-mini-fab (click)="showNext()" color="primary"\r\n class="nextBtn hidden-touch border-radius-xs" [ngClass]="{\'nextBtnHover\': onHover}"\r\n [hidden]="!enableNext || loadStatus === \'fetching\'">\r\n <mat-icon>navigate_next</mat-icon>\r\n </button>\r\n <div class="nextLoading" *ngIf="loadStatus === \'fetching\'">\r\n <mat-spinner></mat-spinner>\r\n </div>\r\n</section>',styles:[".horizontal-scroll-container{position:relative;width:100%;min-height:100px}.nextBtn,.nextLoading,.prevBtn{position:absolute;top:50%;transform:translateY(-50%);z-index:999}.border-radius-xs{border-radius:8px!important}.prevBtn{left:-16px}.nextBtn{right:-16px}.nextLoading{padding:0;right:-16px}.horizontal-scroll-content{overflow-x:auto;-webkit-overflow-scrolling:touch;height:100%;flex-wrap:nowrap;display:flex;align-items:stretch;-ms-overflow-style:none}.horizontal-scroll-content::-webkit-scrollbar{width:0;height:0}"]}]}],e.ctorParameters=function(){return[]},e.propDecorators={loadStatus:[{type:t.Input}],onHover:[{type:t.Input}],loadNext:[{type:t.Output}],horizontalScrollElem:[{type:t.ViewChild,args:["horizontalScrollElem",{static:!0}]}]},e}();var j=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[K],imports:[s.CommonModule,c.MatButtonModule,c.MatIconModule,c.MatProgressSpinnerModule],exports:[K]}]}],e}(),z=function(){function e(e){this.configSvc=e,this.consoleError=console.error,this.consoleInfo=console.info,this.consoleLog=console.log,this.consoleWarn=console.warn,this.noConsole=function(){}}return Object.defineProperty(e.prototype,"error",{get:function(){return this.consoleError},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"info",{get:function(){return this.configSvc.isProduction?this.noConsole:this.consoleInfo},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"log",{get:function(){return this.configSvc.isProduction?this.noConsole:this.consoleLog},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"warn",{get:function(){return this.configSvc.isProduction?this.noConsole:this.consoleWarn},enumerable:!0,configurable:!0}),e.prototype.removeConsoleAccess=function(){if(!this.configSvc.isProduction){var e=function(){throw new Error("Console Functions Usage Are Not Allowed.")};console.warn=e,console.info=e,console.error=e}},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:N}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(N))},token:e,providedIn:"root"}),e}();var q=localStorage,Q={sharePointToken:"/apis/protected/v8/user/token"},J=function(){function e(e,t){this.loggerSvc=e,this.http=t,this.msConfig={clientId:"",tenant:"",defaultEmailId:"",validEmailExtensions:[],isConfigured:!1},this.emailUsed=null,this.code=null,this.msToken={accessToken:"",expiresOn:"",resource:"",tokenType:""}}return Object.defineProperty(e.prototype,"isLogoutRequired",{get:function(){return Boolean(this.msConfig.isConfigured&&this.msConfig.clientId&&this.emailUsed)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"loginUrl",{get:function(){if(this.msConfig.isConfigured&&this.msConfig.clientId){var e="https://login.windows.net/common/oauth2/authorize",t=new URLSearchParams({response_type:"code",client_id:this.msConfig.clientId,redirect_uri:window.location.href}),n=location.search.substring(1);return n?e+"?"+t.toString()+"#"+n:e+"?"+t.toString()}return null},enumerable:!0,configurable:!0}),e.prototype.logoutUrl=function(e){return this.isValidEmail(this.emailUsed||"")?"https://login.microsoftonline.com/common/oauth2/logout?post_logout_redirect_uri="+e:e},e.prototype.init=function(e){return T(this,void 0,void 0,(function(){var t,n;return g(this,(function(i){switch(i.label){case 0:return e&&e.microsoft&&e.microsoft.isConfigured||this.loggerSvc.warn("Empty/No Configuration passed, ignoring Microsoft Authentication"),this.msConfig=e.microsoft,(t=new URLSearchParams(location.search)).has("code")&&t.has("session_state")?(this.code=t.get("code"),this.code?(n=location.origin+location.pathname,[4,this.exchangeTokenForCode(this.code,n)]):[2]):[3,2];case 1:i.sent(),location.hash&&(n+=location.hash.substring(1)),history.replaceState(null,"",n),i.label=2;case 2:return[2]}}))}))},e.prototype.login=function(e){return T(this,void 0,void 0,(function(){var t;return g(this,(function(n){return this.isValidEmail(e)?((t=this.loginUrl)?location.assign(t):this.loggerSvc.warn("Unable to identify Office Login URL, Ignoring login request"),[2]):(this.loggerSvc.warn("Microsoft Login is not allowed for your emailId ("+e+")"),[2])}))}))},e.prototype.getToken=function(e){return T(this,void 0,void 0,(function(){var t,n;return g(this,(function(i){switch(i.label){case 0:if(this.msToken&&this.isValid(this.msToken.accessToken,this.msToken.expiresOn)&&this.msToken.accessToken)return[2,this.msToken.accessToken];if(!this.isValidEmail(e))return[3,4];i.label=1;case 1:return i.trys.push([1,3,,4]),t=this,[4,this.getTokenForEmail(e)];case 2:return t.msToken=i.sent(),this.msToken.accessToken?(this.emailUsed=e,[2,this.msToken.accessToken]):[3,4];case 3:return i.sent(),this.code||this.login(e),[3,4];case 4:if(!this.msConfig.defaultEmailId||!this.isValidEmail(this.msConfig.defaultEmailId))return[3,8];i.label=5;case 5:return i.trys.push([5,7,,8]),n=this,[4,this.getTokenForEmail(this.msConfig.defaultEmailId)];case 6:return n.msToken=i.sent(),this.msToken.accessToken?(this.emailUsed=this.msConfig.defaultEmailId,[2,this.msToken.accessToken]):[3,8];case 7:return i.sent(),[3,8];case 8:throw new Error("UNABLE TO FETCH MS AUTH TOKEN")}}))}))},e.prototype.loginForSSOEnabledEmbed=function(e){this.isValidEmail(e)||this.loggerSvc.warn("SSO Login request Ignored. Invalid Email Id for SSO Enabled Content");var t=0;try{t=parseInt(q.getItem("msLoginRequested")||"0",10)}catch(e){}(!t||t&&(Date.now()-t)/1e3>600)&&(this.loggerSvc.info("last login exceeded 600 duration. Redirecting to O365 login"),q.setItem("msLoginRequested",Date.now().toString()),this.login(e))},e.prototype.isValidEmail=function(e){return this.msConfig.validEmailExtensions.some((function(t){return e.endsWith(t)}))},e.prototype.isValid=function(e,t){return!(!e||!t)},e.prototype.exchangeTokenForCode=function(e,t){return T(this,void 0,void 0,(function(){var n;return g(this,(function(i){switch(i.label){case 0:return[4,this.http.get(Q+"?code="+e+"&redirectUrl="+t).toPromise()];case 1:return n=i.sent(),[2,this.getInstanceFromResponse(n)]}}))}))},e.prototype.getTokenForEmail=function(e){return T(this,void 0,void 0,(function(){var t;return g(this,(function(n){switch(n.label){case 0:return[4,this.http.get(Q.sharePointToken+"?email="+e).toPromise()];case 1:return t=n.sent(),[2,this.getInstanceFromResponse(t)]}}))}))},e.prototype.getInstanceFromResponse=function(e){return{accessToken:e.accessToken,expiresOn:e.expiresOn,resource:e.resource,tokenType:e.tokenType}},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:z},{type:u.HttpClient}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(z),t.ɵɵinject(u.HttpClient))},token:e,providedIn:"root"}),e}();var Z=localStorage,$=function(){function e(e,t,n){var i=this;this.configSvc=e,this.keycloakSvc=t,this.msAuthSvc=n,this.loginChangeSubject=new r.ReplaySubject(1),this.loginChangeSubject.subscribe((function(e){i.configSvc.isAuthenticated=e,e&&i.configSvc.instanceConfig&&Boolean(i.configSvc.instanceConfig.disablePidCheck)&&(i.configSvc.userProfile={email:i.userEmail,userName:i.userName,userId:i.userId||""})}))}return Object.defineProperty(e.prototype,"isLoggedIn$",{get:function(){return this.loginChangeSubject.asObservable()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isLoggedIn",{get:function(){return this.keycloakSvc.isLoggedIn()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isAuthenticated",{get:function(){return this.keycloakSvc.getKeycloakInstance().authenticated},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"token",{get:function(){return this.keycloakSvc.getKeycloakInstance().token},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"sessionId",{get:function(){return this.keycloakSvc.getKeycloakInstance().sessionId},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"userId",{get:function(){var e=this.keycloakSvc.getKeycloakInstance();if(e)return e.tokenParsed&&e.tokenParsed.sub||e.idTokenParsed&&e.idTokenParsed.sub},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"userEmail",{get:function(){var e=this.keycloakSvc.getKeycloakInstance(),t=e.tokenParsed,n=e.idTokenParsed;return t&&t.email||n&&n.email||n&&n.encEmail||t&&t.preferred_username||n&&n.preferred_username},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"userName",{get:function(){var e=this.keycloakSvc.getKeycloakInstance();return e.tokenParsed&&e.tokenParsed.name||e.idTokenParsed&&e.idTokenParsed.name},enumerable:!0,configurable:!0}),e.prototype.initAuth=function(){return T(this,void 0,void 0,(function(){var e;return g(this,(function(t){switch(t.label){case 0:if(!this.configSvc.instanceConfig)return[2,!1];(e=this.configSvc.instanceConfig).microsoft.isConfigured&&this.msAuthSvc.init({microsoft:e.microsoft}),t.label=1;case 1:return t.trys.push([1,3,,4]),this.setupGlobalAuthResponder(),this.addKeycloakEventListener(),[4,this.keycloakSvc.init({config:{url:e.keycloak.url,realm:e.keycloak.realm,clientId:e.keycloak.clientId},initOptions:I({},this.getSavedKcConfig(),{onLoad:e.keycloak.onLoad||"check-sso",checkLoginIframe:!1}),enableBearerInterceptor:!0,loadUserProfileAtStartUp:!1,bearerExcludedUrls:e.keycloak.bearerExcludedUrls})];case 2:return[2,t.sent()];case 3:return t.sent(),[2,!1];case 4:return[2]}}))}))},e.prototype.login=function(e,t){return void 0===e&&(e="E"),void 0===t&&(t=this.defaultRedirectUrl),this.keycloakSvc.login({idpHint:e,redirectUri:t})},e.prototype.register=function(e){return void 0===e&&(e=this.defaultRedirectUrl),this.keycloakSvc.register({redirectUri:e})},e.prototype.logout=function(e){return void 0===e&&(e=this.defaultRedirectUrl),T(this,void 0,void 0,(function(){return g(this,(function(t){return window.location.href=e+"public/logout",[2]}))}))},e.prototype.force_logout=function(){return T(this,void 0,void 0,(function(){return g(this,(function(e){if(Z.getItem("telemetrySessionId")&&Z.removeItem("telemetrySessionId"),Z.removeItem("kc"),"true"===localStorage.getItem("login")){try{sessionStorage.clear(),localStorage.clear()}catch(e){}window.location.href=this.defaultRedirectUrl+"apis/reset"}else window.location.href=this.defaultRedirectUrl+"public/logout";return[2]}))}))},e.prototype.addKeycloakEventListener=function(){var e=this;this.keycloakSvc.keycloakEvents$.subscribe((function(t){switch(t.type){case E.KeycloakEventType.OnAuthError:e.loginChangeSubject.next(!1);break;case E.KeycloakEventType.OnAuthLogout:e.loginChangeSubject.next(!1),Z.removeItem("kc");break;case E.KeycloakEventType.OnAuthRefreshError:case E.KeycloakEventType.OnAuthRefreshSuccess:case E.KeycloakEventType.OnAuthSuccess:break;case E.KeycloakEventType.OnReady:e.loginChangeSubject.next(t.args),t.args&&e.saveKeycloakConfig();break;case E.KeycloakEventType.OnTokenExpired:e.keycloakSvc.updateToken(60)}}))},e.prototype.setupGlobalAuthResponder=function(){var e=this;r.fromEvent(window,"message").pipe(a.filter((function(e){return Boolean(e)&&Boolean(e.data)&&"AUTH_REQUEST"===e.data.type&&Boolean(e.source&&"function"==typeof e.source.postMessage)}))).subscribe((function(t){return T(e,void 0,void 0,(function(){var e,n,i;return g(this,(function(r){switch(r.label){case 0:return e=t.source,[4,this.keycloakSvc.getToken()];case 1:return n=r.sent(),i={app:"WEB_PORTAL",type:"AUTH_RESPONSE",state:"NONE",plugin:"NONE",data:{token:n,id:t.data&&t.data.data&&t.data.data.id}},e.postMessage(i,"*"),[2]}}))}))}))},e.prototype.saveKeycloakConfig=function(){var e=this.keycloakSvc.getKeycloakInstance(),t={idToken:e.idToken,refreshToken:e.refreshToken,timeSkew:e.timeSkew,token:e.token};Z.setItem("kc",JSON.stringify(t))},e.prototype.getSavedKcConfig=function(){try{var e=Z.getItem("kc");if(e){var t=JSON.parse(e);if("idToken"in t&&"refreshToken"in t&&"timeSkew"in t&&"token"in t)return t}}catch(e){}return{}},Object.defineProperty(e.prototype,"defaultRedirectUrl",{get:function(){try{return document.baseURI||location.origin}catch(e){return location.origin}},enumerable:!0,configurable:!0}),e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:N},{type:E.KeycloakService},{type:J}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(N),t.ɵɵinject(E.KeycloakService),t.ɵɵinject(J))},token:e,providedIn:"root"}),e}();var X=function(){function e(e,t,n,i){var r=this;this.http=e,this.platform=t,this.router=n,this.route=i,this.currentRouteData=[],this.router.events.subscribe((function(e){if(e instanceof p.NavigationEnd){var t=r.route.snapshot,n=t.root.firstChild;r.getChildRouteData(t,n)}}))}return e.prototype.getChildRouteData=function(e,t){t&&(t.data&&this.currentRouteData.push(t.data),t.firstChild&&this.getChildRouteData(e,t.firstChild))},Object.defineProperty(e.prototype,"randomId",{get:function(){return 1},enumerable:!0,configurable:!0}),e.prototype.getJson=function(e){return this.http.get(e)},e.prototype.getLeafNodes=function(e,t){var n=this;return 0===(e.children||[]).length?t.push(e):e.children&&e.children.forEach((function(e){n.getLeafNodes(e,t)})),t},e.prototype.getPath=function(e,t){var n=[];return this.hasPath(e,n,t),n},e.prototype.hasPath=function(e,t,n){var i=this;return null!=e&&(t.push(e),e.identifier===n||(!!(e.children||[]).some((function(e){return i.hasPath(e,t,n)}))||(t.pop(),!1)))},Object.defineProperty(e.prototype,"isMobile",{get:function(){return!(!this.isIos&&!this.isAndroid)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isIos",{get:function(){return this.platform.IOS},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isAndroid",{get:function(){return this.platform.ANDROID},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isAndroidApp",{get:function(){return Boolean(window.appRef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"iOsAppRef",{get:function(){return window.webkit&&window.webkit.messageHandlers&&window.webkit.messageHandlers.appRef?window.webkit.messageHandlers.appRef:null},enumerable:!0,configurable:!0}),e.prototype.setRouteData=function(e){this.currentRouteData=e},Object.defineProperty(e.prototype,"routeData",{get:function(){var e={module:"",pageId:""};return this.currentRouteData.map((function(t){t.pageId&&(e.pageId=e.pageId+"/"+t.pageId),t.module&&(e.module=t.module)})),e},enumerable:!0,configurable:!0}),e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:u.HttpClient},{type:_.Platform},{type:p.Router},{type:p.ActivatedRoute}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(u.HttpClient),t.ɵɵinject(_.Platform),t.ɵɵinject(p.Router),t.ɵɵinject(p.ActivatedRoute))},token:e,providedIn:"root"}),e}();var ee=function(){function e(e,t,n,i){this.dialogRef=e,this.authSvc=t,this.configSvc=n,this.utilitySvc=i,this.disabled=!1,this.isDownloadableIos=!1,this.isDownloadableAndroid=!1}return e.prototype.ngOnInit=function(){this.configSvc.restrictedFeatures&&(this.isDownloadableIos=!this.configSvc.restrictedFeatures.has("iosDownload"),this.isDownloadableAndroid=!this.configSvc.restrictedFeatures.has("androidDownload"))},e.prototype.confirmed=function(){this.disabled=!0,this.dialogRef.close(),this.authSvc.force_logout()},Object.defineProperty(e.prototype,"isDownloadable",{get:function(){return!(!this.configSvc.instanceConfig||!this.configSvc.instanceConfig.isContentDownloadAvailable||!this.utilitySvc.iOsAppRef&&!this.utilitySvc.isAndroidApp)},enumerable:!0,configurable:!0}),e.decorators=[{type:t.Component,args:[{selector:"ws-utils-logout",template:'<h1 mat-dialog-title i18n>Logout Now</h1>\r\n<div class="ws-mat-primary-text text-base pb-2 title-text" *ngIf="isDownloadable" i18n>\r\n Note: On logging out all the downloaded content will be deleted.\r\n</div>\r\n<div mat-dialog-content class="text-base hide-overflow" i18n>\r\n Are you sure?\r\n</div>\r\n<div mat-dialog-actions class="flex-row-reverse">\r\n <button mat-flat-button color="warn" [disabled]="disabled" (click)="confirmed()" i18n>\r\n Yes\r\n </button>\r\n <button mat-button class="margin-right-xs" [mat-dialog-close] cdkFocusInitial i18n>No</button>\r\n</div>',styles:[".hide-overflow{overflow:hidden}"]}]}],e.ctorParameters=function(){return[{type:c.MatDialogRef},{type:$},{type:N},{type:X}]},e}();var te=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[ee],imports:[s.CommonModule,c.MatButtonModule,c.MatDialogModule],entryComponents:[ee]}]}],e}();var ne=function(){function e(){}return e.prototype.transform=function(e){try{var t=void 0,n=void 0,i=new Date(e.fromDate),r=new Date(e.toDate),o={day:i.getDate(),month:i.toLocaleString("default",{month:"short"}),year:i.getFullYear(),time:i.getTime()},a={day:r.getDate(),month:r.toLocaleString("default",{month:"short"}),year:r.getFullYear(),time:r.getTime()};return o.time===a.time?o.day+" "+o.month+" "+o.year:o.year!=o.year?(t=o.day+" "+o.month+" "+o.year)+" - "+(n=a.day+" "+a.month+" "+a.year):(o.month===a.month?(t=""+o.day,n=a.day+" "+a.month+" "+a.year):(t=o.day+" "+o.month,n=a.day+" "+a.month+" "+a.year),t+" - "+n)}catch(t){return e.fromDate+" - "+e.toDate}},e.decorators=[{type:t.Pipe,args:[{name:"pipeConciseDateRange"}]}],e}(),ie=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[ne],imports:[s.CommonModule],exports:[ne]}]}],e}(),re=function(){function e(){}return e.prototype.transform=function(e){var t;return e>0?e<1e3?String(e):e>=1e3&&e<1e6?(t=(e/1e3).toFixed(1)).endsWith("0")?t.split(".")[0]+"K":t+"K":(t=(e/1e6).toFixed(1)).endsWith("0")?t.split(".")[0]+"M":t+"M":"0"},e.decorators=[{type:t.Pipe,args:[{name:"pipeCountTransform"}]}],e}(),oe=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[re],imports:[s.CommonModule],exports:[re]}]}],e}();var ae=function(){function e(){this.months=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}return e.prototype.transform=function(e){var t=e.day+" "+this.months[e.month-1]+" "+e.year;return e.timeZone&&(t+=" "+e.timeZone),t},e.decorators=[{type:t.Pipe,args:[{name:"pipeDateConcat"}]}],e.ctorParameters=function(){return[]},e}();var se=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[ae],imports:[s.CommonModule],exports:[ae]}]}],e}(),ce=function(){function e(){}return e.prototype.transform=function(e,t){if(e<=0)return"";var n=Math.floor(e/3600),i=Math.floor(e%3600/60),r=Math.floor(e%3600%60),o="",a="";switch(t){case"time24":return this.defaultDuration(n,i,r);case"hms":return n>0&&(o+="hms"===t?n+"h":n+" hr"),i>0&&(n>0&&(a=" "),o+="hms"===t?""+a+i+"m":""+a+i+" min"),r>0&&0===n&&(i>0&&(a=" "),o+="hms"===t?""+a+r+"s":""+a+r+" sec"),o;case"hour":return 0===n&&(o+="less than an hour"),1===n&&(o+=n+" hour"),n>1&&(o+=n+" hours"),o;default:return this.defaultDuration(n,i,r)}},e.prototype.defaultDuration=function(e,t,n){var i="";return i+=e>0?e.toString().padStart(2)+":":"",i+=t>0?t.toString().padStart(2)+":":"00:",i+=n>0?n.toString().padStart(2):"00"},e.decorators=[{type:t.Pipe,args:[{name:"pipeDurationTransform"}]}],e}(),le=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[ce],imports:[s.CommonModule],exports:[ce]}]}],e}(),Ee=function(){function e(){}return e.prototype.transform=function(e){return e?String(e).replace(/<[^>]+>/gm,""):""},e.decorators=[{type:t.Pipe,args:[{name:"pipeHtmlTagRemoval"}]}],e}(),ue=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[Ee],imports:[s.CommonModule],exports:[Ee]}]}],e}(),_e=function(){function e(){}return e.prototype.transform=function(e,t,n){return n?(e||[]).filter((function(e){return t.split(",").some((function(t){return e.hasOwnProperty(t)&&new RegExp("^"+n+"$","gi").test(e[t])}))})):e},e.decorators=[{type:t.Pipe,args:[{name:"pipeFilter"}]}],e}(),pe=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[_e],imports:[s.CommonModule],exports:[_e]}]}],e}(),Se=function(){function e(){}return e.prototype.transform=function(e,t){for(var n=[],i=2;i<arguments.length;i++)n[i-2]=arguments[i];if(!e)return[];if(!t)return e;var r=t.toLowerCase();if(n&&n.length){var o=e.filter((function(e){return e.personalDetails[n[0]].toLowerCase().includes(r)}));return o&&o.length<=0?[-1]:o}return e.filter((function(e){return e.title.toLowerCase().includes(r)}))},e.decorators=[{type:t.Pipe,args:[{name:"pipeFilterSearch"}]}],e}(),Ae=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[Se],imports:[s.CommonModule],exports:[Se]}]}],e}(),de=function(){function e(){}return e.prototype.transform=function(e,t,n){return n?(e||[]).filter((function(e){return t.split(",").some((function(t){return e.hasOwnProperty(t)&&e[t]&&(e[t]+" ").toLocaleLowerCase().includes(n.toLocaleLowerCase())}))})):e},e.decorators=[{type:t.Pipe,args:[{name:"pipeListFilter"}]}],e}(),Ie=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[de],imports:[s.CommonModule],exports:[de]}]}],e}(),Te=S,ge=function(){function e(){}return e.prototype.transform=function(e){return e?Te(new Date(e)).fromNow():Te().startOf("hour").fromNow()},e.decorators=[{type:t.Pipe,args:[{name:"pipeRelativeTime"}]}],e}(),he=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[ge],imports:[s.CommonModule],exports:[ge]}]}],e}(),fe=function(){function e(){this.transform=A.orderBy}return e.decorators=[{type:t.Pipe,args:[{name:"orderBy"}]}],e}();var Ne=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[fe],imports:[s.CommonModule],exports:[fe]}]}],e}(),me=function(){function e(){}return e.prototype.transform=function(e,t){if(void 0===t&&(t=5),!e||!e.length)return null;if(Array.isArray(e))return e.slice(0,t);if("string"==typeof e){var n=e.substr(0,t);return t<e.length?n+"...":n}return null},e.decorators=[{type:t.Pipe,args:[{name:"pipeLimitTo"}]}],e}(),Ce=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[me],imports:[s.CommonModule],exports:[me]}]}],e}();var Re=function(){function e(){}return e.prototype.transform=function(e){var t="";return e.firstName&&(t+=e.firstName),e.lastName&&e.lastName!==e.firstName&&(t+=" "+e.lastName),""!==t.trim()?t:e.email?e.email:"Anonymous User"},e.decorators=[{type:t.Pipe,args:[{name:"pipeNameTransform"}]}],e}(),Oe=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[Re],imports:[s.CommonModule],exports:[Re]}]}],e}(),ye=function(){function e(){}return e.prototype.transform=function(e,t){var n,i,r={};try{for(var o=h(t),a=o.next();!a.done;a=o.next()){var s=a.value;e[s]&&(r[s]=e[s])}}catch(e){n={error:e}}finally{try{a&&!a.done&&(i=o.return)&&i.call(o)}finally{if(n)throw n.error}}return r},e.decorators=[{type:t.Pipe,args:[{name:"pipePartialContent"}]}],e}(),Pe=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[ye],imports:[s.CommonModule],exports:[ye]}]}],e}(),Le=function(){function e(e){this.sanitizer=e}return e.prototype.transform=function(e,t){switch(void 0===t&&(t="html"),t){case"html":return this.sanitizer.bypassSecurityTrustHtml(e);case"style":return this.sanitizer.bypassSecurityTrustStyle(e);case"script":return this.sanitizer.bypassSecurityTrustScript(e);case"url":return this.sanitizer.bypassSecurityTrustUrl(e);case"resourceUrl":return this.sanitizer.bypassSecurityTrustResourceUrl(e);default:throw new Error("Invalid safe type specified: "+t)}},e.decorators=[{type:t.Pipe,args:[{name:"pipeSafeSanitizer"}]}],e.ctorParameters=function(){return[{type:d.DomSanitizer}]},e}();var ve=function(){function e(){}return e.decorators=[{type:t.NgModule,args:[{declarations:[Le],imports:[s.CommonModule],exports:[Le]}]}],e}(),be=function(){function e(e,t,n){this.http=e,this.configSvc=t,this.utilitySvc=n,this.baseUrl=this.configSvc.sitePath,this.isIntranetAllowedSettings=!1}return e.prototype.resolve=function(e,t){var n=this;this.isIntranetAllowedSettings=this.configSvc.isIntranetAllowed;var i=decodeURIComponent(e.params.tags),o="";return e.data.pageUrl&&(o=e.data.pageUrl),"page"===e.data.pageType&&e.data.pageKey&&(o=this.baseUrl+"/page/"+e.data.pageKey+".json"),this.http.get(o).pipe(a.map((function(e){return{data:n.transformPageData(e,i),error:null}})),a.catchError((function(e){return r.of({data:null,error:e})})))},e.prototype.transformPageData=function(e,t){var n=this,i=t.split(">");return e.pageLayout.widgetData.widgets=e.pageLayout.widgetData.widgets.map((function(r){return e.navigationBar&&e.navigationBar.links&&(e.navigationBar.links=e.navigationBar.links.filter((function(e){return e.widgetData.tags===t}))),"cardBreadcrumb"===r.widgetSubType&&(r.widgetData.path=[{text:e.navigationBar.pageTitle,clickUrl:e.navigationBar.pageBackLink}].concat(i.map((function(e,t){return{text:e,clickUrl:"/page/explore/"+i.slice(0,t+1).join(">")}})))),"contentStripMultiple"===r.widgetSubType&&(r.widgetData.strips=r.widgetData.strips.map((function(e){return e.request.searchV6.filters[0].andFilters.push({catalogPaths:[t]}),n.utilitySvc.isMobile&&!n.isIntranetAllowedSettings&&e.request.searchV6.filters[0].andFilters.push({isInIntranet:["false"]}),e})),r.widgetData.noDataWidget&&r.widgetData.noDataWidget.widgetData.strips&&(r.widgetData.noDataWidget.widgetData.strips=r.widgetData.noDataWidget.widgetData.strips.map((function(e){return e.request.searchV6.filters[0].andFilters.push({catalogPaths:[t]}),n.utilitySvc.isMobile&&!n.isIntranetAllowedSettings&&e.request.searchV6.filters[0].andFilters.push({isInIntranet:["false"]}),e})))),r})),e},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:u.HttpClient},{type:N},{type:X}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(u.HttpClient),t.ɵɵinject(N),t.ɵɵinject(X))},token:e,providedIn:"root"}),e}();var Ve,De=function(){function e(e){this.http=e}return e.prototype.resolve=function(e,t){var n=this,i=e.params.tag;return this.http.get(e.data.pageUrl).pipe(a.map((function(e){return{data:n.transformPageData(e,i),error:null}})),a.catchError((function(e){return r.of({data:null,error:e})})))},e.prototype.transformPageData=function(e,t){return e.pageLayout.widgetData.widgets=e.pageLayout.widgetData.widgets.map((function(e){return"contentStripMultiple"===e.widgetSubType&&(e.widgetData.strips=e.widgetData.strips.map((function(e){return e.request.search.filters.catalogPaths=[decodeURIComponent(t)],e}))),e})),e},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:u.HttpClient}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(u.HttpClient))},token:e,providedIn:"root"}),e}();(function(e){function t(){}function n(){}function i(){}function r(){}function o(){}e.IPage=t,e.INavBar=n,e.INavBackground=i,e.INavLink=r,e.INavLinkConfig=o})(Ve||(Ve={}));var we,Ge,Ue,Me={pagename:"lexid"},We=function(){function e(e,t,n){this.configSvc=e,this.http=t,this.locale=n,this.baseUrl=this.configSvc.sitePath}return e.prototype.resolve=function(e){return e.data.pageUrl?this.getData(e.data.pageUrl):"feature"===e.data.pageType&&e.data.pageKey?this.getData(this.baseUrl+"/feature/"+e.data.pageKey):"page"===e.data.pageType&&e.data.pageKey&&e.paramMap.has(e.data.pageKey)?this.getData(this.baseUrl+"/page/"+e.paramMap.get(e.data.pageKey)):"page"===e.data.pageType&&e.data.pageKey&&"toc"===e.data.pageKey?this.getData(this.baseUrl+"/page/"+e.data.pageKey):{data:null,error:"CONFIGURATION_ERROR_PAGE_URL_NOT_FORMED"}},e.prototype.setS3Cookie=function(e){return this.http.post("/apis/protected/v8/content/setCookie",{contentId:e}).pipe(a.catchError((function(e){return r.of(!0)})))},e.prototype.getContent=function(e){return this.http.post("/apis/protected/v8/content/"+e+"?hierarchyType=minimal",["status","artifactUrl"])},e.prototype.getData=function(e){var t=this,n=e.split("/").pop().split(".")[0]||"",i=n.startsWith("lex_auth_")?n:Me[n];if(i)return r.forkJoin([this.setS3Cookie(i),this.getContent(i)]).pipe(a.mergeMap((function(e){var n=f(e,2),i=(n[0],n[1]);return"Expired"!==i.status&&"Deleted"!==i.status&&i.artifactUrl?t.http.get(i.artifactUrl+"?ts="+(new Date).getTime()).pipe(a.map((function(e){return{data:e,error:null}})),a.catchError((function(e){return r.of({data:null,error:e})}))):r.of({data:null,error:"NoContent"})})),a.catchError((function(e){return r.of({data:null,error:e})})));var o=[(i?this.setS3Cookie(i):r.of(!0)).pipe(a.mergeMap((function(){return t.http.get(e+".json").pipe(a.map((function(e){return{data:e,error:null}})),a.catchError((function(e){return r.of({data:null,error:e})})))}))),"en"===this.locale||"en-US"===this.locale?r.of({data:void 0,error:null}):this.http.get(e+"."+this.locale+".json").pipe(a.map((function(e){return{data:e,error:null}})),a.catchError((function(e){return r.of({data:null,error:e})})))];return r.forkJoin(o).pipe(a.map((function(e){var t=f(e,2),n=t[0],i=t[1];return i.data?i:n})))},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:N},{type:u.HttpClient},{type:String,decorators:[{type:t.Inject,args:[t.LOCALE_ID]}]}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(N),t.ɵɵinject(u.HttpClient),t.ɵɵinject(t.LOCALE_ID))},token:e,providedIn:"root"}),e}();(function(e){function t(){}function n(){}function i(){}function r(){}function o(){}function a(){}function s(){}function c(){}function l(){}function E(){}function u(){}function _(){}function p(){}function S(){}function A(){}function d(){}function I(){}e.IConfig=t,e.ICompetencyKeys=n,e.IForgotPassword=i,e.ISourceLogo=r,e.IPath=function(){},e.IHubs=o,e.IIndexHtmlMeta=a,e.IFontSize=s,e.IKeycloak=c,e.ILocalsConfig=l,e.IMicrosoft=E,e.ITheme=u,e.IThemeColor=_,e.ILogos=p,e.IMailIds=S,e.IDetails=A,e.IPrimaryNavbarConfig=d,e.ITelemetryConfig=I})(we||(we={})),function(e){function t(){}function n(){}function i(){}e.IAppsConfig=t,e.IGroup=n,e.IFeature=i}(Ge||(Ge={})),function(e){function t(){}function n(){}function i(){}function r(){}function o(){}function a(){}e.IUserProfile=t,e.INodebbUserProfile=n,e.IUserPidProfile=i,e.IUserPidProfileV2=r,e.IUserPidProfileVer2=o,e.ILanguages=a}(Ue||(Ue={})),function(e){function t(){}function n(){}function i(){}function r(){}function o(){}function a(){}function s(){}function c(){}function l(){}function E(){}function u(){}function _(){}function p(){}function S(){}e.IWsEventsFromWidget=t,e.IWsEventsFromPage=n,function(e){e.Action="Action",e.Telemetry="Telemetry",e.PageNavigation="PageNavigation",e.AccessRestrictedContentAccessed="AccessRestrictedContentAccessed",e.PageSlow="PageSlow",e.ErrorOccurred="ErrorOccurred",e.WidgetResolveError="WidgetResolveError"}(e.WsEventType||(e.WsEventType={})),function(e){e.Warn="Warn",e.Error="Error",e.Info="Info",e.Log="Log",e.Trace="Trace"}(e.WsEventLogLevel||(e.WsEventLogLevel={})),function(e){e.Created="Created",e.Updated="Updated",e.Deleted="Deleted"}(e.WsAuditTypes||(e.WsAuditTypes={})),function(e){e.Page="Page",e.Player="Player"}(e.WsTimeSpentType||(e.WsTimeSpentType={})),function(e){e.Play="Play",e.View="View"}(e.WsTimeSpentMode||(e.WsTimeSpentMode={})),function(e){e.RBCP="rbcp-web-ui"}(e.externalTelemetrypdata||(e.externalTelemetrypdata={})),e.IWsEvents=i,function(e){e.Init="Init",e.Interact="Interact",e.Loaded="Loaded",e.Unloaded="Unloaded",e.StateChange="StateChange",e.HeartBeat="HeartBeat",e.Search="Search",e.Feedback="Feedback",e.Impression="Impression"}(e.EnumTelemetrySubType||(e.EnumTelemetrySubType={})),e.ITelemetryPageContext=r,e.ITelemetryEdata=o,e.ITelemetryTabData=a,e.IWsEventTelemetry=s,function(e){e.PAGE_CHANGED="PAGE_CHANGED",e.FULLSCREEN_ACTIVATED="FULLSCREEN_ACTIVATED",e.FULLSCREEN_DEACTIVATED="FULLSCREEN_DEACTIVATED",e.ZOOM_CHANGE="ZOOM_CHANGE",e.NONE="NONE"}(e.EnumTelemetryPdfActivity||(e.EnumTelemetryPdfActivity={})),e.IWsEventTelemetryPdfData=c,e.IWsEventTelemetryInteract=l,e.IWsEventTelemetryFeedback=E,e.IWsEventTelemetryImpression=u,e.IWsEventTelemetrySearch=_,e.IWsEventTelemetryHeartBeat=p,function(e){e.PLAYED="PLAYED",e.PAUSED="PAUSED",e.SEEKED="SEEKED",e.ENDED="ENDED",e.VOLUME_CHANGE="VOLUME_CHANGE",e.MUTE="MUTE",e.UNMUTE="UNMUTE",e.PLAYBACK_SPEED_CHANGE="PLAYBACK_SPEED_CHANGE",e.FULLSCREEN_ACTIVATED="FULLSCREEN_ACTIVATED",e.FULLSCREEN_DEACTIVATED="FULLSCREEN_DEACTIVATED",e.PICTURE_IN_PICTURE_ACTIVATED="PICTURE_IN_PICTURE_ACTIVATED",e.PICTURE_IN_PICTURE_DEACTIVATED="PICTURE_IN_PICTURE_DEACTIVATED",e.NONE="NONE"}(e.EnumTelemetryMediaActivity||(e.EnumTelemetryMediaActivity={})),function(e){e.PLAYING="PLAYING",e.PAUSED="PAUSED",e.ENDED="ENDED",e.BUFFERING="BUFFERING",e.NOT_STARTED="NOT_STARTED"}(e.EnumTelemetryMediaState||(e.EnumTelemetryMediaState={})),e.IWsEventTelemetryMediaData=S,function(e){e.CONTENT="content",e.FEEDBACK="feedback",e.COURSE="course",e.PROGRAM="program",e.EXPLORE="explore",e.LEARN="learn",e.HOME="home",e.DASHBOARD="dashboard",e.SEARCH="search",e.DISCUSS="discuss",e.COMPETENCY="competency",e.EVENTS="events",e.CAREER="career",e.PROFILE="profile",e.NETWORK="network",e.SUPPORT="support"}(e.EnumTelemetrymodules||(e.EnumTelemetrymodules={})),function(e){e.CLICK="click"}(e.EnumInteractTypes||(e.EnumInteractTypes={})),function(e){e.COURSE_TAB="course-tab",e.CAREER_TAB="career-tab",e.NETWORK_TAB="network-tab",e.COMPETENCY_TAB="competency-tab",e.PROFILE_EDIT_TAB="profile-edit-tab",e.DISCUSS_TAB="discuss-tab",e.EVENTS_TAB="events-tab",e.SIDE_MENU="side-menu",e.HOME_PAGE_STRIP_TABS="home-page-strip-tabs"}(e.EnumInteractSubTypes||(e.EnumInteractSubTypes={}))}(e.WsEvents||(e.WsEvents={}));var Fe=S,ke=function(){function n(e,t){this.utilitySvc=e,this.todaysEvents=[],this.eventsSubject=new r.Subject,this.events$=this.eventsSubject.asObservable(),this.eventsChatbotSubject=new r.Subject,this.chatbotEvents$=this.eventsChatbotSubject.asObservable(),this.eventsGetStartSubject=new r.Subject,this.getStartEvents$=this.eventsGetStartSubject.asObservable(),this.eventsPRSubject=new r.Subject,this.getPREvents$=this.eventsPRSubject.asObservable(),this.environment=t}return n.prototype.dispatchEvent=function(e){e.pageContext=this.getContext(e.pageContext),this.eventsSubject.next(e)},n.prototype.dispatchChatbotEvent=function(e){this.eventsChatbotSubject.next(e)},n.prototype.dispatchGetStartedEvent=function(e){this.eventsGetStartSubject.next(e)},n.prototype.dispatchPlatformRatingEvent=function(e){this.eventsPRSubject.next(e)},n.prototype.raiseInteractTelemetry=function(t,n,i){this.dispatchEvent({eventType:e.WsEvents.WsEventType.Telemetry,eventLogLevel:e.WsEvents.WsEventLogLevel.Info,data:{edata:t,object:n,pageContext:this.getContext(i),eventSubType:e.WsEvents.EnumTelemetrySubType.Interact},from:"",to:"Telemetry"})},n.prototype.raiseFeedbackTelemetry=function(t,n,i){this.dispatchEvent({eventType:e.WsEvents.WsEventType.Telemetry,eventLogLevel:e.WsEvents.WsEventLogLevel.Info,data:{edata:t,object:n,eventSubType:e.WsEvents.EnumTelemetrySubType.Feedback},from:i||"",to:"Telemetry"})},n.prototype.raiseCustomImpression=function(t,n){this.dispatchEvent({eventType:e.WsEvents.WsEventType.Telemetry,eventLogLevel:e.WsEvents.WsEventLogLevel.Info,data:{object:t,pageContext:this.getContext(n),eventSubType:e.WsEvents.EnumTelemetrySubType.Impression},from:"",to:"Telemetry"})},n.prototype.getContext=function(e){var t=this.utilitySvc.routeData,n={pageId:t.pageId,module:t.module};return e&&(e.pageIdExt?n.pageId=t.pageId+"_"+e.pageIdExt:e.pageId&&(n.pageId=e.pageId),e.module&&(n.module=e.module)),n},n.prototype.handleTabTelemetry=function(t,n,i){this.raiseInteractTelemetry({subType:t,type:e.WsEvents.EnumInteractTypes.CLICK,id:A.camelCase(n.label)+"-tab"},I({},i),{pageIdExt:A.camelCase(n.label)+"-tab"}),this.raiseCustomImpression(I({context:{position:n.index}},i),{pageIdExt:A.camelCase(n.label)+"-tab"})},n.prototype.getPublicUrl=function(e){var t=e.split("/content").pop()||"";return this.environment.contentHost+"/"+this.environment.contentBucket+"/content"+t},n.prototype.allEventDateFormat=function(e){var t=new Date(e).getDate(),n=new Date(e).getFullYear(),i=new Date(e).getMonth(),r=new Date(e).getHours(),o=new Date(e).getMinutes(),a=new Date(e).getSeconds(),s=new Date(n,i,t,r,o,a,0);return""+Fe(s).format("YYYY-MM-DD")},n.prototype.compareDate=function(e){var t=new Date,n=("0"+(new Date).getDate()).slice(-2);return e===(new Date).getFullYear()+"-"+("0"+(t.getMonth()+1)).slice(-2)+"-"+n},n.prototype.customDateFormat=function(e,t){var n=t.split("+")[0];return e+" "+n.substr(0,2)+n.substr(2,3)},n.prototype.setEventListData=function(e){var t=this;if(void 0!==e){this.todaysEvents=[];var n=e;Object.keys(n).forEach((function(e){var i=n[e],r=(0,Math.floor)(i.duration/60),o=i.duration%60,a=0===r?0===o?"---":o+" minutes":0===o?1===r?r+" hour":r+" hours":1===r?r+" hour "+o+" minutes":r+" hours "+o+" minutes",s=void 0!==i.creatorDetails?i.creatorDetails:[],c=s&&s.length>0?s.replace(/\\/g,""):[],l=c&&c.length>0?JSON.parse(c):s,E=i.startTime.split("+")[0],u=""+E.substr(0,2)+E.substr(2,3),_=i.endTime.split("+")[0],p=""+_.substr(0,2)+_.substr(2,3),S={event:i,eventName:i.name,eventStartTime:u,eventEndTime:p,eventStartDate:i.startDate,eventCreatedOn:t.allEventDateFormat(i.createdOn),eventDuration:a,eventjoined:l.length,eventThumbnail:!i.appIcon||null===i.appIcon&&void 0===i.appIcon?"/assets/icons/Events_default.png":t.getPublicUrl(i.appIcon),pastevent:!1};t.compareDate(i.startDate)&&t.todaysEvents.push(S)}))}},n.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],n.ctorParameters=function(){return[{type:X},{type:void 0,decorators:[{type:t.Inject,args:["environment"]}]}]},n.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new n(t.ɵɵinject(X),t.ɵɵinject("environment"))},token:n,providedIn:"root"}),n}();var He="/apis/protected/v8",Be={CONTENT:He+"/content",AUTHORING_CONTENT:"/apis/authApi/hierarchy",CONTENT_LIKES:He+"/content/likeCount",SET_S3_COOKIE:He+"/content/setCookie",SET_S3_IMAGE_COOKIE:He+"/content/setImageCookie",FETCH_MANIFEST:He+"/content/getWebModuleManifest",FETCH_WEB_MODULE_FILES:He+"/content/getWebModuleFiles",MULTIPLE_CONTENT:He+"/content/multiple",CONTENT_SEARCH_V5:He+"/content/searchV5",CONTENT_SEARCH_V6:He+"/content/searchV6",CONTENT_SEARCH_REGION_RECOMMENDATION:He+"/content/searchRegionRecommendation",CONTENT_HISTORY:He+"/user/history",USER_CONTINUE_LEARNING:He+"/user/history/continue",CONTENT_RATING:He+"/user/rating",CONTENT_RATING_V2:He+"/user/rating/content/average-ratingInfo",COLLECTION_HIERARCHY:function(e,t){return He+"/content/collection/"+e+"/"+t},REGISTRATION_STATUS:He+"/admin/userRegistration/checkUserRegistrationContent",MARK_AS_COMPLETE_META:function(e){return He+"/user/progress/"+e}},Ye=function(){function e(e,t){this.http=e,this.configSvc=t}return e.prototype.fetchMarkAsCompleteMeta=function(e){var t=Be.MARK_AS_COMPLETE_META(e);return this.http.get(t).toPromise()},e.prototype.fetchContent=function(e,t,n){void 0===t&&(t="detail"),void 0===n&&(n=[]);var i=Be.CONTENT+"/"+e+"?hierarchyType="+t;return this.http.post(i,{additionalFields:n}).pipe(a.retry(1))},e.prototype.fetchAuthoringContent=function(e){var t=Be.AUTHORING_CONTENT+"/"+e;return this.http.get(t).pipe(a.retry(1))},e.prototype.fetchMultipleContent=function(e){return this.http.get(Be.MULTIPLE_CONTENT+"/"+e.join(","))},e.prototype.fetchCollectionHierarchy=function(e,t,n,i){return void 0===n&&(n=0),void 0===i&&(i=1),this.http.get(Be.COLLECTION_HIERARCHY(e,t)+"?pageNumber="+n+"&pageSize="+i)},e.prototype.fetchContentLikes=function(e){return this.http.post(Be.CONTENT_LIKES,e).toPromise()},e.prototype.fetchContentRatings=function(e){return this.http.post(Be.CONTENT_RATING+"/rating",e).toPromise()},e.prototype.fetchContentRatingsV2=function(e){return this.http.get(Be.CONTENT_RATING_V2+"/"+e)},e.prototype.fetchContentHistory=function(e){return this.http.get(Be.CONTENT_HISTORY+"/"+e)},e.prototype.continueLearning=function(e,t,n){return T(this,void 0,void 0,(function(){var i=this;return g(this,(function(r){return[2,new Promise((function(r){return T(i,void 0,void 0,(function(){var i;return g(this,(function(o){switch(o.label){case 0:return n&&"playlist"===n.toLowerCase()?(i={contextPathId:t||e,resourceId:e,data:JSON.stringify({timestamp:Date.now(),contextFullPath:[t,e]}),dateAccessed:Date.now(),contextType:"playlist"},[4,this.saveContinueLearning(i).toPromise().catch().finally((function(){r(!0)}))]):[3,2];case 1:return o.sent(),[3,4];case 2:return i={contextPathId:t||e,resourceId:e,data:JSON.stringify({timestamp:Date.now()}),dateAccessed:Date.now()},[4,this.saveContinueLearning(i).toPromise().catch().finally((function(){r(!0)}))];case 3:o.sent(),o.label=4;case 4:return[2]}}))}))}))]}))}))},e.prototype.saveContinueLearning=function(e){var t=Be.USER_CONTINUE_LEARNING;return this.http.post(t,e)},e.prototype.setS3Cookie=function(e){return this.http.post(Be.SET_S3_COOKIE,{contentId:e}).pipe(a.catchError((function(e){return r.of(!0)})))},e.prototype.setS3ImageCookie=function(){return this.http.post(Be.SET_S3_IMAGE_COOKIE,{}).pipe(a.catchError((function(e){return r.of(!0)})))},e.prototype.fetchManifest=function(e){return this.http.post(Be.FETCH_MANIFEST,{url:e})},e.prototype.fetchWebModuleContent=function(e){return this.http.get(Be.FETCH_WEB_MODULE_FILES+"?url="+encodeURIComponent(e))},e.prototype.search=function(e){return e.query=e.query||"",this.http.post(Be.CONTENT_SEARCH_V5,{request:e})},e.prototype.searchRegionRecommendation=function(e){return e.query=e.query||"",e.preLabelValue=(e.preLabelValue||"")+(this.configSvc.userProfile&&this.configSvc.userProfile.country||""),e.filters=I({},e.filters,{labels:[e.preLabelValue||""]}),this.http.post(Be.CONTENT_SEARCH_REGION_RECOMMENDATION,{request:e})},e.prototype.searchV6=function(e){return e.query=e.query||"",this.http.post(Be.CONTENT_SEARCH_V6,e)},e.prototype.fetchContentRating=function(e){return this.http.get(Be.CONTENT_RATING+"/"+e)},e.prototype.deleteContentRating=function(e){return this.http.delete(Be.CONTENT_RATING+"/"+e)},e.prototype.addContentRating=function(e,t){return this.http.post(Be.CONTENT_RATING+"/"+e,t)},e.prototype.getFirstChildInHierarchy=function(e){if(!(e.children||[]).length)return e;if(!("Learning Path"!==e.contentType||e.artifactUrl&&e.artifactUrl.length)){var t=e.children[0];return this.getFirstChildInHierarchy(t)}if("Resource"===e.contentType||"Knowledge Artifact"===e.contentType||"Learning Path"===e.contentType)return e;var n=e.children[0];return this.getFirstChildInHierarchy(n)},e.prototype.getRegistrationStatus=function(e){return this.http.get(Be.REGISTRATION_STATUS+"/"+e).toPromise()},e.prototype.fetchConfig=function(e){return this.http.get(e)},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:u.HttpClient},{type:N}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(u.HttpClient),t.ɵɵinject(N))},token:e,providedIn:"root"}),e}();var xe=function(){function n(e,t,n,i){this.configSvc=t,this.eventsSvc=n,this.logger=i,this.previousUrl=null,this.telemetryConfig=null,this.pData=null,this.contextCdata=[],this.externalApps={RBCP:"rbcp-web-ui"},this.environment=e;var r=this.configSvc.instanceConfig;r&&(this.telemetryConfig=r.telemetryConfig,this.telemetryConfig=I({},this.telemetryConfig,{pdata:I({},this.telemetryConfig.pdata,{id:e.name+"."+this.telemetryConfig.pdata.id}),uid:this.configSvc.userProfile&&this.configSvc.userProfile.userId,channel:this.rootOrgId||this.telemetryConfig.channel,sid:this.getTelemetrySessionId}),this.pData=this.telemetryConfig.pdata,this.addPlayerListener(),this.addCustomEventListener(),this.addInteractListener(),this.addFeedbackListener(),this.addTimeSpentListener(),this.addSearchListener(),this.addHearbeatListener(),this.addCustomImpressionListener())}return Object.defineProperty(n.prototype,"getTelemetrySessionId",{get:function(){return localStorage.getItem("telemetrySessionId")||""},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"rootOrgId",{get:function(){return this.configSvc&&this.configSvc.userProfile&&this.configSvc.userProfile.rootOrgId?this.configSvc.userProfile.rootOrgId:""},enumerable:!0,configurable:!0}),n.prototype.start=function(e,t,n){try{this.telemetryConfig?$t.start(this.telemetryConfig,n&&n.pageId?n.pageId:"","1.0",{type:e.type,mode:e.mode,pageid:n&&n.pageId?n.pageId:"",duration:1},{context:I({pdata:I({},this.pData,{id:this.pData.id})},n&&n.module?{env:n.module}:null),object:I({},t&&t)}):this.logger.error("Error Initializing Telemetry. Config missing.")}catch(e){console.log("Error in telemetry start",e)}},n.prototype.end=function(e,t,n){try{$t.end({type:e.type,mode:e.mode,pageid:n&&n.pageId?n.pageId:""},{context:I({pdata:I({},this.pData,{id:this.pData.id})},n&&n.module?{env:n.module}:null),object:I({},t&&t)})}catch(e){console.log("Error in telemetry end",e)}},n.prototype.audit=function(e,t,n){try{$t.audit({type:e,props:t,state:n,prevstate:"",duration:""},{context:{pdata:I({},this.pData,{id:this.pData.id})}})}catch(e){console.log("Error in telemetry audit",e)}},n.prototype.heartbeat=function(e,t){try{$t.heartbeat({id:t,type:e})}catch(e){console.log("Error in telemetry heartbeat",e)}},n.prototype.impression=function(e){try{var t=this.getPageDetails();e&&e.pageContext&&(t.module=e.pageContext.module);var n={pageid:t.pageid,type:t.pageUrlParts[0],uri:t.pageUrl};if(t.objectId){var i={context:{pdata:I({},this.pData,{id:this.pData.id}),env:t.module||this.telemetryConfig&&this.telemetryConfig.env},object:I({id:t.objectId},e?e.object:{})};$t.impression(n,i)}else $t.impression(n,{context:{pdata:I({},this.pData,{id:this.pData.id}),env:t.module||""},object:I({},e?e.object:{})});this.previousUrl=t.pageUrl}catch(e){console.log("Error in telemetry impression",e)}},n.prototype.externalImpression=function(e){try{var t=this.getPageDetails();if(this.externalApps[e.subApplicationName]){var n=t.objectId?{context:{pdata:I({},this.pData,{id:this.externalApps[e.subApplicationName]})},object:{id:t.objectId}}:{context:{pdata:I({},this.pData,{id:this.externalApps[e.subApplicationName]})}};$t.impression(e.data,n)}}catch(e){console.log("Error in telemetry externalImpression",e)}},n.prototype.addCustomImpressionListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.data&&t.eventType===e.WsEvents.WsEventType.Telemetry&&t.data.eventSubType===e.WsEvents.EnumTelemetrySubType.Impression}))).subscribe((function(e){try{t.impression(e.data)}catch(e){console.log("Error in telemetry impression",e)}}))},n.prototype.addTimeSpentListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.eventType===e.WsEvents.WsEventType.Telemetry&&t.data.type===e.WsEvents.WsTimeSpentType.Page&&t.data.mode&&t.data}))).subscribe((function(n){n.data.state===e.WsEvents.EnumTelemetrySubType.Loaded&&t.start({type:n.data.type||e.WsEvents.WsTimeSpentType.Player,mode:n.data.mode||e.WsEvents.WsTimeSpentMode.Play},{},n.pageContext),n.data.state===e.WsEvents.EnumTelemetrySubType.Unloaded&&t.end({type:n.data.type||e.WsEvents.WsTimeSpentType.Player,mode:n.data.mode||e.WsEvents.WsTimeSpentMode.Play},{},n.pageContext)}))},n.prototype.addCustomEventListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.eventType===e.WsEvents.WsEventType.Telemetry}))).subscribe((function(n){n.data.state===e.WsEvents.EnumTelemetrySubType.Loaded&&n.data.type!==e.WsEvents.WsTimeSpentType.Player&&t.start({type:n.data.type,mode:n.data.mode||e.WsEvents.WsTimeSpentMode.Play},n.data.object,n.pageContext),n.data.state===e.WsEvents.EnumTelemetrySubType.Unloaded&&n.data.type!==e.WsEvents.WsTimeSpentType.Player&&t.end({type:n.data.type||e.WsEvents.WsTimeSpentType.Player,mode:n.data.mode||e.WsEvents.WsTimeSpentMode.Play},n.data.object,n.pageContext)}))},n.prototype.addPlayerListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.eventType===e.WsEvents.WsEventType.Telemetry&&t.data.type===e.WsEvents.WsTimeSpentType.Player&&t.data.mode&&t.data}))).subscribe((function(n){var i=n.data.content;n.data.state!==e.WsEvents.EnumTelemetrySubType.Loaded||i&&"maybe"!==(i.isIframeSupported||"").toLowerCase()&&"yes"!==(i.isIframeSupported||"").toLowerCase()&&(i.mimeType,0)||t.start({type:n.data.type||e.WsEvents.WsTimeSpentType.Player,mode:n.data.mode||e.WsEvents.WsTimeSpentMode.Play},n.data.object,n.pageContext),n.data.state!==e.WsEvents.EnumTelemetrySubType.Unloaded||i&&"maybe"!==(i.isIframeSupported||"").toLowerCase()&&"yes"!==(i.isIframeSupported||"").toLowerCase()&&(i.mimeType,0)||t.end({type:n.data.type||e.WsEvents.WsTimeSpentType.Player,mode:n.data.mode||e.WsEvents.WsTimeSpentMode.Play},n.data.object,n.pageContext)}))},n.prototype.addInteractListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.data&&t.eventType===e.WsEvents.WsEventType.Telemetry&&t.data.eventSubType===e.WsEvents.EnumTelemetrySubType.Interact}))).subscribe((function(e){var n=t.getPageDetails();if("string"==typeof e.from&&t.externalApps[e.from]){var i={context:{pdata:I({},t.pData,{id:t.externalApps[e.from]})}};try{$t.interact(e.data,i)}catch(e){console.log("Error in telemetry interact",e)}}else try{$t.interact({type:e.data.edata.type,subtype:e.data.edata.subType,id:e.data.edata&&e.data.edata.id?e.data.edata.id:"",pageid:e.data.pageContext&&e.data.pageContext.pageId||n.pageid},{context:I({pdata:I({},t.pData,{id:t.pData.id})},e.data.pageContext&&e.data.pageContext.module?{env:e.data.pageContext.module}:null),object:I({},e.data.object)})}catch(e){console.log("Error in telemetry interact",e)}}))},n.prototype.addFeedbackListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.data&&t.eventType===e.WsEvents.WsEventType.Telemetry&&t.data.eventSubType===e.WsEvents.EnumTelemetrySubType.Feedback}))).subscribe((function(e){var n=t.getPageDetails();try{$t.feedback({rating:e.data.object.rating||0,commentid:e.data.object.commentid||"",commenttxt:e.data.object.commenttxt||"",pageid:n.pageid},{context:{pdata:I({},t.pData,{id:t.pData.id})},object:{id:e.data.object.contentId||e.data.object.id||"",type:e.data.edata.type||"",ver:""+(e.data.object.version||"1"),rollup:{}}})}catch(e){console.log("Error in telemetry interact",e)}}))},n.prototype.addHearbeatListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.data&&t.eventType===e.WsEvents.WsEventType.Telemetry&&t.data.eventSubType===e.WsEvents.EnumTelemetrySubType.HeartBeat}))).subscribe((function(e){if("string"==typeof e.from&&t.externalApps[e.from]){var n={context:{pdata:I({},t.pData,{id:t.externalApps[e.from]})}};try{$t.heartbeat(e.data,n)}catch(e){console.log("Error in telemetry heartbeat",e)}}else try{$t.heartbeat({type:e.data.type,id:e.data.id},{context:{pdata:I({},t.pData,{id:t.pData.id})}})}catch(e){console.log("Error in telemetry heartbeat",e)}}))},n.prototype.addSearchListener=function(){var t=this;this.eventsSvc.events$.pipe(a.filter((function(t){return t&&t.data&&t.eventType===e.WsEvents.WsEventType.Telemetry&&t.data.eventSubType===e.WsEvents.EnumTelemetrySubType.Search}))).subscribe((function(e){try{$t.search({query:e.data.query,filters:e.data.filters,size:e.data.size},{context:{pdata:I({},t.pData,{id:t.pData.id})}})}catch(e){console.log("Error in telemetry search",e)}}))},n.prototype.getPageDetails=function(){var e=window.location.pathname.replace("/","");return{pageid:e,pageUrl:e+window.location.search,pageUrlParts:e.split("/"),refferUrl:this.previousUrl,objectId:this.extractContentIdFromUrlParts(e.split("/")),module:""}},n.prototype.extractContentIdFromUrlParts=function(e){var t=e.indexOf("toc"),n=e.indexOf("viewer");return-1===t&&-1===n?null:-1!==t&&t<e.length-1?e[t+1]:-1!==n&&n<e.length-2?e[n+2]:null},n.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],n.ctorParameters=function(){return[{type:void 0,decorators:[{type:t.Inject,args:["environment"]}]},{type:N},{type:ke},{type:z}]},n.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new n(t.ɵɵinject("environment"),t.ɵɵinject(N),t.ɵɵinject(ke),t.ɵɵinject(z))},token:n,providedIn:"root"}),n}();var Ke=function(){function n(e,t,n,i,r,o,a){var s=this;this.configSvc=e,this.contentSvc=t,this.keyCloakSvc=n,this.activatedRoute=i,this.router=r,this.eventSvc=o,this.teleSvc=a,this.subAppname="",this.continueLearningData=null,this.loaded=!1,this.changeContextrespond(),this.configSvc.prefChangeNotifier.subscribe((function(){s.changeContextrespond()}))}return n.prototype.loadedRespond=function(e,t,n){var i=this;if(n&&this.activatedRoute.snapshot.queryParams.viewMode&&"RESUME"===this.activatedRoute.snapshot.queryParams.viewMode)this.continueLearningData=null,this.contentSvc.fetchContentHistory(n).subscribe((function(n){if(i.continueLearningData=n.continueData,i.configSvc&&i.configSvc.userProfile){var r=i.configSvc.userProfile.userName?i.configSvc.userProfile.userName.split(" ",2)[0]:"",o=i.configSvc.userProfile.userName?i.configSvc.userProfile.userName.split(" ",2)[1]:"",a=i.activatedRoute.snapshot.queryParams.viewMode?i.activatedRoute.snapshot.queryParams.viewMode:"",s=i.keyCloakSvc.token,c={subApplicationName:t,requestId:"LOADED",parentContext:{domainName:window.location.host,url:i.router.url,rootOrg:i.configSvc.rootOrg,theme:i.configSvc.activeThemeObject?I({name:i.configSvc.activeThemeObject.themeName},i.configSvc.activeThemeObject.color):"",fontSize:i.configSvc.activeFontObject?i.configSvc.activeFontObject.baseFontSize:"14px",locale:i.configSvc.userPreference&&i.configSvc.userPreference.selectedLocale||"en",darkMode:i.configSvc.isDarkMode,subApplicationStartMode:a.toUpperCase(),user:{firstName:r,lastName:o,token:s,userId:i.configSvc.userProfile.userId?i.configSvc.userProfile.userId:"",roles:i.configSvc.userRoles?Array.from(i.configSvc.userRoles):[]},heartbeatFrequency:"200"},data:i.continueLearningData.data?{continueLearning:i.continueLearningData.data}:null};e.postMessage(c,"*"),i.contentWindowinfo=e,i.loaded=!0,i.subAppname=t}}));else if(this.configSvc&&this.configSvc.userProfile){var r=this.configSvc.userProfile.userName?this.configSvc.userProfile.userName.split(" ",2)[0]:"",o=this.configSvc.userProfile.userName?this.configSvc.userProfile.userName.split(" ",2)[1]:"",a=this.activatedRoute.snapshot.queryParams.viewMode?this.activatedRoute.snapshot.queryParams.viewMode:"",s=this.keyCloakSvc.token,c={subApplicationName:t,requestId:"LOADED",parentContext:{domainName:window.location.host,url:this.router.url,rootOrg:this.configSvc.rootOrg,theme:this.configSvc.activeThemeObject?I({name:this.configSvc.activeThemeObject.themeName},this.configSvc.activeThemeObject.color):"",fontSize:this.configSvc.activeFontObject?this.configSvc.activeFontObject.baseFontSize:"14px",locale:this.configSvc.userPreference&&this.configSvc.userPreference.selectedLocale||"en",darkMode:this.configSvc.isDarkMode,subApplicationStartMode:a.toUpperCase(),user:{firstName:r,lastName:o,token:s,userId:this.configSvc.userProfile.userId?this.configSvc.userProfile.userId:"",roles:this.configSvc.userRoles?Array.from(this.configSvc.userRoles):[]},heartbeatFrequency:"200"},data:null};e.postMessage(c,"*"),this.contentWindowinfo=e,this.loaded=!0,this.subAppname=t}},n.prototype.continueLearningRespond=function(e,t){this.contentSvc.saveContinueLearning({contextPathId:e,resourceId:e,data:JSON.stringify({timestamp:Date.now(),data:t}),dateAccessed:Date.now()}).toPromise().catch()},n.prototype.telemetryEvents=function(t){if(t)switch(t.eventId){case"INTERACT":this.eventSvc.dispatchEvent({eventType:e.WsEvents.WsEventType.Telemetry,eventLogLevel:e.WsEvents.WsEventLogLevel.Warn,data:I({},t.data,{eventSubType:e.WsEvents.EnumTelemetrySubType.Interact}),from:t.subApplicationName,to:"Telemetry"});break;case"HEARTBEAT":this.eventSvc.dispatchEvent({eventType:e.WsEvents.WsEventType.Telemetry,eventLogLevel:e.WsEvents.WsEventLogLevel.Trace,data:I({},t.data,{eventSubType:e.WsEvents.EnumTelemetrySubType.HeartBeat}),from:t.subApplicationName,to:"Telemetry"});break;case"IMPRESSION":this.teleSvc.externalImpression(t.data)}},n.prototype.unsubscribeResponse=function(){this.subAppname="",this.continueLearningData=null,this.contentWindowinfo=null,this.loaded=!1},n.prototype.changeContextrespond=function(){if(this.loaded&&this.contentWindowinfo&&this.configSvc&&this.configSvc.userProfile&&this.subAppname){var e=this.configSvc.userProfile.userName?this.configSvc.userProfile.userName.split(" ",2)[0]:"",t=this.configSvc.userProfile.userName?this.configSvc.userProfile.userName.split(" ",2)[1]:"",n=this.activatedRoute.snapshot.queryParams.viewMode?this.activatedRoute.snapshot.queryParams.viewMode:"",i=this.keyCloakSvc.token,r={subApplicationName:this.subAppname,requestId:"CONTEXT_CHANGE",parentContext:{domainName:window.location.host,url:this.router.url,rootOrg:this.configSvc.rootOrg,theme:this.configSvc.activeThemeObject?I({name:this.configSvc.activeThemeObject.themeName},this.configSvc.activeThemeObject.color):"",fontSize:this.configSvc.activeFontObject?this.configSvc.activeFontObject.baseFontSize:"14px",locale:this.configSvc.userPreference&&this.configSvc.userPreference.selectedLocale||"en",darkMode:this.configSvc.isDarkMode,subApplicationStartMode:n.toUpperCase(),user:{firstName:e,lastName:t,token:i,userId:this.configSvc.userProfile.userId?this.configSvc.userProfile.userId:"",roles:this.configSvc.userRoles?Array.from(this.configSvc.userRoles):[]},heartbeatFrequency:"200"}};this.contentWindowinfo.postMessage(r,"*")}},n.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],n.ctorParameters=function(){return[{type:N},{type:Ye},{type:$},{type:p.ActivatedRoute},{type:p.Router},{type:ke},{type:xe}]},n.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new n(t.ɵɵinject(N),t.ɵɵinject(Ye),t.ɵɵinject($),t.ɵɵinject(p.ActivatedRoute),t.ɵɵinject(p.Router),t.ɵɵinject(ke),t.ɵɵinject(xe))},token:n,providedIn:"root"}),n}();var je="/apis/protected/v8/user/preference",ze=function(){function e(e,t){this.http=e,this.configurationSvc=t}return e.prototype.initialize=function(){var e=this;this.configurationSvc.prefChangeNotifier.pipe(a.debounceTime(250)).subscribe((function(t){e.configurationSvc.isAuthenticated&&e.saveUserPreference(t)}))},e.prototype.fetchUserPreference=function(){return T(this,void 0,void 0,(function(){return g(this,(function(e){switch(e.label){case 0:return[4,this.http.get(je).toPromise()];case 1:return[2,e.sent()]}}))}))},e.prototype.saveUserPreference=function(e){return T(this,void 0,void 0,(function(){var t,n,i=this;return g(this,(function(o){switch(o.label){case 0:return o.trys.push([0,2,,3]),e?(t=I({},this.configurationSvc.userPreference,{pinnedApps:e&&e.pinnedApps||this.configurationSvc.userPreference&&this.configurationSvc.userPreference.pinnedApps||"",isDarkMode:this.configurationSvc.isDarkMode,isRTL:this.configurationSvc.isRTL,selectedTheme:this.configurationSvc.activeThemeObject&&this.configurationSvc.activeThemeObject.themeClass||"",selectedFont:this.configurationSvc.activeFontObject&&this.configurationSvc.activeFontObject.fontClass||"",selectedLangGroup:this.configurationSvc.userPreference&&this.configurationSvc.userPreference.selectedLangGroup||"",selectedLocale:this.configurationSvc.userPreference&&this.configurationSvc.userPreference.selectedLocale||"",colorPallet:this.configurationSvc.userPreference&&this.configurationSvc.userPreference.colorPallet||[],defaultCardType:this.configurationSvc.userPreference&&this.configurationSvc.userPreference.defaultCardType||"",completedActivity:this.configurationSvc.userPreference&&this.configurationSvc.userPreference.completedActivity||[]},e||{},{completedTour:this.configurationSvc.completedTour,profileSettings:this.configurationSvc.userPreference&&this.configurationSvc.userPreference.profileSettings||this.configurationSvc.profileSettings}),n=this.configurationSvc.userPreference,this.configurationSvc.userPreference=t,[4,this.http.put(je,t).pipe(a.retry(3),a.catchError((function(e){return i.configurationSvc.userPreference=n,r.of(e)}))).toPromise()]):[2,!1];case 1:return o.sent(),[2,!0];case 2:return o.sent(),[2,!1];case 3:return[2]}}))}))},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:u.HttpClient},{type:N}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(u.HttpClient),t.ɵɵinject(N))},token:e,providedIn:"root"}),e}();(function(e){function t(){}function n(){}function i(){}function r(){}function o(){}function a(){}function s(){}function c(){}function l(){}var E,u;e.IContinueLearningData=t,e.IContent=n,e.IContentMinimal=i,e.ICollectionHierarchyResponse=r,e.IRelatedContentMeta=o,e.ICreator=a,e.IContentTopic=s,e.IContact=c,e.IViewerContinueLearningRequest=l,function(e){e.PROGRAM="Learning Path",e.CHANNEL="Channel",e.COURSE="Course",e.KNOWLEDGE_ARTIFACT="Knowledge Artifact",e.KNOWLEDGE_BOARD="Knowledge Board",e.LEARNING_JOURNEY="Learning Journeys",e.MODULE="Collection",e.RESOURCE="Resource"}(E=e.EContentTypes||(e.EContentTypes={})),function(e){e.PLAYLIST="Playlist"}(u=e.EMiscPlayerSupportedCollectionTypes||(e.EMiscPlayerSupportedCollectionTypes={})),e.PLAYER_SUPPORTED_COLLECTION_TYPES=[E.COURSE,E.MODULE,E.PROGRAM,u.PLAYLIST],e.KB_SUPPORTED_CONTENT_TYPES=[E.COURSE,E.MODULE,E.PROGRAM,E.RESOURCE],e.PLAYLIST_SUPPORTED_CONTENT_TYPES=[E.COURSE,E.MODULE,E.PROGRAM,E.RESOURCE],function(e){e.COLLECTION="application/vnd.ekstep.content-collection",e.HTML="application/html",e.ILP_FP="application/ilpfp",e.IAP="application/iap-assessment",e.M4A="audio/m4a",e.MP3="audio/mpeg",e.MP4="video/mp4",e.M3U8="application/x-mpegURL",e.INTERACTION="video/interactive",e.PDF="application/pdf",e.QUIZ="application/quiz",e.DRAG_DROP="application/drag-drop",e.HTML_PICKER="application/htmlpicker",e.WEB_MODULE="application/web-module",e.WEB_MODULE_EXERCISE="application/web-module-exercise",e.YOUTUBE="video/x-youtube",e.HANDS_ON="application/integrated-hands-on",e.RDBMS_HANDS_ON="application/rdbms",e.CLASS_DIAGRAM="application/class-diagram",e.CHANNEL="application/channel",e.COLLECTION_RESOURCE="resource/collection",e.CERTIFICATION="application/certification",e.PLAYLIST="application/playlist",e.UNKNOWN="application/unknown"}(e.EMimeTypes||(e.EMimeTypes={})),function(e){e.ASSESSMENT="ASSESSMENT",e.AUDIO="AUDIO",e.CERTIFICATION="CERTIFICATION",e.CHANNEL="Channel",e.CLASS_DIAGRAM="CLASS_DIAGRAM",e.COURSE="COURSE",e.DEFAULT="DEFAULT",e.DRAG_DROP="DRAG_DROP",e.EXTERNAL_CERTIFICATION="EXTERNAL_CERTIFICATION",e.EXTERNAL_COURSE="EXTERNAL_COURSE",e.GOALS="GOALS",e.HANDS_ON="HANDS_ON",e.IAP="IAP",e.INSTRUCTOR_LED="INSTRUCTOR_LED",e.INTERACTIVE_VIDEO="INTERACTIVE_VIDEO",e.KNOWLEDGE_ARTIFACT="KNOWLEDGE_ARTIFACT",e.MODULE="MODULE",e.PDF="PDF",e.PLAYLIST="PLAYLIST",e.PROGRAM="PROGRAM",e.QUIZ="QUIZ",e.RESOURCE="RESOURCE",e.RDBMS_HANDS_ON="RDBMS_HANDS_ON",e.VIDEO="VIDEO",e.WEB_MODULE="WEB_MODULE",e.WEB_PAGE="WEB_PAGE",e.YOUTUBE="YOUTUBE",e.KNOWLEDGE_BOARD="Knowledge Board",e.LEARNING_JOURNEY="Learning Journeys"}(e.EDisplayContentTypes||(e.EDisplayContentTypes={})),function(e){e.ALL="ALL",e.LEARN="LEARN",e.PRACTICE="PRACTICE",e.ASSESS="ASSESS"}(e.EFilterCategory||(e.EFilterCategory={})),function(e){e.NEWLY_ADDED="NEWLY ADDED"}(e.ETagType||(e.ETagType={}))})(e.NsContent||(e.NsContent={})),e.AuthKeycloakService=$,e.AuthMicrosoftService=J,e.ClassChangeOnScrollModule=P,e.ConfigurationsService=N,e.DefaultThumbnailModule=v,e.EFeatures={PLAYLIST:"playlist",PLAYLIST_CREATE:"playlistCreate",PLAYLIST_ADD_NEW_CONTENT:"playlistAddNewContent",PLAYLIST_REMOVE_EXISTING_CONTENT:"playlistRemoveExistingContent",PLAYLIST_DELETE:"playlistDelete",PLAYLIST_SHARE:"playlistShare",GOAL:"goal",GOAL_CREATE_OWN:"goalCreateOwn",GOAL_CREATE_SUGGESTED:"goalCreateSuggested",GOAL_EDIT_EXISTING_GOAL:"goalEditExistingGoal",GOAL_DELETE_EXISTING_GOAL:"goalDeleteExistingGoal",GOAL_SHARE_GOAL_WITH_OTHERS:"goalShareGoalWithOthers",GOAL_VIEW_ALL_GOALS_SECTION:"goalViewAllGoalsSection",GOAL_VIEW_IN_PROGRESS_GOALS_SECTION:"goalViewInProgressGoalsSection",GOAL_VIEW_COMPLETED_GOALS_SECTION:"goalViewCompletedGoalsSection",NAVIGATOR:"navigator",NAVIGATOR_VIEW_NAVIGATOR_CAROUSEL:"navigatorViewNavigatorCarousel",NAVIGATOR_VIEW_ROLES_PAGE:"navigatorViewRolesPage",NAVIGATOR_SELECT_ANY_PILLAR:"navigatorSelectAnyPillar",NAVIGATOR_PURSUE_ANY_OFFERING:"navigatorPursueAnyOffering",NAVIGATOR_CREATE_GOAL_FROM_OFFERING:"navigatorCreateGoalFromOffering",NAVIGATOR_VIEW_EXPLORE_PAGE:"navigatorViewExplorePage",NAVIGATOR_SELECT_ANY_LEARNING_PATH:"navigatorSelectAnyLearningPath",NAVIGATOR_CREATE_GOAL_FROM_LEARNING_PATH:"navigatorCreateGoalFromLearningPath",NAVIGATOR_VIEW_SUGGESTIONS_PAGE:"navigatorViewSuggestionsPage",NAVIGATOR_SELECT_SUGGESTED_TOPICS:"navigatorSelectSuggestedTopics",NAVIGATOR_GET_SUGGESTIONS_OF_SELECTED_TOPICS:"navigatorGetSuggestionsOfSelectedTopics",NAVIGATOR_CREATE_GOAL_FROM_SELECTED_LEARNING_PATHS:"navigatorCreateGoalFromSelectedLearningPaths",NAVIGATOR_VIEW_INDUSTRIES_PAGE:"navigatorViewIndustriesPage",NAVIGATOR_VIEW_CME_PAGE:"navigatorViewCmePage",NAVIGATOR_SELECT_SUBDOMAIN:"navigatorSelectSubdomain",NAVIGATOR_SELECT_PILLAR:"navigatorSelectPillar",NAVIGATOR_SELECT_THEME:"navigatorSelectTheme",NAVIGATOR_VIEW_CPG_PAGE:"navigatorViewCpgPage",NAVIGATOR_VIEW_ENERGY_PAGE:"navigatorViewEnergyPage",NAVIGATOR_VIEW_FINANCIAL_SERVICES_PAGE:"navigatorViewFinancialServicesPage",NAVIGATOR_VIEW_HEALTH_CARE_PAGE:"navigatorViewHealthCarePage",NAVIGATOR_VIEW_INSURANCE_PAGE:"navigatorViewInsurancePage",NAVIGATOR_VIEW_LIFE_SCIENCES_PAGE:"navigatorViewLifeSciencesPage",NAVIGATOR_VIEW_MFG_PAGE:"navigatorViewMfgPage",NAVIGATOR_VIEW_RETAIL_PAGE:"navigatorViewRetailPage",NAVIGATOR_VIEW_TRAVEL_AND_HOSPITALITY_PAGE:"navigatorViewTravelAndHospitalityPage",NAVIGATOR_VIEW_UTILITIES_PAGE:"navigatorViewUtilitiesPage",NAVIGATOR_VIEW_CME_ANALYTICS:"navigatorViewCmeAnalytics",NAVIGATOR_VIEW_GPG_ANALYTICS:"navigatorViewGpgAnalytics",NAVIGATOR_VIEW_ENERGY_ANALYTICS:"navigatorViewEnergyAnalytics",NAVIGATOR_VIEW_FINANCIAL_SERVICES_ANALYTICS:"navigatorViewFinancialServicesAnalytics",NAVIGATOR_VIEW_HEALTH_CARE_ANALYTICS:"navigatorViewHealthCareAnalytics",NAVIGATOR_VIEW_INSURANCE_ANALYTICS:"navigatorViewInsuranceAnalytics",NAVIGATOR_VIEW_LIFE_SCIENCES_ANALYTICS:"navigatorViewLifeSciencesAnalytics",NAVIGATOR_VIEW_MFG_ANALYTICS:"navigatorViewMfgAnalytics",NAVIGATOR_VIEW_RETAIL_ANALYTICS:"navigatorViewRetailAnalytics",NAVIGATOR_VIEW_TRAVEL_AND_HOSPITALITY_ANALYTICS:"navigatorViewTravelAndHospitalityAnalytics",NAVIGATOR_VIEW_UTILITIES_ANALYTICS:"navigatorViewUtilitiesAnalytics",NAVIGATOR_VIEW_PILLARS_PAGE:"navigatorViewPillarsPage",NAVIGATOR_VIEW_DIFFERENT_COURSES_IN_PILLAR:"navigatorViewDifferentCoursesInPillar",NAVIGATOR_VIEW_FULL_STACK_PAGE:"navigatorViewFullStackPage",NAVIGATOR_VIEW_DIFFERENT_FULL_STACK_PROGRAMS:"navigatorViewDifferentFullStackPrograms",CATALOG:"catalog",CATALOG_VIEW_CATALOG_LIST:"catalogViewCatalogList",CATALOG_SELECT_ITEM_FROM_CATALOG_LIST:"catalogSelectItemFromCatalogList",CATALOG_VIEW_PROGRAMS_STRIP:"catalogViewProgramsStrip",CATALOG_VIEW_COURSES_STRIP:"catalogViewCoursesStrip",CATALOG_VIEW_LEARNING_MODULES_STRIP:"catalogViewLearningModulesStrip",CATALOG_VIEW_RESOURCES_STRIP:"catalogViewResourcesStrip",MARKETING_PAGE:"marketingPage",MARKETING_PAGE_VIEW_BRAND_ASSETS_PAGE:"marketingPageViewBrandAssetsPage",MARKETING_PAGE_VIEW_CORPORATE_STRIP:"marketingPageViewCorporateStrip",MARKETING_PAGE_VIEW_EMPLOYEE_STRIP:"marketingPageViewEmployeeStrip",MARKETING_PAGE_VIEW_EXPERIMENTAL_SHOWCASE_PAGE:"marketingPageViewExperimentalShowcasePage",MARKETING_PAGE_VIEW_HUBS_PAGE:"marketingPageViewHubsPage",MARKETING_PAGE_VIEW_CONNECTICUT_STRIP:"marketingPageViewConnecticutStrip",MARKETING_PAGE_VIEW_INDIANA_STRIP:"marketingPageViewIndianaStrip",MARKETING_PAGE_VIEW_RHODE_ISLAND_STRIP:"marketingPageViewRhodeIslandStrip",MARKETING_PAGE_VIEW_CLIENT_STORIES_PAGE:"marketingPageViewClientStoriesPage",MARKETING_PAGE_VIEW_AGILE_SCALE_AT_DIGITAL_STRIP:"marketingPageViewAgileScaleAtDigitalStrip",MARKETING_PAGE_VIEW_AI_POWERED_CORE_STRIP:"marketingPageViewAiPoweredCoreStrip",MARKETING_PAGE_VIEW_ALWAYS_ON_LEAVING_STRIP:"marketingPageViewAlwaysOnLeavingStrip",MARKETING_PAGE_VIEW_SERVICES_PAGE:"marketingPageViewServicesPage",MARKETING_PAGE_VIEW_SERVICES_PENTAGON:"marketingPageViewServicesPentagon",MARKETING_PAGE_VIEW_OFFERINGS_LIST:"marketingPageViewOfferingsList",MARKETING_PAGE_SELECT_ANY_OFFERING:"marketingPageSelectAnyOffering",MARKETING_PAGE_SELECT_ANY_PILLAR_FROM_PENTAGON:"marketingPageSelectAnyPillarFromPentagon",MARKETING_PAGE_VIEW_INDUSTRIES_PAGE:"marketingPageViewIndustriesPage",MARKETING_PAGE_VIEW_INDUSTRIES_LIST:"marketingPageViewIndustriesList",MARKETING_PAGE_SELECT_ANY_INDUSTRY:"marketingPageSelectAnyIndustry",MARKETING_PAGE_VIEW_PRODUCT_AND_SUBSIDIARIES_PAGE:"marketingPageViewProductAndSubsidiariesPage",MARKETING_PAGE_VIEW_PRODUCT_AND_SUBSIDIARIES_LIST:"marketingPageViewProductAndSubsidiariesList",MARKETING_PAGE_SELECT_ANY_PRODUCT_AND_SUBSIDIARY:"marketingPageSelectAnyProductAndSubsidiary",INTERESTS:"interests",INTERESTS_ADD_INTERESTS_FROM_SEARCH:"interestsAddInterestsFromSearch",INTERESTS_ADD_INTERESTS_FROM_OUR_SUGGESTIONS_SECTION:"interestsAddInterestsFromOurSuggestionsSection",INTERESTS_REMOVE_INTERESTS_FROM_MY_INTERESTS_SECTION:"interestsRemoveInterestsFromMyInterestsSection",INTERESTS_VIEW_INTERESTS_SEARCH_FIELD:"interestsViewInterestsSearchField",INTERESTS_VIEW_MY_INTERESTS_SECTION:"interestsViewMyInterestsSection",INTERESTS_VIEW_OWN_SUGGESTIONS_SECTION:"interestsViewOwnSuggestionsSection",INTERESTS_VIEW_MORE_SUGGESTIONS_BUTTON:"interestsViewMoreSuggestionsButton",FEEDBACK:"feedback",FEEDBACK_VIEW_PLATFORM_FEEDBACK_SECTION:"feedbackViewPlatformFeedbackSection",FEEDBACK_STAR_RATING_FOR_PLATFORM:"feedbackStarRatingForPlatform",FEEDBACK_WRITE_PLATFORM_FEEDBACK:"feedbackWritePlatformFeedback",FEEDBACK_RESET_PLATFORM_FEEDBACK:"feedbackResetPlatformFeedback",FEEDBACK_SUBMIT_PLATFORM_FEEDBACK:"feedbackSubmitPlatformFeedback",FEEDBACK_VIEW_CONTENT_FEEDBACK_SECTION:"feedbackViewContentFeedbackSection",FEEDBACK_STAR_RATING_FOR_CONTENT:"feedbackStarRatingForContent",FEEDBACK_WRITE_CONTENT_FEEDBACK:"feedbackWriteContentFeedback",FEEDBACK_RESET_CONTENT_FEEDBACK:"feedbackResetContentFeedback",FEEDBACK_SUBMIT_CONTENT_FEEDBACK:"feedbackSubmitContentFeedback",FEEDBACK_VIEW_ISSUE_REPORTING_SECTION:"feedbackViewIssueReportingSection",FEEDBACK_WRITING_ISSUE:"feedbackWritingIssue",FEEDBACK_RESET_ISSUE:"feedbackResetIssue",FEEDBACK_SUBMIT_ISSUE:"feedbackSubmitIssue",CONTACT_US:"contactUs",CONTACT_US_VIEW_RAISE_AHD_SECTION:"contactUsViewRaiseAhdSection",CONTACT_US_VIEW_MAIL_US_SECTION:"contactUsViewMailUsSection",CONTACT_US_VIEW_TALK_TO_US_SECTION:"contactUsViewTalkToUsSection",CONTACT_US_RAISE_AHD:"contactUsRaiseAhd",CONTACT_US_WRITE_EMAIL:"contactUsWriteEmail",CONTACT_US_DIAL_FROM_PHONE:"contactUsDialFromPhone",FAQ:"faq",FAQ_VIEW_LOGIN_FAQS:"faqViewLoginFaqs",FAQ_VIEW_ODC_ACCESS_FAQS:"faqViewOdcAccessFaqs",FAQ_VIEW_COMPATIBILITY_FAQS:"faqViewCompatibilityFaqs",FAQ_VIEW_INSTALLATION_FAQS:"faqViewInstallationFaqs",FAQ_VIEW_PROGRESS_COMPLETION_FAQS:"faqViewProgressCompletionFaqs",FAQ_VIEW_VIDEO_FAQS:"faqViewVideoFaqs",FAQ_VIEW_AUTHORING_FAQS:"faqViewAuthoringFaqs",MOBILE_APPS:"mobileApps",MOBILE_APPS_VIEW_ANDROID_APP_SECTION:"mobileAppsViewAndroidAppSection",MOBILE_APPS_DOWNLOAD_APP_FROM_PLAY_STORE:"mobileAppsDownloadAppFromPlayStore",MOBILE_APPS_DOWNLOAD_APP_FROM_OUR_SERVER:"mobileAppsDownloadAppFromOurServer",MOBILE_APPS_VIEW_QR_CODE_FOR_ANDROID_APP:"mobileAppsViewQrCodeForAndroidApp",MOBILE_APPS_VIEW_IOS_APP_SECTION:"mobileAppsViewIosAppSection",MOBILE_APPS_DOWNLOAD_IOS_APP:"mobileAppsDownloadIosApp",MOBILE_APPS_VIEW_QR_CODE_FOR_IOS_APP:"mobileAppsViewQrCodeForIosApp",ABOUT_US:"aboutUs",ABOUT_US_VIEW_ABOUT_US_PAGE_SECTIONS:"aboutUsViewAboutUsPageSections",SETTINGS:"settings",SETTINGS_VIEW_LANGUAGE_SECTION:"settingsViewLanguageSection",SETTINGS_VIEW_FONT_SIZE_SECTION:"settingsViewFontSizeSection",SETTINGS_VIEW_THEME_SECTION:"settingsViewThemeSection",SETTINGS_CHANGE_LANGUAGE:"settingsChangeLanguage",SETTINGS_CHANGE_FONT_SIZE:"settingsChangeFontSize",SETTINGS_CHANGE_THEME:"settingsChangeTheme",LOGIN_PAGE:"loginPage",LOGIN_PAGE_LOGIN_FOR_INFOSCIONS:"loginPageLoginForInfoscions",LOGIN_PAGE_LOGIN_FOR_SUBSIDIARIES:"loginPageLoginForSubsidiaries",LOGIN_PAGE_LOGIN_FOR_NEW_RECRUITS:"loginPageLoginForNewRecruits",LOGIN_PAGE_ABOUT_US:"loginPageAboutUs",LOGIN_PAGE_TERMS_OF_USE:"loginPageTermsOfUse",LOGIN_PAGE_FAQS:"loginPageFaqs",LOGIN_PAGE_CONTACT_US:"loginPageContactUs",TOC_PAGE:"tocPage",TOC_PAGE_VIEW_OVERVIEW_SECTION:"tocPageViewOverviewSection",TOC_PAGE_VIEW_INSTRUCTOR_LED_SECTION:"tocPageViewInstructorLedSection",TOC_PAGE_VIEW_COHORTS_SECTION:"tocPageViewCohortsSection",TOC_PAGE_VIEW_DISCUSSION_FORUM_SECTION:"tocPageViewDiscussionForumSection",TOC_PAGE_VIEW_COURSE_ANALYTICS_SECTION:"tocPageViewCourseAnalyticsSection",TOC_PAGE_VIEW_WHATS_NEXT_SECTION:"tocPageViewWhatsNextSection",TOC_PAGE_VIEW_PART_OF_SECTION:"tocPageViewPartOfSection",TOC_PAGE_REGISTER_FOR_UPCOMING_TRAINING:"tocPageRegisterForUpcomingTraining",TOC_PAGE_UNREGISTER_FROM_REGISTERED_TRAINING:"tocPageUnregisterFromRegisteredTraining",TOC_PAGE_SHARE_INSTRUCTOR_LED_TRAININGS:"tocPageShareInstructorLedTrainings",TOC_PAGE_VIEW_EDUCATORS_OF_TRAININGS:"tocPageViewEducatorsOfTrainings",TOC_PAGE_NOMINATE_OTHERS_FOR_TRAININGS:"tocPageNominateOthersForTrainings",TOC_PAGE_REQUEST_TRAINING:"tocPageRequestTraining",TOC_PAGE_VIEW_ACTIVE_LEARNERS_SECTION:"tocPageViewActiveLearnersSection",TOC_PAGE_VIEW_ALL_ACTIVE_LEARNERS:"tocPageViewAllActiveLearners",TOC_PAGE_VIEW_CURRENTLY_ACTIVE_LEARNERS:"tocPageViewCurrentlyActiveLearners",TOC_PAGE_VIEW_LEARNERS_SHARING_THE_SAME_GOALS:"tocPageViewLearnersSharingTheSameGoals",TOC_PAGE_VIEW_EXPERTS_AND_TUTORS_SECTION:"tocPageViewExpertsAndTutorsSection",TOC_PAGE_VIEW_ALL_EXPERTS_AND_TUTORS:"tocPageViewAllExpertsAndTutors",TOC_PAGE_VIEW_AUTHORS_OF_COURSE:"tocPageViewAuthorsOfCourse",TOC_PAGE_VIEW_EDUCATORS_OF_COURSE:"tocPageViewEducatorsOfCourse",TOC_PAGE_VIEW_TOPPERS_OF_COURSE:"tocPageViewToppersOfCourse",TOC_PAGE_MAIL_THE_PERSON:"tocPageMailThePerson",TOC_PAGE_CALL_THE_PERSON:"tocPageCallThePerson",TOC_PAGE_POST_VIEWS_IN_DISCUSSION_FORUM:"tocPagePostViewsInDiscussionForum",TOC_PAGE_LEARN_THE_COURSE:"tocPageLearnTheCourse",TOC_PAGE_LIKE_THE_COURSE:"tocPageLikeTheCourse",TOC_PAGE_SHARE_THE_COURSE:"tocPageShareTheCourse",TOC_PAGE_ADD_COURSE_TO_GOALS:"tocPageAddCourseToGoals",TOC_PAGE_ADD_COURSE_TO_PLAYLIST:"tocPageAddCourseToPlaylist",TOC_PAGE_ADD_COURSE_TO_WATCHLIST:"tocPageAddCourseToWatchlist",TOC_PAGE_GIVE_COURSE_FEEDBACK:"tocPageGiveCourseFeedback",TOC_PAGE_RESUME_THE_COURSE:"tocPageResumeTheCourse",TOC_PAGE_START_OVER_THE_COURSE:"tocPageStartOverTheCourse",TOC_PAGE_GO_TO_COURSE_QUIZ:"tocPageGoToCourseQuiz",TOC_PAGE_GO_TO_COURSE_HANDS_ON:"tocPageGoToCourseHandsOn",NAVBAR:"navbar",NAVBAR_VIEW_LOGO:"navbarViewLogo",NAVBAR_CATALOG_ICON:"navbarCatalogIcon",NAVBAR_NAVIGATOR_ICON:"navbarNavigatorIcon",NAVBAR_NOTIFICATION_ICON:"navbarNotificationIcon",NAVBAR_SETTINGS_ICON:"navbarSettingsIcon",NAVBAR_SEARCH_ICON:"navbarSearchIcon",NAVBAR_APPS_ICON:"navbarAppsIcon",HOME_PAGE:"homePage",HOME_PAGE_VIEW_CAROUSEL:"homePageViewCarousel",HOME_PAGE_VIEW_CONTINUE_LEARNING_STRIP:"homePageViewContinueLearningStrip",HOME_PAGE_VIEW_FEATURED_APPS_STRIP:"homePageViewFeaturedAppsStrip",HOME_PAGE_VIEW_RECENT_ADDITION_TO_PLAYLISTS_STRIP:"homePageViewRecentAdditionToPlaylistsStrip",HOME_PAGE_VIEW_BASED_ON_YOUR_INTERESTS_STRIP:"homePageViewBasedOnYourInterestsStrip",HOME_PAGE_VIEW_BASED_ON_WHAT_YOU_VIEWED_STRIP:"homePageViewBasedOnWhatYouViewedStrip",HOME_PAGE_VIEW_LATEST_STRIP:"homePageViewLatestStrip",HOME_PAGE_VIEW_TRENDING_STRIP:"homePageViewTrendingStrip",HOME_PAGE_SHOW_COMPLETED_FILTER:"homePageShowCompletedFilter",HOME_PAGE_SHOW_RESOURCES_FILTER:"homePageShowResourcesFilter",TNC_PAGE:"tncPage",TNC_PAGE_VIEW_CONTEST_RULES_SECTION:"tncPageViewContestRulesSection",TNC_PAGE_VIEW_DATA_PRIVACY_SECTION:"tncPageViewDataPrivacySection",TNC_PAGE_ACCEPT_TERMS_AND_CONDITIONS:"tncPageAcceptTermsAndConditions",BLOGS:"blogs",BLOG_VIEW_OTHERS_BLOGS:"blogViewOthersBlogs",BLOGS_LIKE_OTHER_BLOGS:"blogsLikeOtherBlogs",BLOGS_VIEW_MY_BLOGS:"blogsViewMyBlogs",BLOGS_WRITE_NEW_BLOG:"blogsWriteNewBlog",BLOGS_SAVE_BLOG_AS_DRAFT:"blogsSaveBlogAsDraft",BLOGS_EDIT_MY_SAVED_BLOG:"blogsEditMySavedBlog",BLOGS_PUBLISH_MY_BLOG:"blogsPublishMyBlog",BLOGS_UPVOTE_FOR_BLOG:"blogsUpvoteForBlog",BLOGS_DOWNVOTE_FOR_BLOG:"blogsDownvoteForBlog",BLOGS_WRITE_RESPONSE_FOR_BLOG:"blogsWriteResponseForBlog",BLOGS_DELETE_MY_BLOG:"blogsDeleteMyBlog",BLOGS_EDIT_MY_RESPONSE:"blogsEditMyResponse",BLOGS_DELETE_MY_RESPONSE:"blogsDeleteMyResponse",BLOGS_VIEW_DRAFTS_SECTION:"blogsViewDraftsSection",BLOGS_VIEW_PUBLISHED_SECTION:"blogsViewPublishedSection",QUESTION_AND_ANSWER:"questionAndAnswer",QUESTION_AND_ANSWER_VIEW_ALL_QUESTIONS_AND_ANSWERS:"questionAndAnswerViewAllQuestionsAndAnswers",QUESTION_AND_ANSWER_VIEW_ONLY_UNANSWERED_QUESTIONS:"questionAndAnswerViewOnlyUnansweredQuestions",QUESTION_AND_ANSWER_VIEW_MY_TIMELINE:"questionAndAnswerViewMyTimeline",QUESTION_AND_ANSWER_ASK_NEW_QUESTION:"questionAndAnswerAskNewQuestion",QUESTION_AND_ANSWER_VIEW_SPECIFIC_QUESTION:"questionAndAnswerViewSpecificQuestion",QUESTION_AND_ANSWER_UPVOTE_FOR_ANSWER:"questionAndAnswerUpvoteForAnswer",QUESTION_AND_ANSWER_DOWNVOTE_FOR_ANSWER:"questionAndAnswerDownvoteForAnswer",QUESTION_AND_ANSWER_LIKE_AN_ANSWER:"questionAndAnswerLikeAnAnswer",QUESTION_AND_ANSWER_ADD_COMMENT_FOR_ANY_ANSWER:"questionAndAnswerAddCommentForAnyAnswer",QUESTION_AND_ANSWER_ADD_ANSWER_FOR_ANY_QUESTION:"questionAndAnswerAddAnswerForAnyQuestion",QUESTION_AND_ANSWER_SAVE_QUESTION_AS_DRAFT:"questionAndAnswerSaveQuestionAsDraft",QUESTION_AND_ANSWER_PUBLISH_SAVED_QUESTION:"questionAndAnswerPublishedSavedQuestion",QUESTION_AND_ANSWER_VIEW_DRAFTS_SECTION:"questionAndAnswerViewDraftsSection",QUESTION_AND_ANSWER_VIEW_PUBLISHED_SECTION:"questionAndAnswerViewPublishedSection",BADGES:"badges",BADGES_VIEW_RECENTLY_EARNED_BADGE:"badgesViewRecentlyEarnedBadge",BADGES_VIEW_ALL_EARNED_BADGES:"badgesViewAllEarnedBadges",BADGES_VIEW_NEXT_TARGETTED_BADGES:"badgesViewNextTargettedBadges",HANDS_ON_DASHBOARD:"handsOnDashboard",HANDS_ON_DASHBOARD_VIEW_MY_DASHBOARD:"handsOnDashboardViewMyDashboard",HANDS_ON_DASHBOARD_VIEW_SHARED_PROFILE_SECTION:"handsOnDashboardViewSharedProfileSection",LEARNING_HISTORY:"learningHistory",LEARNING_HISTORY_VIEW_PROGRAMS_SECTION:"learningHistoryViewProgramsSection",LEARNING_HISTORY_VIEW_COURSES_SECTION:"learningHistoryViewCoursesSection",LEARNING_HISTORY_VIEW_LEARNING_MODULES_SECTION:"learningHistoryViewLearningModulesSection",LEARNING_HISTORY_VIEW_RESOURCES_SECTION:"learningHistoryViewResourcesSection",LEARNING_HISTORY_VIEW_CERTIFICATIONS_SECTION:"learningHistoryViewCertificationsSection",LEARNING_HISTORY_APPLY_COMPLETED_FILTER:"learningHistoryApplyCompletedFilter",LEARNING_HISTORY_VIEW_MORE_BUTTON:"learningHistoryViewMoreButton",LEARNING_TIME:"learningTime",LEARNING_TIME_VIEW_LEARNING_TIME_GRAPH:"learningTimeViewLearningTimeGraph",LEARNING_TIME_APPLY_BAR_GRAPH_FILTER:"learningTimeApplyBarGraphFilter",LEARNING_TIME_APPLY_DATE_RANGE_FILTER:"learningTimeApplyDateRangeFilter",LEARNING_TIME_APPLY_TIME_SPENT_FILTER:"learningTimeApplyTimeSpentFilter",LEARNING_TIME_APPLY_APP_AVERAGE_FILTER:"learningTimeApplyAppAverageFilter",LEARNING_TIME_APPLY_USER_AVERAGE_OVER_PERIOD_FILTER:"learningTimeApplyUserAverageOverPeriodFilter",NOTIFICATION:"notification",NOTIFICATION_VIEW_RECENT_BADGE_EARNED:"notificationViewRecentBadgeEarned",NOTIFICATION_VIEW_SHARED_PLAYLIST:"notificationViewSharedPlaylist",NOTIFICATION_VIEW_SHARED_GOALS:"notificationViewSharedGoals",PROFILE:"profile",PROFILE_VIEW_BASIC_INFORMATION:"profileViewBasicInformation",PROFILE_VIEW_RECENTLY_LEARNED_COURSES:"profileViewRecentlyLearnedCourses",PROFILE_VIEW_LIKED_ITEMS:"profileViewLikedItems",PROFILE_VIEW_BADGES_EARNED:"profileViewBadgesEarned",BEHAVIORAL_SKILLS:"behavioralSkills",BEHAVIORAL_SKILLS_VIEW_MODEL_CLIENT_INTERACTIONS:"behavioralSkillsViewModalClientInteractions",BEHAVIORAL_SKILLS_VIEW_CLIENT_INTERACTION_TESTS:"behavioralSkillsViewClientInteractionTests",CERTIFICATIONS:"certifications",CERTIFICATIONS_VIEW_MY_APPROVALS_SECTION:"certificationsViewMyApprovalsSection",CERTIFICATIONS_VIEW_MY_REQUESTS_SECTION:"certificationsViewMyRequestsSection",CERTIFICATIONS_VIEW_MY_CERTIFICATIONS_SECTION:"certificationsViewMyCertificationsSection",CERTIFICATIONS_APPLY_COMPLETION_STATUS_FILTER:"certificationsApplyCompletionStatusFilter",CODE_CRACK:"codeCrack",CODE_CRACK_VIEW_PUZZLE_MANIA:"codeCrackViewPuzzleMania",CODE_CRACK_VIEW_CODE_CRACK:"codeCrackViewCodeCrack",CODE_CRACK_VIEW_TECHNOLOGY_PLAYGROUND:"codeCrackViewTechnologyPlayground",CODE_CRACK_WATCH_PROGRAMMING_CHALLENGES_VIDEO:"codeCrackWatchProgrammingChallengesVideo",CODE_CRACK_VIEW_ACCELERATE:"codeCrackViewAccelerate",CODE_CRACK_START_CODE_CRACK_TEST:"codeCrackStartCodeCrackTest",CODE_CRACK_START_PUZZLE_MANIA:"codeCrackStartPuzzleMania",CODE_CRACK_START_TECHNOLOGY_PLAYGROUND:"codeCrackStartTechnologyPlayground",INSTRUCTOR_LED_TRAINING:"instructorLedTraining",INSTRUCTOR_LED_TRAINING_VIEW_TRAINING_SCHEDULE_SECTION:"instructorLedTrainingViewTrainingScheduleSection",INSTRUCTOR_LED_TRAINING_VIEW_FEEDBACK_SECTION:"instructorLedTrainingViewFeedbackSection",INSTRUCTOR_LED_TRAINING_VIEW_TRAININGS_PLANNED_BY_YOUR_TEAM_SECTION:"instructorLedTrainingViewTrainingsPlannedByYourTeamSection",INSTRUCTOR_LED_TRAINING_SEARCH_TRAINING:"instructorLedTrainingSearchTraining",INSTRUCTOR_LED_TRAINING_REGISTER_FOR_TRAINING:"instructorLedTrainingRegisterForTraining",INSTRUCTOR_LED_TRAINING_GIVE_TRAINING_FEEDBACK:"instructorLedTrainingGiveTrainingFeedback",LEADERBOARD:"leaderboard",LEADERBOARD_VIEW_WEEKLY_SECTION:"leaderboardViewWeeklySection",LEADERBOARD_VIEW_MONTHLY_SECTION:"leaderboardViewMonthlySection",LEADERBOARD_VIEW_HALL_OF_FAME_SECTION:"leaderboardViewHallOfSection",LEADERBOARD_APPLY_LEARNER_COLLABORATOR_FILTER:"leaderboardApplyLearnerCollaboratorFilter",LEADERBOARD_BACK_DATE_BUTTON:"leaderboardBackDatebutton",LEADERBOARD_FORWARD_DATE_BUTTON:"leaderboardForwardDateButton",PLAYGROUND:"playground",PLAYGROUND_VIEW_TECHNOLOGY_PLAYGROUNDS_STRIP:"playgroundViewTechnologyPlaygorundsStrip",PLAYGROUND_VIEW_ASSESSMENTS_PLAYGROUNDS_STRIP:"playgroundViewAssessmentsPlaygroundsStrip",PUZZLE_MANIA:"puzzleMania",PUZZLE_MANIA_VIEW_PUZZLE_MANIA:"puzzleManiaViewPuzzleMania",PUZZLE_MANIA_VIEW_CODE_CRACK:"puzzleManiaViewCodeCrack",PUZZLE_MANIA_VIEW_TECHNOLOGY_PLAYGROUND:"puzzleManiaViewTechnologyPlayground",PUZZLE_MANIA_WATCH_PROGRAMMING_CHALLENGES_VIDEO:"puzzleManiaWatchProgrammingChallengesVideo",PUZZLE_MANIA_VIEW_ACCELERATE:"puzzleManiaViewAccelerate",PUZZLE_MANIA_START_CODE_CRACK_TEST:"puzzleManiaStartCodeCrackTest",PUZZLE_MANIA_START_PUZZLE_MANIA:"puzzleManiaStartPuzzleMania",PUZZLE_MANIA_START_TECHNOLOGY_PLAYGROUND:"puzzleManiaStartTechnologyPlayground",FULL_STACK_SALES_LEADER:"fullStackSalesLeader",FULL_STACK_SALES_LEADER_WATCH_LEADER_VIDEO:"fullStackSalesLeaderWatchLeaderVideo",FULL_STACK_SALES_LEADER_EMBARK_ON_THIS_LEARNING_JOURNEY_BUTTON:"fullStackSalesLeaderEmbarkOnThisLearningJourneyButton",FULL_STACK_SALES_LEADER_QUICK_TOUR_VIDEO_LINK:"fullStackSalesLeaderQuickTourVideoLink",FULL_STACK_SALES_LEADER_FEEDBACK_LINK:"fullStackSalesLeaderFeedbackLink",FULL_STACK_SALES_LEADER_DROP_NOTE_LINK:"fullStackSalesLeaderDropNoteLink",ONBOARDING:"onboarding",ONBOARDING_VIEW_DC_ONBOARDING_PROGRAMS_STRIP:"onboardingViewDcOnboardingProgramsStrip",ONBOARDING_VIEW_ORGANISATIONAL_ONBOARDING_PROGRAMS_STRIP:"onboardingViewOrganisationalOnboardingProgramsStrip",ONBOARDING_VIEW_ROLE_BASED_ONBOARDING_PROGRAMS_STRIP:"onboardingViewRoleBasedOnboardingProgramsStrip",ONBOARDING_VIEW_UNIT_AND_PROJECT_ONBOARDING_PROGRAMS_STRIP:"onboardingViewUnitAndProjectOnboardingProgramsStrip",SEARCH:"search",SEARCH_SEARCHING_CONTENT:"searchSearchingContent",KNOWLEDGE_HUB:"knowledgeHub",KNOWLEDGE_HUB_SUBMIT_KNOWLEDGE_ARTIFACTS:"knowledgeHubSubmitKnowledgeArtifacts",KNOWLEDGE_HUB_VIEW_TOP_PROJECTS_SECTION:"knowledgeHubViewTopProjectsSection",KNOWLEDGE_HUB_VIEW_INTERESTING_READS_SECTION:"knowledgeHubViewInterestingReadsSection",KNOWLEDGE_HUB_VIEW_MARKETING_SECTION:"knowledgeHubViewMarketingSection",KNOWLEDGE_HUB_VIEW_KSHOP_CLASSIC_SECTION:"knowledgeHubViewKshopClassicSection",KNOWLEDGE_HUB_VIEW_TRENDING_TOOLS_SECTION:"knowledgeHubViewTrendingToolsSection",KNOWLEDGE_HUB_VIEW_DOCUMENTS_STRIP:"knowledgeHubViewDocumentsStrip",KNOWLEDGE_HUB_VIEW_TOOLS_STRIP:"knowledgeHubViewProjectReferencesStrip",KNOWLEDGE_HUB_VIEW_MARKETING_STRIP:"knowledgeHubViewMarketingStrip",CHANNELS:"channels",CHANNELS_VIEW_LEADERSHIP_SECTION:"channelsViewLeadershipSection",CHANNELS_VIEW_RAVI_KUMAR_PAGE:"channelsViewRaviKumarPage",CHANNELS_VIEW_MOHIT_JOSHI_PAGE:"channelsViewMohitJoshiPage",CHANNELS_FOLLOW_RAVI_KUMAR:"channelsFollowRaviKumar",CHANNELS_MAIL_TO_RAVI_KUMAR:"channelsMailToRaviKumar",CHANNELS_VIEW_ABOUT_RAVI_KUMAR_SECTION:"channelsViewAboutRaviKumarSection",CHANNELS_VIEW_RAVI_KUMAR_TWEETS_SECTION:"channelsViewRaviKumarTweetsSection",CHANNELS_VIEW_RAVI_KUMAR_ARTICLES_SECTION:"channelsViewRaviKumarArticlesSection",CHANNELS_VIEW_RAVI_KUMAR_TRAILBLAZERS_SECTION:"channelsViewRaviKumarTrailblazersSection",CHANNELS_VIEW_RAVI_KUMAR_COMMUNICATIONS_SECTION:"channelsViewRaviKumarCommunicationsSection",CHANNELS_VIEW_RAVI_KUMAR_DISCUSSION_SECTION:"channelsViewraviKumarDiscussionSection",CHANNELS_LIKE_TWEET_RAVI_KUMAR:"channelsLikeTweetRaviKumar",CHANNELS_SHARE_TWEET_RAVI_KUMAR:"channelsShareTweetRaviKumar",CHANNELS_POST_YOUR_THOUGHTS_IN_DISCUSSION_RAVI_KUMAR:"channelsPostYourThoughtsInDiscussionRaviKumar",CHANNELS_FOLLOW_MOHIT_JOSHI:"channelsFollowMohitJoshi",CHANNELS_MAIL_TO_MOHIT_JOSHI:"channelsMailToMohitJoshi",CHANNELS_VIEW_ABOUT_MOHIT_JOSHI_SECTION:"channelsViewAboutMohitJoshiSection",CHANNELS_VIEW_MOHIT_JOSHI_TWEETS_SECTION:"channelsViewMohitJoshiTweetsSection",CHANNELS_VIEW_MOHIT_JOSHI_ARTICLES_SECTION:"channelsViewMohitJoshiArticlesSection",CHANNELS_VIEW_MOHIT_JOSHI_TRAILBLAZERS_SECTION:"channelsViewMohitJoshiTrailblazersSection",CHANNELS_VIEW_MOHIT_JOSHI_COMMUNICATIONS_SECTION:"channelsViewMohitJoshiCommunicationsSection",CHANNELS_VIEW_MOHIT_JOSHI_DISCUSSION_SECTION:"channelsViewMohitJoshiDiscussionSection",CHANNELS_LIKE_TWEET_MOHIT_JOSHI:"channelsLikeTweetMohitJoshi",CHANNELS_SHARE_TWEET_MOHIT_JOSHI:"channelsShareTweetMohitJoshi",CHANNELS_POST_YOUR_THOUGHTS_IN_DISCUSSION_MOHIT_JOSHI:"channelsPostYourThoughtsInDiscussionMohitJoshi",CHANNELS_VIEW_CORPORATE_SECTION:"channelsViewCorporateSection",CHANNELS_VIEW_EXPERIENCE_WOW_PAGE:"channelsViewExperienceWowPage",CHANNELS_VIEW_INFOSYS_KNOWLEDGE_INSTITUTE_PAGE:"channelsViewInfosysKnowledgeInstitutePage",CHANNELS_VIEW_CMT_LEARNING_HUB_PAGE:"channelsViewCmtLearningHubPage",CHANNELS_VIEW_FULL_STACK_SALES_LEADERS_PAGE:"channelsViewFullStackSalesLeaderPage",EXPERIENCE_WOW_PAGE:"experienceWowPage",EXPERIENCE_WOW_PAGE_VIEW_PAGE_SECTIONS:"experienceWowPageViewPageSections",EXPERIENCE_WOW_PAGE_CHECK_Wingspan_STATISTICS:"experienceWowPageCheckWingspanStatistics",EXPERIENCE_WOW_PAGE_CHECK_INFY_ME_STATISTICS:"experienceWowPageCheckInfyMeStatistics",EXPERIENCE_WOW_PAGE_PROVIDE_SUGGESTIONS:"experienceWowPageProvideSuggestions",EXPERIENCE_WOW_PAGE_SEND_MAIL_FOR_BECOMING_COCREATOR:"experienceWowPageSendMailForBecomingCocreator",INFY_RADIO:"infyRadio",INFY_RADIO_VIEW_PODCASTS_STRIP:"infyRadioViewPodcastsStrip",INFY_TV:"infyTv",INFY_TV_VIEW_JUST_FOR_YOU_SECTION:"infyTvViewJustForYouSection",INFY_TV_VIEW_MUST_VIEW_STRIP:"infyTvViewMustViewStrip",INFY_TV_VIEW_LATEST_STRIP:"infyTvViewLatestStrip",INFY_TV_VIEW_CHANNELS_SECTION:"infyTvViewChannelsSection",INFY_TV_VIEW_CHANNELS_STRIP:"infyTvViewChannelsStrip",INFY_TV_VIEW_BROADCAST_SECTION:"infyTvViewBroadcastSection",INFY_TV_VIEW_PREVIOUS_EVENTS_LIST:"infyTvViewPreviousEventsList",INFY_TV_VIEW_LIVE_EVENTS_LIST:"infyTvViewLiveEventsList",INFY_TV_VIEW_UPCOMING_EVENTS_LIST:"infyTvViewUpcomingEventsList",LEADERSHIP_MESSAGES:"leadershipMessages",LEADERSHIP_MESSAGES_VIEW_LEADERSHIP_VIDEO:"leadershipMessagesViewLeadershipVideo",LIVING_LABS:"livingLabs",LIVING_LABS_VIEW_LIVING_LABS_STRIP:"livingLabsViewLivingLabsStrip",AMERICAS_CONFLUENECE:"americasConfluence",AMERICAS_CONFLUENECE_VIEW_CONFLUENCE_VIDEOS_STRIPS:"americasConfluenceViewConfluenceVideosStrips",APAC_CONFLUENECE:"apacConfluence",APAC_CONFLUENECE_VIEW_CONFLUENCE_VIDEOS_STRIPS:"apacConfluenceViewConfluenceVideosStrips",EMEA_CONFLUENECE:"emeaConfluence",EMEA_CONFLUENECE_VIEW_CONFLUENCE_VIDEOS_STRIPS:"emeaConfluenceViewConfluenceVideosStrips",CONNECT:"connect",CONNECT_VIEW_CONTENT_STRIP:"connectViewContentStrip",LIVE_EVENTS:"liveEvents",LIVE_EVENTS_WATCH_LIVE:"liveEventsWatchLive",LIVE_EVENTS_WATCH_CLASSROOM_BROADCAST:"liveEventsWatchClassroomBroadcast",LIVE_EVENTS_WATCH_THREE_SIXTY_VIDEO:"liveEventsWatchThreeSixtyVideo",LIVE_EVENTS_WATCH_FAMILY_MATTERS_VIDEO:"liveEventsWatchFamilyMattersVideo",LIVE_EVENTS_WATCH_CONFLUENCE_EVENTS:"liveEventsWatchConfluenceEvents",DIGITAL_ASSISTANT_TOUR:"digitalAssistantTour",DIGITAL_ASSISTANT_TOUR_WATCH_TOUR_VIDEO:"digitalAssistantTourWatchTourVideo",QUICK_TOUR:"quickTour",QUICK_TOUR_WATCH_TOUR_VIDEO:"quickTourWatchTourVideo",LOGOUT:"logout",LOGOUT_LOGS_OUT_FROM_APPLICATION:"logoutLogsOutFromApplication",MY_ANALYTICS:"myAnalytics",MY_ANALYTICS_APPLY_QUARTER_FILTERS:"myAnalyticsApplyQuarterFilters",MY_ANALYTICS_VIEW_MY_LEARNING_SECTION:"myAnalyticsViewMyLearningSection",MY_ANALYTICS_VIEW_MY_ASSESSMENT_SECTION:"myAnalyticsViewMyAssessmentSection",MY_ANALYTICS_VIEW_MY_REFACTORING_SECTION:"myAnalyticsViewMyRefactoringSection",MY_ANALYTICS_VIEW_MY_PLANS_SECTION:"myAnalyticsViewMyPlansSection",MY_ANALYTICS_VIEW_MY_COLLABORATORS_SECTION:"myAnalyticsViewMyCollaboratorsSection",MY_ANALYTICS_VIEW_MY_FEATURES_USAGE_SECTION:"myAnalyticsViewTopCoursesSection",MY_ANALYTICS_VIEW_MY_LEARNING_MINUTES:"myAnalyticsViewMyLearningMinutes",MY_ANALYTICS_VIEW_MY_LEARNING_POINTS:"myAnalyticsViewMyLearningPoints",MY_ANALYTICS_VIEW_BADGES:"myAnalyticsViewBadges",MY_ANALYTICS_VIEW_TIME_SPENT_BY_USER:"myAnalyticsViewTimeSpentByUser",MY_ANALYTICS_VIEW_AVERAGE_MINUTES_ON_Wingspan:"myAnalyticsViewAverageMinutesOnWingspan",MY_ANALYTICS_VIEW_AVERAGE_MINUTES_ACROSS_DIMENSIONS:"myAnalyticsViewAverageMinutesAcrossDimensions",MY_ANALYTICS_VIEW_PERCENTAGE_TIME_SPENT_BY_USER:"myAnalyticsViewPercentageTimeSpentByUser",MY_ANALYTICS_VIEW_PERCENTAGE_TIME_SPENT_BY_INFOSCIONS:"myAnalyticsViewPercentageTimeSpentByInfoscions",MY_ANALYTICS_VIEW_PERCENTAGE_TIME_SPENT_BY_PEERS:"myAnalyticsViewPercentageTimeSpentByPeers",MY_ANALYTICS_VIEW_TOTAL_ASSESSMENTS:"myAnalyticsViewTotalAssessments",MY_ANALYTICS_VIEW_PENDING_ASSESSMENTS:"myAnalyticsViewPendingAssessments",MY_ANALYTICS_VIEW_CERTIFICATIONS:"myAnalyticsViewCertifications",MY_ANALYTICS_VIEW_ASSESSMENTS:"myAnalyticsViewAssessments",MY_ANALYTICS_VIEW_RECENT_ASSESSMENTS:"myAnalyticsViewRecentAssessments",MY_ANALYTICS_VIEW_ASSESSMENT_DETAILS:"myAnalyticsViewAssessmentDetails",MY_ANALYTICS_VIEW_RECENT_ASSESSMENT:"myAnalyticsViewRecentAssessment",MY_ANALYTICS_VIEW_MY_REFACTORING_PROGRAM:"myAnalyticsViewMyRefactoringProgram",MY_ANALYTICS_VIEW_NAVIGATOR:"myAnalyticsViewNavigator",MY_ANALYTICS_VIEW_AI_AND_AUTOMATION_PROGRESS:"myAnalyticsViewAiAndAutomationProcess",MY_ANALYTICS_VIEW_MY_GOALS:"myAnalyticsViewMyGoals",MY_ANALYTICS_VIEW_PLAYLIST:"myAnalyticsViewPlaylist",MY_ANALYTICS_VIEW_GOALS_SHARED_WITH_USER:"myAnalyticsViewGoalsSharedWithUser",MY_ANALYTICS_VIEW_DETAILED_COURSES_PROGRESS:"myAnalyticsViewDetailedCoursesProgress",MY_ANALYTICS_VIEW_GOALS_SHARED_BY_USER:"myAnalyticsViewGoalsSharedByUser",MY_ANALYTICS_VIEW_ARTIFACTS_SHARED_BY_USER:"myAnalyticsViewArtifactsSharedByUser",MY_ANALYTICS_VIEW_EXPERTS_USER_CONTACTED:"myAnalyticsViewExpertsUserContacted",MY_ANALYTICS_VIEW_DETAILED_GOALS_SHARING:"myAnalyticsViewDetailedGoalsSharing",MY_ANALYTICS_VIEW_PLAYGROUNDS:"myAnalyticsViewPlaygrounds",MY_ANALYTICS_VIEW_LIKES:"myAnalyticsViewLikes",MY_ANALYTICS_VIEW_SEARCH:"myAnalyticsViewSearch",MY_ANALYTICS_VIEW_INFY_TV:"myAnalyticsViewInfyTv",MY_ANALYTICS_VIEW_INFY_RADIO:"myAnalyticsViewInfyRadio",MY_ANALYTICS_VIEW_INFY_LIVE:"myAnalyticsViewInfyLive",MY_ANALYTICS_VIEW_TOP_COURSES_BY_USER_UNIT:"myAnalyticsViewTopCoursesByUserUnit",MY_ANALYTICS_VIEW_TOP_COURSES_BY_USER_PEERS:"myAnalyticsViewTopCoursesbyUserPeers",LEARNING_ANALYTICS:"learningAnalytics",LEARNING_ANALYTICS_SEARCH_FOR_PARTICIPANTS_AND_EDUCATORS:"learningAnalyticsSearchForParticipantsAndEducators",LEARNING_ANALYTICS_UNIT_FILTER:"learningAnalyticsUnitFilter",LEARNING_ANALYTICS_PU_FILTER:"learningAnalyticsPuFilter",LEARNING_ANALYTICS_DU_FILTER:"learningAnalyticsDuFilter",LEARNING_ANALYTICS_ACCOUNT_FILTER:"learningAnalyticsAccountFilter",LEARNING_ANALYTICS_LOCATION_FILTER:"learningAnalyticsLocationFilter",LEARNING_ANALYTICS_QUARTER_FILTER:"learningAnalyticsQuarterFilter",LEARNING_ANALYTICS_COMPLETED_FILTER:"learningAnalyticsCompletedFilter",LEARNING_ANALYTICS_ETA_FILTER:"learningAnalyticsEtaFilter",LEARNING_ANALYTICS_UNIQUE_USERS_DATA:"learningAnalyticsUniqueUsersData",LEARNING_ANALYTICS_USERS_BY_ONSITE_OFFSHORE:"learningAnalyticsUsersByOnsiteOffshore",LEARNING_ANALYTICS_USERS_BY_DEVICE_TYPE:"learningAnalyticsUsersByDeviceType",LEARNING_ANALYTICS_USERS_BY_UNIT:"learningAnalyticsUsersByUnit",LEARNING_ANALYTICS_USERS_BY_TRACK:"learningAnalyticsUsersByTrack",LEARNING_ANALYTICS_USERS_BY_PU_SALES:"learningAnalyticsUsersByPuSales",LEARNING_ANALYTICS_USERS_BY_CU_TYPE:"learningAnalyticsUsersByCuType",LEARNING_ANALYTICS_USERS_BY_SKILL:"learningAnalyticsUsersBySkill",LEARNING_ANALYTICS_USERS_BY_TOPICS:"learningAnalyticsUsersByTopics",LEARNING_ANALYTICS_USERS_BY_HORIZON:"learningAnalyticsUsersByHorizon",LEARNING_ANALYTICS_USERS_GROWTH:"learningAnalyticsUsersGrowth",LEARNING_ANALYTICS_USERS_DETAILS:"learningAnalyticsUsersDetails",LEARNING_ANALYTICS_VIEW_ALL_TRAININGS_SECTION:"learningAnalyticsViewAllTrainingsSection",LEARNING_ANALYTICS_TALENT_GRID_FILTER:"learningAnalyticstalentGridFilter",LEARNING_ANALYTICS_STACK_FILTER:"learningAnalyticsStackFilter",LEARNING_ANALYTICS_UNIQUE_PARTICIPANTS:"learningAnalyticsUniqueParticipants",LEARNING_ANALYTICS_OVERALL_PARTICIPANTS:"learningAnalyticsOverallParticipants",LEARNING_ANALYTICS_AVERAGE_DAYS:"learningAnalyticsAverageDays",LEARNING_ANALYTICS_PARTICIPANTS_BY_ONSITE_ONSHORE:"learningAnalyticsParticipantsByOnsiteOnshore",LEARNING_ANALYTICS_PARTICIPANTS_BY_UNIT:"learningAnalyticsParticipantsByUnit",LEARNING_ANALYTICS_PARTICIPANTS_BY_PU:"learningAnalyticsParticipantsByPu",LEARNING_ANALYTICS_PARTICIPANTS_BY_SKILL_TYPE:"learningAnalyticsParticipantsBySkillType",LEARNING_ANALYTICS_PARTICIPANTS_BY_SKILL:"learningAnalyticsParticipantsBySkill",LEARNING_ANALYTICS_PARTICIPANTS_BY_STACKS:"learningAnalyticsParticipantsByStacks",LEARNING_ANALYTICS_PARTICIPANTS_BY_NEW_SERVICES:"learningAnalyticsParticipantsByNewServices",LEARNING_ANALYTICS_PARTICIPANTS_BY_LEARNING_TRACK:"learningAnalyticsParticipantsByLearningTrack",LEARNING_ANALYTICS_PARTICIPANTS_BY_OFFERING_MODE:"learningAnalyticsParticipantsByOfferingMode",LEARNING_ANALYTICS_PARTICIPANTS_BY_TOPICS:"learningAnalyticsParticipantsByTopics",LEARNING_ANALYTICS_PARTICIPANTS_BY_ABCD:"learningAnalyticsParticipantsByAbcd",LEARNING_ANALYTICS_PARTICIPANTS_DETAILS:"learningAnalyticsParticipantsDetails",LEARNING_ANALYTICS_SCHEDULES_SECTION:"learningAnalyticsSchedulesSection",LEARNING_ANALYTICS_SCHEDULE_DATE_FILTER:"learningAnalyticsScheduleDateFilter",LEARNING_ANALYTICS_PARTICIPANTS:"learningAnalyticsParticipants",LEARNING_ANALYTICS_EDUCATORS:"learningAnalyticsEducators",LEARNING_ANALYTICS_COURSES:"learningAnalyticsCourses",LEARNING_ANALYTICS_SCHEDULES:"learningAnalyticsSchedules",LEARNING_ANALYTICS_VIEW_TRAINING_SCHEDULES_SECTION:"learningAnalyticsTrainingSchedulesSection",LEARNING_ANALYTICS_COURSES_BY_OFFERING_MODE:"learningAnalyticsCoursesByOfferingMode",LEARNING_ANALYTICS_COURSES_BY_TRACK:"learningAnalyticsCoursesByTrack",LEARNING_ANALYTICS_COURSES_BY_TOPIC:"learningAnalyticsCoursesByTopic",LEARNING_ANALYTICS_COURSES_BY_ABCD:"learningAnalyticsCoursesByAbcd",LEARNING_ANALYTICS_COURSES_BY_SKILL:"learningAnalyticsCoursesBySkill",APPS_PAGE:"appsPage",APPS_PAGE_VIEW_DIFFERENT_APPS_ICONS:"appsPageViewDifferentAppsIcons",COURSE_CARD:"courseCard",COURSE_CARD_LIKE_THE_COURSE_BUTTON:"courseCardLikeTheCourseButton",COURSE_CARD_SHARE_THE_COURSE_BUTTON:"courseCardShareTheCourseButton",COURSE_CARD_ADD_COURSE_TO_GOALS_BUTTON:"courseCardAddCourseToGoalsButton",COURSE_CARD_ADD_COURSE_TO_PLAYLIST_BUTTON:"courseCardAddCourseToPlaylistButton",COURSE_CARD_VIEW_MORE_OPTIONS_BUTTON:"courseCardViewMoreOptionsButton",COURSE_CARD_START_COURSE_OPTION:"courseCardStartCourseOption",COURSE_CARD_VIEW_TOC_OPTION:"courseCardViewTocOption",COURSE_CARD_COHORTS_OPTION:"courseCardCohortsOption",COURSE_CARD_ANALYTICS_OPTION:"courseCardAnalyticsOption",SEARCH_RESULTS_PAGE:"searchResultsPage",SEARCH_RESULTS_PAGE_VIEW_LEARNING_SECTION:"searchResultsPageViewLearningSection",SEARCH_RESULTS_PAGE_VIEW_CERTIFICATIONS_SECTION:"searchResultsPageViewCertificationsSection",SEARCH_RESULTS_PAGE_VIEW_KNOWLEDGE_SECTION:"searchResultsPageViewKnowledgeSection",SEARCH_RESULTS_PAGE_VIEW_PROJECTS_SECTION:"searchResultsPageViewProjectsSection",SEARCH_RESULTS_PAGE_VIEW_SOCIAL_SECTION:"searchResultsPageViewSocialSection",SEARCH_RESULTS_PAGE_CATALOG_FILTER:"searchResultsPageCatalogFilter",SEARCH_RESULTS_PAGE_DURATION_FILTER:"searchResultsPageDurationFilter",SEARCH_RESULTS_PAGE_CONTENT_TYPE_FILTER:"searchResultsPageContentTypeFilter",SEARCH_RESULTS_PAGE_LEVEL_FILTER:"searchResultsPageLevelFilter",SEARCH_RESULTS_PAGE_SOURCE_FILTER:"searchResultsPageSourceFilter",SEARCH_RESULTS_PAGE_UNIT_FILTER:"searchResultsPageUnitFilter",SEARCH_RESULTS_PAGE_TYPE_FILTER:"searchResultsPageTypeFilter",SEARCH_RESULTS_PAGE_PUBLISHED_DATE_FILTER:"searchResultsPagePublishedDateFilter",SEARCH_RESULTS_PAGE_CATEGORY_FILTER:"searchResultsPageCategoryFilter",SEARCH_RESULTS_PAGE_ITEM_TYPE_FILTER:"searchResultsPageItemTypeFilter",SEARCH_RESULTS_PAGE_TOPICS_FILTER:"searchResultsPageTopicsFilter",SEARCH_RESULTS_PAGE_AUTHORS_FILTER:"searchResultsPageAuthorsFilter",SEARCH_RESULTS_PAGE_TAGS_FILTER:"searchResultsPageTagsFilter",SEARCH_RESULTS_PAGE_GROUPS_FILTER:"searchResultsPageGroupsFilter",SEARCH_RESULTS_PAGE_VIEW_RESULT_CARDS:"searchResultsPageViewResultCards",SEARCH_RESULTS_PAGE_VIEW_RELATED_CONCEPTS:"searchResultsPageViewRelatedConcepts",LAB_42_INTERVIEW:"interview",LAB_42_DIALOGUE:"dialogue",LAB_42_STRATEGY_MAP:"strategyMap",LAB_42_VIRTUAL_CLASSROOM:"virtualClassroom",LAB_42_PROJECT_STACK:"projectStack",LAB_42_LIVE_TRANSCRIBE:"liveTranscribe",LAB_42_EPOCH:"epoch",LEARNING_ASSISTANT_MAQ:"learning-assistant-maq",LEARNING_ASSISTANT_ILIPDP:"learning-assistant-ilipdp"},e.EInstance={INSTANCE:"RootOrg"},e.EventService=ke,e.ExploreDetailResolve=be,e.HorizontalScrollerModule=j,e.ImageCropComponent=C,e.ImageCropModule=R,e.ImageResponsiveDirective=M,e.ImageResponsiveModule=W,e.InViewPortModule=k,e.LoggerService=z,e.LogoutComponent=ee,e.LogoutModule=te,e.MarketingOfferingResolve=De,e.NavigationModule=B,e.OrderByPipe=fe,e.PageResolve=We,e.PermissionModule=x,e.PipeConciseDateRangeModule=ie,e.PipeConciseDateRangePipe=ne,e.PipeCountTransformModule=oe,e.PipeCountTransformPipe=re,e.PipeDateConcatModule=se,e.PipeDateConcatPipe=ae,e.PipeDurationTransformModule=le,e.PipeDurationTransformPipe=ce,e.PipeFilterModule=pe,e.PipeFilterPipe=_e,e.PipeFilterSearchModule=Ae,e.PipeFilterSearchPipe=Se,e.PipeHtmlTagRemovalModule=ue,e.PipeHtmlTagRemovalPipe=Ee,e.PipeLimitToModule=Ce,e.PipeLimitToPipe=me,e.PipeListFilterModule=Ie,e.PipeListFilterPipe=de,e.PipeNameTransformModule=Oe,e.PipeNameTransformPipe=Re,e.PipeOrderByModule=Ne,e.PipePartialContentModule=Pe,e.PipePartialContentPipe=ye,e.PipeRelativeTimeModule=he,e.PipeRelativeTimePipe=ge,e.PipeSafeSanitizerModule=ve,e.PipeSafeSanitizerPipe=Le,e.SubapplicationRespondService=Ke,e.TelemetryService=xe,e.UserPreferenceService=ze,e.UtilityService=X,e.ValueService=m,e.WidgetContentService=Ye,e.getStringifiedQueryParams=function(e){return Object.entries(e).filter((function(e){return e[1]})).map((function(e){return e[0]+"="+e[1]})).join("&")},e.ɵa=y,e.ɵb=L,e.ɵc=F,e.ɵd=H,e.ɵe=Y,e.ɵf=K,Object.defineProperty(e,"__esModule",{value:!0})}));
16
- //# sourceMappingURL=sunbird-cb-utils.umd.min.js.map