@vgroup/dialbox 0.6.62 → 0.6.64
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 +77 -50
- package/esm2020/lib/dialbox.component.mjs +56 -46
- package/fesm2015/vgroup-dialbox.mjs +133 -98
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +131 -94
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +12 -2
- package/package.json +1 -1
|
@@ -90,6 +90,12 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
90
90
|
isReasonChecked: boolean;
|
|
91
91
|
isAllAccepted: boolean;
|
|
92
92
|
leaveReason: string;
|
|
93
|
+
leaveHour: string;
|
|
94
|
+
leaveMinute: string;
|
|
95
|
+
hours: string[];
|
|
96
|
+
minutes: string[];
|
|
97
|
+
showHourDropdown: boolean;
|
|
98
|
+
showMinuteDropdown: boolean;
|
|
93
99
|
selectedConf: any;
|
|
94
100
|
showConferenceWarningModal: boolean;
|
|
95
101
|
pendingCallData: any;
|
|
@@ -140,8 +146,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
140
146
|
showDialAlert(message: string): void;
|
|
141
147
|
getAllParticipants(conferenceId: string): Promise<void>;
|
|
142
148
|
swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
|
|
143
|
-
isMergeCallAllowed(): boolean;
|
|
144
|
-
mergeCalls(): Promise<void>;
|
|
145
149
|
hasDetailedInfo(callData: any): boolean;
|
|
146
150
|
onCallInputs(num: any): void;
|
|
147
151
|
onCallInputEnter(ev: any): void;
|
|
@@ -172,6 +176,12 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
172
176
|
showDisconnectModal: boolean;
|
|
173
177
|
onCallDisconnected(): void;
|
|
174
178
|
endConference(): void;
|
|
179
|
+
/** Combines the two 24-hour selects into leaveReason (HH:MM) */
|
|
180
|
+
onTimeChange(): void;
|
|
181
|
+
toggleHourDropdown(): void;
|
|
182
|
+
toggleMinuteDropdown(): void;
|
|
183
|
+
selectHour(h: string): void;
|
|
184
|
+
selectMinute(m: string): void;
|
|
175
185
|
leaveConference(): void;
|
|
176
186
|
convertHHMMToMinutes(time: string): number;
|
|
177
187
|
onRejectCall(callInfo: any): void;
|