@webex/cc-components 1.28.0-ccwidgets.75 → 1.28.0-ccwidgets.77

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,11 @@ export interface IStationLoginProps {
90
90
  * Handler for Contact Center logout
91
91
  */
92
92
  onCCSignOut?: () => void;
93
+ /**
94
+ * If this boolean is false, the agent will not be logged out from the station but the onCCSignOut will be called.
95
+ * By default, it is true which means the agent will be logged out from the station and onCCSignOut will be called.
96
+ */
97
+ doStationLogout?: boolean;
93
98
  /**
94
99
  * The team id for agent login
95
100
  */
@@ -7,7 +7,7 @@ declare const handleModals: (modalRef: any, ccSignOutModalRef: any, saveConfirmD
7
7
  * Handler for the Contact Center modal continue button
8
8
  * Closes the dialog if it is currently open and calls the provided callback function
9
9
  */
10
- declare const continueClicked: (modalRef: any, callback: any) => void;
10
+ declare const continueClicked: (modalRef: any, callback: any, setShowCCSignOutModal: any) => void;
11
11
  /**
12
12
  * Handler for the Contact Center logout confirmation modal cancel button
13
13
  *
@@ -32,4 +32,5 @@ declare const handleLoginOptionChanged: (event: any, setDeviceType: any, setSele
32
32
  declare const handleDNInputChanged: (event: any, setDialNumberValue: any, setDialNumber: any, setShowDNError: any, setDNErrorText: any, dialNumberRegex: any, setCurrentLoginOptions: any, selectedDeviceType: any, logger: any) => void;
33
33
  declare const handleTeamSelectChanged: (event: any, setSelectedTeamId: any, setTeamId: any, setCurrentLoginOptions: any, setTeam: any, logger: any) => void;
34
34
  declare const handleOnCCSignOut: (ccSignOutModalRef: React.RefObject<HTMLDialogElement>, onCCSignOut: any) => void;
35
- export { handleModals, continueClicked, ccCancelButtonClicked, updateDialNumberLabel, validateDialNumber, createStationLoginRefs, saveConfirmCancelClicked, handleSaveConfirm, handleLoginOptionChanged, handleDNInputChanged, handleTeamSelectChanged, handleOnCCSignOut, };
35
+ declare const handleCCSignoutKeyDown: (event: React.KeyboardEvent<HTMLDialogElement>, setShowCCSignOutModal: (show: boolean) => void) => void;
36
+ export { handleModals, continueClicked, ccCancelButtonClicked, updateDialNumberLabel, validateDialNumber, createStationLoginRefs, saveConfirmCancelClicked, handleSaveConfirm, handleLoginOptionChanged, handleDNInputChanged, handleTeamSelectChanged, handleOnCCSignOut, handleCCSignoutKeyDown, };
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ declare const ConsultTransferEmptyState: React.FC<{
3
+ message: string;
4
+ }>;
5
+ export default ConsultTransferEmptyState;