@amc-technology/ui-library 1.0.102 → 1.0.104
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.
- package/README.md +10 -1
- package/esm2022/projects/UILibrary/src/app/components/activity/activity.component.mjs +6 -6
- package/esm2022/projects/UILibrary/src/app/components/chat-box/chat-box.component.mjs +44 -29
- package/esm2022/projects/UILibrary/src/app/components/chat-message/chat-message.component.mjs +5 -5
- package/esm2022/projects/UILibrary/src/app/components/create/create.component.mjs +9 -9
- package/esm2022/projects/UILibrary/src/app/components/current-activity/current-activity.component.mjs +6 -6
- package/esm2022/projects/UILibrary/src/app/components/disposition/disposition.component.mjs +4 -4
- package/esm2022/projects/UILibrary/src/app/components/duration/duration.component.mjs +12 -12
- package/esm2022/projects/UILibrary/src/app/components/hold-timer/hold-timer.component.mjs +72 -0
- package/esm2022/projects/UILibrary/src/app/components/interaction/interaction.component.mjs +17 -20
- package/esm2022/projects/UILibrary/src/app/components/login/login.component.mjs +6 -6
- package/esm2022/projects/UILibrary/src/app/components/operation/operation.component.mjs +5 -5
- package/esm2022/projects/UILibrary/src/app/components/property/property.component.mjs +17 -17
- package/esm2022/projects/UILibrary/src/app/components/recent-activity/recent-activity.component.mjs +5 -5
- package/esm2022/projects/UILibrary/src/app/components/scenario/scenario.component.mjs +6 -9
- package/esm2022/projects/UILibrary/src/app/components/search-information/search-information.component.mjs +14 -14
- package/esm2022/projects/UILibrary/src/app/models/chat.settings.mjs +1 -1
- package/esm2022/projects/UILibrary/src/app/models/disposition.interface.mjs +1 -1
- package/esm2022/projects/UILibrary/src/app/models/uilibrary.model.mjs +20 -22
- package/esm2022/projects/UILibrary/src/app/uilibrary.module.mjs +21 -22
- package/esm2022/public_api.mjs +1 -1
- package/fesm2022/amc-technology-ui-library.mjs +793 -786
- package/fesm2022/amc-technology-ui-library.mjs.map +1 -1
- package/package.json +3 -4
- package/projects/UILibrary/src/app/components/activity/activity.component.d.ts +1 -1
- package/projects/UILibrary/src/app/components/chat-box/chat-box.component.d.ts +13 -9
- package/projects/UILibrary/src/app/components/chat-message/chat-message.component.d.ts +3 -3
- package/projects/UILibrary/src/app/components/create/create.component.d.ts +1 -1
- package/projects/UILibrary/src/app/components/current-activity/current-activity.component.d.ts +1 -1
- package/projects/UILibrary/src/app/components/duration/duration.component.d.ts +1 -1
- package/projects/UILibrary/src/app/components/{holdtimer/holdtimer.component.d.ts → hold-timer/hold-timer.component.d.ts} +7 -7
- package/projects/UILibrary/src/app/components/interaction/interaction.component.d.ts +7 -8
- package/projects/UILibrary/src/app/components/login/login.component.d.ts +1 -1
- package/projects/UILibrary/src/app/components/property/property.component.d.ts +3 -3
- package/projects/UILibrary/src/app/components/scenario/scenario.component.d.ts +3 -4
- package/projects/UILibrary/src/app/components/search-information/search-information.component.d.ts +1 -1
- package/projects/UILibrary/src/app/models/chat.settings.d.ts +2 -0
- package/projects/UILibrary/src/app/models/disposition.interface.d.ts +1 -1
- package/projects/UILibrary/src/app/models/uilibrary.model.d.ts +26 -13
- package/projects/UILibrary/src/app/uilibrary.module.d.ts +5 -5
- package/webcomponents/webcomponents.js +2 -2
- package/esm2022/projects/UILibrary/src/app/components/holdtimer/holdtimer.component.mjs +0 -72
- package/esm2022/projects/UILibrary/src/app/models/login.interface.mjs +0 -2
- package/projects/UILibrary/src/app/models/login.interface.d.ts +0 -13
- package/webcomponents/styles.css +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amc-technology/ui-library",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.104",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"dependencies": {
|
|
@@ -15,11 +15,10 @@
|
|
|
15
15
|
"@types/ws": "8.5.4",
|
|
16
16
|
"@webcomponents/custom-elements": "^1.2.2",
|
|
17
17
|
"aspnet-prerendering": "^3.0.1",
|
|
18
|
-
"bootstrap": "^3.3
|
|
19
|
-
"clean": "^4.0.2",
|
|
18
|
+
"bootstrap": "^5.3.3",
|
|
20
19
|
"core-js": "^2.5.5",
|
|
21
20
|
"rxjs": "^7.8.0",
|
|
22
|
-
"tslib": "^2.
|
|
21
|
+
"tslib": "^2.6.2",
|
|
23
22
|
"url-polyfill": "^1.0.13",
|
|
24
23
|
"zone.js": "~0.13.0"
|
|
25
24
|
},
|
|
@@ -2,13 +2,13 @@ import { OnInit, EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { IActivity, IActivityDetails } from '../../models/uilibrary.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ActivityComponent implements OnInit {
|
|
5
|
-
isActivityMaximized: boolean;
|
|
6
5
|
activity: IActivity;
|
|
7
6
|
ActivitySave: EventEmitter<IActivity>;
|
|
8
7
|
OnNameSelectChange: EventEmitter<IActivity>;
|
|
9
8
|
OnRelatedToChange: EventEmitter<IActivity>;
|
|
10
9
|
OnSubjectChange: EventEmitter<IActivity>;
|
|
11
10
|
OnCallNotesChange: EventEmitter<IActivity>;
|
|
11
|
+
isActivityMaximized: boolean;
|
|
12
12
|
constructor();
|
|
13
13
|
ngOnInit(): void;
|
|
14
14
|
onNameSelectChange(event: any): void;
|
|
@@ -1,30 +1,33 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AfterViewChecked, AfterViewInit, DoCheck, ElementRef, EventEmitter, IterableDiffers, OnInit, Renderer2 } from '@angular/core';
|
|
2
2
|
import { IChatMessage } from '../../models/chat.message';
|
|
3
3
|
import { IChatSettings } from '../../models/chat.settings';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ChatBoxComponent implements AfterViewChecked, AfterViewInit, OnInit {
|
|
5
|
+
export declare class ChatBoxComponent implements AfterViewChecked, AfterViewInit, OnInit, DoCheck {
|
|
6
6
|
private renderer;
|
|
7
|
+
private iterableDiffers;
|
|
7
8
|
settings: IChatSettings;
|
|
8
9
|
isTyping: boolean;
|
|
9
10
|
messages: IChatMessage[];
|
|
10
|
-
newMsgs: IChatMessage[];
|
|
11
|
-
private lastCount;
|
|
12
|
-
_isAgentTyping: boolean;
|
|
13
11
|
isAgentTyping: EventEmitter<boolean>;
|
|
14
12
|
newMessage: EventEmitter<string>;
|
|
15
|
-
newMessageText: string;
|
|
16
13
|
messagesContainer: ElementRef;
|
|
17
14
|
autofocus: ElementRef;
|
|
15
|
+
_isAgentTyping: boolean;
|
|
16
|
+
newMessageText: string;
|
|
18
17
|
usernameToColor: {
|
|
19
18
|
[username: string]: string;
|
|
20
19
|
};
|
|
21
20
|
colors: string[];
|
|
22
21
|
colorsIndex: number;
|
|
23
22
|
agentColor: string;
|
|
24
|
-
|
|
23
|
+
sendButtonText: string;
|
|
24
|
+
private lastCount;
|
|
25
|
+
private scrollAtBottom;
|
|
26
|
+
private iterableDiffer;
|
|
27
|
+
constructor(renderer: Renderer2, iterableDiffers: IterableDiffers);
|
|
25
28
|
ngOnInit(): void;
|
|
29
|
+
ngDoCheck(): void;
|
|
26
30
|
ngAfterViewInit(): void;
|
|
27
|
-
updatedMessage(): IChatMessage[];
|
|
28
31
|
ngAfterViewChecked(): void;
|
|
29
32
|
getColor(message: IChatMessage): string;
|
|
30
33
|
shouldAlignRight(message: IChatMessage): boolean;
|
|
@@ -33,6 +36,7 @@ export declare class ChatBoxComponent implements AfterViewChecked, AfterViewInit
|
|
|
33
36
|
onNewMessageFocus(event: boolean): void;
|
|
34
37
|
onKeyup(): void;
|
|
35
38
|
scrollToBottom(): void;
|
|
39
|
+
checkIfScrollAtBottom(): void;
|
|
36
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatBoxComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChatBoxComponent, "app-chat-box", never, { "settings": { "alias": "settings"; "required": false; }; "isTyping": { "alias": "isTyping"; "required": false; }; "messages": { "alias": "messages"; "required": false; };
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatBoxComponent, "app-chat-box", never, { "settings": { "alias": "settings"; "required": false; }; "isTyping": { "alias": "isTyping"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; }, { "isAgentTyping": "isAgentTyping"; "newMessage": "newMessage"; }, never, never, false, never>;
|
|
38
42
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ChatMessageComponent implements OnInit {
|
|
4
4
|
message: string;
|
|
@@ -6,8 +6,8 @@ export declare class ChatMessageComponent implements OnInit {
|
|
|
6
6
|
username: string;
|
|
7
7
|
color: string;
|
|
8
8
|
timestamp: string;
|
|
9
|
-
image: string;
|
|
10
|
-
fallbackImage: string;
|
|
9
|
+
image: string | URL;
|
|
10
|
+
fallbackImage: string | URL;
|
|
11
11
|
focusOn: EventEmitter<any>;
|
|
12
12
|
constructor();
|
|
13
13
|
ngOnInit(): void;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CreateComponent {
|
|
4
|
+
Entities: any;
|
|
4
5
|
CreateNewEntity: EventEmitter<string>;
|
|
5
6
|
isCreateMaximized: boolean;
|
|
6
|
-
Entities: any;
|
|
7
7
|
constructor();
|
|
8
8
|
createNewEntity(type: string): void;
|
|
9
9
|
getEntities(): string[];
|
package/projects/UILibrary/src/app/components/current-activity/current-activity.component.d.ts
CHANGED
|
@@ -16,9 +16,9 @@ export declare class CurrentActivityComponent implements OnInit {
|
|
|
16
16
|
eventName: string;
|
|
17
17
|
newValue?: IActivity;
|
|
18
18
|
}>;
|
|
19
|
+
isActivityMaximized: boolean;
|
|
19
20
|
private eventList;
|
|
20
21
|
private debouncer;
|
|
21
|
-
isActivityMaximized: boolean;
|
|
22
22
|
constructor();
|
|
23
23
|
ngOnInit(): Promise<void>;
|
|
24
24
|
submitActivity(): void;
|
|
@@ -9,11 +9,11 @@ export declare class DurationComponent implements OnInit, OnDestroy {
|
|
|
9
9
|
private _timerId?;
|
|
10
10
|
constructor();
|
|
11
11
|
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
12
13
|
/**
|
|
13
14
|
* @ignore
|
|
14
15
|
*/
|
|
15
16
|
private startCallCounter;
|
|
16
|
-
ngOnDestroy(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<DurationComponent, never>;
|
|
18
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
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { IHoldCounterData } from '../../models/uilibrary.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class HoldTimerComponent implements OnInit, OnDestroy {
|
|
5
5
|
holdCounterData: IHoldCounterData;
|
|
6
6
|
statusText: string;
|
|
7
7
|
callId: string;
|
|
@@ -13,12 +13,12 @@ export declare class HoldtimerComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
/**
|
|
14
14
|
* @ignore
|
|
15
15
|
*/
|
|
16
|
-
|
|
17
|
-
private CaculatePastHoldDuration;
|
|
16
|
+
ngOnDestroy(): void;
|
|
18
17
|
/**
|
|
19
18
|
* @ignore
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
static
|
|
20
|
+
private startCallCounter;
|
|
21
|
+
private CaculatePastHoldDuration;
|
|
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
24
|
}
|
|
@@ -1,25 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { IInteraction } from '../../models/uilibrary.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* @ignore
|
|
6
6
|
*/
|
|
7
7
|
export declare class InteractionComponent implements OnInit {
|
|
8
8
|
interaction: IInteraction;
|
|
9
|
-
newMsgs: IChatMessage[];
|
|
10
9
|
minimizedChanged: EventEmitter<boolean>;
|
|
11
10
|
isAgentTyping: EventEmitter<boolean>;
|
|
12
11
|
newMessage: EventEmitter<string>;
|
|
13
12
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
* @ignore
|
|
14
|
+
*/
|
|
16
15
|
minimized: boolean;
|
|
17
|
-
set _minimized(value: boolean);
|
|
18
|
-
get _minimized(): boolean;
|
|
19
16
|
/**
|
|
20
17
|
* @ignore
|
|
21
18
|
*/
|
|
22
19
|
constructor();
|
|
20
|
+
get _minimized(): boolean;
|
|
21
|
+
set _minimized(value: boolean);
|
|
23
22
|
/**
|
|
24
23
|
* @ignore
|
|
25
24
|
*/
|
|
@@ -40,5 +39,5 @@ export declare class InteractionComponent implements OnInit {
|
|
|
40
39
|
expandKeypress(event: KeyboardEvent): void;
|
|
41
40
|
clickEvent(id: any): void;
|
|
42
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<InteractionComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InteractionComponent, "amc-interaction", never, { "interaction": { "alias": "interaction"; "required": false; };
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InteractionComponent, "amc-interaction", never, { "interaction": { "alias": "interaction"; "required": false; }; }, { "minimizedChanged": "minimizedChanged"; "isAgentTyping": "isAgentTyping"; "newMessage": "newMessage"; }, never, never, false, never>;
|
|
44
43
|
}
|
|
@@ -30,15 +30,15 @@ export declare class PropertyComponent implements OnInit, OnDestroy {
|
|
|
30
30
|
/**
|
|
31
31
|
* @ignore
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
ngOnDestroy(): void;
|
|
34
34
|
/**
|
|
35
35
|
* @ignore
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
initValues(): void;
|
|
38
38
|
/**
|
|
39
39
|
* @ignore
|
|
40
40
|
*/
|
|
41
|
-
|
|
41
|
+
private startCallCounter;
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyComponent, never>;
|
|
43
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
44
|
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { AfterViewChecked, EventEmitter } from '@angular/core';
|
|
2
|
+
import { IScenario } from '../../models/uilibrary.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ScenarioComponent implements AfterViewChecked {
|
|
5
5
|
scenario: IScenario;
|
|
6
|
-
newMsgs: IChatMessage[];
|
|
7
6
|
minimizedChanged: EventEmitter<any>;
|
|
8
7
|
isAgentTyping: EventEmitter<boolean>;
|
|
9
8
|
newMessage: EventEmitter<string>;
|
|
@@ -12,5 +11,5 @@ export declare class ScenarioComponent implements AfterViewChecked {
|
|
|
12
11
|
ngAfterViewChecked(): void;
|
|
13
12
|
onMinimizedChanged(): void;
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScenarioComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScenarioComponent, "amc-scenario", never, { "scenario": { "alias": "scenario"; "required": false; };
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScenarioComponent, "amc-scenario", never, { "scenario": { "alias": "scenario"; "required": false; }; }, { "minimizedChanged": "minimizedChanged"; "isAgentTyping": "isAgentTyping"; "newMessage": "newMessage"; "afterViewChecked": "afterViewChecked"; }, never, never, false, never>;
|
|
16
15
|
}
|
package/projects/UILibrary/src/app/components/search-information/search-information.component.d.ts
CHANGED
|
@@ -18,8 +18,8 @@ export declare class SearchInformationComponent implements OnChanges {
|
|
|
18
18
|
shouldShowAllMultiMatchOptions: boolean;
|
|
19
19
|
constructor();
|
|
20
20
|
ngOnChanges(): void;
|
|
21
|
-
protected renderData(): void;
|
|
22
21
|
onAgentSelectedCallerInformation(event: any): void;
|
|
22
|
+
protected renderData(): void;
|
|
23
23
|
protected parseSearchRecordForNameSingleMatch(searchRecord: api.IRecordItem): any[];
|
|
24
24
|
protected parseSearchRecordForNameMultiMatch(searchRecord: api.IRecordItem): any[];
|
|
25
25
|
protected getEntityImgToDisplay(searchRecord: api.IRecordItem): string;
|
|
@@ -2,6 +2,26 @@ import { IChatSettings } from './chat.settings';
|
|
|
2
2
|
import { IChatMessage } from './chat.message';
|
|
3
3
|
export * from './chat.message';
|
|
4
4
|
export * from './chat.settings';
|
|
5
|
+
/**
|
|
6
|
+
* enum for Value types of PROPERTY.
|
|
7
|
+
*/
|
|
8
|
+
export declare enum ValueType {
|
|
9
|
+
STRING = 0,
|
|
10
|
+
COUNTER = 1
|
|
11
|
+
}
|
|
12
|
+
export interface ILoginData {
|
|
13
|
+
header: string;
|
|
14
|
+
fields: ILoginField[];
|
|
15
|
+
}
|
|
16
|
+
export interface ILoginField {
|
|
17
|
+
name: string;
|
|
18
|
+
type: string;
|
|
19
|
+
value?: string;
|
|
20
|
+
placeholder?: string;
|
|
21
|
+
isRequired?: boolean;
|
|
22
|
+
invalidMessage: string;
|
|
23
|
+
isInvalid?: boolean;
|
|
24
|
+
}
|
|
5
25
|
/**
|
|
6
26
|
* It is collection of Interaction which need to be displayed on scenario component.
|
|
7
27
|
*/
|
|
@@ -230,8 +250,6 @@ export interface IProperty {
|
|
|
230
250
|
* A helper method to make instances of [IProperty]
|
|
231
251
|
*/
|
|
232
252
|
export declare class Property implements IProperty {
|
|
233
|
-
private key;
|
|
234
|
-
private value;
|
|
235
253
|
/**
|
|
236
254
|
* KEY value to be displayed on component.
|
|
237
255
|
*/
|
|
@@ -250,10 +268,8 @@ export declare class Property implements IProperty {
|
|
|
250
268
|
* This flag decides if PROPERTY will be displayed on component or not.
|
|
251
269
|
*/
|
|
252
270
|
visible: boolean;
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
*/
|
|
256
|
-
displayOperation: () => void;
|
|
271
|
+
private key;
|
|
272
|
+
private value;
|
|
257
273
|
/**
|
|
258
274
|
*
|
|
259
275
|
* @param key
|
|
@@ -263,6 +279,10 @@ export declare class Property implements IProperty {
|
|
|
263
279
|
* @param customOperation
|
|
264
280
|
*/
|
|
265
281
|
constructor(key: string, value: any, visible?: boolean, valueType?: ValueType, customOperation?: IEventHandler);
|
|
282
|
+
/**
|
|
283
|
+
* Operation responsible for generating displayKey and dispkayValur from key and value.
|
|
284
|
+
*/
|
|
285
|
+
displayOperation: () => void;
|
|
266
286
|
}
|
|
267
287
|
/**
|
|
268
288
|
* Interface which contains eventName and handler associated with it.
|
|
@@ -272,10 +292,3 @@ export interface IEventHandler {
|
|
|
272
292
|
handler: (eventName: string, eventMetadata?: IMetadata[]) => void;
|
|
273
293
|
eventMetadata?: IMetadata[];
|
|
274
294
|
}
|
|
275
|
-
/**
|
|
276
|
-
* enum for Value types of PROPERTY.
|
|
277
|
-
*/
|
|
278
|
-
export declare enum ValueType {
|
|
279
|
-
STRING = 0,
|
|
280
|
-
COUNTER = 1
|
|
281
|
-
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
1
|
+
import { Injector, DoBootstrap } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "./components/interaction/interaction.component";
|
|
4
4
|
import * as i2 from "./components/scenario/scenario.component";
|
|
5
5
|
import * as i3 from "./components/operation/operation.component";
|
|
6
6
|
import * as i4 from "./components/property/property.component";
|
|
7
|
-
import * as i5 from "./components/
|
|
7
|
+
import * as i5 from "./components/hold-timer/hold-timer.component";
|
|
8
8
|
import * as i6 from "./components/duration/duration.component";
|
|
9
9
|
import * as i7 from "./components/chat-box/chat-box.component";
|
|
10
10
|
import * as i8 from "./components/chat-message/chat-message.component";
|
|
@@ -18,13 +18,13 @@ import * as i15 from "./components/search-information/search-information.compone
|
|
|
18
18
|
import * as i16 from "@angular/platform-browser";
|
|
19
19
|
import * as i17 from "@angular/common";
|
|
20
20
|
import * as i18 from "@angular/forms";
|
|
21
|
-
import * as i19 from "@angular/material/
|
|
22
|
-
export declare class UILibraryModule {
|
|
21
|
+
import * as i19 from "@angular/material/tabs";
|
|
22
|
+
export declare class UILibraryModule implements DoBootstrap {
|
|
23
23
|
private injector;
|
|
24
24
|
constructor(injector: Injector);
|
|
25
25
|
ngDoBootstrap(app: any): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<UILibraryModule, never>;
|
|
27
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UILibraryModule, [typeof i1.InteractionComponent, typeof i2.ScenarioComponent, typeof i3.OperationComponent, typeof i4.PropertyComponent, typeof i5.
|
|
27
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UILibraryModule, [typeof i1.InteractionComponent, typeof i2.ScenarioComponent, typeof i3.OperationComponent, typeof i4.PropertyComponent, typeof i5.HoldTimerComponent, typeof i6.DurationComponent, typeof i7.ChatBoxComponent, typeof i8.ChatMessageComponent, typeof i9.DispositionComponent, typeof i10.ActivityComponent, typeof i11.LoginComponent, typeof i12.CreateComponent, typeof i13.RecentActivityComponent, typeof i14.CurrentActivityComponent, typeof i15.SearchInformationComponent], [typeof i16.BrowserModule, typeof i17.CommonModule, typeof i18.FormsModule, typeof i19.MatTabsModule], [typeof i2.ScenarioComponent, typeof i9.DispositionComponent, typeof i11.LoginComponent, typeof i12.CreateComponent, typeof i13.RecentActivityComponent, typeof i14.CurrentActivityComponent, typeof i15.SearchInformationComponent]>;
|
|
28
28
|
static ɵinj: i0.ɵɵInjectorDeclaration<UILibraryModule>;
|
|
29
29
|
}
|
|
30
30
|
export * from './models/uilibrary.model';
|