@tuki-io/tuki-widgets 0.0.177 → 0.0.179

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 (54) hide show
  1. package/contact-center/cc-script-editor/cc-script-editor.component.d.ts +53 -0
  2. package/contact-center/cc-script-editor/cc-script-editor.module.d.ts +20 -0
  3. package/contact-center/cc-script-editor/components/dialogs/add-node-dialog/add-node-dialog.component.d.ts +35 -0
  4. package/contact-center/cc-script-editor/components/dialogs/link-node-dialog/link-node-dialog.component.d.ts +38 -0
  5. package/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.component.d.ts +34 -0
  6. package/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.module.d.ts +9 -0
  7. package/contact-center/cc-script-editor/components/node-action-toolbar/node-action-toolbar.component.d.ts +27 -0
  8. package/contact-center/cc-script-editor/components/node-details-sidebar/node-details-sidebar.component.d.ts +27 -0
  9. package/contact-center/cc-script-editor/components/node-search-panel/node-search-panel.component.d.ts +14 -0
  10. package/contact-center/cc-script-editor/components/wxcc-actions-bar/wxcc-actions-bar.component.d.ts +11 -0
  11. package/contact-center/cc-script-editor/components/wxcc-file-selection-bar/wxcc-file-selection-bar.component.d.ts +24 -0
  12. package/contact-center/cc-script-editor/components/wxcc-flowchart/wxcc-flowchart.component.d.ts +66 -0
  13. package/contact-center/cc-script-editor/constants/cytoscape.config.d.ts +2 -0
  14. package/contact-center/cc-script-editor/constants/wxcc-api.constants.d.ts +15 -0
  15. package/contact-center/cc-script-editor/services/wxcc-activity-creation.service.d.ts +21 -0
  16. package/contact-center/cc-script-editor/services/wxcc-activity-manage.service.d.ts +8 -0
  17. package/contact-center/cc-script-editor/services/wxcc-flow-api.service.d.ts +43 -0
  18. package/contact-center/cc-script-editor/services/wxcc2graph.service.d.ts +42 -0
  19. package/contact-center/cc-script-editor/types/extended-activity.d.ts +47 -0
  20. package/contact-center/cc-script-editor/types/wxcc-activity.d.ts +96 -0
  21. package/contact-center/cc-script-editor/types/wxcc.d.ts +161 -0
  22. package/contact-center/cc-script-editor/utils/node-html-template.d.ts +3 -0
  23. package/contact-center/cc-script-editor/utils/node-mappings.d.ts +54 -0
  24. package/contact-center/public-api.d.ts +2 -0
  25. package/esm2020/contact-center/cc-script-editor/cc-script-editor.component.mjs +193 -0
  26. package/esm2020/contact-center/cc-script-editor/cc-script-editor.module.mjs +83 -0
  27. package/esm2020/contact-center/cc-script-editor/components/dialogs/add-node-dialog/add-node-dialog.component.mjs +60 -0
  28. package/esm2020/contact-center/cc-script-editor/components/dialogs/link-node-dialog/link-node-dialog.component.mjs +83 -0
  29. package/esm2020/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.component.mjs +104 -0
  30. package/esm2020/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.module.mjs +28 -0
  31. package/esm2020/contact-center/cc-script-editor/components/node-action-toolbar/node-action-toolbar.component.mjs +65 -0
  32. package/esm2020/contact-center/cc-script-editor/components/node-details-sidebar/node-details-sidebar.component.mjs +97 -0
  33. package/esm2020/contact-center/cc-script-editor/components/node-search-panel/node-search-panel.component.mjs +43 -0
  34. package/esm2020/contact-center/cc-script-editor/components/wxcc-actions-bar/wxcc-actions-bar.component.mjs +27 -0
  35. package/esm2020/contact-center/cc-script-editor/components/wxcc-file-selection-bar/wxcc-file-selection-bar.component.mjs +61 -0
  36. package/esm2020/contact-center/cc-script-editor/components/wxcc-flowchart/wxcc-flowchart.component.mjs +434 -0
  37. package/esm2020/contact-center/cc-script-editor/constants/cytoscape.config.mjs +72 -0
  38. package/esm2020/contact-center/cc-script-editor/constants/wxcc-api.constants.mjs +14 -0
  39. package/esm2020/contact-center/cc-script-editor/mock/data/QWC_ir.json +912 -0
  40. package/esm2020/contact-center/cc-script-editor/services/wxcc-activity-creation.service.mjs +82 -0
  41. package/esm2020/contact-center/cc-script-editor/services/wxcc-activity-manage.service.mjs +162 -0
  42. package/esm2020/contact-center/cc-script-editor/services/wxcc-flow-api.service.mjs +79 -0
  43. package/esm2020/contact-center/cc-script-editor/services/wxcc2graph.service.mjs +144 -0
  44. package/esm2020/contact-center/cc-script-editor/types/extended-activity.mjs +4 -0
  45. package/esm2020/contact-center/cc-script-editor/types/wxcc-activity.mjs +2 -0
  46. package/esm2020/contact-center/cc-script-editor/types/wxcc.mjs +6 -0
  47. package/esm2020/contact-center/cc-script-editor/utils/node-html-template.mjs +76 -0
  48. package/esm2020/contact-center/cc-script-editor/utils/node-mappings.mjs +109 -0
  49. package/esm2020/contact-center/public-api.mjs +3 -1
  50. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs +2948 -3
  51. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
  52. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs +2974 -3
  53. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
  54. package/package.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuki-io/tuki-widgets",
3
- "version": "0.0.177",
3
+ "version": "0.0.179",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",