@amc-technology/ui-library 1.0.100 → 1.0.102

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 (128) hide show
  1. package/README.md +25 -8
  2. package/esm2022/amc-technology-ui-library.mjs +5 -0
  3. package/esm2022/projects/UILibrary/src/app/Helpers.mjs +11 -0
  4. package/esm2022/projects/UILibrary/src/app/components/activity/activity.component.mjs +79 -0
  5. package/esm2022/projects/UILibrary/src/app/components/chat-box/chat-box.component.mjs +137 -0
  6. package/esm2022/projects/UILibrary/src/app/components/chat-message/chat-message.component.mjs +40 -0
  7. package/esm2022/projects/UILibrary/src/app/components/create/create.component.mjs +34 -0
  8. package/esm2022/projects/UILibrary/src/app/components/current-activity/current-activity.component.mjs +170 -0
  9. package/esm2022/projects/UILibrary/src/app/components/disposition/disposition.component.mjs +47 -0
  10. package/esm2022/projects/UILibrary/src/app/components/duration/duration.component.mjs +58 -0
  11. package/esm2022/projects/UILibrary/src/app/components/holdtimer/holdtimer.component.mjs +72 -0
  12. package/esm2022/projects/UILibrary/src/app/components/interaction/interaction.component.mjs +98 -0
  13. package/esm2022/projects/UILibrary/src/app/components/login/login.component.mjs +41 -0
  14. package/esm2022/projects/UILibrary/src/app/components/operation/operation.component.mjs +56 -0
  15. package/esm2022/projects/UILibrary/src/app/components/property/property.component.mjs +106 -0
  16. package/esm2022/projects/UILibrary/src/app/components/recent-activity/recent-activity.component.mjs +144 -0
  17. package/esm2022/projects/UILibrary/src/app/components/scenario/scenario.component.mjs +38 -0
  18. package/esm2022/projects/UILibrary/src/app/components/search-information/search-information.component.mjs +160 -0
  19. package/esm2022/projects/UILibrary/src/app/models/IActivity.mjs +2 -0
  20. package/esm2022/projects/UILibrary/src/app/models/IActivityDetails.mjs +2 -0
  21. package/esm2022/projects/UILibrary/src/app/models/IHoldActivityDetails.mjs +2 -0
  22. package/esm2022/projects/UILibrary/src/app/models/IInteractionActivityDetails.mjs +2 -0
  23. package/esm2022/projects/UILibrary/src/app/models/chat.message.mjs +7 -0
  24. package/esm2022/projects/UILibrary/src/app/models/chat.settings.mjs +2 -0
  25. package/esm2022/projects/UILibrary/src/app/models/disposition.interface.mjs +2 -0
  26. package/esm2022/projects/UILibrary/src/app/models/login.interface.mjs +2 -0
  27. package/esm2022/projects/UILibrary/src/app/models/uilibrary.model.mjs +61 -0
  28. package/esm2022/projects/UILibrary/src/app/uilibrary.module.mjs +106 -0
  29. package/esm2022/public_api.mjs +10 -0
  30. package/fesm2022/amc-technology-ui-library.mjs +1393 -0
  31. package/fesm2022/amc-technology-ui-library.mjs.map +1 -0
  32. package/index.d.ts +5 -0
  33. package/package.json +26 -21
  34. package/projects/UILibrary/src/app/Helpers.d.ts +1 -1
  35. package/projects/UILibrary/src/app/components/activity/activity.component.d.ts +26 -23
  36. package/projects/UILibrary/src/app/components/chat-box/chat-box.component.d.ts +38 -35
  37. package/projects/UILibrary/src/app/components/chat-message/chat-message.component.d.ts +16 -13
  38. package/projects/UILibrary/src/app/components/create/create.component.d.ts +14 -11
  39. package/projects/UILibrary/src/app/components/current-activity/current-activity.component.d.ts +37 -34
  40. package/projects/UILibrary/src/app/components/disposition/disposition.component.d.ts +15 -12
  41. package/projects/UILibrary/src/app/components/duration/duration.component.d.ts +19 -16
  42. package/projects/UILibrary/src/app/components/holdtimer/holdtimer.component.d.ts +24 -21
  43. package/projects/UILibrary/src/app/components/interaction/interaction.component.d.ts +44 -41
  44. package/projects/UILibrary/src/app/components/login/login.component.d.ts +14 -11
  45. package/projects/UILibrary/src/app/components/operation/operation.component.d.ts +25 -22
  46. package/projects/UILibrary/src/app/components/property/property.component.d.ts +44 -41
  47. package/projects/UILibrary/src/app/components/recent-activity/recent-activity.component.d.ts +38 -35
  48. package/projects/UILibrary/src/app/components/scenario/scenario.component.d.ts +16 -13
  49. package/projects/UILibrary/src/app/components/search-information/search-information.component.d.ts +29 -26
  50. package/projects/UILibrary/src/app/models/IActivity.d.ts +36 -36
  51. package/projects/UILibrary/src/app/models/IActivityDetails.d.ts +7 -7
  52. package/projects/UILibrary/src/app/models/IHoldActivityDetails.d.ts +10 -10
  53. package/projects/UILibrary/src/app/models/IInteractionActivityDetails.d.ts +9 -9
  54. package/projects/UILibrary/src/app/models/chat.message.d.ts +15 -15
  55. package/projects/UILibrary/src/app/models/chat.settings.d.ts +6 -6
  56. package/projects/UILibrary/src/app/models/disposition.interface.d.ts +12 -12
  57. package/projects/UILibrary/src/app/models/login.interface.d.ts +13 -13
  58. package/projects/UILibrary/src/app/models/uilibrary.model.d.ts +281 -281
  59. package/projects/UILibrary/src/app/uilibrary.module.d.ts +30 -7
  60. package/public_api.d.ts +9 -1
  61. package/webcomponents/webcomponents.js +3 -3
  62. package/amc-technology-ui-library.d.ts +0 -19
  63. package/amc-technology-ui-library.metadata.json +0 -1
  64. package/bundles/amc-technology-ui-library.umd.js +0 -1653
  65. package/bundles/amc-technology-ui-library.umd.js.map +0 -1
  66. package/bundles/amc-technology-ui-library.umd.min.js +0 -16
  67. package/bundles/amc-technology-ui-library.umd.min.js.map +0 -1
  68. package/esm2015/amc-technology-ui-library.js +0 -20
  69. package/esm2015/projects/UILibrary/src/app/Helpers.js +0 -11
  70. package/esm2015/projects/UILibrary/src/app/components/activity/activity.component.js +0 -83
  71. package/esm2015/projects/UILibrary/src/app/components/chat-box/chat-box.component.js +0 -139
  72. package/esm2015/projects/UILibrary/src/app/components/chat-message/chat-message.component.js +0 -44
  73. package/esm2015/projects/UILibrary/src/app/components/create/create.component.js +0 -35
  74. package/esm2015/projects/UILibrary/src/app/components/current-activity/current-activity.component.js +0 -169
  75. package/esm2015/projects/UILibrary/src/app/components/disposition/disposition.component.js +0 -49
  76. package/esm2015/projects/UILibrary/src/app/components/duration/duration.component.js +0 -58
  77. package/esm2015/projects/UILibrary/src/app/components/holdtimer/holdtimer.component.js +0 -72
  78. package/esm2015/projects/UILibrary/src/app/components/interaction/interaction.component.js +0 -93
  79. package/esm2015/projects/UILibrary/src/app/components/login/login.component.js +0 -43
  80. package/esm2015/projects/UILibrary/src/app/components/operation/operation.component.js +0 -57
  81. package/esm2015/projects/UILibrary/src/app/components/property/property.component.js +0 -99
  82. package/esm2015/projects/UILibrary/src/app/components/recent-activity/recent-activity.component.js +0 -142
  83. package/esm2015/projects/UILibrary/src/app/components/scenario/scenario.component.js +0 -43
  84. package/esm2015/projects/UILibrary/src/app/components/search-information/search-information.component.js +0 -155
  85. package/esm2015/projects/UILibrary/src/app/models/IActivity.js +0 -1
  86. package/esm2015/projects/UILibrary/src/app/models/IActivityDetails.js +0 -1
  87. package/esm2015/projects/UILibrary/src/app/models/IHoldActivityDetails.js +0 -1
  88. package/esm2015/projects/UILibrary/src/app/models/IInteractionActivityDetails.js +0 -1
  89. package/esm2015/projects/UILibrary/src/app/models/chat.message.js +0 -7
  90. package/esm2015/projects/UILibrary/src/app/models/chat.settings.js +0 -1
  91. package/esm2015/projects/UILibrary/src/app/models/disposition.interface.js +0 -1
  92. package/esm2015/projects/UILibrary/src/app/models/login.interface.js +0 -1
  93. package/esm2015/projects/UILibrary/src/app/models/uilibrary.model.js +0 -40
  94. package/esm2015/projects/UILibrary/src/app/uilibrary.module.js +0 -83
  95. package/esm2015/public_api.js +0 -2
  96. package/esm5/amc-technology-ui-library.js +0 -20
  97. package/esm5/projects/UILibrary/src/app/Helpers.js +0 -11
  98. package/esm5/projects/UILibrary/src/app/components/activity/activity.component.js +0 -84
  99. package/esm5/projects/UILibrary/src/app/components/chat-box/chat-box.component.js +0 -140
  100. package/esm5/projects/UILibrary/src/app/components/chat-message/chat-message.component.js +0 -45
  101. package/esm5/projects/UILibrary/src/app/components/create/create.component.js +0 -36
  102. package/esm5/projects/UILibrary/src/app/components/current-activity/current-activity.component.js +0 -174
  103. package/esm5/projects/UILibrary/src/app/components/disposition/disposition.component.js +0 -61
  104. package/esm5/projects/UILibrary/src/app/components/duration/duration.component.js +0 -60
  105. package/esm5/projects/UILibrary/src/app/components/holdtimer/holdtimer.component.js +0 -74
  106. package/esm5/projects/UILibrary/src/app/components/interaction/interaction.component.js +0 -98
  107. package/esm5/projects/UILibrary/src/app/components/login/login.component.js +0 -66
  108. package/esm5/projects/UILibrary/src/app/components/operation/operation.component.js +0 -58
  109. package/esm5/projects/UILibrary/src/app/components/property/property.component.js +0 -101
  110. package/esm5/projects/UILibrary/src/app/components/recent-activity/recent-activity.component.js +0 -144
  111. package/esm5/projects/UILibrary/src/app/components/scenario/scenario.component.js +0 -44
  112. package/esm5/projects/UILibrary/src/app/components/search-information/search-information.component.js +0 -156
  113. package/esm5/projects/UILibrary/src/app/models/IActivity.js +0 -1
  114. package/esm5/projects/UILibrary/src/app/models/IActivityDetails.js +0 -1
  115. package/esm5/projects/UILibrary/src/app/models/IHoldActivityDetails.js +0 -1
  116. package/esm5/projects/UILibrary/src/app/models/IInteractionActivityDetails.js +0 -1
  117. package/esm5/projects/UILibrary/src/app/models/chat.message.js +0 -7
  118. package/esm5/projects/UILibrary/src/app/models/chat.settings.js +0 -1
  119. package/esm5/projects/UILibrary/src/app/models/disposition.interface.js +0 -1
  120. package/esm5/projects/UILibrary/src/app/models/login.interface.js +0 -1
  121. package/esm5/projects/UILibrary/src/app/models/uilibrary.model.js +0 -43
  122. package/esm5/projects/UILibrary/src/app/uilibrary.module.js +0 -84
  123. package/esm5/public_api.js +0 -2
  124. package/fesm2015/amc-technology-ui-library.js +0 -1360
  125. package/fesm2015/amc-technology-ui-library.js.map +0 -1
  126. package/fesm5/amc-technology-ui-library.js +0 -1423
  127. package/fesm5/amc-technology-ui-library.js.map +0 -1
  128. package/src/typings.d.ts +0 -5
