@tuki-io/tuki-widgets 0.0.176 → 0.0.178

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 (161) hide show
  1. package/README.md +24 -24
  2. package/contact-center/cc-script-editor/cc-script-editor.component.d.ts +53 -0
  3. package/contact-center/cc-script-editor/cc-script-editor.module.d.ts +20 -0
  4. package/contact-center/cc-script-editor/components/dialogs/add-node-dialog/add-node-dialog.component.d.ts +35 -0
  5. package/contact-center/cc-script-editor/components/dialogs/link-node-dialog/link-node-dialog.component.d.ts +38 -0
  6. package/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.component.d.ts +34 -0
  7. package/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.module.d.ts +9 -0
  8. package/contact-center/cc-script-editor/components/node-action-toolbar/node-action-toolbar.component.d.ts +27 -0
  9. package/contact-center/cc-script-editor/components/node-details-sidebar/node-details-sidebar.component.d.ts +27 -0
  10. package/contact-center/cc-script-editor/components/node-search-panel/node-search-panel.component.d.ts +14 -0
  11. package/contact-center/cc-script-editor/components/wxcc-actions-bar/wxcc-actions-bar.component.d.ts +11 -0
  12. package/contact-center/cc-script-editor/components/wxcc-file-selection-bar/wxcc-file-selection-bar.component.d.ts +24 -0
  13. package/contact-center/cc-script-editor/components/wxcc-flowchart/wxcc-flowchart.component.d.ts +66 -0
  14. package/contact-center/cc-script-editor/constants/cytoscape.config.d.ts +2 -0
  15. package/contact-center/cc-script-editor/constants/wxcc-api.constants.d.ts +15 -0
  16. package/contact-center/cc-script-editor/services/wxcc-activity-creation.service.d.ts +21 -0
  17. package/contact-center/cc-script-editor/services/wxcc-activity-manage.service.d.ts +8 -0
  18. package/contact-center/cc-script-editor/services/wxcc-flow-api.service.d.ts +43 -0
  19. package/contact-center/cc-script-editor/services/wxcc2graph.service.d.ts +42 -0
  20. package/contact-center/cc-script-editor/types/extended-activity.d.ts +47 -0
  21. package/contact-center/cc-script-editor/types/wxcc-activity.d.ts +96 -0
  22. package/contact-center/cc-script-editor/types/wxcc.d.ts +161 -0
  23. package/contact-center/cc-script-editor/utils/node-html-template.d.ts +3 -0
  24. package/contact-center/cc-script-editor/utils/node-mappings.d.ts +54 -0
  25. package/contact-center/public-api.d.ts +2 -0
  26. package/contact-center/shared/material.module.d.ts +2 -1
  27. package/esm2020/contact-center/cc-script-editor/cc-script-editor.component.mjs +193 -0
  28. package/esm2020/contact-center/cc-script-editor/cc-script-editor.module.mjs +83 -0
  29. package/esm2020/contact-center/cc-script-editor/components/dialogs/add-node-dialog/add-node-dialog.component.mjs +60 -0
  30. package/esm2020/contact-center/cc-script-editor/components/dialogs/link-node-dialog/link-node-dialog.component.mjs +83 -0
  31. package/esm2020/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.component.mjs +104 -0
  32. package/esm2020/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.module.mjs +28 -0
  33. package/esm2020/contact-center/cc-script-editor/components/node-action-toolbar/node-action-toolbar.component.mjs +65 -0
  34. package/esm2020/contact-center/cc-script-editor/components/node-details-sidebar/node-details-sidebar.component.mjs +97 -0
  35. package/esm2020/contact-center/cc-script-editor/components/node-search-panel/node-search-panel.component.mjs +43 -0
  36. package/esm2020/contact-center/cc-script-editor/components/wxcc-actions-bar/wxcc-actions-bar.component.mjs +27 -0
  37. package/esm2020/contact-center/cc-script-editor/components/wxcc-file-selection-bar/wxcc-file-selection-bar.component.mjs +61 -0
  38. package/esm2020/contact-center/cc-script-editor/components/wxcc-flowchart/wxcc-flowchart.component.mjs +434 -0
  39. package/esm2020/contact-center/cc-script-editor/constants/cytoscape.config.mjs +72 -0
  40. package/esm2020/contact-center/cc-script-editor/constants/wxcc-api.constants.mjs +14 -0
  41. package/esm2020/contact-center/cc-script-editor/mock/data/QWC_ir.json +912 -0
  42. package/esm2020/contact-center/cc-script-editor/services/wxcc-activity-creation.service.mjs +82 -0
  43. package/esm2020/contact-center/cc-script-editor/services/wxcc-activity-manage.service.mjs +162 -0
  44. package/esm2020/contact-center/cc-script-editor/services/wxcc-flow-api.service.mjs +79 -0
  45. package/esm2020/contact-center/cc-script-editor/services/wxcc2graph.service.mjs +144 -0
  46. package/esm2020/contact-center/cc-script-editor/types/extended-activity.mjs +4 -0
  47. package/esm2020/contact-center/cc-script-editor/types/wxcc-activity.mjs +2 -0
  48. package/esm2020/contact-center/cc-script-editor/types/wxcc.mjs +6 -0
  49. package/esm2020/contact-center/cc-script-editor/utils/node-html-template.mjs +76 -0
  50. package/esm2020/contact-center/cc-script-editor/utils/node-mappings.mjs +109 -0
  51. package/esm2020/contact-center/public-api.mjs +3 -1
  52. package/esm2020/contact-center/shared/material.module.mjs +8 -4
  53. package/esm2020/lib/widgets.component.mjs +9 -9
  54. package/esm2020/lib/widgets.module.mjs +1 -1
  55. package/esm2020/lib/widgets.service.mjs +1 -1
  56. package/esm2020/public-api.mjs +1 -1
  57. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +2 -2
  58. package/esm2020/user-device-manage/public-api.mjs +1 -1
  59. package/esm2020/user-device-manage/src/classes/device.mjs +1 -1
  60. package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +1 -1
  61. package/esm2020/user-device-manage/src/classes/line-association.mjs +1 -1
  62. package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +1 -1
  63. package/esm2020/user-device-manage/src/classes/line-directory.mjs +1 -1
  64. package/esm2020/user-device-manage/src/classes/line.mjs +1 -1
  65. package/esm2020/user-device-manage/src/classes/notification.mjs +1 -1
  66. package/esm2020/user-device-manage/src/classes/recording-options.mjs +1 -1
  67. package/esm2020/user-device-manage/src/classes/simplified-user.mjs +1 -1
  68. package/esm2020/user-device-manage/src/classes/site-defaults.mjs +1 -1
  69. package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +1 -1
  70. package/esm2020/user-device-manage/src/classes/types.mjs +1 -1
  71. package/esm2020/user-device-manage/src/common-functions.mjs +1 -1
  72. package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +3 -3
  73. package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +3 -3
  74. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +3 -3
  75. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +1 -1
  76. package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +2 -2
  77. package/esm2020/user-device-manage/src/environments/environment.mjs +1 -1
  78. package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +1 -1
  79. package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +1 -1
  80. package/esm2020/user-device-manage/src/material.module.mjs +1 -1
  81. package/esm2020/user-device-manage/src/notifications/notification.component.mjs +3 -3
  82. package/esm2020/user-device-manage/src/services/device.service.mjs +1 -1
  83. package/esm2020/user-device-manage/src/services/notification.service.mjs +1 -1
  84. package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +1 -1
  85. package/esm2020/user-device-manage/src/services/site-settings.service.mjs +1 -1
  86. package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +1 -1
  87. package/esm2020/user-device-manage/src/services/utils.service.mjs +1 -1
  88. package/esm2020/user-device-manage/src/services/validation.service.mjs +1 -1
  89. package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +1 -1
  90. package/esm2020/user-manage/public-api.mjs +1 -1
  91. package/esm2020/user-manage/src/classes/device.mjs +1 -1
  92. package/esm2020/user-manage/src/classes/line-association.mjs +1 -1
  93. package/esm2020/user-manage/src/classes/line-call-info-display.mjs +1 -1
  94. package/esm2020/user-manage/src/classes/notification.mjs +1 -1
  95. package/esm2020/user-manage/src/classes/recording-options.mjs +1 -1
  96. package/esm2020/user-manage/src/classes/table-data.mjs +1 -1
  97. package/esm2020/user-manage/src/classes/translation-pattern.mjs +1 -1
  98. package/esm2020/user-manage/src/classes/user-list.mjs +1 -1
  99. package/esm2020/user-manage/src/common-functions.mjs +1 -1
  100. package/esm2020/user-manage/src/environments/environment.mjs +1 -1
  101. package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +1 -1
  102. package/esm2020/user-manage/src/material.module.mjs +1 -1
  103. package/esm2020/user-manage/src/notifications/notification.component.mjs +3 -3
  104. package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +1 -1
  105. package/esm2020/user-manage/src/services/dns.service.mjs +1 -1
  106. package/esm2020/user-manage/src/services/line.service.mjs +1 -1
  107. package/esm2020/user-manage/src/services/notification.service.mjs +1 -1
  108. package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +1 -1
  109. package/esm2020/user-manage/src/services/site-settings.service.mjs +1 -1
  110. package/esm2020/user-manage/src/services/sorting-utils.service.mjs +1 -1
  111. package/esm2020/user-manage/src/services/utils.service.mjs +1 -1
  112. package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +3 -3
  113. package/esm2020/user-manage/src/user-manage-widget.component.mjs +2 -2
  114. package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +1 -1
  115. package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +3 -3
  116. package/esm2020/users-list/public-api.mjs +1 -1
  117. package/esm2020/users-list/src/classes/app-location.mjs +1 -1
  118. package/esm2020/users-list/src/classes/device.mjs +1 -1
  119. package/esm2020/users-list/src/classes/line.mjs +1 -1
  120. package/esm2020/users-list/src/classes/notification.mjs +1 -1
  121. package/esm2020/users-list/src/classes/simlified-user.mjs +1 -1
  122. package/esm2020/users-list/src/classes/table-data.mjs +1 -1
  123. package/esm2020/users-list/src/classes/user-list.mjs +1 -1
  124. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +3 -3
  125. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +3 -3
  126. package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +3 -3
  127. package/esm2020/users-list/src/services/api-webex.service.mjs +1 -1
  128. package/esm2020/users-list/src/services/api.service.mjs +1 -1
  129. package/esm2020/users-list/src/services/events-communication.service.mjs +1 -1
  130. package/esm2020/users-list/src/services/notification.service.mjs +1 -1
  131. package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +1 -1
  132. package/esm2020/users-list/src/services/site-settings.service.mjs +1 -1
  133. package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +3 -3
  134. package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +1 -1
  135. package/esm2020/users-list/src/utils/common-functions.mjs +1 -1
  136. package/esm2020/users-list/src/utils/utils.service.mjs +1 -1
  137. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs +2948 -3
  138. package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
  139. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +2 -2
  140. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  141. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +10 -10
  142. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  143. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +8 -8
  144. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  145. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +8 -8
  146. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  147. package/fesm2015/tuki-io-tuki-widgets.mjs +8 -8
  148. package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -1
  149. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs +2974 -3
  150. package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
  151. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +2 -2
  152. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  153. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +10 -10
  154. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  155. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +8 -8
  156. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  157. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +8 -8
  158. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  159. package/fesm2020/tuki-io-tuki-widgets.mjs +8 -8
  160. package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -1
  161. package/package.json +1 -1
