@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgroup/dialbox",
3
- "version": "0.6.62",
3
+ "version": "0.6.64",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",