@tuki-io/tuki-widgets 0.0.126 → 0.0.127
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.
- package/contact-center/cc-readiness/cc-readiness.module.d.ts +19 -0
- package/contact-center/cc-readiness/cc-readiness.service.d.ts +12 -0
- package/contact-center/cc-readiness/components/card/card.component.d.ts +6 -0
- package/contact-center/cc-readiness/types/cc-readiness.d.ts +20 -0
- package/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.d.ts +52 -0
- package/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.d.ts +26 -0
- package/contact-center/index.d.ts +5 -0
- package/contact-center/public-api.d.ts +3 -0
- package/contact-center/shared/api.endpoints.d.ts +6 -0
- package/contact-center/shared/api.service.d.ts +20 -0
- package/contact-center/shared/material.module.d.ts +15 -0
- package/contact-center/shared/shared.module.d.ts +10 -0
- package/esm2020/contact-center/cc-readiness/cc-readiness.module.mjs +71 -0
- package/esm2020/contact-center/cc-readiness/cc-readiness.service.mjs +35 -0
- package/esm2020/contact-center/cc-readiness/components/card/card.component.mjs +13 -0
- package/esm2020/contact-center/cc-readiness/types/cc-readiness.mjs +5 -0
- package/esm2020/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.mjs +187 -0
- package/esm2020/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.mjs +47 -0
- package/esm2020/contact-center/public-api.mjs +4 -0
- package/esm2020/contact-center/shared/api.endpoints.mjs +7 -0
- package/esm2020/contact-center/shared/api.service.mjs +86 -0
- package/esm2020/contact-center/shared/material.module.mjs +76 -0
- package/esm2020/contact-center/shared/shared.module.mjs +33 -0
- package/esm2020/contact-center/tuki-io-tuki-widgets-contact-center.mjs +5 -0
- package/esm2020/di2mt/shared/services/api.service.mjs +1 -1
- package/esm2020/users-list/src/users-list.component.mjs +3 -3
- package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs +433 -0
- package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +2 -2
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs +430 -0
- package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +2 -2
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuki-io/tuki-widgets",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.127",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^15.2.0",
|
|
6
6
|
"@angular/core": "^15.2.0",
|
|
@@ -28,6 +28,14 @@
|
|
|
28
28
|
"node": "./fesm2015/tuki-io-tuki-widgets.mjs",
|
|
29
29
|
"default": "./fesm2020/tuki-io-tuki-widgets.mjs"
|
|
30
30
|
},
|
|
31
|
+
"./contact-center": {
|
|
32
|
+
"types": "./contact-center/index.d.ts",
|
|
33
|
+
"esm2020": "./esm2020/contact-center/tuki-io-tuki-widgets-contact-center.mjs",
|
|
34
|
+
"es2020": "./fesm2020/tuki-io-tuki-widgets-contact-center.mjs",
|
|
35
|
+
"es2015": "./fesm2015/tuki-io-tuki-widgets-contact-center.mjs",
|
|
36
|
+
"node": "./fesm2015/tuki-io-tuki-widgets-contact-center.mjs",
|
|
37
|
+
"default": "./fesm2020/tuki-io-tuki-widgets-contact-center.mjs"
|
|
38
|
+
},
|
|
31
39
|
"./di2mt": {
|
|
32
40
|
"types": "./di2mt/index.d.ts",
|
|
33
41
|
"esm2020": "./esm2020/di2mt/tuki-io-tuki-widgets-di2mt.mjs",
|