package/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # Widgets
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project widgets` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project widgets`.
8
- > Note: Don't forget to add `--project widgets` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build widgets` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build widgets`, go to the dist folder `cd dist/widgets` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test widgets` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # Widgets
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project widgets` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project widgets`.
8
+ > Note: Don't forget to add `--project widgets` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build widgets` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build widgets`, go to the dist folder `cd dist/widgets` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test widgets` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
@@ -0,0 +1,53 @@
1
+ import { OnDestroy, OnInit } from "@angular/core";
2
+ import { WxCCAPIService } from "./services/wxcc-flow-api.service";
3
+ import { IWxCCFlowchart, IWxCCJSON, IWxCCNonIRJSON } from "./types/wxcc";
4
+ import { WxCC2GraphService } from "./services/wxcc2graph.service";
5
+ import { FileState } from "./constants/wxcc-api.constants";
6
+ import * as i0 from "@angular/core";
7
+ type WxCCFlowchartState = {
8
+ fileNames: {
9
+ fileName: string;
10
+ host: string;
11
+ }[];
12
+ uccxIp: string;
13
+ selectedFileName: string;
14
+ selectedFileStatus: FileState;
15
+ loading: boolean;
16
+ flowchart: IWxCCFlowchart | null;
17
+ irDoc: IWxCCJSON;
18
+ nonIrDoc: IWxCCNonIRJSON;
19
+ errorMessage: string;
20
+ statuses: any[];
21
+ };
22
+ export declare class WxCCFlowchartPageComponent implements OnInit, OnDestroy {
23
+ private readonly api;
24
+ private readonly wxcc2graph;
25
+ customerId: number;
26
+ host: string;
27
+ token: string;
28
+ private readonly destroy$;
29
+ readonly state: WxCCFlowchartState;
30
+ constructor(api: WxCCAPIService, wxcc2graph: WxCC2GraphService);
31
+ ngOnInit(): void;
32
+ ngOnDestroy(): void;
33
+ private init;
34
+ private subscribeToCustomerChanges;
35
+ private loadMockFlowchart;
36
+ private loadFileNames;
37
+ private loadWxCCFlowData;
38
+ onSave(): void;
39
+ onExportNonIr(): void;
40
+ onReset(): void;
41
+ onComplete(): void;
42
+ onFileNameSelectionChange(item: {
43
+ fileName: string;
44
+ host: string;
45
+ }): void;
46
+ getStatus(fileName: string, uccxIp: string): any;
47
+ setLoading(loading: boolean): void;
48
+ setError(error: string): void;
49
+ private get baseParams();
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCFlowchartPageComponent, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<WxCCFlowchartPageComponent, "cc-script-editor", never, { "customerId": "customerId"; "host": "host"; "token": "token"; }, {}, never, never, false, never>;
52
+ }
53
+ export {};
@@ -0,0 +1,20 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./cc-script-editor.component";
3
+ import * as i2 from "./components/wxcc-flowchart/wxcc-flowchart.component";
4
+ import * as i3 from "./components/node-details-sidebar/node-details-sidebar.component";
5
+ import * as i4 from "./components/node-action-toolbar/node-action-toolbar.component";
6
+ import * as i5 from "./components/dialogs/link-node-dialog/link-node-dialog.component";
7
+ import * as i6 from "./components/wxcc-file-selection-bar/wxcc-file-selection-bar.component";
8
+ import * as i7 from "./components/dialogs/add-node-dialog/add-node-dialog.component";
9
+ import * as i8 from "./components/wxcc-actions-bar/wxcc-actions-bar.component";
10
+ import * as i9 from "./components/node-search-panel/node-search-panel.component";
11
+ import * as i10 from "@angular/common";
12
+ import * as i11 from "@angular/forms";
13
+ import * as i12 from "../shared/shared.module";
14
+ import * as i13 from "../shared/material.module";
15
+ import * as i14 from "./components/floating-toolbar/floating-toolbar.module";
16
+ export declare class WxCCFlowchartModule {
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCFlowchartModule, never>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WxCCFlowchartModule, [typeof i1.WxCCFlowchartPageComponent, typeof i2.WxCCFlowchartComponent, typeof i3.NodeDetailsSidebarComponent, typeof i4.NodeActionToolbarComponent, typeof i5.LinkNodeDialogComponent, typeof i6.WxCCFileSelectionBarComponent, typeof i7.AddNodeDialogComponent, typeof i8.WxCCActionsBarComponent, typeof i9.NodeSearchPanelComponent], [typeof i10.CommonModule, typeof i11.FormsModule, typeof i12.SharedModule, typeof i13.MaterialModule, typeof i14.FloatingToolbarModule], [typeof i1.WxCCFlowchartPageComponent]>;
19
+ static ɵinj: i0.ɵɵInjectorDeclaration<WxCCFlowchartModule>;
20
+ }
@@ -0,0 +1,35 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { CreatableActivityDisplayType } from '../../../utils/node-mappings';
3
+ import { MatDialogRef } from '@angular/material/dialog';
4
+ import { ReadonlyExtendedActivity } from '../../../types/extended-activity';
5
+ import * as i0 from "@angular/core";
6
+ export interface NewNodeData {
7
+ activityTypeName: CreatableActivityDisplayType['activityName'];
8
+ name: string;
9
+ parentNodeIds: string[];
10
+ childNodeIds: string[];
11
+ }
12
+ export declare class AddNodeDialogComponent implements OnInit {
13
+ data: {
14
+ availableNodes: ReadonlyExtendedActivity[];
15
+ };
16
+ private dialogRef;
17
+ readonly activityDisplayTypes: CreatableActivityDisplayType[];
18
+ selectedActivityType: CreatableActivityDisplayType;
19
+ nodeName: string;
20
+ selectedParentIds: string[];
21
+ selectedChildIds: string[];
22
+ availableNodes: ReadonlyExtendedActivity[];
23
+ constructor(data: {
24
+ availableNodes: ReadonlyExtendedActivity[];
25
+ }, dialogRef: MatDialogRef<AddNodeDialogComponent>);
26
+ ngOnInit(): void;
27
+ private resetForm;
28
+ onActivityTypeChange(value: string): void;
29
+ onClose(): void;
30
+ onSubmit(): void;
31
+ trackByValue(index: number, type: CreatableActivityDisplayType): string;
32
+ trackByNodeId(index: number, node: ReadonlyExtendedActivity): string;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddNodeDialogComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddNodeDialogComponent, "add-node-dialog", never, {}, {}, never, never, false, never>;
35
+ }
@@ -0,0 +1,38 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { MatDialogRef } from '@angular/material/dialog';
3
+ import { ReadonlyExtendedActivity } from '../../../types/extended-activity';
4
+ import * as i0 from "@angular/core";
5
+ export interface LinkNodeData {
6
+ sourceNodeId: string;
7
+ targetNodeId: string;
8
+ label?: string;
9
+ }
10
+ export declare class LinkNodeDialogComponent implements OnInit, OnChanges {
11
+ data: {
12
+ sourceNode: ReadonlyExtendedActivity;
13
+ availableNodes: ReadonlyExtendedActivity[];
14
+ };
15
+ private readonly dialogRef;
16
+ availableNodes: ReadonlyExtendedActivity[];
17
+ sourceNode: ReadonlyExtendedActivity;
18
+ close: EventEmitter<void>;
19
+ linkNodes: EventEmitter<LinkNodeData>;
20
+ selectedTargetId: string | null;
21
+ linkLabel: string;
22
+ searchQuery: string;
23
+ constructor(data: {
24
+ sourceNode: ReadonlyExtendedActivity;
25
+ availableNodes: ReadonlyExtendedActivity[];
26
+ }, dialogRef: MatDialogRef<LinkNodeDialogComponent>);
27
+ ngOnInit(): void;
28
+ get filteredNodes(): ReadonlyExtendedActivity[];
29
+ ngOnChanges(changes: SimpleChanges): void;
30
+ private resetForm;
31
+ selectNode(nodeId: string): void;
32
+ isSelected(nodeId: string): boolean;
33
+ onClose(): void;
34
+ onSubmit(): void;
35
+ trackByNodeId(index: number, node: ReadonlyExtendedActivity): string;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<LinkNodeDialogComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkNodeDialogComponent, "link-node-dialog", never, {}, { "close": "close"; "linkNodes": "linkNodes"; }, never, never, false, never>;
38
+ }
@@ -0,0 +1,34 @@
1
+ import { EventEmitter, OnInit } from "@angular/core";
2
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ type _ToolbarItem = {
5
+ id: string;
6
+ label: string;
7
+ svg: SafeHtml;
8
+ action: () => void;
9
+ };
10
+ export interface FloatingToolbarVisibility {
11
+ resetView?: boolean;
12
+ zoomIn?: boolean;
13
+ zoomOut?: boolean;
14
+ export?: boolean;
15
+ }
16
+ export declare class FloatingToolBarComponent implements OnInit {
17
+ private sanitizer;
18
+ visibility: FloatingToolbarVisibility;
19
+ toolbarConfig: Readonly<_ToolbarItem>[];
20
+ resetViewChange: EventEmitter<void>;
21
+ zoomInChange: EventEmitter<void>;
22
+ zoomOutChange: EventEmitter<void>;
23
+ exportImageChange: EventEmitter<void>;
24
+ constructor(sanitizer: DomSanitizer);
25
+ ngOnInit(): void;
26
+ resetView(): void;
27
+ zoomIn(): void;
28
+ zoomOut(): void;
29
+ exportImage(): void;
30
+ trackById(index: number, item: _ToolbarItem): string;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<FloatingToolBarComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<FloatingToolBarComponent, "graph-floating-toolbar", never, { "visibility": "visibility"; }, { "resetViewChange": "resetViewChange"; "zoomInChange": "zoomInChange"; "zoomOutChange": "zoomOutChange"; "exportImageChange": "exportImageChange"; }, never, never, false, never>;
33
+ }
34
+ export {};
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./floating-toolbar.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/tooltip";
5
+ export declare class FloatingToolbarModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FloatingToolbarModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FloatingToolbarModule, [typeof i1.FloatingToolBarComponent], [typeof i2.CommonModule, typeof i3.MatTooltipModule], [typeof i1.FloatingToolBarComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<FloatingToolbarModule>;
9
+ }
@@ -0,0 +1,27 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export interface NodeToolbarPosition {
5
+ x: number;
6
+ y: number;
7
+ }
8
+ export interface NodeActionToolbarAction {
9
+ id: string;
10
+ label: string;
11
+ svg: SafeHtml;
12
+ action: () => void;
13
+ }
14
+ export declare class NodeActionToolbarComponent {
15
+ private sanitizer;
16
+ isVisible: boolean;
17
+ position: NodeToolbarPosition;
18
+ deleteNode: EventEmitter<void>;
19
+ linkNode: EventEmitter<void>;
20
+ toolbarActions: NodeActionToolbarAction[];
21
+ constructor(sanitizer: DomSanitizer);
22
+ onDeleteNode(): void;
23
+ onLinkNode(): void;
24
+ trackById(index: number, item: NodeActionToolbarAction): string;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeActionToolbarComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<NodeActionToolbarComponent, "node-action-toolbar", never, { "isVisible": "isVisible"; "position": "position"; }, { "deleteNode": "deleteNode"; "linkNode": "linkNode"; }, never, never, false, never>;
27
+ }
@@ -0,0 +1,27 @@
1
+ import { EventEmitter, SimpleChanges } from '@angular/core';
2
+ import { ActivityDisplayType } from '../../utils/node-mappings';
3
+ import { ReadonlyExtendedActivity } from '../../types/extended-activity';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NodeDetailsSidebarComponent {
6
+ isOpen: boolean;
7
+ nodeData: ReadonlyExtendedActivity | null;
8
+ close: EventEmitter<void>;
9
+ activityTypeChange: EventEmitter<ActivityDisplayType>;
10
+ descriptionChange: EventEmitter<string>;
11
+ readonly activityDisplayTypes: ActivityDisplayType[];
12
+ transformedActivityName: string;
13
+ selectedActivityType: ActivityDisplayType | null;
14
+ ngOnChanges(changes: SimpleChanges): void;
15
+ private initializeActivityType;
16
+ onDescriptionChange(event: Event): void;
17
+ private onActivityTypeChange;
18
+ onActivityTypeSelectChange(event: Event): void;
19
+ onClose(): void;
20
+ getNodeIcon(): string;
21
+ getNodeColorClass(): string;
22
+ getReviewColor(): string;
23
+ getReviewLabel(): string;
24
+ trackByValue(index: number, type: ActivityDisplayType): string;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeDetailsSidebarComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<NodeDetailsSidebarComponent, "node-details-sidebar", never, { "isOpen": "isOpen"; "nodeData": "nodeData"; }, { "close": "close"; "activityTypeChange": "activityTypeChange"; "descriptionChange": "descriptionChange"; }, never, never, false, never>;
27
+ }
@@ -0,0 +1,14 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { ReadonlyExtendedActivity } from "../../types/extended-activity";
3
+ import * as i0 from "@angular/core";
4
+ export declare class NodeSearchPanelComponent implements OnInit {
5
+ nodes: ReadonlyExtendedActivity[];
6
+ private readonly searchChange;
7
+ private readonly selectNodeChange;
8
+ filteredNodes: ReadonlyExtendedActivity[];
9
+ ngOnInit(): void;
10
+ onSearchChange(event: Event): void;
11
+ onSelectNodeChange(event: Event): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeSearchPanelComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<NodeSearchPanelComponent, "node-search-panel", never, { "nodes": "nodes"; }, { "searchChange": "searchChange"; "selectNodeChange": "selectNodeChange"; }, never, never, false, never>;
14
+ }
@@ -0,0 +1,11 @@
1
+ import { EventEmitter, OnInit } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class WxCCActionsBarComponent implements OnInit {
4
+ save: EventEmitter<void>;
5
+ reset: EventEmitter<void>;
6
+ complete: EventEmitter<void>;
7
+ exportNonIr: EventEmitter<void>;
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCActionsBarComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<WxCCActionsBarComponent, "wxcc-actions-bar", never, {}, { "save": "save"; "reset": "reset"; "complete": "complete"; "exportNonIr": "exportNonIr"; }, never, never, false, never>;
11
+ }
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnInit } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class WxCCFileSelectionBarComponent implements OnInit {
4
+ fileNames: {
5
+ fileName: string;
6
+ host: string;
7
+ }[];
8
+ selectedFileName: string;
9
+ selectedHost: string;
10
+ fileNameSelectionChange: EventEmitter<{
11
+ host: string;
12
+ fileName: string;
13
+ }>;
14
+ readonly hostFileNames: Map<string, string[]>;
15
+ ngOnInit(): void;
16
+ get fileNamesByHost(): string[];
17
+ get hosts(): string[] | null;
18
+ onFileSelectionChange(fileName: string): void;
19
+ onHostSelectionChange(host: string): void;
20
+ trackByFileName(_index: number, fileName: string): string;
21
+ trackByHost(_index: number, host: string): string;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCFileSelectionBarComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<WxCCFileSelectionBarComponent, "wxcc-file-selection-bar", never, { "fileNames": "fileNames"; "selectedFileName": "selectedFileName"; "selectedHost": "selectedHost"; }, { "fileNameSelectionChange": "fileNameSelectionChange"; }, never, never, false, never>;
24
+ }
@@ -0,0 +1,66 @@
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
2
+ import { IWxCCFlowchart } from "../../types/wxcc";
3
+ import { ActivityDisplayType } from "../../utils/node-mappings";
4
+ import { WxCC2GraphService } from "../../services/wxcc2graph.service";
5
+ import { NodeToolbarPosition } from "../node-action-toolbar/node-action-toolbar.component";
6
+ import { NewNodeData } from "../dialogs/add-node-dialog/add-node-dialog.component";
7
+ import { LinkNodeData } from "../dialogs/link-node-dialog/link-node-dialog.component";
8
+ import { MatDialog } from "@angular/material/dialog";
9
+ import { ReadonlyExtendedActivity } from "../../types/extended-activity";
10
+ import { WxCCActivityCreationService } from "../../services/wxcc-activity-creation.service";
11
+ import * as i0 from "@angular/core";
12
+ export declare class WxCCFlowchartComponent implements AfterViewInit, OnChanges, OnDestroy {
13
+ private readonly wxcc2graph;
14
+ private readonly dialog;
15
+ private readonly wxccActivityCreationService;
16
+ private cdr;
17
+ flowchart: IWxCCFlowchart;
18
+ flowchartContainer: ElementRef<HTMLElement>;
19
+ private cy?;
20
+ private viewReady;
21
+ private readonly layoutOptions;
22
+ isSidebarOpen: boolean;
23
+ selectedNodeData: ReadonlyExtendedActivity | null;
24
+ isSearchPanelVisible: boolean;
25
+ searchPanelVisible: boolean;
26
+ isNodeToolbarVisible: boolean;
27
+ nodeToolbarPosition: NodeToolbarPosition;
28
+ availableNodes: ReadonlyExtendedActivity[];
29
+ isLinkDialogOpen: boolean;
30
+ selectedEdgeId: string | null;
31
+ selectedEdgeDeleteButtonPosition: {
32
+ x: number;
33
+ y: number;
34
+ } | null;
35
+ constructor(wxcc2graph: WxCC2GraphService, dialog: MatDialog, wxccActivityCreationService: WxCCActivityCreationService, cdr: ChangeDetectorRef);
36
+ ngAfterViewInit(): void;
37
+ ngOnChanges(changes: SimpleChanges): void;
38
+ ngOnDestroy(): void;
39
+ private tryInit;
40
+ private init;
41
+ get activities(): import("../../types/extended-activity").ExtendedActivity[];
42
+ toggleSearchPanel(): void;
43
+ private setupEventListeners;
44
+ private updateToolbarPosition;
45
+ private hideNodeToolbar;
46
+ private getStylesheet;
47
+ onCloseSidebar(): void;
48
+ onDescriptionChange(description: string): void;
49
+ onActivityTypeChange(activityType: ActivityDisplayType): void;
50
+ onDeleteNode(): void;
51
+ onDeleteSelectedEdge(): void;
52
+ onLinkNodeRequest(): void;
53
+ onLinkNodes(linkData: LinkNodeData): void;
54
+ openAddNodeDialog(): void;
55
+ addActivity(newNodeData: NewNodeData): void;
56
+ onNodeSelectChange(id: string): void;
57
+ zoomIn(): void;
58
+ zoomOut(): void;
59
+ resetView(): void;
60
+ private runLayout;
61
+ private canCreateOutgoingLink;
62
+ private clearSelectedEdge;
63
+ private updateSelectedEdgeDeleteButtonPosition;
64
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCFlowchartComponent, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<WxCCFlowchartComponent, "wxcc-flowchart", never, { "flowchart": "flowchart"; }, {}, never, never, false, never>;
66
+ }
@@ -0,0 +1,2 @@
1
+ import { StylesheetStyle } from "cytoscape";
2
+ export declare const StyleConfig: StylesheetStyle[];
@@ -0,0 +1,15 @@
1
+ export type WxCCBaseURLParams = {
2
+ customerId: number;
3
+ uccxIp: string;
4
+ fileName: string;
5
+ };
6
+ export type FileState = 'ORIG' | 'DRAFT' | 'COMPLETED';
7
+ /**
8
+ * Any WxCC flowchart api endpoint should go here
9
+ */
10
+ export declare const WXCC_FLOWCHART_API: {
11
+ GET_DATA: (params: WxCCBaseURLParams, state?: FileState, format?: 'ir') => string;
12
+ SAVE_DRAFT: (params: WxCCBaseURLParams, format?: 'ir') => string;
13
+ RESET_DRAFT: (params: WxCCBaseURLParams, format?: 'ir') => string;
14
+ COMPLETE_FLOW: (params: WxCCBaseURLParams, format?: 'ir') => string;
15
+ };
@@ -0,0 +1,21 @@
1
+ import { WxCC2GraphService } from "./wxcc2graph.service";
2
+ import { WxCCActivityManageService } from "./wxcc-activity-manage.service";
3
+ import { WxCCFlowchartNode } from "../types/wxcc";
4
+ import { WxCCTemplatedActivityType } from "../types/wxcc-activity";
5
+ import * as i0 from "@angular/core";
6
+ export interface CreateActivityRequest {
7
+ activityTypeName: WxCCTemplatedActivityType;
8
+ name: string;
9
+ }
10
+ export declare class WxCCActivityCreationService {
11
+ private readonly wxcc2graph;
12
+ private readonly wxccActivityTemplateService;
13
+ constructor(wxcc2graph: WxCC2GraphService, wxccActivityTemplateService: WxCCActivityManageService);
14
+ createAndSync(request: CreateActivityRequest): WxCCFlowchartNode;
15
+ private buildTemplatedActivity;
16
+ private seedNonIrActivity;
17
+ private getNonIrActivitiesMap;
18
+ private buildExtendedActivity;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCActivityCreationService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<WxCCActivityCreationService>;
21
+ }
@@ -0,0 +1,8 @@
1
+ import { WxCCActivityMap } from "../types/wxcc-activity";
2
+ import * as i0 from "@angular/core";
3
+ export declare class WxCCActivityManageService {
4
+ private readonly ACTIVITY_TEMPLATES;
5
+ create<K extends keyof WxCCActivityMap>(type: K): WxCCActivityMap[K];
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCActivityManageService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<WxCCActivityManageService>;
8
+ }
@@ -0,0 +1,43 @@
1
+ import { Observable } from "rxjs";
2
+ import { IWxCCJSON, IWxCCNonIRJSON } from "../types/wxcc";
3
+ import { WxCCBaseURLParams, FileState } from "../constants/wxcc-api.constants";
4
+ import { APIService } from "../../shared/api.service";
5
+ import * as i0 from "@angular/core";
6
+ export declare class WxCCAPIService {
7
+ private readonly api;
8
+ constructor(api: APIService);
9
+ /**
10
+ * Fetch original WXCC flow data
11
+ */
12
+ fetchWxCCFlowData(params: WxCCBaseURLParams, state?: FileState): Observable<IWxCCNonIRJSON>;
13
+ /**
14
+ * Fetch original WXCC flow data as IR format
15
+ */
16
+ fetchWxCCFlowDataIR(params: WxCCBaseURLParams, state?: FileState): Observable<IWxCCJSON>;
17
+ /**
18
+ * Save WXCC flow data as DRAFT
19
+ */
20
+ saveWxCCFlowData(params: WxCCBaseURLParams, data: IWxCCNonIRJSON): Observable<string>;
21
+ /**
22
+ * Save WXCC flow data as DRAFT in IR format
23
+ */
24
+ saveWxCCFlowDataIR(params: WxCCBaseURLParams, data: IWxCCJSON): Observable<string>;
25
+ /**
26
+ * Reset to original WXCC flow data
27
+ */
28
+ resetWxCCFlowData(params: WxCCBaseURLParams): Observable<IWxCCNonIRJSON>;
29
+ /**
30
+ * Reset to original WXCC flow data in IR format
31
+ */
32
+ resetWxCCFlowDataIR(params: WxCCBaseURLParams): Observable<IWxCCJSON>;
33
+ /**
34
+ * Save WXCC flow data as COMPLETED
35
+ */
36
+ completeWxCCFlowData(params: WxCCBaseURLParams, data: IWxCCNonIRJSON): Observable<string>;
37
+ /**
38
+ * Save WXCC flow data as COMPLETED in IR format
39
+ */
40
+ completeWxCCFlowDataIR(params: WxCCBaseURLParams, data: IWxCCJSON): Observable<string>;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCCAPIService, never>;
42
+ static ɵprov: i0.ɵɵInjectableDeclaration<WxCCAPIService>;
43
+ }
@@ -0,0 +1,42 @@
1
+ import { IWxCCFlowchart, IWxCCJSON, IWxCCNonIRJSON, WxCCFlowchartEdge, WxCCFlowchartNode } from "../types/wxcc";
2
+ import { ExtendedActivity } from "../types/extended-activity";
3
+ import * as i0 from "@angular/core";
4
+ export declare class WxCC2GraphService {
5
+ wxccJSON: IWxCCJSON;
6
+ wxccNonIRJSON: IWxCCNonIRJSON;
7
+ parseWxCC(wxcc: IWxCCJSON, nonIr?: IWxCCNonIRJSON): IWxCCFlowchart;
8
+ setSourceDocuments(ir: IWxCCJSON, nonIr: IWxCCNonIRJSON): void;
9
+ updateActivityData(data: ExtendedActivity): boolean;
10
+ /**
11
+ * Add a new activity to the graph
12
+ */
13
+ addActivity(activity: ExtendedActivity): WxCCFlowchartNode;
14
+ /**
15
+ * Remove an activity and all its connected links
16
+ */
17
+ removeActivity(activityId: string): {
18
+ removedLinkIds: string[];
19
+ };
20
+ /**
21
+ * Add a new link between two activities
22
+ */
23
+ addLink(sourceActivityId: string, targetActivityId: string, label?: string): WxCCFlowchartEdge;
24
+ /**
25
+ * Remove a link by its id
26
+ */
27
+ removeLink(linkId: string): boolean;
28
+ /**
29
+ * Check if a link already exists between two nodes
30
+ */
31
+ linkExists(sourceActivityId: string, targetActivityId: string): boolean;
32
+ /**
33
+ * Get all activities for selection purposes
34
+ */
35
+ getAllActivities(): ExtendedActivity[];
36
+ getActivityById(id: string): ExtendedActivity | undefined;
37
+ generateId(): string;
38
+ private toWxCCNode;
39
+ private toWxCCEdge;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<WxCC2GraphService, never>;
41
+ static ɵprov: i0.ɵɵInjectableDeclaration<WxCC2GraphService>;
42
+ }
@@ -0,0 +1,47 @@
1
+ import { WxCCActivityType } from "./wxcc-activity";
2
+ export type ExtendedActivityType = WxCCActivityType | 'unmapped';
3
+ export type ReviewColorName = 'green' | 'yellow' | 'red';
4
+ export type ReviewLevel = 'confident' | 'low_confidence' | 'must_review';
5
+ export type Review = Readonly<{
6
+ color: ReviewColorName;
7
+ level: ReviewLevel;
8
+ reasons: string[];
9
+ }>;
10
+ export type SuggestedProperties = Readonly<{
11
+ uccxDescription?: string;
12
+ uccxComment?: string;
13
+ closestWxccActivity?: string;
14
+ mappingNotes?: string;
15
+ migrationInstructions?: string;
16
+ allAudioFilesInFlow?: string[];
17
+ uccxKeyFields?: string[];
18
+ uccxKeyFieldExamples?: Record<string, any>;
19
+ [key: string]: any;
20
+ }>;
21
+ export interface ExtendedActivity {
22
+ id: string;
23
+ name?: string;
24
+ review?: Review;
25
+ suggestedProperties?: SuggestedProperties;
26
+ uccxDisplayType?: string;
27
+ uccxTypeName?: string;
28
+ uccxWfId?: number;
29
+ unmappedReason?: string | null;
30
+ wxccActivityId?: string;
31
+ wxccActivityName?: ExtendedActivityType;
32
+ wxccGroup?: string;
33
+ iconUrl?: string;
34
+ }
35
+ export type ReadonlyExtendedActivity = Readonly<ExtendedActivity>;
36
+ export interface ExtendedLink {
37
+ id: string;
38
+ sourceActivityId: string;
39
+ targetActivityId: string;
40
+ conditionExpr?: string;
41
+ review?: Review;
42
+ uccxEdgeIndex?: number;
43
+ uccxFromWfId?: number;
44
+ uccxLabel?: string;
45
+ uccxToWfId?: number;
46
+ }
47
+ export type ReadonlyExtendedLink = Readonly<ExtendedLink>;