@tuki-io/tuki-widgets 0.0.126 → 0.0.127

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 (37) hide show
  1. package/contact-center/cc-readiness/cc-readiness.module.d.ts +19 -0
  2. package/contact-center/cc-readiness/cc-readiness.service.d.ts +12 -0
  3. package/contact-center/cc-readiness/components/card/card.component.d.ts +6 -0
  4. package/contact-center/cc-readiness/types/cc-readiness.d.ts +20 -0
  5. package/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.d.ts +52 -0
  6. package/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.d.ts +26 -0
  7. package/contact-center/index.d.ts +5 -0
  8. package/contact-center/public-api.d.ts +3 -0
  9. package/contact-center/shared/api.endpoints.d.ts +6 -0
  10. package/contact-center/shared/api.service.d.ts +20 -0
  11. package/contact-center/shared/material.module.d.ts +15 -0
  12. package/contact-center/shared/shared.module.d.ts +10 -0
  13. package/esm2020/contact-center/cc-readiness/cc-readiness.module.mjs +71 -0
  14. package/esm2020/contact-center/cc-readiness/cc-readiness.service.mjs +35 -0
  15. package/esm2020/contact-center/cc-readiness/components/card/card.component.mjs +13 -0
  16. package/esm2020/contact-center/cc-readiness/types/cc-readiness.mjs +5 -0
  17. package/esm2020/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.mjs +187 -0
  18. package/esm2020/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.mjs +47 -0
  19. package/esm2020/contact-center/public-api.mjs +4 -0
  20. package/esm2020/contact-center/shared/api.endpoints.mjs +7 -0
  21. package/esm2020/contact-center/shared/api.service.mjs +86 -0
  22. package/esm2020/contact-center/shared/material.module.mjs +76 -0
  23. package/esm2020/contact-center/shared/shared.module.mjs +33 -0
  24. package/esm2020/contact-center/tuki-io-tuki-widgets-contact-center.mjs +5 -0
  25. package/esm2020/di2mt/shared/services/api.service.mjs +1 -1
  26. package/esm2020/users-list/src/users-list.component.mjs +3 -3
  27. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs +433 -0
  28. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs.map +1 -0
  29. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  30. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +2 -2
  31. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  32. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs +430 -0
  33. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs.map +1 -0
  34. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  35. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +2 -2
  36. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  37. package/package.json +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuki-io/tuki-widgets",
3
- "version": "0.0.126",
3
+ "version": "0.0.127",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",
@@ -28,6 +28,14 @@
28
28
  "node": "./fesm2015/tuki-io-tuki-widgets.mjs",
29
29
  "default": "./fesm2020/tuki-io-tuki-widgets.mjs"
30
30
  },
31
+ "./contact-center": {
32
+ "types": "./contact-center/index.d.ts",
33
+ "esm2020": "./esm2020/contact-center/tuki-io-tuki-widgets-contact-center.mjs",
34
+ "es2020": "./fesm2020/tuki-io-tuki-widgets-contact-center.mjs",
35
+ "es2015": "./fesm2015/tuki-io-tuki-widgets-contact-center.mjs",
36
+ "node": "./fesm2015/tuki-io-tuki-widgets-contact-center.mjs",
37
+ "default": "./fesm2020/tuki-io-tuki-widgets-contact-center.mjs"
38
+ },
31
39
  "./di2mt": {
32
40
  "types": "./di2mt/index.d.ts",
33
41
  "esm2020": "./esm2020/di2mt/tuki-io-tuki-widgets-di2mt.mjs",