@@ -1,11 +1,14 @@
1
- import { EventEmitter } from '@angular/core';
2
- export declare class CreateComponent {
3
- CreateNewEntity: EventEmitter<string>;
4
- isCreateMaximized: boolean;
5
- Entities: any;
6
- constructor();
7
- createNewEntity(type: string): void;
8
- getEntities(): string[];
9
- getDisplay(entity: any): any;
10
- getImage(entity: any): any;
11
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CreateComponent {
4
+ CreateNewEntity: EventEmitter<string>;
5
+ isCreateMaximized: boolean;
6
+ Entities: any;
7
+ constructor();
8
+ createNewEntity(type: string): void;
9
+ getEntities(): string[];
10
+ getDisplay(entity: any): any;
11
+ getImage(entity: any): any;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CreateComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreateComponent, "amc-create", never, { "Entities": { "alias": "Entities"; "required": false; }; }, { "CreateNewEntity": "CreateNewEntity"; }, never, never, false, never>;
14
+ }
@@ -1,34 +1,37 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { IActivityDetails } from '../../models/IActivityDetails';
3
- import { IActivity } from '../../models/IActivity';
4
- export declare class CurrentActivityComponent implements OnInit {
5
- ActivityDetails: IActivity;
6
- quickCommentList: string[];
7
- isAutoSave: boolean;
8
- enableDiscard: boolean;
9
- autoSaveTimer: number;
10
- quickCommentOptionRequiredCadArray: any;
11
- WhoObjectList: IActivityDetails[];
12
- WhatObjectList: IActivityDetails[];
13
- scenarioToCADMap: {};
14
- EventEmitter: EventEmitter<{
15
- eventName: string;
16
- newValue?: IActivity;
17
- }>;
18
- private eventList;
19
- private debouncer;
20
- isActivityMaximized: boolean;
21
- constructor();
22
- ngOnInit(): Promise<void>;
23
- submitActivity(): void;
24
- triggerDiscardActivity(): void;
25
- onNameChange(event: any): void;
26
- onRelatedToChange(event: any): void;
27
- onSubjectChange(): void;
28
- onSubjectKeyUp(): void;
29
- onCallNotesChange(): void;
30
- onCallNotesKeyUp(): void;
31
- addQuickCommentToDescription(comment: string): void;
32
- protected parseWhoObject(whoObject: IActivityDetails): string;
33
- protected parseWhatObject(whatObject: IActivityDetails): string;
34
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { IActivityDetails } from '../../models/IActivityDetails';
3
+ import { IActivity } from '../../models/IActivity';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CurrentActivityComponent implements OnInit {
6
+ ActivityDetails: IActivity;
7
+ quickCommentList: string[];
8
+ isAutoSave: boolean;
9
+ enableDiscard: boolean;
10
+ autoSaveTimer: number;
11
+ quickCommentOptionRequiredCadArray: any;
12
+ WhoObjectList: IActivityDetails[];
13
+ WhatObjectList: IActivityDetails[];
14
+ scenarioToCADMap: {};
15
+ EventEmitter: EventEmitter<{
16
+ eventName: string;
17
+ newValue?: IActivity;
18
+ }>;
19
+ private eventList;
20
+ private debouncer;
21
+ isActivityMaximized: boolean;
22
+ constructor();
23
+ ngOnInit(): Promise<void>;
24
+ submitActivity(): void;
25
+ triggerDiscardActivity(): void;
26
+ onNameChange(event: any): void;
27
+ onRelatedToChange(event: any): void;
28
+ onSubjectChange(): void;
29
+ onSubjectKeyUp(): void;
30
+ onCallNotesChange(): void;
31
+ onCallNotesKeyUp(): void;
32
+ addQuickCommentToDescription(comment: string): void;
33
+ protected parseWhoObject(whoObject: IActivityDetails): string;
34
+ protected parseWhatObject(whatObject: IActivityDetails): string;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<CurrentActivityComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<CurrentActivityComponent, "amc-current-activity", never, { "ActivityDetails": { "alias": "ActivityDetails"; "required": false; }; "quickCommentList": { "alias": "quickCommentList"; "required": false; }; "isAutoSave": { "alias": "isAutoSave"; "required": false; }; "enableDiscard": { "alias": "enableDiscard"; "required": false; }; "autoSaveTimer": { "alias": "autoSaveTimer"; "required": false; }; "quickCommentOptionRequiredCadArray": { "alias": "quickCommentOptionRequiredCadArray"; "required": false; }; "WhoObjectList": { "alias": "WhoObjectList"; "required": false; }; "WhatObjectList": { "alias": "WhatObjectList"; "required": false; }; "scenarioToCADMap": { "alias": "scenarioToCADMap"; "required": false; }; }, { "EventEmitter": "EventEmitter"; }, never, never, false, never>;
37
+ }
@@ -1,12 +1,15 @@
1
- import { IDisposition, IDispositionResult } from './../../models/disposition.interface';
2
- import { OnInit, EventEmitter } from '@angular/core';
3
- export declare class DispositionComponent implements OnInit {
4
- disposition: IDisposition;
5
- dispositionEmitter: EventEmitter<IDispositionResult>;
6
- selectedDispositionValue: string;
7
- dispositionName: string;
8
- constructor();
9
- ngOnInit(): void;
10
- submitDisposition(): void;
11
- selectAndSubmitDisposition(event: KeyboardEvent, dispositionKey: string): void;
12
- }
1
+ import { IDisposition, IDispositionResult } from './../../models/disposition.interface';
2
+ import { OnInit, EventEmitter } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DispositionComponent implements OnInit {
5
+ disposition: IDisposition;
6
+ dispositionEmitter: EventEmitter<IDispositionResult>;
7
+ selectedDispositionValue: string;
8
+ dispositionName: string;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ submitDisposition(): void;
12
+ selectAndSubmitDisposition(event: KeyboardEvent, dispositionKey: string): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<DispositionComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<DispositionComponent, "amc-disposition", never, { "disposition": { "alias": "disposition"; "required": false; }; }, { "dispositionEmitter": "dispositionEmitter"; }, never, never, false, never>;
15
+ }
@@ -1,16 +1,19 @@
1
- import { OnInit, OnDestroy } from '@angular/core';
2
- export declare class DurationComponent implements OnInit, OnDestroy {
3
- statusText: string;
4
- callId: string;
5
- startTime: number;
6
- displayTime: string;
7
- labelledByText: string;
8
- private _timerId?;
9
- constructor();
10
- ngOnInit(): void;
11
- /**
12
- * @ignore
13
- */
14
- private startCallCounter;
15
- ngOnDestroy(): void;
16
- }
1
+ import { OnInit, OnDestroy } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DurationComponent implements OnInit, OnDestroy {
4
+ statusText: string;
5
+ callId: string;
6
+ startTime: number;
7
+ displayTime: string;
8
+ labelledByText: string;
9
+ private _timerId?;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ /**
13
+ * @ignore
14
+ */
15
+ private startCallCounter;
16
+ ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<DurationComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<DurationComponent, "amc-duration", never, { "statusText": { "alias": "statusText"; "required": false; }; "callId": { "alias": "callId"; "required": false; }; "startTime": { "alias": "startTime"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
@@ -1,21 +1,24 @@
1
- import { OnInit, OnDestroy } from '@angular/core';
2
- import { IHoldCounterData } from '../../models/uilibrary.model';
3
- export declare class HoldtimerComponent implements OnInit, OnDestroy {
4
- holdCounterData: IHoldCounterData;
5
- statusText: string;
6
- callId: string;
7
- displayTime: string;
8
- labelledByText: string;
9
- private _timerId?;
10
- constructor();
11
- ngOnInit(): void;
12
- /**
13
- * @ignore
14
- */
15
- private startCallCounter;
16
- private CaculatePastHoldDuration;
17
- /**
18
- * @ignore
19
- */
20
- ngOnDestroy(): void;
21
- }
1
+ import { OnInit, OnDestroy } from '@angular/core';
2
+ import { IHoldCounterData } from '../../models/uilibrary.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class HoldtimerComponent implements OnInit, OnDestroy {
5
+ holdCounterData: IHoldCounterData;
6
+ statusText: string;
7
+ callId: string;
8
+ displayTime: string;
9
+ labelledByText: string;
10
+ private _timerId?;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ /**
14
+ * @ignore
15
+ */
16
+ private startCallCounter;
17
+ private CaculatePastHoldDuration;
18
+ /**
19
+ * @ignore
20
+ */
21
+ ngOnDestroy(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<HoldtimerComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<HoldtimerComponent, "amc-holdtimer", never, { "holdCounterData": { "alias": "holdCounterData"; "required": false; }; "statusText": { "alias": "statusText"; "required": false; }; "callId": { "alias": "callId"; "required": false; }; }, {}, never, never, false, never>;
24
+ }
@@ -1,41 +1,44 @@
1
- import { OnInit, EventEmitter } from '@angular/core';
2
- import { IChatMessage, IInteraction } from '../../models/uilibrary.model';
3
- /**
4
- * @ignore
5
- */
6
- export declare class InteractionComponent implements OnInit {
7
- interaction: IInteraction;
8
- newMsgs: IChatMessage[];
9
- minimizedChanged: EventEmitter<boolean>;
10
- isAgentTyping: EventEmitter<boolean>;
11
- newMessage: EventEmitter<string>;
12
- /**
13
- * @ignore
14
- */
15
- minimized: boolean;
16
- set _minimized(value: boolean);
17
- get _minimized(): boolean;
18
- /**
19
- * @ignore
20
- */
21
- constructor();
22
- /**
23
- * @ignore
24
- */
25
- ngOnInit(): void;
26
- /**
27
- * @ignore
28
- */
29
- minimize(): void;
30
- /**
31
- * @ignore
32
- */
33
- maximize(): void;
34
- /**
35
- * @ignore
36
- */
37
- isConferenceCall(): boolean;
38
- collapseKeypress(event: KeyboardEvent): void;
39
- expandKeypress(event: KeyboardEvent): void;
40
- clickEvent(id: any): void;
41
- }
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { IChatMessage, IInteraction } from '../../models/uilibrary.model';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * @ignore
6
+ */
7
+ export declare class InteractionComponent implements OnInit {
8
+ interaction: IInteraction;
9
+ newMsgs: IChatMessage[];
10
+ minimizedChanged: EventEmitter<boolean>;
11
+ isAgentTyping: EventEmitter<boolean>;
12
+ newMessage: EventEmitter<string>;
13
+ /**
14
+ * @ignore
15
+ */
16
+ minimized: boolean;
17
+ set _minimized(value: boolean);
18
+ get _minimized(): boolean;
19
+ /**
20
+ * @ignore
21
+ */
22
+ constructor();
23
+ /**
24
+ * @ignore
25
+ */
26
+ ngOnInit(): void;
27
+ /**
28
+ * @ignore
29
+ */
30
+ minimize(): void;
31
+ /**
32
+ * @ignore
33
+ */
34
+ maximize(): void;
35
+ /**
36
+ * @ignore
37
+ */
38
+ isConferenceCall(): boolean;
39
+ collapseKeypress(event: KeyboardEvent): void;
40
+ expandKeypress(event: KeyboardEvent): void;
41
+ clickEvent(id: any): void;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<InteractionComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<InteractionComponent, "amc-interaction", never, { "interaction": { "alias": "interaction"; "required": false; }; "newMsgs": { "alias": "newMsgs"; "required": false; }; }, { "minimizedChanged": "minimizedChanged"; "isAgentTyping": "isAgentTyping"; "newMessage": "newMessage"; }, never, never, false, never>;
44
+ }
@@ -1,11 +1,14 @@
1
- import { ILoginData } from './../../models/login.interface';
2
- import { EventEmitter, OnInit } from '@angular/core';
3
- import { NgForm } from '@angular/forms';
4
- export declare class LoginComponent implements OnInit {
5
- loginData: ILoginData;
6
- loginDetailsProvided: EventEmitter<ILoginData>;
7
- constructor();
8
- ngOnInit(): void;
9
- onLogin(loginForm: NgForm): void;
10
- focusOutOfInput(loginForm: NgForm, field: any): void;
11
- }
1
+ import { ILoginData } from './../../models/login.interface';
2
+ import { EventEmitter, OnInit } from '@angular/core';
3
+ import { NgForm } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LoginComponent implements OnInit {
6
+ loginData: ILoginData;
7
+ loginDetailsProvided: EventEmitter<ILoginData>;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ onLogin(loginForm: NgForm): void;
11
+ focusOutOfInput(loginForm: NgForm, field: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "amc-login", never, { "loginData": { "alias": "loginData"; "required": false; }; }, { "loginDetailsProvided": "loginDetailsProvided"; }, never, never, false, never>;
14
+ }
@@ -1,22 +1,25 @@
1
- import { OnInit } from '@angular/core';
2
- import { IOperation } from '../../models/uilibrary.model';
3
- /**
4
- * @ignore
5
- */
6
- export declare class OperationComponent implements OnInit {
7
- statusText: string;
8
- callId: string;
9
- callType: string;
10
- operations: IOperation[];
11
- labelledByText: string;
12
- describedByText: string;
13
- /**
14
- * @ignore
15
- */
16
- constructor();
17
- /**
18
- * @ignore
19
- */
20
- ngOnInit(): void;
21
- operationKeypress(event: KeyboardEvent, operation: IOperation): void;
22
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { IOperation } from '../../models/uilibrary.model';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * @ignore
6
+ */
7
+ export declare class OperationComponent implements OnInit {
8
+ statusText: string;
9
+ callId: string;
10
+ callType: string;
11
+ operations: IOperation[];
12
+ labelledByText: string;
13
+ describedByText: string;
14
+ /**
15
+ * @ignore
16
+ */
17
+ constructor();
18
+ /**
19
+ * @ignore
20
+ */
21
+ ngOnInit(): void;
22
+ operationKeypress(event: KeyboardEvent, operation: IOperation): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<OperationComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<OperationComponent, "amc-operation", never, { "statusText": { "alias": "statusText"; "required": false; }; "callId": { "alias": "callId"; "required": false; }; "callType": { "alias": "callType"; "required": false; }; "operations": { "alias": "operations"; "required": false; }; }, {}, never, never, false, never>;
25
+ }
@@ -1,41 +1,44 @@
1
- import { OnInit, OnDestroy } from '@angular/core';
2
- import { IProperty } from '../../models/uilibrary.model';
3
- /**
4
- * @ignore
5
- */
6
- export declare class PropertyComponent implements OnInit, OnDestroy {
7
- statusText: string;
8
- callId: string;
9
- callType: string;
10
- property: IProperty;
11
- labelledByText: string;
12
- title: string;
13
- /**
14
- * @ignore
15
- */
16
- processedDisplayValue: string;
17
- /**
18
- * @ignore
19
- */
20
- private _timerId?;
21
- /**
22
- * @ignore
23
- */
24
- constructor();
25
- /**
26
- * @ignore
27
- */
28
- ngOnInit(): void;
29
- /**
30
- * @ignore
31
- */
32
- initValues(): void;
33
- /**
34
- * @ignore
35
- */
36
- private startCallCounter;
37
- /**
38
- * @ignore
39
- */
40
- ngOnDestroy(): void;
41
- }
1
+ import { OnInit, OnDestroy } from '@angular/core';
2
+ import { IProperty } from '../../models/uilibrary.model';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * @ignore
6
+ */
7
+ export declare class PropertyComponent implements OnInit, OnDestroy {
8
+ statusText: string;
9
+ callId: string;
10
+ callType: string;
11
+ property: IProperty;
12
+ labelledByText: string;
13
+ title: string;
14
+ /**
15
+ * @ignore
16
+ */
17
+ processedDisplayValue: string;
18
+ /**
19
+ * @ignore
20
+ */
21
+ private _timerId?;
22
+ /**
23
+ * @ignore
24
+ */
25
+ constructor();
26
+ /**
27
+ * @ignore
28
+ */
29
+ ngOnInit(): void;
30
+ /**
31
+ * @ignore
32
+ */
33
+ initValues(): void;
34
+ /**
35
+ * @ignore
36
+ */
37
+ private startCallCounter;
38
+ /**
39
+ * @ignore
40
+ */
41
+ ngOnDestroy(): void;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<PropertyComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<PropertyComponent, "amc-property", never, { "statusText": { "alias": "statusText"; "required": false; }; "callId": { "alias": "callId"; "required": false; }; "callType": { "alias": "callType"; "required": false; }; "property": { "alias": "property"; "required": false; }; }, {}, never, never, false, never>;
44
+ }
@@ -1,35 +1,38 @@
1
- import { EventEmitter, OnInit, OnChanges, OnDestroy } from '@angular/core';
2
- import { IActivity } from '../../models/IActivity';
3
- import { IActivityDetails } from '../../models/IActivityDetails';
4
- export declare class RecentActivityComponent implements OnInit, OnChanges, OnDestroy {
5
- ActivityDetails: IActivity;
6
- isInConsoleView: boolean;
7
- quickCommentList: string[];
8
- workingScenarioID: string;
9
- idx: number;
10
- last: boolean;
11
- WhoObjectList: IActivityDetails[];
12
- WhatObjectList: IActivityDetails[];
13
- EventEmitter: EventEmitter<{
14
- eventName: string;
15
- idx: number;
16
- newValue?: IActivity;
17
- }>;
18
- private debouncer;
19
- private eventList;
20
- constructor();
21
- ngOnChanges(): void;
22
- getIcon(scenario: any): string;
23
- ngOnInit(): void;
24
- ngOnDestroy(): void;
25
- expandAndCollapseRecentActivity(isExpand: boolean): void;
26
- openActivity(): void;
27
- onSubjectChange(): void;
28
- onSubjectKeyUp(): void;
29
- onWhoObjectChange(event: any): void;
30
- onRelatedToChange(event: any): void;
31
- onCallNotesChange(): void;
32
- onCallNotesKeyUp(): void;
33
- addQuickCommentToDescription(comment: string): void;
34
- submitActivity(): void;
35
- }
1
+ import { EventEmitter, OnInit, OnChanges, OnDestroy } from '@angular/core';
2
+ import { IActivity } from '../../models/IActivity';
3
+ import { IActivityDetails } from '../../models/IActivityDetails';
4
+ import * as i0 from "@angular/core";
5
+ export declare class RecentActivityComponent implements OnInit, OnChanges, OnDestroy {
6
+ ActivityDetails: IActivity;
7
+ isInConsoleView: boolean;
8
+ quickCommentList: string[];
9
+ workingScenarioID: string;
10
+ idx: number;
11
+ last: boolean;
12
+ WhoObjectList: IActivityDetails[];
13
+ WhatObjectList: IActivityDetails[];
14
+ EventEmitter: EventEmitter<{
15
+ eventName: string;
16
+ idx: number;
17
+ newValue?: IActivity;
18
+ }>;
19
+ private debouncer;
20
+ private eventList;
21
+ constructor();
22
+ ngOnChanges(): void;
23
+ getIcon(scenario: any): string;
24
+ ngOnInit(): void;
25
+ ngOnDestroy(): void;
26
+ expandAndCollapseRecentActivity(isExpand: boolean): void;
27
+ openActivity(): void;
28
+ onSubjectChange(): void;
29
+ onSubjectKeyUp(): void;
30
+ onWhoObjectChange(event: any): void;
31
+ onRelatedToChange(event: any): void;
32
+ onCallNotesChange(): void;
33
+ onCallNotesKeyUp(): void;
34
+ addQuickCommentToDescription(comment: string): void;
35
+ submitActivity(): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecentActivityComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecentActivityComponent, "amc-recent-activity", never, { "ActivityDetails": { "alias": "ActivityDetails"; "required": false; }; "isInConsoleView": { "alias": "isInConsoleView"; "required": false; }; "quickCommentList": { "alias": "quickCommentList"; "required": false; }; "workingScenarioID": { "alias": "workingScenarioID"; "required": false; }; "idx": { "alias": "idx"; "required": false; }; "last": { "alias": "last"; "required": false; }; "WhoObjectList": { "alias": "WhoObjectList"; "required": false; }; "WhatObjectList": { "alias": "WhatObjectList"; "required": false; }; }, { "EventEmitter": "EventEmitter"; }, never, never, false, never>;
38
+ }
@@ -1,13 +1,16 @@
1
- import { EventEmitter, AfterViewChecked } from '@angular/core';
2
- import { IChatMessage, IScenario } from '../../models/uilibrary.model';
3
- export declare class ScenarioComponent implements AfterViewChecked {
4
- scenario: IScenario;
5
- newMsgs: IChatMessage[];
6
- minimizedChanged: EventEmitter<any>;
7
- isAgentTyping: EventEmitter<boolean>;
8
- newMessage: EventEmitter<string>;
9
- afterViewChecked: EventEmitter<any>;
10
- constructor();
11
- ngAfterViewChecked(): void;
12
- onMinimizedChanged(): void;
13
- }
1
+ import { EventEmitter, AfterViewChecked } from '@angular/core';
2
+ import { IChatMessage, IScenario } from '../../models/uilibrary.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ScenarioComponent implements AfterViewChecked {
5
+ scenario: IScenario;
6
+ newMsgs: IChatMessage[];
7
+ minimizedChanged: EventEmitter<any>;
8
+ isAgentTyping: EventEmitter<boolean>;
9
+ newMessage: EventEmitter<string>;
10
+ afterViewChecked: EventEmitter<any>;
11
+ constructor();
12
+ ngAfterViewChecked(): void;
13
+ onMinimizedChanged(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScenarioComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScenarioComponent, "amc-scenario", never, { "scenario": { "alias": "scenario"; "required": false; }; "newMsgs": { "alias": "newMsgs"; "required": false; }; }, { "minimizedChanged": "minimizedChanged"; "isAgentTyping": "isAgentTyping"; "newMessage": "newMessage"; "afterViewChecked": "afterViewChecked"; }, never, never, false, never>;
16
+ }
@@ -1,26 +1,29 @@
1
- import { EventEmitter, OnChanges } from '@angular/core';
2
- import * as api from '@amc-technology/davinci-api';
3
- import { IActivity } from '../../models/IActivity';
4
- export declare class SearchInformationComponent implements OnChanges {
5
- ActivityDetails: IActivity;
6
- searchLayout: api.SearchLayouts;
7
- searchRecordList: Array<api.IRecordItem>;
8
- agentSelectedCallerInformation: EventEmitter<{
9
- id: string;
10
- value: string;
11
- }>;
12
- isSearchInformationMaximized: boolean;
13
- imageLocation: string;
14
- singleMatchIconSrc: string;
15
- singleMatchData: any;
16
- multiMatchData: any[];
17
- shouldShowAllMultiMatchOptions: boolean;
18
- constructor();
19
- ngOnChanges(): void;
20
- protected renderData(): void;
21
- onAgentSelectedCallerInformation(event: any): void;
22
- protected parseSearchRecordForNameSingleMatch(searchRecord: api.IRecordItem): any[];
23
- protected parseSearchRecordForNameMultiMatch(searchRecord: api.IRecordItem): any[];
24
- protected getEntityImgToDisplay(searchRecord: api.IRecordItem): string;
25
- protected getSearchLayoutInfoForDisplay(searchRecord: api.IRecordItem): any;
26
- }
1
+ import { EventEmitter, OnChanges } from '@angular/core';
2
+ import * as api from '@amc-technology/davinci-api';
3
+ import { IActivity } from '../../models/IActivity';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SearchInformationComponent implements OnChanges {
6
+ ActivityDetails: IActivity;
7
+ searchLayout: api.SearchLayouts;
8
+ searchRecordList: Array<api.IRecordItem>;
9
+ agentSelectedCallerInformation: EventEmitter<{
10
+ id: string;
11
+ value: string;
12
+ }>;
13
+ isSearchInformationMaximized: boolean;
14
+ imageLocation: string;
15
+ singleMatchIconSrc: string;
16
+ singleMatchData: any;
17
+ multiMatchData: any[];
18
+ shouldShowAllMultiMatchOptions: boolean;
19
+ constructor();
20
+ ngOnChanges(): void;
21
+ protected renderData(): void;
22
+ onAgentSelectedCallerInformation(event: any): void;
23
+ protected parseSearchRecordForNameSingleMatch(searchRecord: api.IRecordItem): any[];
24
+ protected parseSearchRecordForNameMultiMatch(searchRecord: api.IRecordItem): any[];
25
+ protected getEntityImgToDisplay(searchRecord: api.IRecordItem): string;
26
+ protected getSearchLayoutInfoForDisplay(searchRecord: api.IRecordItem): any;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchInformationComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchInformationComponent, "amc-search-information", never, { "ActivityDetails": { "alias": "ActivityDetails"; "required": false; }; "searchLayout": { "alias": "searchLayout"; "required": false; }; "searchRecordList": { "alias": "searchRecordList"; "required": false; }; }, { "agentSelectedCallerInformation": "agentSelectedCallerInformation"; }, never, never, false, never>;
29
+ }