@sunbird-cb/toc 0.0.7 → 0.0.8-mauritius

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 (84) hide show
  1. package/esm2022/lib/_collection/_common/ai-tutor/ai-tutor.component.mjs +1169 -0
  2. package/esm2022/lib/_collection/_common/ai-tutor/socket.service.mjs +121 -0
  3. package/esm2022/lib/_collection/_common/card-competency/card-competency.component.mjs +58 -0
  4. package/esm2022/lib/_collection/_common/card-competency/card-competency.module.mjs +22 -0
  5. package/esm2022/lib/_collection/_common/card-content-v2/card-content-v2.model.mjs +23 -0
  6. package/esm2022/lib/_collection/_common/certificate-dialog/certificate-dialog.component.mjs +115 -12
  7. package/esm2022/lib/_collection/_common/certificate-dialog/certificate-dialog.module.mjs +5 -1
  8. package/esm2022/lib/_collection/_common/content-toc/ai-tutor-confirm-popup/ai-tutor-confirm-popup.component.mjs +3 -3
  9. package/esm2022/lib/_collection/_common/content-toc/app-toc-about/app-toc-about.component.mjs +32 -12
  10. package/esm2022/lib/_collection/_common/content-toc/app-toc-content/app-toc-content.component.mjs +86 -7
  11. package/esm2022/lib/_collection/_common/content-toc/app-toc-content-card-v2/app-toc-content-card-v2.component.mjs +294 -97
  12. package/esm2022/lib/_collection/_common/content-toc/content-toc.component.mjs +25 -37
  13. package/esm2022/lib/_collection/_common/content-toc/content-toc.module.mjs +7 -2
  14. package/esm2022/lib/_collection/_common/content-toc/karma-points/karma-points.component.mjs +70 -3
  15. package/esm2022/lib/_collection/_common/toc-kpi-values/toc-kpi-values.component.mjs +3 -3
  16. package/esm2022/lib/_collection/sliders-dynamic/sliders-dynamic.component.mjs +6 -3
  17. package/esm2022/lib/_services/viewer-route-util.mjs +2 -2
  18. package/esm2022/lib/_services/widget-content.model.mjs +8 -1
  19. package/esm2022/lib/_services/widget-content.service.mjs +8 -8
  20. package/esm2022/lib/app-toc-lib.module.mjs +16 -7
  21. package/esm2022/lib/components/app-toc-cios-home/app-toc-cios-home.component.mjs +55 -8
  22. package/esm2022/lib/components/app-toc-dialog-intro-video/app-toc-dialog-intro-video.component.mjs +3 -3
  23. package/esm2022/lib/components/app-toc-discussion/app-toc-discussion.component.mjs +3 -3
  24. package/esm2022/lib/components/app-toc-home/app-toc-home.component.mjs +7 -6
  25. package/esm2022/lib/components/app-toc-home-v2/app-toc-home-v2.component.mjs +187 -75
  26. package/esm2022/lib/components/enroll-profile-form/enroll-profile-form.component.mjs +22 -6
  27. package/esm2022/lib/components/public-survey-form/public-survey-form.component.mjs +5 -3
  28. package/esm2022/lib/models/user-profile.model.mjs +1 -1
  29. package/esm2022/lib/registration-toc-lib.config.mjs +14 -0
  30. package/esm2022/lib/routes/app-toc-home/app-toc-home.component.mjs +1 -1
  31. package/esm2022/lib/services/app-toc-v2.service.mjs +183 -58
  32. package/esm2022/lib/services/app-toc.service.mjs +328 -138
  33. package/esm2022/lib/services/certificate.service.mjs +54 -9
  34. package/esm2022/lib/services/discuss-utils.service.mjs +30 -43
  35. package/esm2022/lib/services/netcore.service.mjs +116 -46
  36. package/esm2022/lib/services/nps-grid.service.mjs +34 -22
  37. package/esm2022/lib/services/otp.service.mjs +63 -25
  38. package/esm2022/lib/services/profile-v2.service.mjs +47 -19
  39. package/esm2022/lib/services/root.service.mjs +106 -0
  40. package/esm2022/lib/services/user-profile.service.mjs +160 -35
  41. package/esm2022/lib/services/viewer-data.service.mjs +1 -1
  42. package/esm2022/lib/services/viewer-util.service.mjs +159 -32
  43. package/esm2022/public-api.mjs +12 -1
  44. package/fesm2022/sunbird-cb-toc.mjs +9619 -6783
  45. package/fesm2022/sunbird-cb-toc.mjs.map +1 -1
  46. package/lib/_collection/_common/ai-tutor/ai-tutor.component.d.ts +139 -0
  47. package/lib/_collection/_common/ai-tutor/socket.service.d.ts +19 -0
  48. package/lib/_collection/_common/card-competency/card-competency.component.d.ts +14 -0
  49. package/lib/_collection/_common/card-competency/card-competency.module.d.ts +8 -0
  50. package/lib/_collection/_common/card-content-v2/card-content-v2.model.d.ts +44 -0
  51. package/lib/_collection/_common/certificate-dialog/certificate-dialog.component.d.ts +11 -2
  52. package/lib/_collection/_common/certificate-dialog/certificate-dialog.module.d.ts +12 -11
  53. package/lib/_collection/_common/content-toc/ai-tutor-confirm-popup/ai-tutor-confirm-popup.component.d.ts +1 -1
  54. package/lib/_collection/_common/content-toc/app-toc-about/app-toc-about.component.d.ts +7 -3
  55. package/lib/_collection/_common/content-toc/app-toc-content/app-toc-content.component.d.ts +8 -0
  56. package/lib/_collection/_common/content-toc/app-toc-content-card-v2/app-toc-content-card-v2.component.d.ts +48 -7
  57. package/lib/_collection/_common/content-toc/content-toc.component.d.ts +6 -3
  58. package/lib/_collection/_common/content-toc/content-toc.module.d.ts +29 -28
  59. package/lib/_collection/_common/content-toc/karma-points/karma-points.component.d.ts +4 -1
  60. package/lib/_collection/sliders-dynamic/sliders-dynamic.component.d.ts +2 -1
  61. package/lib/_services/widget-content.model.d.ts +6 -0
  62. package/lib/app-toc-lib.module.d.ts +2 -1
  63. package/lib/components/app-toc-cios-home/app-toc-cios-home.component.d.ts +5 -0
  64. package/lib/components/app-toc-home/app-toc-home.component.d.ts +3 -2
  65. package/lib/components/app-toc-home-v2/app-toc-home-v2.component.d.ts +13 -3
  66. package/lib/components/enroll-profile-form/enroll-profile-form.component.d.ts +2 -0
  67. package/lib/components/public-survey-form/public-survey-form.component.d.ts +1 -0
  68. package/lib/models/user-profile.model.d.ts +87 -0
  69. package/lib/registration-toc-lib.config.d.ts +4 -0
  70. package/lib/services/app-toc-v2.service.d.ts +3 -0
  71. package/lib/services/app-toc.service.d.ts +30 -17
  72. package/lib/services/certificate.service.d.ts +5 -6
  73. package/lib/services/discuss-utils.service.d.ts +5 -27
  74. package/lib/services/netcore.service.d.ts +16 -28
  75. package/lib/services/nps-grid.service.d.ts +11 -10
  76. package/lib/services/otp.service.d.ts +5 -10
  77. package/lib/services/profile-v2.service.d.ts +7 -10
  78. package/lib/services/root.service.d.ts +26 -0
  79. package/lib/services/user-profile.service.d.ts +35 -15
  80. package/lib/services/viewer-data.service.d.ts +9 -5
  81. package/lib/services/viewer-util.service.d.ts +14 -0
  82. package/package.json +3 -3
  83. package/public-api.d.ts +10 -0
  84. package/sunbird-cb-toc-0.0.8-mauritius.tgz +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.