@webex/cc-components 1.28.0-next.25 → 1.28.0-next.26

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.
@@ -0,0 +1,3 @@
1
+ import './campaign-error-dialog.style.scss';
2
+ declare const CampaignErrorDialogWithMetrics: any;
3
+ export default CampaignErrorDialogWithMetrics;
@@ -0,0 +1,8 @@
1
+ export type CampaignErrorType = 'ACCEPT_FAILED' | 'SKIP_FAILED' | 'REMOVE_FAILED';
2
+ export interface CampaignErrorDialogProps {
3
+ errorType: CampaignErrorType;
4
+ isOpen: boolean;
5
+ onClose: () => void;
6
+ }
7
+ export declare const ERROR_TITLES: Record<CampaignErrorType, string>;
8
+ export declare const ERROR_MESSAGE = "We ran into an issue connecting you with this contact. Check your network connection and try again.";
@@ -5,9 +5,11 @@ import CallControlCADComponent from './components/task/CallControlCAD/call-contr
5
5
  import IncomingTaskComponent from './components/task/IncomingTask/incoming-task';
6
6
  import TaskListComponent from './components/task/TaskList/task-list';
7
7
  import OutdialCallComponent from './components/task/OutdialCall/outdial-call';
8
+ import CampaignErrorDialogComponent from './components/task/CampaignErrorDialog/campaign-error-dialog';
8
9
  import RealTimeTranscriptComponent from './components/task/RealTimeTranscript/real-time-transcript';
9
- export { UserStateComponent, StationLoginComponent, CallControlComponent, CallControlCADComponent, IncomingTaskComponent, TaskListComponent, OutdialCallComponent, RealTimeTranscriptComponent, };
10
+ export { UserStateComponent, StationLoginComponent, CallControlComponent, CallControlCADComponent, IncomingTaskComponent, TaskListComponent, OutdialCallComponent, CampaignErrorDialogComponent, RealTimeTranscriptComponent, };
10
11
  export * from './components/StationLogin/constants';
11
12
  export * from './components/StationLogin/station-login.types';
12
13
  export * from './components/UserState/user-state.types';
13
14
  export * from './components/task/task.types';
15
+ export * from './components/task/CampaignErrorDialog/campaign-error-dialog.types';