@webex/cc-components 1.28.0-ccwidgets.98 → 1.28.0-next.1

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.
Files changed (26) hide show
  1. package/dist/index.js +125 -125
  2. package/dist/index.js.LICENSE.txt +20 -0
  3. package/dist/types/components/StationLogin/station-login.d.ts +2 -4
  4. package/dist/types/components/StationLogin/station-login.types.d.ts +9 -3
  5. package/dist/types/components/StationLogin/station-login.utils.d.ts +10 -10
  6. package/dist/types/components/UserState/user-state.d.ts +2 -4
  7. package/dist/types/components/UserState/user-state.utils.d.ts +10 -8
  8. package/dist/types/components/task/AutoWrapupTimer/AutoWrapupTimer.utils.d.ts +25 -0
  9. package/dist/types/components/task/CallControl/CallControlCustom/call-control-custom.utils.d.ts +136 -0
  10. package/dist/types/components/task/CallControl/CallControlCustom/consult-transfer-dial-number.d.ts +5 -0
  11. package/dist/types/components/task/CallControl/CallControlCustom/consult-transfer-popover-hooks.d.ts +47 -0
  12. package/dist/types/components/task/CallControl/call-control.d.ts +2 -4
  13. package/dist/types/components/task/CallControl/call-control.utils.d.ts +60 -0
  14. package/dist/types/components/task/CallControlCAD/call-control-cad.d.ts +2 -4
  15. package/dist/types/components/task/IncomingTask/incoming-task.d.ts +2 -4
  16. package/dist/types/components/task/IncomingTask/incoming-task.utils.d.ts +1 -1
  17. package/dist/types/components/task/OutdialCall/constants.d.ts +9 -0
  18. package/dist/types/components/task/OutdialCall/outdial-call.d.ts +2 -4
  19. package/dist/types/components/task/Task/task.utils.d.ts +9 -9
  20. package/dist/types/components/task/TaskList/task-list.d.ts +2 -4
  21. package/dist/types/components/task/TaskList/task-list.utils.d.ts +7 -7
  22. package/dist/types/components/task/constants.d.ts +12 -0
  23. package/dist/types/components/task/task.types.d.ts +190 -53
  24. package/dist/wc.js +124 -124
  25. package/dist/wc.js.LICENSE.txt +20 -0
  26. package/package.json +6 -3
@@ -4,6 +4,26 @@
4
4
  http://jedwatson.github.io/classnames
5
5
  */
6
6
 
7
+ /*!**********************!*\
8
+ !*** ./src/index.ts ***!
9
+ \**********************/
10
+
11
+ /*!************************!*\
12
+ !*** external "react" ***!
13
+ \************************/
14
+
15
+ /*!*****************************!*\
16
+ !*** ./src/withMetrics.tsx ***!
17
+ \*****************************/
18
+
19
+ /*!******************************!*\
20
+ !*** ./src/metricsLogger.ts ***!
21
+ \******************************/
22
+
23
+ /*!**********************************!*\
24
+ !*** external "@webex/cc-store" ***!
25
+ \**********************************/
26
+
7
27
  /**
8
28
  * @license
9
29
  * Copyright 2017 Google LLC
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@webex/cc-components",
3
3
  "description": "Webex Contact Center UI Components Library for your custom contact center solutions",
4
- "version": "1.28.0-ccwidgets.98",
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.1",
5
6
  "main": "dist/index.js",
6
7
  "types": "dist/types/index.d.ts",
7
8
  "publishConfig": {
@@ -30,12 +31,14 @@
30
31
  "build:src": "yarn run clean:dist && webpack",
31
32
  "build:watch": "webpack --watch",
32
33
  "test:unit": "tsc --project tsconfig.test.json && jest --coverage",
33
- "test:styles": "eslint"
34
+ "test:styles": "eslint",
35
+ "deploy:npm": "yarn npm publish"
34
36
  },
35
37
  "dependencies": {
36
38
  "@momentum-ui/illustrations": "^1.24.0",
37
39
  "@r2wc/react-to-web-component": "2.0.3",
38
- "@webex/cc-store": "1.28.0-ccwidgets.98"
40
+ "@webex/cc-store": "1.28.0-next.1",
41
+ "@webex/cc-ui-logging": "1.28.0-next.1"
39
42
  },
40
43
  "devDependencies": {
41
44
  "@babel/core": "7.25.2",