@vgroup/dialbox 0.6.83 → 0.6.85
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/esm2020/lib/components/call-progress/call-progress.component.mjs +168 -129
- package/esm2020/lib/dialbox.component.mjs +13 -4
- package/esm2020/lib/environments/environments.mjs +10 -10
- package/esm2020/lib/service/twilio.service.mjs +2 -2
- package/fesm2015/vgroup-dialbox.mjs +193 -145
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +189 -141
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +4 -4
- package/lib/dialbox.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -39,7 +39,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
39
39
|
currentCall: any;
|
|
40
40
|
isConference: boolean;
|
|
41
41
|
isOutgoingCall: boolean;
|
|
42
|
-
incomingCallDiv: boolean;
|
|
43
42
|
incomingCallInitiated: EventEmitter<void>;
|
|
44
43
|
isLoadershown: EventEmitter<boolean>;
|
|
45
44
|
endIncomingCallEvent: EventEmitter<void>;
|
|
@@ -107,10 +106,14 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
107
106
|
};
|
|
108
107
|
isUnholdConferenceCall: any;
|
|
109
108
|
conferenceCallNullCount: number;
|
|
109
|
+
allConParticipentList: any;
|
|
110
|
+
conferenceCallIDForParticipantList: any;
|
|
110
111
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
111
112
|
ngOnInit(): void;
|
|
112
113
|
ngOnChanges(changes: SimpleChanges): void;
|
|
113
114
|
rejoinHost(callInfo: any): Promise<void>;
|
|
115
|
+
updatedParticipantList(participant: any): void;
|
|
116
|
+
participantListIndo(participants: any): Promise<void>;
|
|
114
117
|
showCallingToast(number: string): void;
|
|
115
118
|
getStatus(res: any): boolean;
|
|
116
119
|
GetContactsList(): void;
|
|
@@ -171,11 +174,8 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
171
174
|
stopRecordingTimer(): void;
|
|
172
175
|
getFormattedTime(): string;
|
|
173
176
|
pollCallStatus(callAuthId: string): void;
|
|
174
|
-
getUserInformation(id: any): void;
|
|
175
177
|
selectedIncomingCallInfo(data: any): void;
|
|
176
|
-
getHoldCallList(): any[];
|
|
177
178
|
onClickExpand(data: any): void;
|
|
178
|
-
setIncomingCallStatus(data: any): void;
|
|
179
179
|
toggleSearch(): void;
|
|
180
180
|
applyFilter(): void;
|
|
181
181
|
checkTextHeight(): void;
|
|
@@ -79,6 +79,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
79
79
|
shakeDedicatedBtn: boolean;
|
|
80
80
|
isSmartDialCall: boolean;
|
|
81
81
|
private isInitialized;
|
|
82
|
+
contactNameForLoader: string;
|
|
82
83
|
beforeUnloadHandler(event: Event): void;
|
|
83
84
|
constructor(twilioService: TwilioService, extService: ExtensionService, ipService: IpAddressService, extensionService: ExtensionService, cdk: ChangeDetectorRef, router: Router, incomeingCallSocketService: IncomeingCallSocketService);
|
|
84
85
|
private getRemoveParticipants;
|