@webex/cc-components 1.28.0-ccwidgets.124 → 1.28.0-ccwidgets.125
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.
|
@@ -164,10 +164,16 @@ export interface IStationLoginProps {
|
|
|
164
164
|
* The selected team ID for login
|
|
165
165
|
*/
|
|
166
166
|
selectedTeamId: string;
|
|
167
|
+
/**
|
|
168
|
+
* If true, hides the Desktop login mode from the dropdown options.
|
|
169
|
+
* Applies in both login screen and profile mode.
|
|
170
|
+
* Default: undefined (shows Desktop mode)
|
|
171
|
+
*/
|
|
172
|
+
hideDesktopLogin?: boolean;
|
|
167
173
|
}
|
|
168
174
|
export interface LoginOptionsState {
|
|
169
175
|
deviceType: string;
|
|
170
176
|
dialNumber: string;
|
|
171
177
|
teamId: string;
|
|
172
178
|
}
|
|
173
|
-
export type StationLoginComponentProps = Pick<IStationLoginProps, 'teams' | 'loginOptions' | 'login' | 'logout' | 'loginSuccess' | 'loginFailure' | 'logoutSuccess' | 'setDeviceType' | 'setDialNumber' | 'setTeam' | 'isAgentLoggedIn' | 'handleContinue' | 'deviceType' | 'dialNumberRegex' | 'showMultipleLoginAlert' | 'onCCSignOut' | 'setTeamId' | 'logger' | 'profileMode' | 'originalLoginOptions' | 'currentLoginOptions' | 'setCurrentLoginOptions' | 'isLoginOptionsChanged' | 'saveLoginOptions' | 'saveError' | 'setSelectedDeviceType' | 'selectedDeviceType' | 'dialNumberValue' | 'setDialNumberValue' | 'setSelectedTeamId' | 'selectedTeamId'>;
|
|
179
|
+
export type StationLoginComponentProps = Pick<IStationLoginProps, 'teams' | 'loginOptions' | 'login' | 'logout' | 'loginSuccess' | 'loginFailure' | 'logoutSuccess' | 'setDeviceType' | 'setDialNumber' | 'setTeam' | 'isAgentLoggedIn' | 'handleContinue' | 'deviceType' | 'dialNumberRegex' | 'showMultipleLoginAlert' | 'onCCSignOut' | 'setTeamId' | 'logger' | 'profileMode' | 'originalLoginOptions' | 'currentLoginOptions' | 'setCurrentLoginOptions' | 'isLoginOptionsChanged' | 'saveLoginOptions' | 'saveError' | 'setSelectedDeviceType' | 'selectedDeviceType' | 'dialNumberValue' | 'setDialNumberValue' | 'setSelectedTeamId' | 'selectedTeamId' | 'hideDesktopLogin'>;
|