@webex/cc-components 1.28.0-next.41 → 1.28.0-next.43

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,11 @@
1
+ export declare const E911ModalLabels: {
2
+ TITLE: string;
3
+ WARNING_TITLE: string;
4
+ WARNING_MESSAGE: string;
5
+ DIALING_TITLE: string;
6
+ DIALING_MESSAGE: string;
7
+ CHECKBOX_LABEL: string;
8
+ CANCEL: string;
9
+ SAVE_AND_CONTINUE: string;
10
+ SAVE_ERROR_MESSAGE: string;
11
+ };
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { E911ModalProps } from './e911-modal.types';
3
+ import './e911-modal.style.scss';
4
+ declare const E911Modal: React.FC<E911ModalProps>;
5
+ export default E911Modal;
@@ -0,0 +1,5 @@
1
+ export interface E911ModalProps {
2
+ isOpen: boolean;
3
+ onSaveAndContinue: () => Promise<void>;
4
+ onCancel: () => void;
5
+ }
@@ -9,9 +9,11 @@ import CampaignErrorDialogComponent from './components/task/CampaignErrorDialog/
9
9
  import CampaignCountdownComponent from './components/task/CampaignCountdown/campaign-countdown';
10
10
  import CampaignTaskComponent from './components/task/CampaignTask/campaign-task';
11
11
  import RealTimeTranscriptComponent from './components/task/RealTimeTranscript/real-time-transcript';
12
+ import E911Modal from './components/StationLogin/E911Modal/e911-modal';
12
13
  import AIAssistantComponent from './components/AIAssistant/ai-assistant';
13
- export { UserStateComponent, StationLoginComponent, CallControlComponent, CallControlCADComponent, IncomingTaskComponent, TaskListComponent, OutdialCallComponent, CampaignErrorDialogComponent, CampaignCountdownComponent, CampaignTaskComponent, RealTimeTranscriptComponent, AIAssistantComponent, };
14
+ export { UserStateComponent, StationLoginComponent, CallControlComponent, CallControlCADComponent, IncomingTaskComponent, TaskListComponent, OutdialCallComponent, CampaignErrorDialogComponent, CampaignCountdownComponent, CampaignTaskComponent, RealTimeTranscriptComponent, E911Modal, AIAssistantComponent, };
14
15
  export * from './components/StationLogin/constants';
16
+ export * from './components/StationLogin/E911Modal/e911-modal.types';
15
17
  export * from './components/StationLogin/station-login.types';
16
18
  export * from './components/UserState/user-state.types';
17
19
  export * from './components/task/task.types';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@webex/cc-components",
3
3
  "description": "Webex Contact Center UI Components Library for your custom contact center solutions",
4
4
  "license": "Cisco's General Terms (https://www.cisco.com/site/us/en/about/legal/contract-experience/index.html)",
5
- "version": "1.28.0-next.41",
5
+ "version": "1.28.0-next.43",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/types/index.d.ts",
8
8
  "publishConfig": {
@@ -37,8 +37,8 @@
37
37
  "dependencies": {
38
38
  "@momentum-ui/illustrations": "^1.24.0",
39
39
  "@r2wc/react-to-web-component": "2.0.3",
40
- "@webex/cc-store": "1.28.0-next.25",
41
- "@webex/cc-ui-logging": "1.28.0-next.26",
40
+ "@webex/cc-store": "1.28.0-next.27",
41
+ "@webex/cc-ui-logging": "1.28.0-next.28",
42
42
  "adaptivecards": "^3.0.0",
43
43
  "react-error-boundary": "^6.0.0",
44
44
  "swiper": "^12.1.2"
@@ -54,7 +54,7 @@
54
54
  "@testing-library/react": "16.0.1",
55
55
  "@types/jest": "29.5.14",
56
56
  "@types/react-test-renderer": "18",
57
- "@webex/test-fixtures": "0.0.0-next.0",
57
+ "@webex/test-fixtures": "0.0.0-next.1",
58
58
  "babel-loader": "9.2.1",
59
59
  "eslint": "^9.20.1",
60
60
  "eslint-config-prettier": "^10.0.1",