@tuki-io/tuki-widgets 0.0.134 → 0.0.136
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/README.md +9 -10
- 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/di2mt/api/api.endpoints.d.ts +31 -0
- package/di2mt/index.d.ts +5 -0
- package/di2mt/public-api.d.ts +13 -0
- package/di2mt/shared/components/card/card.component.d.ts +6 -0
- package/di2mt/shared/components/chart-card/chart-card.component.d.ts +23 -0
- package/di2mt/shared/components/stat-card/stat-card.component.d.ts +14 -0
- package/di2mt/shared/components/status-list-card/status-list-card.component.d.ts +15 -0
- package/di2mt/shared/components/summary-card/summary-card.component.d.ts +9 -0
- package/di2mt/shared/components/table-filters/table-filters.component.d.ts +14 -0
- package/di2mt/shared/constants/app.constants.d.ts +74 -0
- package/di2mt/shared/material.module.d.ts +15 -0
- package/di2mt/shared/services/api.service.d.ts +20 -0
- package/di2mt/shared/shared.module.d.ts +16 -0
- package/di2mt/shared/types/constants.d.ts +15 -0
- package/di2mt/shared/types/data-table.d.ts +5 -0
- package/di2mt/shared/types/table/filter.d.ts +16 -0
- package/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.d.ts +11 -0
- package/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.d.ts +69 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.module.d.ts +15 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.service.d.ts +84 -0
- package/di2mt/widgets/site-upgrade/types/user-upgrade.d.ts +26 -0
- package/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.d.ts +18 -0
- package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.d.ts +15 -0
- package/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.d.ts +18 -0
- package/di2mt/widgets/upgrade-overview/types/upgrade-overview.d.ts +56 -0
- package/di2mt/widgets/upgrade-overview/upgrade-overview.module.d.ts +15 -0
- package/di2mt/widgets/upgrade-overview/upgrade-overview.service.d.ts +17 -0
- package/di2mt/widgets/user-upgrade/types/user-upgrade.d.ts +32 -0
- package/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.d.ts +79 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.module.d.ts +16 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.service.d.ts +41 -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/api/api.endpoints.mjs +32 -0
- package/esm2020/di2mt/public-api.mjs +24 -0
- package/esm2020/di2mt/shared/components/card/card.component.mjs +13 -0
- package/esm2020/di2mt/shared/components/chart-card/chart-card.component.mjs +66 -0
- package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +47 -0
- package/esm2020/di2mt/shared/components/status-list-card/status-list-card.component.mjs +43 -0
- package/esm2020/di2mt/shared/components/summary-card/summary-card.component.mjs +36 -0
- package/esm2020/di2mt/shared/components/table-filters/table-filters.component.mjs +37 -0
- package/esm2020/di2mt/shared/constants/app.constants.mjs +95 -0
- package/esm2020/di2mt/shared/material.module.mjs +76 -0
- package/esm2020/di2mt/shared/services/api.service.mjs +86 -0
- package/esm2020/di2mt/shared/shared.module.mjs +63 -0
- package/esm2020/di2mt/shared/types/constants.mjs +20 -0
- package/esm2020/di2mt/shared/types/data-table.mjs +2 -0
- package/esm2020/di2mt/shared/types/table/filter.mjs +2 -0
- package/esm2020/di2mt/tuki-io-tuki-widgets-di2mt.mjs +5 -0
- package/esm2020/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.mjs +38 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.mjs +433 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.module.mjs +53 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.service.mjs +92 -0
- package/esm2020/di2mt/widgets/site-upgrade/types/user-upgrade.mjs +3 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.mjs +64 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.mjs +64 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.mjs +83 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.mjs +45 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.mjs +45 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.mjs +86 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.mjs +74 -0
- package/esm2020/di2mt/widgets/upgrade-overview/types/upgrade-overview.mjs +2 -0
- package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.module.mjs +59 -0
- package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.service.mjs +82 -0
- package/esm2020/di2mt/widgets/user-upgrade/types/user-upgrade.mjs +3 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.mjs +376 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.module.mjs +59 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.service.mjs +80 -0
- package/esm2020/lib/widgets.component.mjs +22 -0
- package/esm2020/lib/widgets.module.mjs +21 -0
- package/esm2020/lib/widgets.service.mjs +14 -0
- package/esm2020/public-api.mjs +7 -0
- package/esm2020/tuki-io-tuki-widgets.mjs +5 -0
- package/esm2020/user-device-manage/public-api.mjs +9 -0
- package/esm2020/user-device-manage/src/app.constants.mjs +97 -0
- package/esm2020/user-device-manage/src/classes/device.mjs +85 -0
- package/esm2020/user-device-manage/src/classes/deviceProfile.mjs +34 -0
- package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +2 -0
- package/esm2020/user-device-manage/src/classes/line-association.mjs +121 -0
- package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +10 -0
- package/esm2020/user-device-manage/src/classes/line-directory.mjs +27 -0
- package/esm2020/user-device-manage/src/classes/line.mjs +18 -0
- package/esm2020/user-device-manage/src/classes/notification.mjs +32 -0
- package/esm2020/user-device-manage/src/classes/recording-options.mjs +7 -0
- package/esm2020/user-device-manage/src/classes/simplified-user.mjs +111 -0
- package/esm2020/user-device-manage/src/classes/site-defaults.mjs +21 -0
- package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +32 -0
- package/esm2020/user-device-manage/src/classes/types.mjs +24 -0
- package/esm2020/user-device-manage/src/common-functions.mjs +19 -0
- package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +34 -0
- package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +31 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +16 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +64 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +179 -0
- package/esm2020/user-device-manage/src/device-info/device-info.component.mjs +43 -0
- package/esm2020/user-device-manage/src/device-list/device-list.component.mjs +24 -0
- package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +141 -0
- package/esm2020/user-device-manage/src/environments/environment.mjs +11 -0
- package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +36 -0
- package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -0
- package/esm2020/user-device-manage/src/material.module.mjs +192 -0
- package/esm2020/user-device-manage/src/notifications/notification.component.mjs +35 -0
- package/esm2020/user-device-manage/src/pipes/mac-address.pipe.mjs +26 -0
- package/esm2020/user-device-manage/src/services/api.service.mjs +79 -0
- package/esm2020/user-device-manage/src/services/device.service.mjs +83 -0
- package/esm2020/user-device-manage/src/services/dns.service.mjs +104 -0
- package/esm2020/user-device-manage/src/services/line.service.mjs +76 -0
- package/esm2020/user-device-manage/src/services/notification.service.mjs +62 -0
- package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-device-manage/src/services/site-settings.service.mjs +70 -0
- package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +197 -0
- package/esm2020/user-device-manage/src/services/user.service.mjs +311 -0
- package/esm2020/user-device-manage/src/services/utils.service.mjs +87 -0
- package/esm2020/user-device-manage/src/services/validation.service.mjs +760 -0
- package/esm2020/user-device-manage/src/shared/tk-page-section/page-section.component.mjs +13 -0
- package/esm2020/user-device-manage/src/user-device-manage.module.mjs +116 -0
- package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/user-device-manage/tuki-io-tuki-widgets-user-device-manage.mjs +5 -0
- package/esm2020/user-manage/public-api.mjs +7 -0
- package/esm2020/user-manage/src/app.constants.mjs +54 -0
- package/esm2020/user-manage/src/classes/device.mjs +37 -0
- package/esm2020/user-manage/src/classes/line-association-interface.mjs +2 -0
- package/esm2020/user-manage/src/classes/line-association.mjs +110 -0
- package/esm2020/user-manage/src/classes/line-call-info-display.mjs +10 -0
- package/esm2020/user-manage/src/classes/line-directory.mjs +28 -0
- package/esm2020/user-manage/src/classes/line.mjs +18 -0
- package/esm2020/user-manage/src/classes/notification.mjs +32 -0
- package/esm2020/user-manage/src/classes/pagination.mjs +8 -0
- package/esm2020/user-manage/src/classes/recording-options.mjs +7 -0
- package/esm2020/user-manage/src/classes/simplified-user.mjs +109 -0
- package/esm2020/user-manage/src/classes/table-data.mjs +2 -0
- package/esm2020/user-manage/src/classes/translation-pattern.mjs +32 -0
- package/esm2020/user-manage/src/classes/user-list.mjs +10 -0
- package/esm2020/user-manage/src/common-functions.mjs +19 -0
- package/esm2020/user-manage/src/device-list/device-list.component.mjs +26 -0
- package/esm2020/user-manage/src/device-list/device-row/device-row.component.mjs +33 -0
- package/esm2020/user-manage/src/environments/environment.mjs +11 -0
- package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +36 -0
- package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +81 -0
- package/esm2020/user-manage/src/material.module.mjs +188 -0
- package/esm2020/user-manage/src/notifications/notification.component.mjs +35 -0
- package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-manage/src/services/api.service.mjs +79 -0
- package/esm2020/user-manage/src/services/dns.service.mjs +110 -0
- package/esm2020/user-manage/src/services/line.service.mjs +34 -0
- package/esm2020/user-manage/src/services/notification.service.mjs +62 -0
- package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-manage/src/services/site-settings.service.mjs +36 -0
- package/esm2020/user-manage/src/services/sorting-utils.service.mjs +197 -0
- package/esm2020/user-manage/src/services/user.service.mjs +249 -0
- package/esm2020/user-manage/src/services/users-search.service.mjs +50 -0
- package/esm2020/user-manage/src/services/utils.service.mjs +73 -0
- package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +65 -0
- package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +75 -0
- package/esm2020/user-manage/src/user-info/user-info.component.mjs +23 -0
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +219 -0
- package/esm2020/user-manage/src/user-manage.module.mjs +102 -0
- package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +43 -0
- package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +5 -0
- package/esm2020/users-list/public-api.mjs +9 -0
- package/esm2020/users-list/src/app.constants.mjs +54 -0
- package/esm2020/users-list/src/classes/app-location.mjs +32 -0
- package/esm2020/users-list/src/classes/device.mjs +7 -0
- package/esm2020/users-list/src/classes/line.mjs +18 -0
- package/esm2020/users-list/src/classes/move-user.mjs +178 -0
- package/esm2020/users-list/src/classes/notification.mjs +31 -0
- package/esm2020/users-list/src/classes/pagination.mjs +8 -0
- package/esm2020/users-list/src/classes/simlified-user.mjs +50 -0
- package/esm2020/users-list/src/classes/table-data.mjs +2 -0
- package/esm2020/users-list/src/classes/user-list.mjs +14 -0
- package/esm2020/users-list/src/components/table-toolbar/table-toolbar.component.mjs +25 -0
- package/esm2020/users-list/src/material.module.mjs +216 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +38 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +23 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +189 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +38 -0
- package/esm2020/users-list/src/services/api-webex.service.mjs +18 -0
- package/esm2020/users-list/src/services/api.service.mjs +78 -0
- package/esm2020/users-list/src/services/dns.service.mjs +120 -0
- package/esm2020/users-list/src/services/events-communication.service.mjs +14 -0
- package/esm2020/users-list/src/services/move-user.service.mjs +53 -0
- package/esm2020/users-list/src/services/notification.service.mjs +62 -0
- package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/users-list/src/services/site-settings.service.mjs +27 -0
- package/esm2020/users-list/src/services/user.service.mjs +142 -0
- package/esm2020/users-list/src/services/users-search.service.mjs +141 -0
- package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +34 -0
- package/esm2020/users-list/src/users-list.component.mjs +339 -0
- package/esm2020/users-list/src/users-list.module.mjs +95 -0
- package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/users-list/src/utils/common-functions.mjs +32 -0
- package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +43 -0
- package/esm2020/users-list/src/utils/utils.service.mjs +73 -0
- package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +5 -0
- 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 +2220 -0
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +3378 -0
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +2222 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +2098 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets.mjs +63 -0
- package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -0
- 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 +2204 -0
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +3357 -0
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +2208 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +2074 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets.mjs +63 -0
- package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/widgets.component.d.ts +8 -0
- package/lib/widgets.module.d.ts +7 -0
- package/lib/widgets.service.d.ts +6 -0
- package/package.json +73 -49
- package/public-api.d.ts +3 -0
- package/user-device-manage/index.d.ts +5 -0
- package/user-device-manage/src/app.constants.d.ts +76 -0
- package/user-device-manage/src/classes/device.d.ts +233 -0
- package/user-device-manage/src/classes/deviceProfile.d.ts +24 -0
- package/user-device-manage/src/classes/line-association-interface.d.ts +45 -0
- package/user-device-manage/src/classes/line-association.d.ts +62 -0
- package/user-device-manage/src/classes/line-call-info-display.d.ts +11 -0
- package/user-device-manage/src/classes/line-directory.d.ts +15 -0
- package/user-device-manage/src/classes/line.d.ts +140 -0
- package/user-device-manage/src/classes/notification.d.ts +18 -0
- package/user-device-manage/src/classes/recording-options.d.ts +5 -0
- package/user-device-manage/src/classes/simplified-user.d.ts +52 -0
- package/user-device-manage/src/classes/site-defaults.d.ts +146 -0
- package/user-device-manage/src/classes/translation-pattern.d.ts +19 -0
- package/user-device-manage/src/classes/types.d.ts +19 -0
- package/user-device-manage/src/common-functions.d.ts +1 -0
- package/user-device-manage/src/confirm-dialog/info-dialog.component.d.ts +20 -0
- package/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.d.ts +15 -0
- package/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.d.ts +7 -0
- package/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.d.ts +24 -0
- package/user-device-manage/src/device-associated-line/device-associated-line.component.d.ts +89 -0
- package/user-device-manage/src/device-info/device-info.component.d.ts +15 -0
- package/user-device-manage/src/device-list/device-list.component.d.ts +11 -0
- package/user-device-manage/src/device-manage-widget.component.d.ts +54 -0
- package/user-device-manage/src/environments/environment.d.ts +9 -0
- package/user-device-manage/src/interseptors/auth.interceptor.d.ts +9 -0
- package/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -0
- package/user-device-manage/src/material.module.d.ts +29 -0
- package/user-device-manage/src/notifications/notification.component.d.ts +19 -0
- package/user-device-manage/src/pipes/mac-address.pipe.d.ts +7 -0
- package/user-device-manage/src/services/api.service.d.ts +20 -0
- package/user-device-manage/src/services/device.service.d.ts +21 -0
- package/user-device-manage/src/services/dns.service.d.ts +14 -0
- package/user-device-manage/src/services/line.service.d.ts +33 -0
- package/user-device-manage/src/services/notification.service.d.ts +18 -0
- package/user-device-manage/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/user-device-manage/src/services/site-settings.service.d.ts +25 -0
- package/user-device-manage/src/services/sorting-utils.service.d.ts +26 -0
- package/user-device-manage/src/services/user.service.d.ts +61 -0
- package/user-device-manage/src/services/utils.service.d.ts +10 -0
- package/user-device-manage/src/services/validation.service.d.ts +165 -0
- package/user-device-manage/src/shared/tk-page-section/page-section.component.d.ts +6 -0
- package/user-device-manage/src/user-device-manage.module.d.ts +25 -0
- package/user-device-manage/src/utils/app-loader/app-loader.d.ts +6 -0
- package/user-manage/index.d.ts +5 -0
- package/user-manage/src/app.constants.d.ts +33 -0
- package/user-manage/src/classes/device.d.ts +203 -0
- package/user-manage/src/classes/line-association-interface.d.ts +41 -0
- package/user-manage/src/classes/line-association.d.ts +55 -0
- package/user-manage/src/classes/line-call-info-display.d.ts +11 -0
- package/user-manage/src/classes/line-directory.d.ts +17 -0
- package/user-manage/src/classes/line.d.ts +141 -0
- package/user-manage/src/classes/notification.d.ts +18 -0
- package/user-manage/src/classes/pagination.d.ts +13 -0
- package/user-manage/src/classes/recording-options.d.ts +5 -0
- package/user-manage/src/classes/simplified-user.d.ts +50 -0
- package/user-manage/src/classes/table-data.d.ts +5 -0
- package/user-manage/src/classes/translation-pattern.d.ts +18 -0
- package/user-manage/src/classes/user-list.d.ts +34 -0
- package/user-manage/src/common-functions.d.ts +1 -0
- package/user-manage/src/device-list/device-list.component.d.ts +11 -0
- package/user-manage/src/device-list/device-row/device-row.component.d.ts +12 -0
- package/user-manage/src/environments/environment.d.ts +9 -0
- package/user-manage/src/interseptors/auth.interceptor.d.ts +9 -0
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +37 -0
- package/user-manage/src/material.module.d.ts +28 -0
- package/user-manage/src/notifications/notification.component.d.ts +19 -0
- package/user-manage/src/removeKynFromIBM.service.d.ts +8 -0
- package/user-manage/src/services/api.service.d.ts +21 -0
- package/user-manage/src/services/dns.service.d.ts +14 -0
- package/user-manage/src/services/line.service.d.ts +17 -0
- package/user-manage/src/services/notification.service.d.ts +18 -0
- package/user-manage/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/user-manage/src/services/site-settings.service.d.ts +9 -0
- package/user-manage/src/services/sorting-utils.service.d.ts +26 -0
- package/user-manage/src/services/user.service.d.ts +45 -0
- package/user-manage/src/services/users-search.service.d.ts +25 -0
- package/user-manage/src/services/utils.service.d.ts +9 -0
- package/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.d.ts +24 -0
- package/user-manage/src/user-calling/user-calling.component.d.ts +30 -0
- package/user-manage/src/user-info/user-info.component.d.ts +10 -0
- package/user-manage/src/user-manage-widget.component.d.ts +45 -0
- package/user-manage/src/user-manage.module.d.ts +22 -0
- package/user-manage/src/utils/app-loader/app-loader.d.ts +6 -0
- package/user-manage/src/utils/pagination/pagination.component.d.ts +18 -0
- package/users-list/index.d.ts +5 -0
- package/users-list/src/app.constants.d.ts +36 -0
- package/users-list/src/classes/app-location.d.ts +17 -0
- package/users-list/src/classes/device.d.ts +224 -0
- package/users-list/src/classes/line.d.ts +140 -0
- package/users-list/src/classes/move-user.d.ts +85 -0
- package/users-list/src/classes/notification.d.ts +18 -0
- package/users-list/src/classes/pagination.d.ts +13 -0
- package/users-list/src/classes/simlified-user.d.ts +25 -0
- package/users-list/src/classes/table-data.d.ts +5 -0
- package/users-list/src/classes/user-list.d.ts +36 -0
- package/users-list/src/components/table-toolbar/table-toolbar.component.d.ts +10 -0
- package/users-list/src/material.module.d.ts +32 -0
- package/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.d.ts +21 -0
- package/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.d.ts +12 -0
- package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +55 -0
- package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +17 -0
- package/users-list/src/services/api-webex.service.d.ts +8 -0
- package/users-list/src/services/api.service.d.ts +21 -0
- package/users-list/src/services/dns.service.d.ts +18 -0
- package/users-list/src/services/events-communication.service.d.ts +8 -0
- package/users-list/src/services/move-user.service.d.ts +17 -0
- package/users-list/src/services/notification.service.d.ts +18 -0
- package/users-list/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/users-list/src/services/site-settings.service.d.ts +11 -0
- package/users-list/src/services/user.service.d.ts +35 -0
- package/users-list/src/services/users-search.service.d.ts +37 -0
- package/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.d.ts +20 -0
- package/users-list/src/users-list.component.d.ts +62 -0
- package/users-list/src/users-list.module.d.ts +19 -0
- package/users-list/src/utils/app-loader/app-loader.d.ts +6 -0
- package/users-list/src/utils/common-functions.d.ts +2 -0
- package/users-list/src/utils/pagination/pagination.component.d.ts +18 -0
- package/users-list/src/utils/utils.service.d.ts +9 -0
- package/.editorconfig +0 -16
- package/.hintrc +0 -14
- package/.vscode/extensions.json +0 -4
- package/.vscode/launch.json +0 -20
- package/.vscode/tasks.json +0 -42
- package/angular.json +0 -141
- package/projects/tuki/widgets/README.md +0 -24
- package/projects/tuki/widgets/contact-center/cc-readiness/cc-readiness.module.ts +0 -44
- package/projects/tuki/widgets/contact-center/cc-readiness/cc-readiness.service.spec.ts +0 -16
- package/projects/tuki/widgets/contact-center/cc-readiness/cc-readiness.service.ts +0 -33
- package/projects/tuki/widgets/contact-center/cc-readiness/components/card/card.component.html +0 -11
- package/projects/tuki/widgets/contact-center/cc-readiness/components/card/card.component.scss +0 -48
- package/projects/tuki/widgets/contact-center/cc-readiness/components/card/card.component.ts +0 -10
- package/projects/tuki/widgets/contact-center/cc-readiness/types/cc-readiness.ts +0 -34
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.html +0 -74
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.scss +0 -177
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.spec.ts +0 -35
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.ts +0 -237
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.html +0 -19
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.scss +0 -38
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.ts +0 -57
- package/projects/tuki/widgets/contact-center/ng-package.json +0 -7
- package/projects/tuki/widgets/contact-center/public-api.ts +0 -6
- package/projects/tuki/widgets/contact-center/shared/api.endpoints.ts +0 -6
- package/projects/tuki/widgets/contact-center/shared/api.service.ts +0 -91
- package/projects/tuki/widgets/contact-center/shared/assets/icons/applications.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/assets/icons/audioPrompts.svg +0 -4
- package/projects/tuki/widgets/contact-center/shared/assets/icons/contactServiceQueues.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/phonebooks.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/assets/icons/resourceGroups.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/assets/icons/resources.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/scripts.svg +0 -12
- package/projects/tuki/widgets/contact-center/shared/assets/icons/skills.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/teams.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/triggers.svg +0 -4
- package/projects/tuki/widgets/contact-center/shared/assets/icons/wrapUpCodes.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/xml.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/material.module.ts +0 -36
- package/projects/tuki/widgets/contact-center/shared/shared.module.ts +0 -20
- package/projects/tuki/widgets/contact-center/shared/styles/tuki-widgets-theme.scss +0 -13
- package/projects/tuki/widgets/contact-center/shared/styles/variables.scss +0 -94
- package/projects/tuki/widgets/di2mt/api/api.endpoints.ts +0 -31
- package/projects/tuki/widgets/di2mt/assets/icons/already_upgraded.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/check2_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/check_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/details_d_icon.svg +0 -3
- package/projects/tuki/widgets/di2mt/assets/icons/expand_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/icon_play.svg +0 -3
- package/projects/tuki/widgets/di2mt/assets/icons/issue_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/menu_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/ready_to_upgrade.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/search_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/site.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/user.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/warning_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/ng-package.json +0 -7
- package/projects/tuki/widgets/di2mt/public-api.ts +0 -27
- package/projects/tuki/widgets/di2mt/shared/components/card/card.component.html +0 -11
- package/projects/tuki/widgets/di2mt/shared/components/card/card.component.scss +0 -48
- package/projects/tuki/widgets/di2mt/shared/components/card/card.component.ts +0 -10
- package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.html +0 -15
- package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.scss +0 -38
- package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.ts +0 -76
- package/projects/tuki/widgets/di2mt/shared/components/index.ts +0 -6
- package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.html +0 -43
- package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.scss +0 -74
- package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.ts +0 -44
- package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.html +0 -57
- package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.scss +0 -187
- package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.ts +0 -41
- package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.html +0 -12
- package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.scss +0 -78
- package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.ts +0 -27
- package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.html +0 -28
- package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.scss +0 -245
- package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.ts +0 -28
- package/projects/tuki/widgets/di2mt/shared/constants/app.constants.ts +0 -96
- package/projects/tuki/widgets/di2mt/shared/material.module.ts +0 -36
- package/projects/tuki/widgets/di2mt/shared/services/api.service.ts +0 -91
- package/projects/tuki/widgets/di2mt/shared/shared.module.ts +0 -39
- package/projects/tuki/widgets/di2mt/shared/types/constants.ts +0 -22
- package/projects/tuki/widgets/di2mt/shared/types/data-table.ts +0 -5
- package/projects/tuki/widgets/di2mt/shared/types/table/filter.ts +0 -14
- package/projects/tuki/widgets/di2mt/styles/tuki-widgets-theme.scss +0 -13
- package/projects/tuki/widgets/di2mt/styles/variables.scss +0 -94
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.html +0 -6
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.scss +0 -45
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.ts +0 -27
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.html +0 -160
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.scss +0 -460
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.ts +0 -506
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.module.ts +0 -33
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.service.ts +0 -172
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/types/user-upgrade.ts +0 -27
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.ts +0 -52
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.ts +0 -53
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.ts +0 -82
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.html +0 -7
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.scss +0 -0
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.ts +0 -45
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.html +0 -7
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.scss +0 -0
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.ts +0 -45
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.ts +0 -81
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.ts +0 -70
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/types/upgrade-overview.ts +0 -58
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.module.ts +0 -42
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.service.ts +0 -95
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/types/user-upgrade.ts +0 -35
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.html +0 -204
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.scss +0 -462
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.ts +0 -438
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.module.ts +0 -34
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.service.ts +0 -137
- package/projects/tuki/widgets/karma.conf.js +0 -44
- package/projects/tuki/widgets/ng-package.json +0 -10
- package/projects/tuki/widgets/package.json +0 -13
- package/projects/tuki/widgets/src/lib/widgets.component.spec.ts +0 -23
- package/projects/tuki/widgets/src/lib/widgets.component.ts +0 -20
- package/projects/tuki/widgets/src/lib/widgets.module.ts +0 -16
- package/projects/tuki/widgets/src/lib/widgets.service.spec.ts +0 -16
- package/projects/tuki/widgets/src/lib/widgets.service.ts +0 -9
- package/projects/tuki/widgets/src/public-api.ts +0 -7
- package/projects/tuki/widgets/src/test.ts +0 -27
- package/projects/tuki/widgets/styles.scss +0 -558
- package/projects/tuki/widgets/tsconfig.lib.json +0 -37
- package/projects/tuki/widgets/tsconfig.lib.prod.json +0 -10
- package/projects/tuki/widgets/tsconfig.spec.json +0 -17
- package/projects/tuki/widgets/user-device-manage/ng-package.json +0 -7
- package/projects/tuki/widgets/user-device-manage/src/app.constants.ts +0 -98
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-down-bold.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-left.svg +0 -5
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-right-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-right.svg +0 -5
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cancel-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/check-circle-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco.svg +0 -8
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_7841.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_8841.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_8851.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_9861.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/close_icon_x.svg +0 -3
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/delete_icon.svg +0 -5
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/dragger-vertical-icon.svg +0 -3
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/icon_user.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/info-circle-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/people-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/plus-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/settings-light.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/settings-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/vartical_divider_icon.svg +0 -3
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/warning-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/info-circle-bold.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/classes/device.ts +0 -292
- package/projects/tuki/widgets/user-device-manage/src/classes/deviceProfile.ts +0 -60
- package/projects/tuki/widgets/user-device-manage/src/classes/line-association-interface.ts +0 -50
- package/projects/tuki/widgets/user-device-manage/src/classes/line-association.ts +0 -177
- package/projects/tuki/widgets/user-device-manage/src/classes/line-call-info-display.ts +0 -21
- package/projects/tuki/widgets/user-device-manage/src/classes/line-directory.ts +0 -41
- package/projects/tuki/widgets/user-device-manage/src/classes/line.ts +0 -144
- package/projects/tuki/widgets/user-device-manage/src/classes/notification.ts +0 -40
- package/projects/tuki/widgets/user-device-manage/src/classes/recording-options.ts +0 -6
- package/projects/tuki/widgets/user-device-manage/src/classes/simplified-user.ts +0 -169
- package/projects/tuki/widgets/user-device-manage/src/classes/site-defaults.ts +0 -167
- package/projects/tuki/widgets/user-device-manage/src/classes/translation-pattern.ts +0 -50
- package/projects/tuki/widgets/user-device-manage/src/classes/types.ts +0 -19
- package/projects/tuki/widgets/user-device-manage/src/classes/user-interface.ts +0 -225
- package/projects/tuki/widgets/user-device-manage/src/classes/user.ts +0 -8
- package/projects/tuki/widgets/user-device-manage/src/common-functions.ts +0 -16
- package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.html +0 -14
- package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.scss +0 -80
- package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.ts +0 -35
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.html +0 -21
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.scss +0 -97
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.ts +0 -28
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.html +0 -6
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.scss +0 -20
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.ts +0 -13
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.html +0 -6
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.scss +0 -4
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.ts +0 -63
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.html +0 -241
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.scss +0 -500
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.ts +0 -194
- package/projects/tuki/widgets/user-device-manage/src/device-info/device-info.component.html +0 -52
- package/projects/tuki/widgets/user-device-manage/src/device-info/device-info.component.scss +0 -219
- package/projects/tuki/widgets/user-device-manage/src/device-info/device-info.component.ts +0 -38
- package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.html +0 -27
- package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.scss +0 -131
- package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.ts +0 -25
- package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.html +0 -281
- package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.scss +0 -766
- package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.ts +0 -142
- package/projects/tuki/widgets/user-device-manage/src/environments/environment.prod.ts +0 -9
- package/projects/tuki/widgets/user-device-manage/src/environments/environment.ts +0 -10
- package/projects/tuki/widgets/user-device-manage/src/interseptors/auth.interceptor.ts +0 -35
- package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.html +0 -67
- package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.scss +0 -98
- package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.ts +0 -81
- package/projects/tuki/widgets/user-device-manage/src/material.module.ts +0 -87
- package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.html +0 -33
- package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.scss +0 -84
- package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.ts +0 -46
- package/projects/tuki/widgets/user-device-manage/src/pipes/mac-address.pipe.ts +0 -24
- package/projects/tuki/widgets/user-device-manage/src/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-device-manage/src/services/api.service.ts +0 -87
- package/projects/tuki/widgets/user-device-manage/src/services/common-functions.ts +0 -17
- package/projects/tuki/widgets/user-device-manage/src/services/device.service.ts +0 -95
- package/projects/tuki/widgets/user-device-manage/src/services/dns.service.ts +0 -111
- package/projects/tuki/widgets/user-device-manage/src/services/line.service.ts +0 -89
- package/projects/tuki/widgets/user-device-manage/src/services/notification.service.ts +0 -68
- package/projects/tuki/widgets/user-device-manage/src/services/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-device-manage/src/services/site-settings.service.ts +0 -82
- package/projects/tuki/widgets/user-device-manage/src/services/sorting-utils.service.ts +0 -203
- package/projects/tuki/widgets/user-device-manage/src/services/user.service.ts +0 -360
- package/projects/tuki/widgets/user-device-manage/src/services/utils.service.ts +0 -87
- package/projects/tuki/widgets/user-device-manage/src/services/validation.service.ts +0 -829
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.html +0 -13
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.scss +0 -48
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.spec.ts +0 -23
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.ts +0 -10
- package/projects/tuki/widgets/user-device-manage/src/styles/_variables.scss +0 -90
- package/projects/tuki/widgets/user-device-manage/src/styles/form.scss +0 -284
- package/projects/tuki/widgets/user-device-manage/src/styles/icons.scss +0 -33
- package/projects/tuki/widgets/user-device-manage/src/styles/styles.scss +0 -127
- package/projects/tuki/widgets/user-device-manage/src/styles/tables.scss +0 -30
- package/projects/tuki/widgets/user-device-manage/src/user-device-manage.module.ts +0 -79
- package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.html +0 -7
- package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.scss +0 -11
- package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.ts +0 -13
- package/projects/tuki/widgets/user-manage/ng-package.json +0 -7
- package/projects/tuki/widgets/user-manage/src/app.constants.ts +0 -54
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-down-bold.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-left.svg +0 -5
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-right-bold.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-right.svg +0 -5
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_7841.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_8841.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_8851.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_9861.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/delete_icon.svg +0 -5
- package/projects/tuki/widgets/user-manage/src/assets/icons/dragger-vertical-icon.svg +0 -3
- package/projects/tuki/widgets/user-manage/src/assets/icons/icon_user.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/info-circle-bold.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/people-regular.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/settings-light.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/vartical_divider_icon.svg +0 -3
- package/projects/tuki/widgets/user-manage/src/classes/device.ts +0 -232
- package/projects/tuki/widgets/user-manage/src/classes/line-association-interface.ts +0 -44
- package/projects/tuki/widgets/user-manage/src/classes/line-association.ts +0 -161
- package/projects/tuki/widgets/user-manage/src/classes/line-call-info-display.ts +0 -21
- package/projects/tuki/widgets/user-manage/src/classes/line-directory.ts +0 -44
- package/projects/tuki/widgets/user-manage/src/classes/line.ts +0 -145
- package/projects/tuki/widgets/user-manage/src/classes/notification.ts +0 -39
- package/projects/tuki/widgets/user-manage/src/classes/pagination.ts +0 -18
- package/projects/tuki/widgets/user-manage/src/classes/recording-options.ts +0 -6
- package/projects/tuki/widgets/user-manage/src/classes/simplified-user.ts +0 -165
- package/projects/tuki/widgets/user-manage/src/classes/table-data.ts +0 -6
- package/projects/tuki/widgets/user-manage/src/classes/translation-pattern.ts +0 -49
- package/projects/tuki/widgets/user-manage/src/classes/user-interface.ts +0 -225
- package/projects/tuki/widgets/user-manage/src/classes/user-list.ts +0 -42
- package/projects/tuki/widgets/user-manage/src/classes/user.ts +0 -8
- package/projects/tuki/widgets/user-manage/src/common-functions.ts +0 -16
- package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.html +0 -32
- package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.scss +0 -305
- package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.ts +0 -26
- package/projects/tuki/widgets/user-manage/src/device-list/device-row/device-row.component.html +0 -13
- package/projects/tuki/widgets/user-manage/src/device-list/device-row/device-row.component.scss +0 -154
- package/projects/tuki/widgets/user-manage/src/device-list/device-row/device-row.component.ts +0 -34
- package/projects/tuki/widgets/user-manage/src/environments/environment.prod.ts +0 -9
- package/projects/tuki/widgets/user-manage/src/environments/environment.ts +0 -10
- package/projects/tuki/widgets/user-manage/src/interseptors/auth.interceptor.ts +0 -35
- package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.html +0 -68
- package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.scss +0 -125
- package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.ts +0 -93
- package/projects/tuki/widgets/user-manage/src/material.module.ts +0 -85
- package/projects/tuki/widgets/user-manage/src/notifications/notification.component.html +0 -33
- package/projects/tuki/widgets/user-manage/src/notifications/notification.component.scss +0 -84
- package/projects/tuki/widgets/user-manage/src/notifications/notification.component.ts +0 -46
- package/projects/tuki/widgets/user-manage/src/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-manage/src/services/api.service.ts +0 -90
- package/projects/tuki/widgets/user-manage/src/services/dns.service.ts +0 -116
- package/projects/tuki/widgets/user-manage/src/services/line.service.ts +0 -31
- package/projects/tuki/widgets/user-manage/src/services/notification.service.ts +0 -68
- package/projects/tuki/widgets/user-manage/src/services/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-manage/src/services/site-settings.service.ts +0 -35
- package/projects/tuki/widgets/user-manage/src/services/sorting-utils.service.ts +0 -203
- package/projects/tuki/widgets/user-manage/src/services/user.service.ts +0 -288
- package/projects/tuki/widgets/user-manage/src/services/users-search.service.ts +0 -59
- package/projects/tuki/widgets/user-manage/src/services/utils.service.ts +0 -71
- package/projects/tuki/widgets/user-manage/src/styles/_variables.scss +0 -93
- package/projects/tuki/widgets/user-manage/src/styles/form.scss +0 -231
- package/projects/tuki/widgets/user-manage/src/styles/icons.scss +0 -41
- package/projects/tuki/widgets/user-manage/src/styles/styles.scss +0 -128
- package/projects/tuki/widgets/user-manage/src/styles/tables.scss +0 -30
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.html +0 -10
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.scss +0 -444
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.ts +0 -63
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.html +0 -97
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.scss +0 -444
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.ts +0 -89
- package/projects/tuki/widgets/user-manage/src/user-details/notification.service.ts +0 -68
- package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.html +0 -37
- package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.scss +0 -121
- package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.ts +0 -19
- package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.html +0 -313
- package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.scss +0 -638
- package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.ts +0 -222
- package/projects/tuki/widgets/user-manage/src/user-manage.module.ts +0 -65
- package/projects/tuki/widgets/user-manage/src/user-summary/user-summary.component.html +0 -64
- package/projects/tuki/widgets/user-manage/src/user-summary/user-summary.component.scss +0 -17
- package/projects/tuki/widgets/user-manage/src/user-summary/user-summary.component.ts +0 -8
- package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.html +0 -7
- package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.scss +0 -11
- package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.ts +0 -13
- package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.html +0 -26
- package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.scss +0 -41
- package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.ts +0 -41
- package/projects/tuki/widgets/users-list/ng-package.json +0 -7
- package/projects/tuki/widgets/users-list/src/app.constants.ts +0 -54
- package/projects/tuki/widgets/users-list/src/assets/icons/close_icon_modal.svg +0 -3
- package/projects/tuki/widgets/users-list/src/assets/icons/cogs.svg +0 -8
- package/projects/tuki/widgets/users-list/src/assets/icons/copy-regular.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/icon_user.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/info-circle-regular.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/info.svg +0 -5
- package/projects/tuki/widgets/users-list/src/assets/icons/move_user_to_another_location.svg +0 -14
- package/projects/tuki/widgets/users-list/src/assets/icons/mt.svg +0 -3
- package/projects/tuki/widgets/users-list/src/assets/icons/settings-regular.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/webex.svg +0 -7
- package/projects/tuki/widgets/users-list/src/assets/icons/webex_logo_icon.svg +0 -305
- package/projects/tuki/widgets/users-list/src/assets/icons/white-close-icon.svg +0 -3
- package/projects/tuki/widgets/users-list/src/classes/app-location.ts +0 -36
- package/projects/tuki/widgets/users-list/src/classes/device.ts +0 -225
- package/projects/tuki/widgets/users-list/src/classes/line.ts +0 -144
- package/projects/tuki/widgets/users-list/src/classes/move-user.ts +0 -225
- package/projects/tuki/widgets/users-list/src/classes/notification.ts +0 -38
- package/projects/tuki/widgets/users-list/src/classes/pagination.ts +0 -18
- package/projects/tuki/widgets/users-list/src/classes/simlified-user.ts +0 -74
- package/projects/tuki/widgets/users-list/src/classes/table-data.ts +0 -6
- package/projects/tuki/widgets/users-list/src/classes/user-interface.ts +0 -225
- package/projects/tuki/widgets/users-list/src/classes/user-list.ts +0 -47
- package/projects/tuki/widgets/users-list/src/classes/user.ts +0 -8
- package/projects/tuki/widgets/users-list/src/components/table-toolbar/table-toolbar.component.html +0 -39
- package/projects/tuki/widgets/users-list/src/components/table-toolbar/table-toolbar.component.scss +0 -41
- package/projects/tuki/widgets/users-list/src/components/table-toolbar/table-toolbar.component.ts +0 -21
- package/projects/tuki/widgets/users-list/src/material.module.ts +0 -97
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.html +0 -37
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.scss +0 -129
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.ts +0 -46
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.html +0 -31
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.scss +0 -20
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.ts +0 -26
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.html +0 -222
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.scss +0 -249
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.ts +0 -206
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.html +0 -12
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.scss +0 -41
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.ts +0 -36
- package/projects/tuki/widgets/users-list/src/services/api-webex.service.ts +0 -14
- package/projects/tuki/widgets/users-list/src/services/api.service.ts +0 -90
- package/projects/tuki/widgets/users-list/src/services/dns.service.ts +0 -128
- package/projects/tuki/widgets/users-list/src/services/events-communication.service.ts +0 -11
- package/projects/tuki/widgets/users-list/src/services/move-user.service.ts +0 -59
- package/projects/tuki/widgets/users-list/src/services/notification.service.ts +0 -68
- package/projects/tuki/widgets/users-list/src/services/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/users-list/src/services/site-settings.service.ts +0 -26
- package/projects/tuki/widgets/users-list/src/services/user.service.ts +0 -159
- package/projects/tuki/widgets/users-list/src/services/users-search.service.ts +0 -160
- package/projects/tuki/widgets/users-list/src/styles/styles.scss +0 -639
- package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.html +0 -15
- package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.scss +0 -103
- package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.ts +0 -35
- package/projects/tuki/widgets/users-list/src/users-list.component.css +0 -4
- package/projects/tuki/widgets/users-list/src/users-list.component.css.map +0 -1
- package/projects/tuki/widgets/users-list/src/users-list.component.html +0 -261
- package/projects/tuki/widgets/users-list/src/users-list.component.scss +0 -629
- package/projects/tuki/widgets/users-list/src/users-list.component.ts +0 -410
- package/projects/tuki/widgets/users-list/src/users-list.module.ts +0 -65
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css +0 -11
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css.map +0 -1
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.html +0 -7
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.scss +0 -17
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.ts +0 -13
- package/projects/tuki/widgets/users-list/src/utils/common-functions.ts +0 -32
- package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.html +0 -33
- package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.scss +0 -84
- package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.ts +0 -46
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css +0 -45
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css.map +0 -1
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.html +0 -26
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.scss +0 -41
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.ts +0 -41
- package/projects/tuki/widgets/users-list/src/utils/utils.service.ts +0 -71
- package/projects/widgets-playground/src/app/app.component.html +0 -130
- package/projects/widgets-playground/src/app/app.component.scss +0 -16
- package/projects/widgets-playground/src/app/app.component.spec.ts +0 -31
- package/projects/widgets-playground/src/app/app.component.ts +0 -31
- package/projects/widgets-playground/src/app/app.module.ts +0 -45
- package/projects/widgets-playground/src/assets/.gitkeep +0 -0
- package/projects/widgets-playground/src/assets/icons/already_upgraded.png +0 -0
- package/projects/widgets-playground/src/assets/icons/applications copy.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/applications.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/arrow-down-bold.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/audio-prompts.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/audioPrompts.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/check2_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/check_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/contactServiceQueues.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/copy-regular.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/csqs.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/expand_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/info-circle-regular.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/issue_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/menu_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/mt.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/phone-books.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/phonebooks.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/ready_to_upgrade.png +0 -0
- package/projects/widgets-playground/src/assets/icons/resource-group.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/resource.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/resourceGroups.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/resources.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/scripts copy.svg +0 -12
- package/projects/widgets-playground/src/assets/icons/scripts.svg +0 -12
- package/projects/widgets-playground/src/assets/icons/search_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/settings-regular.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/site.png +0 -0
- package/projects/widgets-playground/src/assets/icons/skills copy.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/skills.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/teams copy.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/teams.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/triggers copy.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/triggers.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/user.png +0 -0
- package/projects/widgets-playground/src/assets/icons/warning_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/webex.svg +0 -7
- package/projects/widgets-playground/src/assets/icons/webex_logo_icon.svg +0 -305
- package/projects/widgets-playground/src/assets/icons/wrapUpCodes.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/wrapup-codes.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/xml copy.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/xml.svg +0 -6
- package/projects/widgets-playground/src/favicon.ico +0 -0
- package/projects/widgets-playground/src/index.html +0 -13
- package/projects/widgets-playground/src/main.ts +0 -7
- package/projects/widgets-playground/src/styles.scss +0 -24
- package/projects/widgets-playground/tsconfig.app.json +0 -14
- package/projects/widgets-playground/tsconfig.spec.json +0 -14
- package/proxy.conf.js +0 -23
- package/tsconfig.json +0 -46
- /package/{projects/tuki/widgets/di2mt → di2mt}/README.md +0 -0
- /package/{projects/tuki/widgets/user-device-manage/public-api.ts → user-device-manage/public-api.d.ts} +0 -0
- /package/{projects/tuki/widgets/user-manage/public-api.ts → user-manage/public-api.d.ts} +0 -0
- /package/{projects/tuki/widgets/users-list/public-api.ts → users-list/public-api.d.ts} +0 -0
|
@@ -1,237 +0,0 @@
|
|
|
1
|
-
import { Component, Input, OnChanges, OnDestroy, OnInit, SimpleChanges, inject } from '@angular/core';
|
|
2
|
-
import { ApexChart, ApexDataLabels, ApexLegend, ApexNonAxisChartSeries, ApexPlotOptions } from 'ng-apexcharts';
|
|
3
|
-
import { catchError, finalize, of, Subscription } from 'rxjs';
|
|
4
|
-
import { CcReadinessService } from '../../cc-readiness.service';
|
|
5
|
-
import { WebexLicenseUsageSummary } from '../../types/cc-readiness';
|
|
6
|
-
|
|
7
|
-
interface LicenseLegendItem {
|
|
8
|
-
label: string;
|
|
9
|
-
count: number;
|
|
10
|
-
percentage: number;
|
|
11
|
-
color: string;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
interface LicenseTableRow {
|
|
15
|
-
label: string;
|
|
16
|
-
value: number;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
interface LicenseChartOptions {
|
|
20
|
-
series: ApexNonAxisChartSeries;
|
|
21
|
-
chart: ApexChart;
|
|
22
|
-
labels: string[];
|
|
23
|
-
colors: string[];
|
|
24
|
-
legend: ApexLegend;
|
|
25
|
-
plotOptions: ApexPlotOptions;
|
|
26
|
-
dataLabels: ApexDataLabels;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
interface LicenseRequirementViewModel {
|
|
30
|
-
chartOptions: LicenseChartOptions;
|
|
31
|
-
legendItems: LicenseLegendItem[];
|
|
32
|
-
rows: LicenseTableRow[];
|
|
33
|
-
totalRequired: number;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
const LEGEND_COLORS = {
|
|
37
|
-
existing: '#16A693',
|
|
38
|
-
missing: '#808080'
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
@Component({
|
|
42
|
-
selector: 'cc-licenses-requirement',
|
|
43
|
-
templateUrl: './licences-requirement.component.html',
|
|
44
|
-
styleUrls: ['./licences-requirement.component.scss']
|
|
45
|
-
})
|
|
46
|
-
export class LicencesRequirementComponent implements OnInit, OnDestroy, OnChanges {
|
|
47
|
-
@Input() customerId!: number;
|
|
48
|
-
@Input() token!: string;
|
|
49
|
-
|
|
50
|
-
private readonly ccReadinessService = inject(CcReadinessService);
|
|
51
|
-
private subscription?: Subscription;
|
|
52
|
-
|
|
53
|
-
viewModel: LicenseRequirementViewModel | null = null;
|
|
54
|
-
loading = false;
|
|
55
|
-
error = false;
|
|
56
|
-
|
|
57
|
-
filters: string[] = ['All', 'Professional licenses', 'Workspace licenses'];
|
|
58
|
-
selectedSummaryIndex = 0;
|
|
59
|
-
|
|
60
|
-
private summary: WebexLicenseUsageSummary | null = null;
|
|
61
|
-
|
|
62
|
-
ngOnInit(): void {
|
|
63
|
-
this.loadSummaries();
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
ngOnDestroy(): void {
|
|
67
|
-
this.subscription?.unsubscribe();
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
ngOnChanges(changes: SimpleChanges): void {
|
|
71
|
-
if ((changes['customerId'] && !changes['customerId'].firstChange) ||
|
|
72
|
-
(changes['token'] && !changes['token'].firstChange)) {
|
|
73
|
-
this.loadSummaries();
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
onFilterChange(index: number): void {
|
|
78
|
-
if (!isNaN(index) && index >= 0 && index < this.filters.length) {
|
|
79
|
-
this.selectFilter(index);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
private loadSummaries(): void {
|
|
84
|
-
const numericCustomerId = Number(this.customerId);
|
|
85
|
-
if (!numericCustomerId || !this.token) {
|
|
86
|
-
return;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
this.subscription?.unsubscribe();
|
|
90
|
-
this.loading = true;
|
|
91
|
-
this.error = false;
|
|
92
|
-
this.viewModel = null;
|
|
93
|
-
this.selectedSummaryIndex = 0;
|
|
94
|
-
|
|
95
|
-
this.ccReadinessService.setToken(this.token);
|
|
96
|
-
this.subscription = this.ccReadinessService.fetchWebexLicenseUsageSummary(numericCustomerId)
|
|
97
|
-
.pipe(
|
|
98
|
-
catchError(error => {
|
|
99
|
-
console.error('Unable to load Webex license usage summary', error);
|
|
100
|
-
this.error = true;
|
|
101
|
-
return of<WebexLicenseUsageSummary[]>([]);
|
|
102
|
-
}),
|
|
103
|
-
finalize(() => this.loading = false)
|
|
104
|
-
)
|
|
105
|
-
.subscribe(items => {
|
|
106
|
-
console.log('Raw API response:', items);
|
|
107
|
-
// Handle both array and single object responses
|
|
108
|
-
if (Array.isArray(items) && items.length > 0) {
|
|
109
|
-
this.summary = items[0];
|
|
110
|
-
} else if (items && typeof items === 'object' && !Array.isArray(items)) {
|
|
111
|
-
// If single object returned, use it directly
|
|
112
|
-
this.summary = items as unknown as WebexLicenseUsageSummary;
|
|
113
|
-
} else {
|
|
114
|
-
this.summary = null;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
console.log('Processed summary:', this.summary);
|
|
118
|
-
this.selectFilter(0);
|
|
119
|
-
});
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
private selectFilter(index: number): void {
|
|
123
|
-
this.selectedSummaryIndex = index;
|
|
124
|
-
if (!this.summary) {
|
|
125
|
-
this.viewModel = null;
|
|
126
|
-
return;
|
|
127
|
-
}
|
|
128
|
-
this.viewModel = this.mapSummaryToViewModel(this.summary, index);
|
|
129
|
-
console.log('Created viewModel for filter index', index, ':', this.viewModel);
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
private mapSummaryToViewModel(summary: WebexLicenseUsageSummary, filterIndex: number): LicenseRequirementViewModel {
|
|
133
|
-
console.log('Mapping summary to viewModel:', summary, 'filterIndex:', filterIndex);
|
|
134
|
-
|
|
135
|
-
// Extract data from webexReadinessLicenseStats and license counts
|
|
136
|
-
const personStat = summary.webexReadinessLicenseStats?.find(stat => stat.feature === 'PERSON');
|
|
137
|
-
const deviceStat = summary.webexReadinessLicenseStats?.find(stat => stat.feature === 'ORPHANED_DEVICE');
|
|
138
|
-
|
|
139
|
-
const professionalNeeded = personStat?.totalCount ?? 0;
|
|
140
|
-
const workspaceNeeded = deviceStat?.totalCount ?? 0;
|
|
141
|
-
|
|
142
|
-
const professionalOwned = Number(summary.totalProfessionalLicenseCount ?? 0);
|
|
143
|
-
const workspaceOwned = Number(summary.totalWorkspaceProfessionalLicenseCount ?? 0);
|
|
144
|
-
|
|
145
|
-
// Filter data based on selection
|
|
146
|
-
let existingCount: number;
|
|
147
|
-
let missingCount: number;
|
|
148
|
-
let rows: LicenseTableRow[];
|
|
149
|
-
|
|
150
|
-
if (filterIndex === 0) {
|
|
151
|
-
// All - show both
|
|
152
|
-
existingCount = professionalOwned + workspaceOwned;
|
|
153
|
-
const totalNeeded = professionalNeeded + workspaceNeeded;
|
|
154
|
-
missingCount = Math.max(0, totalNeeded - existingCount);
|
|
155
|
-
|
|
156
|
-
rows = [
|
|
157
|
-
{ label: 'Professional licenses', value: professionalNeeded },
|
|
158
|
-
{ label: 'Workspace licenses', value: workspaceNeeded }
|
|
159
|
-
];
|
|
160
|
-
} else if (filterIndex === 1) {
|
|
161
|
-
// Professional licenses only
|
|
162
|
-
existingCount = professionalOwned;
|
|
163
|
-
missingCount = Math.max(0, professionalNeeded - professionalOwned);
|
|
164
|
-
|
|
165
|
-
rows = [{ label: 'Professional licenses', value: professionalNeeded }];
|
|
166
|
-
} else {
|
|
167
|
-
// Workspace licenses only
|
|
168
|
-
existingCount = workspaceOwned;
|
|
169
|
-
missingCount = Math.max(0, workspaceNeeded - workspaceOwned);
|
|
170
|
-
|
|
171
|
-
rows = [{ label: 'Workspace licenses', value: workspaceNeeded }];
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
const totalLicenses = existingCount + missingCount;
|
|
175
|
-
|
|
176
|
-
const legendItems: LicenseLegendItem[] = [
|
|
177
|
-
{
|
|
178
|
-
label: 'Existing licenses',
|
|
179
|
-
count: existingCount,
|
|
180
|
-
percentage: totalLicenses > 0 ? (existingCount / totalLicenses) * 100 : 0,
|
|
181
|
-
color: LEGEND_COLORS.existing
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
label: 'Missing licenses',
|
|
185
|
-
count: missingCount,
|
|
186
|
-
percentage: totalLicenses > 0 ? (missingCount / totalLicenses) * 100 : 0,
|
|
187
|
-
color: LEGEND_COLORS.missing
|
|
188
|
-
}
|
|
189
|
-
];
|
|
190
|
-
|
|
191
|
-
console.log('Legend items:', legendItems);
|
|
192
|
-
console.log('Table rows:', rows);
|
|
193
|
-
|
|
194
|
-
const totalRequired = rows.reduce((acc, row) => acc + row.value, 0);
|
|
195
|
-
|
|
196
|
-
return {
|
|
197
|
-
chartOptions: this.buildChartOptions(legendItems),
|
|
198
|
-
legendItems,
|
|
199
|
-
rows,
|
|
200
|
-
totalRequired
|
|
201
|
-
};
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
private buildChartOptions(legendItems: LicenseLegendItem[]): LicenseChartOptions {
|
|
205
|
-
return {
|
|
206
|
-
series: legendItems.map(item => item.count),
|
|
207
|
-
chart: {
|
|
208
|
-
type: 'donut',
|
|
209
|
-
height: 220
|
|
210
|
-
},
|
|
211
|
-
labels: legendItems.map(item => item.label),
|
|
212
|
-
colors: legendItems.map(item => item.color),
|
|
213
|
-
legend: {
|
|
214
|
-
show: false
|
|
215
|
-
},
|
|
216
|
-
plotOptions: {
|
|
217
|
-
pie: {
|
|
218
|
-
donut: {
|
|
219
|
-
size: '75%'
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
},
|
|
223
|
-
dataLabels: {
|
|
224
|
-
enabled: false
|
|
225
|
-
}
|
|
226
|
-
};
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
private normalizePercentage(value: number): number {
|
|
230
|
-
if (!isFinite(value)) {
|
|
231
|
-
return 0;
|
|
232
|
-
}
|
|
233
|
-
// Convert decimal to percentage (0.9487 → 94.9)
|
|
234
|
-
const percentage = value * 100;
|
|
235
|
-
return Math.round(percentage * 10) / 10;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<ng-container *ngIf="data$ | async as data">
|
|
2
|
-
<div *ngFor="let stats of data">
|
|
3
|
-
<tk-card [title]="stats.uccxIp">
|
|
4
|
-
<ng-container ngProjectAs="card-content">
|
|
5
|
-
<div class="grid-wrapper">
|
|
6
|
-
<div class="grid-item" *ngFor="let item of stats.counts">
|
|
7
|
-
<div class="item-top">
|
|
8
|
-
<span class="item-icon">
|
|
9
|
-
<img width="24" height="24" src="assets/icons/{{ item.name }}.svg" alt="{{ item.name }} Icon">
|
|
10
|
-
</span>
|
|
11
|
-
<span class="item-count">{{ item.value }}</span>
|
|
12
|
-
</div>
|
|
13
|
-
<span class="item-label">{{ ENTITY_CONFIG[item.name].label }}</span>
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
</ng-container>
|
|
17
|
-
</tk-card>
|
|
18
|
-
</div>
|
|
19
|
-
</ng-container>
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
.grid-wrapper {
|
|
2
|
-
display: grid;
|
|
3
|
-
grid-template-columns: repeat(6, 1fr);
|
|
4
|
-
gap: 2rem;
|
|
5
|
-
row-gap: 2rem;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.grid-item {
|
|
9
|
-
display: flex;
|
|
10
|
-
flex-direction: column;
|
|
11
|
-
gap: 0.5rem;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.item-top {
|
|
15
|
-
display: flex;
|
|
16
|
-
align-items: center;
|
|
17
|
-
gap: inherit;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.item-icon {
|
|
21
|
-
display: flex;
|
|
22
|
-
align-items: center;
|
|
23
|
-
// display: flex;
|
|
24
|
-
// align-items: center;
|
|
25
|
-
// justify-content: center;
|
|
26
|
-
background-color: rgb(242, 242, 242);
|
|
27
|
-
padding: 0.75rem;
|
|
28
|
-
border-radius: 0.5rem;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.item-count {
|
|
32
|
-
font-size: 30px;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.item-label {
|
|
36
|
-
font-size: 14px;
|
|
37
|
-
margin-left: .15rem;
|
|
38
|
-
}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { Component, inject, Input, OnInit } from "@angular/core";
|
|
2
|
-
import { CcReadinessService } from "../../cc-readiness.service";
|
|
3
|
-
import { map, Observable } from "rxjs";
|
|
4
|
-
import { EntityType, UccxServerEntityStats } from "../../types/cc-readiness";
|
|
5
|
-
|
|
6
|
-
interface SummaryGridCount {
|
|
7
|
-
name: string;
|
|
8
|
-
value: number;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
interface SummaryGridItem {
|
|
12
|
-
uccxIp: string;
|
|
13
|
-
counts: SummaryGridCount[];
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
const ENTITY_CONFIG: { [key: string]: { label: string } } = {
|
|
17
|
-
applications: { label: 'Applications' },
|
|
18
|
-
triggers: { label: 'Triggers' },
|
|
19
|
-
contactServiceQueues: { label: 'CSQs' },
|
|
20
|
-
resources: { label: 'Resources' },
|
|
21
|
-
resourceGroups: { label: 'Resource Groups' },
|
|
22
|
-
skills: { label: 'Skills' },
|
|
23
|
-
xml: { label: 'XML' },
|
|
24
|
-
scripts: { label: 'Scripts' },
|
|
25
|
-
audioPrompts: { label: 'Audio Prompts' },
|
|
26
|
-
teams: { label: 'Teams' },
|
|
27
|
-
wrapUpCodes: { label: 'Wrap-Up Codes' },
|
|
28
|
-
phonebooks: { label: 'Phonebooks' }
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
@Component({
|
|
32
|
-
selector: 'cc-summary-grid',
|
|
33
|
-
templateUrl: 'summary-grid.component.html',
|
|
34
|
-
styleUrls: ['summary-grid.component.scss']
|
|
35
|
-
})
|
|
36
|
-
export class SummaryGridComponent implements OnInit {
|
|
37
|
-
@Input() customerId!: number;
|
|
38
|
-
@Input() token!: string;
|
|
39
|
-
|
|
40
|
-
private readonly ccReadinessService = inject(CcReadinessService);
|
|
41
|
-
|
|
42
|
-
readonly ENTITY_CONFIG = ENTITY_CONFIG;
|
|
43
|
-
|
|
44
|
-
data$!: Observable<SummaryGridItem[]>;
|
|
45
|
-
|
|
46
|
-
ngOnInit(): void {
|
|
47
|
-
this.ccReadinessService.setToken(this.token);
|
|
48
|
-
|
|
49
|
-
this.data$ = this.ccReadinessService.fetchUccxServerEntityStats(this.customerId)
|
|
50
|
-
.pipe(map(items => {
|
|
51
|
-
return items.map(item => ({
|
|
52
|
-
uccxIp: item.uccxIp,
|
|
53
|
-
counts: Object.entries(item.counts).map(([name, value]) => ({ name, value }))
|
|
54
|
-
}));
|
|
55
|
-
}));
|
|
56
|
-
}
|
|
57
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export const API = {
|
|
2
|
-
READINESS: {
|
|
3
|
-
UCCX_SERVER_ENTITY_STATS: (customerId: number) => `/api/uccx/migration/customer/${customerId}/entity-counts`,
|
|
4
|
-
LICENSE_USAGE_SUMMARY: (customerId: number) => `/api/webexreadiness/customers/${customerId}/callinglicesnsecountperfeature`,
|
|
5
|
-
}
|
|
6
|
-
}
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
|
|
5
|
-
@Injectable({
|
|
6
|
-
providedIn: 'root'
|
|
7
|
-
})
|
|
8
|
-
export class APIService {
|
|
9
|
-
public token: any;
|
|
10
|
-
apiUrl = window.location.protocol + '//' + window.location.hostname + '/dcp';
|
|
11
|
-
constructor(
|
|
12
|
-
private httpClient: HttpClient
|
|
13
|
-
) {
|
|
14
|
-
this.token = 'eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJhZG1pbkBjb3JyZW5ldC5jb20iLCJyb2xlcyI6IlNVUEVSX1VTRVIiLCJpYXQiOjE3NTUwODUyMzgsImV4cCI6MTc1NTEwMzIzOH0.X1CKx-OBZvSs7Bzr_4SWW2ulBgHNkYZrmVuv6V7FZyo'
|
|
15
|
-
// this.apiUrl = window.location.protocol + '//' + window.location.host + '/dcp';
|
|
16
|
-
this.apiUrl = 'https://dev.tuki.io/webex';
|
|
17
|
-
// this.apiUrl = 'http://localhost:8088/dcp';
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
fetch(url: string, params?: any, cache?: boolean): Observable<any> {
|
|
21
|
-
const headers = this.getHeaders(cache);
|
|
22
|
-
params = params || {};
|
|
23
|
-
return this.httpClient.get(this.apiUrl + url, {params: this.prepareEncodedParams(params), headers});
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
post(url: string, body: any, params = {}): Observable<any> {
|
|
27
|
-
body = body || null;
|
|
28
|
-
const headers = this.getHeaders();
|
|
29
|
-
return this.httpClient.post(this.apiUrl + url, body, {params: this.prepareEncodedParams(params), headers});
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
// use when response extended data is necessary:
|
|
33
|
-
postExtended(url: string, body = null, params = {}, headers = {}) {
|
|
34
|
-
headers = headers || this.getHeaders();
|
|
35
|
-
return this.httpClient.post(this.apiUrl + url, body, {
|
|
36
|
-
headers,
|
|
37
|
-
observe: 'response',
|
|
38
|
-
params: this.prepareEncodedParams(params)
|
|
39
|
-
});
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
put(url: string, body = null, params = {}) {
|
|
43
|
-
const headers = this.getHeaders();
|
|
44
|
-
return this.httpClient.put(this.apiUrl + url, body, {headers, params: this.prepareEncodedParams(params)});
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
delete(url: string, params = {}) {
|
|
48
|
-
const headers = this.getHeaders();
|
|
49
|
-
return this.httpClient.delete(this.apiUrl + url, {headers, params: this.prepareEncodedParams(params)});
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
fetchPagination(url: string, pageSize: number, pageNumber: number, additionalParams = {}, cache?: boolean): Observable<any> {
|
|
53
|
-
const copyAdditionalParams = JSON.parse(JSON.stringify(additionalParams));
|
|
54
|
-
const params = Object.assign(copyAdditionalParams, {size: pageSize.toString(), page: pageNumber.toString()});
|
|
55
|
-
return this.fetch(url, params, cache) as Observable<any>;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
private prepareEncodedParams(params: any) {
|
|
59
|
-
const result: any = {};
|
|
60
|
-
|
|
61
|
-
if (!params) {
|
|
62
|
-
return {};
|
|
63
|
-
}
|
|
64
|
-
for (const key of Object.keys(params)) {
|
|
65
|
-
if (params[key]) {
|
|
66
|
-
const stringParam = params[key].toString();
|
|
67
|
-
result[key] = stringParam.includes('+') ? encodeURIComponent(stringParam) : stringParam;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
return result;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
private getHeaders(cache?: boolean): HttpHeaders {
|
|
74
|
-
let headers = new HttpHeaders();
|
|
75
|
-
if (cache) {
|
|
76
|
-
headers = headers.append('_Cache', 'true ');
|
|
77
|
-
}
|
|
78
|
-
const token = this.token || this.getParameterByName('token');
|
|
79
|
-
headers = headers.append('Authorization', 'Bearer '+ token);
|
|
80
|
-
return headers;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
private getParameterByName(name: any, url = window.location.href) {
|
|
84
|
-
name = name.replace(/[\[\]]/g, '\\$&');
|
|
85
|
-
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
|
|
86
|
-
results = regex.exec(url);
|
|
87
|
-
if (!results) return null;
|
|
88
|
-
if (!results[2]) return '';
|
|
89
|
-
return decodeURIComponent(results[2].replace(/\+/g, ' '));
|
|
90
|
-
}
|
|
91
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M2.625 22.75H7.875C8.575 22.75 9.24 22.47 9.73 21.98C10.22 21.49 10.5 20.8163 10.5 20.125V14.875C10.5 14.1837 10.22 13.51 9.73 13.02C9.24 12.53 8.575 12.25 7.875 12.25H2.625C1.925 12.25 1.26 12.53 0.77 13.02C0.28 13.51 0 14.1837 0 14.875V20.125C0 20.8163 0.28 21.49 0.77 21.98C1.26 22.47 1.925 22.75 2.625 22.75ZM8.49625 14.2538C8.65375 14.42 8.75 14.6475 8.75 14.875V20.125C8.75 20.3525 8.65375 20.58 8.49625 20.7462C8.33 20.9037 8.11125 21 7.875 21H2.625C2.38875 21 2.17 20.9037 2.00375 20.7462C1.84625 20.58 1.75 20.3525 1.75 20.125V14.875C1.75 14.6475 1.84625 14.42 2.00375 14.2538C2.17 14.0963 2.38875 14 2.625 14H7.875C8.11125 14 8.33 14.0963 8.49625 14.2538Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M13.02 21.98C13.51 22.47 14.175 22.75 14.875 22.75H20.125C20.825 22.75 21.49 22.47 21.98 21.98C22.47 21.49 22.75 20.8163 22.75 20.125V14.875C22.75 14.1837 22.47 13.51 21.98 13.02C21.49 12.53 20.825 12.25 20.125 12.25H14.875C14.175 12.25 13.51 12.53 13.02 13.02C12.53 13.51 12.25 14.1837 12.25 14.875V20.125C12.25 20.8163 12.53 21.49 13.02 21.98ZM20.7462 14.2538C20.9037 14.42 21 14.6475 21 14.875V20.125C21 20.3525 20.9037 20.58 20.7462 20.7462C20.58 20.9037 20.3613 21 20.125 21H14.875C14.6387 21 14.42 20.9037 14.2538 20.7462C14.0963 20.58 14 20.3525 14 20.125V14.875C14 14.6475 14.0963 14.42 14.2538 14.2538C14.42 14.0963 14.6387 14 14.875 14H20.125C20.3613 14 20.58 14.0963 20.7462 14.2538Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M16.625 4.375V1.75C16.625 1.26875 17.0188 0.875 17.5 0.875C17.9812 0.875 18.375 1.26875 18.375 1.75V4.375H21C21.4812 4.375 21.875 4.76875 21.875 5.25C21.875 5.73125 21.4812 6.125 21 6.125H18.375V8.75C18.375 9.23125 17.9812 9.625 17.5 9.625C17.0188 9.625 16.625 9.23125 16.625 8.75V6.125H14C13.5187 6.125 13.125 5.73125 13.125 5.25C13.125 4.76875 13.5187 4.375 14 4.375H16.625Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M2.625 10.5H7.875C8.575 10.5 9.24 10.22 9.73 9.73C10.22 9.24 10.5 8.56625 10.5 7.875V2.625C10.5 1.93375 10.22 1.26 9.73 0.77C9.24 0.28 8.575 0 7.875 0H2.625C1.925 0 1.26 0.28 0.77 0.77C0.28 1.26 0 1.93375 0 2.625V7.875C0 8.56625 0.28 9.24 0.77 9.73C1.26 10.22 1.925 10.5 2.625 10.5ZM8.49625 2.00375C8.65375 2.17 8.75 2.3975 8.75 2.625V7.875C8.75 8.1025 8.65375 8.33 8.49625 8.49625C8.33 8.65375 8.11125 8.75 7.875 8.75H2.625C2.38875 8.75 2.17 8.65375 2.00375 8.49625C1.84625 8.33 1.75 8.1025 1.75 7.875V2.625C1.75 2.3975 1.84625 2.17 2.00375 2.00375C2.17 1.84625 2.38875 1.75 2.625 1.75H7.875C8.11125 1.75 8.33 1.84625 8.49625 2.00375Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.25 0C9.82718 0 7.45877 0.71845 5.44427 2.0645C3.42977 3.41054 1.85965 5.32373 0.932481 7.56213C0.00530772 9.80052 -0.237283 12.2636 0.235386 14.6399C0.708055 17.0161 1.87475 19.1989 3.58795 20.9121C5.30114 22.6253 7.48388 23.792 9.86015 24.2646C12.2364 24.7373 14.6995 24.4947 16.9379 23.5675C19.1763 22.6404 21.0895 21.0702 22.4355 19.0557C23.7816 17.0412 24.5 14.6728 24.5 12.25C24.4964 9.00222 23.2046 5.8885 20.908 3.59197C18.6115 1.29543 15.4978 0.00364298 12.25 0ZM12.25 22.75C10.1733 22.75 8.14323 22.1342 6.41652 20.9804C4.6898 19.8267 3.34399 18.1868 2.54927 16.2682C1.75455 14.3496 1.54662 12.2384 1.95176 10.2016C2.3569 8.16475 3.35693 6.29383 4.82538 4.82538C6.29384 3.35693 8.16476 2.3569 10.2016 1.95175C12.2384 1.54661 14.3496 1.75454 16.2682 2.54926C18.1868 3.34399 19.8267 4.6898 20.9804 6.41651C22.1342 8.14323 22.75 10.1733 22.75 12.25C22.747 15.0338 21.6397 17.7028 19.6713 19.6713C17.7028 21.6397 15.0338 22.747 12.25 22.75Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M16.8173 6.48303C16.6058 6.3198 16.3598 6.20726 16.098 6.15408C15.8362 6.1009 15.5657 6.10849 15.3074 6.17627L10.0523 7.53235C9.67366 7.63281 9.33965 7.85726 9.1036 8.16983C8.86754 8.48241 8.74305 8.86508 8.75001 9.25671V14.0458C8.30771 13.9555 7.84831 14.0043 7.43482 14.1854C7.02133 14.3665 6.674 14.6712 6.44047 15.0575C6.20694 15.4438 6.09864 15.8929 6.13044 16.3432C6.16223 16.7935 6.33256 17.2229 6.61805 17.5726C6.90355 17.9223 7.29023 18.175 7.72506 18.2963C8.1599 18.4175 8.62159 18.4012 9.04682 18.2497C9.47204 18.0982 9.83997 17.8188 10.1001 17.4499C10.3603 17.081 10.5 16.6406 10.5 16.1892L10.4997 16.1865L10.5 16.1849L10.4949 9.22596L15.75 7.86987V12.2941C15.3077 12.2038 14.8483 12.2526 14.4348 12.4337C14.0213 12.6148 13.674 12.9194 13.4405 13.3058C13.2069 13.6921 13.0986 14.1412 13.1304 14.5915C13.1622 15.0418 13.3326 15.4712 13.6181 15.8209C13.9035 16.1706 14.2902 16.4233 14.7251 16.5446C15.1599 16.6658 15.6216 16.6495 16.0468 16.498C16.472 16.3465 16.84 16.0671 17.1001 15.6982C17.3603 15.3293 17.5 14.8889 17.5 14.4375V7.86987C17.501 7.60169 17.4399 7.33693 17.3214 7.09632C17.203 6.85572 17.0304 6.6458 16.8173 6.48303Z" fill="#0F0F0F"/>
|
|
4
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="20" viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M20.125 0H4.375C3.2151 0.00136165 2.10309 0.462735 1.28291 1.28291C0.462735 2.10309 0.00136165 3.2151 0 4.375V14.875C0.00136165 16.0349 0.462735 17.1469 1.28291 17.9671C2.10309 18.7873 3.2151 19.2486 4.375 19.25H20.125C21.2849 19.2486 22.3969 18.7873 23.2171 17.9671C24.0373 17.1469 24.4986 16.0349 24.5 14.875V4.375C24.4986 3.2151 24.0373 2.10309 23.2171 1.28291C22.3969 0.462738 21.2849 0.00136396 20.125 0ZM4.375 17.5C3.67904 17.4992 3.0118 17.2224 2.51968 16.7303C2.02757 16.2382 1.75076 15.571 1.75 14.875V4.375C1.75076 3.67904 2.02757 3.0118 2.51968 2.51968C3.0118 2.02757 3.67904 1.75076 4.375 1.75H7.875V17.5H4.375ZM9.625 17.5V1.75H14.875V17.5H9.625ZM22.75 14.875C22.7492 15.571 22.4724 16.2382 21.9803 16.7303C21.4882 17.2224 20.821 17.4992 20.125 17.5H16.625V1.75H20.125C20.821 1.75076 21.4882 2.02757 21.9803 2.51968C22.4724 3.0118 22.7492 3.67904 22.75 4.375V14.875Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="21" height="25" viewBox="0 0 21 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M16.625 0H4.375C3.2151 0.00136396 2.10309 0.462738 1.28291 1.28291C0.462738 2.10309 0.00136396 3.2151 0 4.375V20.125C0.00136396 21.2849 0.462738 22.3969 1.28291 23.2171C2.10309 24.0373 3.2151 24.4986 4.375 24.5H16.625C17.7849 24.4986 18.8969 24.0373 19.7171 23.2171C20.5373 22.3969 20.9986 21.2849 21 20.125V4.375C20.9986 3.2151 20.5373 2.10309 19.7171 1.28291C18.8969 0.462735 17.7849 0.00136165 16.625 0ZM19.25 20.125C19.2492 20.821 18.9724 21.4882 18.4803 21.9803C17.9882 22.4724 17.321 22.7492 16.625 22.75H4.375C3.67904 22.7492 3.0118 22.4724 2.51968 21.9803C2.02757 21.4882 1.75076 20.821 1.75 20.125V4.375C1.75076 3.67904 2.02757 3.0118 2.51968 2.51968C3.0118 2.02757 3.67904 1.75076 4.375 1.75H16.625C17.321 1.75076 17.9882 2.02757 18.4803 2.51968C18.9724 3.0118 19.2492 3.67904 19.25 4.375V20.125Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M15.75 10.5H5.25C5.01794 10.5 4.79538 10.5922 4.63128 10.7563C4.46719 10.9204 4.375 11.1429 4.375 11.375C4.375 11.6071 4.46719 11.8296 4.63128 11.9937C4.79538 12.1578 5.01794 12.25 5.25 12.25H15.75C15.9821 12.25 16.2046 12.1578 16.3687 11.9937C16.5328 11.8296 16.625 11.6071 16.625 11.375C16.625 11.1429 16.5328 10.9204 16.3687 10.7563C16.2046 10.5922 15.9821 10.5 15.75 10.5Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M15.75 14H5.25C5.01794 14 4.79538 14.0922 4.63128 14.2563C4.46719 14.4204 4.375 14.6429 4.375 14.875C4.375 15.1071 4.46719 15.3296 4.63128 15.4937C4.79538 15.6578 5.01794 15.75 5.25 15.75H15.75C15.9821 15.75 16.2046 15.6578 16.3687 15.4937C16.5328 15.3296 16.625 15.1071 16.625 14.875C16.625 14.6429 16.5328 14.4204 16.3687 14.2563C16.2046 14.0922 15.9821 14 15.75 14Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M11.375 17.5H5.25171C5.01964 17.5 4.79708 17.5922 4.63299 17.7563C4.46889 17.9204 4.37671 18.1429 4.37671 18.375C4.37671 18.6071 4.46889 18.8296 4.63299 18.9937C4.79708 19.1578 5.01964 19.25 5.25171 19.25H11.375C11.6071 19.25 11.8296 19.1578 11.9937 18.9937C12.1578 18.8296 12.25 18.6071 12.25 18.375C12.25 18.1429 12.1578 17.9204 11.9937 17.7563C11.8296 17.5922 11.6071 17.5 11.375 17.5Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.875 0H2.625C1.92904 0.000759671 1.2618 0.277565 0.769684 0.769684C0.277565 1.2618 0.000759671 1.92904 0 2.625V7.875C0.000759671 8.57096 0.277565 9.2382 0.769684 9.73032C1.2618 10.2224 1.92904 10.4992 2.625 10.5H7.875C8.57096 10.4992 9.2382 10.2224 9.73032 9.73032C10.2224 9.2382 10.4992 8.57096 10.5 7.875V2.625C10.4992 1.92904 10.2224 1.2618 9.73032 0.769684C9.2382 0.277565 8.57096 0.000759671 7.875 0ZM8.75 7.875C8.74984 8.10702 8.65761 8.32949 8.49355 8.49355C8.32949 8.65761 8.10702 8.74984 7.875 8.75H2.625C2.39298 8.74984 2.17051 8.65761 2.00645 8.49355C1.84239 8.32949 1.75016 8.10702 1.75 7.875V2.625C1.75016 2.39298 1.84239 2.17051 2.00645 2.00645C2.17051 1.84239 2.39298 1.75016 2.625 1.75H7.875C8.10702 1.75016 8.32949 1.84239 8.49355 2.00645C8.65761 2.17051 8.74984 2.39298 8.75 2.625V7.875Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M20.125 0H14.875C14.179 0.000759671 13.5118 0.277565 13.0197 0.769684C12.5276 1.2618 12.2508 1.92904 12.25 2.625V7.875C12.2508 8.57096 12.5276 9.2382 13.0197 9.73032C13.5118 10.2224 14.179 10.4992 14.875 10.5H20.125C20.821 10.4992 21.4882 10.2224 21.9803 9.73032C22.4724 9.2382 22.7492 8.57096 22.75 7.875V2.625C22.7492 1.92904 22.4724 1.2618 21.9803 0.769684C21.4882 0.277565 20.821 0.000759671 20.125 0ZM21 7.875C20.9998 8.10702 20.9076 8.32949 20.7435 8.49355C20.5795 8.65761 20.357 8.74984 20.125 8.75H14.875C14.643 8.74984 14.4205 8.65761 14.2565 8.49355C14.0924 8.32949 14.0002 8.10702 14 7.875V2.625C14.0002 2.39298 14.0924 2.17051 14.2565 2.00645C14.4205 1.84239 14.643 1.75016 14.875 1.75H20.125C20.357 1.75016 20.5795 1.84239 20.7435 2.00645C20.9076 2.17051 20.9998 2.39298 21 2.625V7.875Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M20.125 12.25H14.875C14.179 12.2508 13.5118 12.5276 13.0197 13.0197C12.5276 13.5118 12.2508 14.179 12.25 14.875V20.125C12.2508 20.821 12.5276 21.4882 13.0197 21.9803C13.5118 22.4724 14.179 22.7492 14.875 22.75H20.125C20.821 22.7492 21.4882 22.4724 21.9803 21.9803C22.4724 21.4882 22.7492 20.821 22.75 20.125V14.875C22.7492 14.179 22.4724 13.5118 21.9803 13.0197C21.4882 12.5276 20.821 12.2508 20.125 12.25ZM21 20.125C20.9998 20.357 20.9076 20.5795 20.7435 20.7435C20.5795 20.9076 20.357 20.9998 20.125 21H14.875C14.643 20.9998 14.4205 20.9076 14.2565 20.7435C14.0924 20.5795 14.0002 20.357 14 20.125V14.875C14.0002 14.643 14.0924 14.4205 14.2565 14.2565C14.4205 14.0924 14.643 14.0002 14.875 14H20.125C20.357 14.0002 20.5795 14.0924 20.7435 14.2565C20.9076 14.4205 20.9998 14.643 21 14.875V20.125Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M7.875 12.25H2.625C1.92904 12.2508 1.2618 12.5276 0.769684 13.0197C0.277565 13.5118 0.000759671 14.179 0 14.875V20.125C0.000759671 20.821 0.277565 21.4882 0.769684 21.9803C1.2618 22.4724 1.92904 22.7492 2.625 22.75H7.875C8.57096 22.7492 9.2382 22.4724 9.73032 21.9803C10.2224 21.4882 10.4992 20.821 10.5 20.125V14.875C10.4992 14.179 10.2224 13.5118 9.73032 13.0197C9.2382 12.5276 8.57096 12.2508 7.875 12.25ZM8.75 20.125C8.74984 20.357 8.65761 20.5795 8.49355 20.7435C8.32949 20.9076 8.10702 20.9998 7.875 21H2.625C2.39298 20.9998 2.17051 20.9076 2.00645 20.7435C1.84239 20.5795 1.75016 20.357 1.75 20.125V14.875C1.75016 14.643 1.84239 14.4205 2.00645 14.2565C2.17051 14.0924 2.39298 14.0002 2.625 14H7.875C8.10702 14.0002 8.32949 14.0924 8.49355 14.2565C8.65761 14.4205 8.74984 14.643 8.75 14.875V20.125Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.875 4.375C7.875 1.95875 9.83375 0 12.25 0C14.6662 0 16.625 1.95875 16.625 4.375C16.625 6.49159 15.122 8.25712 13.125 8.66248V13.5721L17.2785 16.8025C18.0436 16.1464 19.038 15.75 20.125 15.75C22.5412 15.75 24.5 17.7088 24.5 20.125C24.5 22.5412 22.5412 24.5 20.125 24.5C17.7088 24.5 15.75 22.5412 15.75 20.125C15.75 19.4276 15.9132 18.7684 16.2034 18.1834L12.25 15.1085L8.29662 18.1833C8.58684 18.7684 8.75 19.4276 8.75 20.125C8.75 22.5412 6.79125 24.5 4.375 24.5C1.95875 24.5 0 22.5412 0 20.125C0 17.7088 1.95875 15.75 4.375 15.75C5.46198 15.75 6.45637 16.1464 7.2215 16.8025L11.375 13.572V8.66248C9.37804 8.25712 7.875 6.49159 7.875 4.375ZM12.25 1.75C10.8003 1.75 9.625 2.92525 9.625 4.375C9.625 5.82475 10.8003 7 12.25 7C13.6997 7 14.875 5.82475 14.875 4.375C14.875 2.92525 13.6997 1.75 12.25 1.75ZM4.375 17.5C2.92525 17.5 1.75 18.6753 1.75 20.125C1.75 21.5747 2.92525 22.75 4.375 22.75C5.82475 22.75 7 21.5747 7 20.125C7 18.6753 5.82475 17.5 4.375 17.5ZM20.125 17.5C18.6753 17.5 17.5 18.6753 17.5 20.125C17.5 21.5747 18.6753 22.75 20.125 22.75C21.5747 22.75 22.75 21.5747 22.75 20.125C22.75 18.6753 21.5747 17.5 20.125 17.5Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_2923_17554)">
|
|
3
|
-
<path d="M8.16667 9.33325L3.5 13.9999L8.16667 18.6666" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M19.8333 9.33325L24.4999 13.9999L19.8333 18.6666" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M16.3334 4.66675L11.6667 23.3334" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_2923_17554">
|
|
9
|
-
<rect width="28" height="28" fill="white"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="14" height="25" viewBox="0 0 14 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.1703 2.23457C11.5117 1.51633 10.7083 0.945892 9.81303 0.560874C8.9178 0.175857 7.95112 -0.014991 6.97674 0.000918917C6.01148 -0.00931607 5.05492 0.184356 4.16966 0.569266C3.2844 0.954176 2.49037 1.52165 1.83953 2.23457C1.17158 2.98144 0.666282 3.85909 0.355743 4.81174C0.0452052 5.76439 -0.0637838 6.77122 0.0357002 7.76826C0.1003 8.48937 0.276127 9.19615 0.556937 9.86347L2.62994 14.1795V20.0849C2.62088 20.6639 2.72754 21.2389 2.94367 21.7762C3.15979 22.3135 3.48102 22.8022 3.88852 23.2137C4.29602 23.6252 4.78158 23.9511 5.31673 24.1725C5.85188 24.3938 6.42583 24.506 7.00493 24.5026C7.11771 24.5026 7.22881 24.4983 7.33904 24.4906C8.44822 24.412 9.48518 23.9117 10.2369 23.0923C10.9886 22.2729 11.3979 21.1967 11.3808 20.0849L11.3774 14.2154L13.4709 9.82334C13.7422 9.16731 13.9119 8.47375 13.9742 7.76657C14.0734 6.7698 13.9643 5.76328 13.6538 4.81093C13.3433 3.85858 12.8381 2.98122 12.1703 2.23457ZM9.62966 17.5009L9.6304 19.2527H4.37981L4.37955 17.5009H9.62966ZM7.00492 22.7527C6.46101 22.7617 5.92841 22.5969 5.48475 22.2821C5.04109 21.9673 4.70957 21.5191 4.53849 21.0027H9.47224C9.30105 21.5192 8.96937 21.9675 8.52554 22.2822C8.08172 22.597 7.54896 22.7619 7.00492 22.7527ZM12.231 7.60594C12.1872 8.12218 12.0668 8.62902 11.8738 9.10984L9.79911 13.4601C9.69221 13.6855 9.63398 13.931 9.62821 14.1804L9.6289 15.751H7.87992V10.501C7.87992 10.2689 7.78773 10.0463 7.62363 9.88224C7.45954 9.71814 7.23698 9.62595 7.00492 9.62595C6.77285 9.62595 6.55029 9.71814 6.3862 9.88224C6.22211 10.0463 6.12992 10.2689 6.12992 10.501V15.751H4.37928L4.37907 14.142C4.36962 13.9061 4.31204 13.6746 4.20988 13.4618L2.15397 9.15001C1.9514 8.6579 1.82491 8.13782 1.77885 7.60764C1.69664 6.85271 1.77471 6.08892 2.00795 5.36623C2.24119 4.64354 2.62434 3.97822 3.13236 3.41377C3.62766 2.87633 4.23142 2.45019 4.90372 2.16353C5.57602 1.87688 6.30152 1.73624 7.03223 1.75093C7.75408 1.74203 8.46968 1.88553 9.13228 2.17207C9.79488 2.4586 10.3896 2.88171 10.8775 3.41376C11.3851 3.9781 11.7681 4.64314 12.0013 5.36549C12.2345 6.08784 12.3128 6.85129 12.231 7.60594Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="18" viewBox="0 0 25 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M24.5248 11.2308C24.5005 10.4447 24.2545 9.6814 23.8151 9.02907C23.3757 8.37674 22.7608 7.86193 22.0414 7.54404C22.3399 7.11791 22.5158 6.61805 22.5499 6.09889C22.584 5.57972 22.475 5.06114 22.2348 4.59962C21.9947 4.1381 21.6324 3.75131 21.1877 3.48138C20.7429 3.21145 20.2326 3.06871 19.7123 3.06871C19.192 3.06871 18.6817 3.21145 18.2369 3.48138C17.7921 3.75131 17.4299 4.1381 17.1897 4.59962C16.9495 5.06114 16.8405 5.57972 16.8746 6.09889C16.9087 6.61805 17.0846 7.11791 17.3831 7.54404C17.0628 7.70184 16.7608 7.89441 16.4826 8.11826C16.0984 7.89782 15.697 7.70884 15.2823 7.55317C15.9184 6.95141 16.3592 6.17263 16.5479 5.31756C16.7365 4.4625 16.6643 3.5705 16.3404 2.75696C16.0166 1.94341 15.4561 1.24576 14.7314 0.754257C14.0067 0.262749 13.1513 0 12.2756 0C11.4 0 10.5445 0.262749 9.81986 0.754257C9.09519 1.24576 8.53468 1.94341 8.21084 2.75696C7.887 3.5705 7.81473 4.4625 8.00337 5.31756C8.19202 6.17263 8.63291 6.95141 9.269 7.55317C8.84809 7.71097 8.44087 7.90311 8.05145 8.12766C7.77067 7.90083 7.46552 7.70595 7.14163 7.54661C7.44014 7.12048 7.61602 6.62062 7.65013 6.10145C7.68424 5.58228 7.57526 5.06371 7.33507 4.60218C7.09487 4.14066 6.73267 3.75388 6.28788 3.48395C5.8431 3.21401 5.33278 3.07128 4.8125 3.07128C4.29221 3.07128 3.7819 3.21401 3.33711 3.48395C2.89233 3.75388 2.53012 4.14066 2.28993 4.60218C2.04973 5.06371 1.94076 5.58228 1.97486 6.10145C2.00897 6.62062 2.18485 7.12048 2.48336 7.54661C1.76395 7.8645 1.14908 8.3793 0.709675 9.03163C0.270274 9.68395 0.0242538 10.4472 0 11.2334C0 11.8247 0.320005 12.6305 1.84442 13.1064C2.68744 13.345 3.55834 13.471 4.43442 13.481C4.41589 13.6783 4.40066 13.8765 4.40066 14.078C4.40066 14.9196 4.88516 16.0809 7.19229 16.832C8.84276 17.314 10.5565 17.5445 12.2757 17.5156C15.9085 17.5156 20.1507 16.6158 20.1507 14.078C20.1507 13.8768 20.1354 13.679 20.117 13.482C21.5325 13.438 24.5248 13.1217 24.5248 11.2308ZM19.7123 4.82724C19.9286 4.82724 20.1401 4.89139 20.3199 5.01157C20.4998 5.13175 20.64 5.30257 20.7228 5.50243C20.8056 5.70229 20.8272 5.9222 20.785 6.13437C20.7428 6.34654 20.6386 6.54142 20.4857 6.69439C20.3327 6.84735 20.1378 6.95152 19.9257 6.99372C19.7135 7.03593 19.4936 7.01427 19.2937 6.93148C19.0939 6.8487 18.923 6.70851 18.8029 6.52864C18.6827 6.34878 18.6185 6.13731 18.6185 5.92099C18.6188 5.63099 18.7341 5.35295 18.9392 5.14789C19.1442 4.94283 19.4223 4.82751 19.7123 4.82724ZM9.65065 4.39061C9.65065 3.87144 9.80461 3.36392 10.093 2.93224C10.3815 2.50056 10.7915 2.16411 11.2711 1.96543C11.7508 1.76675 12.2786 1.71477 12.7878 1.81605C13.297 1.91734 13.7647 2.16735 14.1318 2.53446C14.4989 2.90157 14.7489 3.3693 14.8502 3.8785C14.9515 4.3877 14.8995 4.9155 14.7008 5.39516C14.5022 5.87481 14.1657 6.28478 13.734 6.57322C13.3023 6.86166 12.7948 7.01561 12.2757 7.01561C11.5797 7.01486 10.9124 6.73805 10.4203 6.24593C9.92819 5.7538 9.65141 5.08658 9.65065 4.39061ZM4.81253 4.82986C5.02885 4.82986 5.24032 4.89401 5.42018 5.01419C5.60005 5.13438 5.74024 5.3052 5.82302 5.50505C5.9058 5.70491 5.92746 5.92483 5.88526 6.13699C5.84306 6.34916 5.73889 6.54405 5.58592 6.69701C5.43296 6.84998 5.23807 6.95414 5.02591 6.99635C4.81374 7.03855 4.59382 7.01689 4.39397 6.93411C4.19411 6.85132 4.02329 6.71114 3.90311 6.53127C3.78292 6.3514 3.71878 6.13994 3.71878 5.92361C3.71903 5.63361 3.83434 5.35555 4.03939 5.15048C4.24445 4.94541 4.52252 4.83014 4.81253 4.82986ZM4.85278 11.742L4.8125 11.7426C3.7573 11.8323 2.69788 11.6279 1.75175 11.1522C1.80473 9.83025 3.15739 8.76727 4.81254 8.76727C5.42842 8.76434 6.03449 8.92143 6.57141 9.22314C5.81995 9.9259 5.23312 10.786 4.85278 11.742ZM12.2756 15.7656C8.48084 15.7656 6.15064 14.783 6.15064 14.078C6.15064 11.1488 8.89826 8.76565 12.2756 8.76565C15.653 8.76565 18.4006 11.1488 18.4006 14.078C18.4006 14.7829 16.0704 15.7656 12.2756 15.7656ZM19.7123 11.7393L19.6973 11.7389C19.3148 10.7788 18.724 9.91545 17.9677 9.21116C18.5013 8.91543 19.1021 8.76176 19.7123 8.7648C21.3674 8.7648 22.7196 9.82694 22.773 11.1497C21.8267 11.6249 20.7674 11.829 19.7123 11.7393Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M22.5451 4.48254e-08H15.5451C15.313 4.48254e-08 15.0905 0.0921873 14.9264 0.256282C14.7623 0.420376 14.6701 0.642936 14.6701 0.875C14.6701 1.10706 14.7623 1.32962 14.9264 1.49372C15.0905 1.65781 15.313 1.75 15.5451 1.75H20.4306L13.1764 9.00638C13.0952 9.08762 13.0308 9.18407 12.9868 9.29022C12.9428 9.39637 12.9202 9.51014 12.9202 9.62503C12.9202 9.73993 12.9428 9.85369 12.9868 9.95984C13.0308 10.066 13.0952 10.1624 13.1765 10.2437C13.2577 10.3249 13.3542 10.3894 13.4603 10.4333C13.5665 10.4773 13.6802 10.4999 13.7951 10.4999C13.91 10.4999 14.0238 10.4773 14.1299 10.4333C14.2361 10.3893 14.3325 10.3249 14.4138 10.2437L21.6701 2.98517V7.875C21.6701 8.10706 21.7623 8.32962 21.9264 8.49372C22.0905 8.65781 22.3131 8.75 22.5451 8.75C22.7772 8.75 22.9998 8.65781 23.1639 8.49372C23.328 8.32962 23.4201 8.10706 23.4201 7.875V0.875C23.4202 0.760081 23.3976 0.646281 23.3536 0.540104C23.3096 0.433928 23.2452 0.337454 23.1639 0.256196C23.0827 0.174938 22.9862 0.110489 22.88 0.0665294C22.7738 0.0225702 22.66 -3.67429e-05 22.5451 4.48254e-08Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M5.13907 18.237C11.2604 24.3583 16.7449 23.9553 18.3207 22.3795L19.2282 21.472C19.7572 20.9418 20.0543 20.2234 20.0543 19.4744C20.0543 18.7254 19.7572 18.0071 19.2282 17.4769L17.0198 15.2685C16.4912 14.7438 15.7761 14.4503 15.0313 14.4522C14.2866 14.4542 13.573 14.7514 13.0471 15.2787L12.0344 16.2914C10.8187 16.039 9.70861 15.4228 8.85136 14.5247C7.95363 13.6679 7.33661 12.5592 7.08161 11.3447L8.10335 10.3242C8.62052 9.77261 8.90202 9.04099 8.88792 8.28502C8.87382 7.52905 8.56524 6.80842 8.02787 6.27652L5.89921 4.14787C5.36902 3.61885 4.65064 3.32175 3.90167 3.32175C3.1527 3.32175 2.43431 3.61885 1.90412 4.14787L0.996566 5.05542C-0.579266 6.63119 -0.982263 12.1156 5.13907 18.237ZM3.14153 5.38527C3.34323 5.18389 3.61661 5.07078 3.90163 5.07078C4.18666 5.07078 4.46004 5.18389 4.66174 5.38527L6.7904 7.51393C7.00165 7.71659 7.12726 7.99246 7.14141 8.28486C7.15557 8.57726 7.05719 8.86398 6.8665 9.08609L5.65685 10.2945C4.71125 11.2401 5.94264 14.0908 7.61391 15.7621C9.45254 17.6007 12.2138 18.5868 13.0851 17.7155L14.2845 16.5161C14.4819 16.3164 14.7505 16.2032 15.0313 16.2013C15.3121 16.1994 15.5822 16.3089 15.7824 16.5059L17.9908 18.7143C18.1922 18.916 18.3053 19.1894 18.3053 19.4744C18.3053 19.7594 18.1922 20.0328 17.9908 20.2345L17.0832 21.1421C16.1491 22.0762 11.5927 22.2158 6.37648 16.9996C1.16027 11.7833 1.29985 7.22695 2.23397 6.29283L3.14153 5.38527Z" fill="#0F0F0F"/>
|
|
4
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="21" height="23" viewBox="0 0 21 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M1.75 5.25C1.75 5.904 2.37315 6.78201 4.05618 7.54702C5.66022 8.27613 7.93763 8.75 10.5 8.75C13.0624 8.75 15.3398 8.27613 16.9438 7.54702C18.6269 6.78201 19.25 5.904 19.25 5.25C19.25 4.596 18.6269 3.71799 16.9438 2.95298C15.3398 2.22387 13.0624 1.75 10.5 1.75C7.93763 1.75 5.66022 2.22387 4.05618 2.95298C2.37315 3.71799 1.75 4.596 1.75 5.25ZM0 5.25C0 3.48776 1.53148 2.17826 3.33202 1.35984C5.21154 0.505509 7.74663 0 10.5 0C13.2534 0 15.7885 0.505509 17.668 1.35984C19.4685 2.17826 21 3.48776 21 5.25V17.5C21 19.2622 19.4685 20.5717 17.668 21.3902C15.7885 22.2445 13.2534 22.75 10.5 22.75C7.74663 22.75 5.21154 22.2445 3.33202 21.3902C1.53148 20.5717 0 19.2622 0 17.5V5.25ZM1.75 14.3467V17.5C1.75 18.154 2.37315 19.032 4.05617 19.797C5.66022 20.5261 7.93763 21 10.5 21C13.0624 21 15.3398 20.5261 16.9438 19.797C18.6269 19.032 19.25 18.154 19.25 17.5V14.3467C18.7757 14.7008 18.2352 15.0073 17.668 15.2652C15.7885 16.1195 13.2534 16.625 10.5 16.625C7.74663 16.625 5.21154 16.1195 3.33202 15.2652C2.76483 15.0073 2.22433 14.7008 1.75 14.3467ZM19.25 11.375V8.22172C18.7757 8.5758 18.2352 8.88235 17.668 9.14016C15.7885 9.99449 13.2534 10.5 10.5 10.5C7.74663 10.5 5.21154 9.99449 3.33202 9.14016C2.76483 8.88235 2.22433 8.5758 1.75 8.22172V11.375C1.75 12.029 2.37315 12.907 4.05617 13.672C5.66022 14.4011 7.93763 14.875 10.5 14.875C13.0624 14.875 15.3398 14.4011 16.9438 13.672C18.6269 12.907 19.25 12.029 19.25 11.375Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="21" height="25" viewBox="0 0 21 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M16.1408 14.1591H14.7587V19.25H18.199V18.1364H16.1408V14.1591Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M8.23721 14.1591H9.95738L11.1406 17.0426H11.2003L12.3835 14.1591H14.1037V19.25H12.7514V16.3068H12.7116L11.5781 19.2102H10.7628L9.62925 16.2869H9.58948V19.25H8.23721V14.1591Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M5.2151 15.6406L4.37987 14.1591H2.82874L4.3401 16.7046L2.77902 19.25H4.35005L5.2151 17.7386H5.25487L6.11993 19.25H7.7009L6.11993 16.7046L7.64124 14.1591H6.10004L5.25487 15.6406H5.2151Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M4.375 0C1.95875 0 0 1.95875 0 4.375V20.125C0 22.5412 1.95875 24.5 4.375 24.5H16.625C19.0412 24.5 21 22.5412 21 20.125V4.375C21 1.95875 19.0412 0 16.625 0H4.375ZM1.75 4.375C1.75 2.92525 2.92525 1.75 4.375 1.75H16.625C18.0747 1.75 19.25 2.92525 19.25 4.375V20.125C19.25 21.5747 18.0747 22.75 16.625 22.75H4.375C2.92525 22.75 1.75 21.5747 1.75 20.125V4.375Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { NgModule } from "@angular/core";
|
|
2
|
-
import { MatProgressBarModule } from "@angular/material/progress-bar"
|
|
3
|
-
import { MatTableModule } from "@angular/material/table";
|
|
4
|
-
import { MatTooltipModule } from "@angular/material/tooltip";
|
|
5
|
-
import { MatCheckboxModule } from "@angular/material/checkbox";
|
|
6
|
-
import { MatButtonModule } from "@angular/material/button";
|
|
7
|
-
import { MatIconModule } from "@angular/material/icon";
|
|
8
|
-
import { MatFormFieldModule } from "@angular/material/form-field";
|
|
9
|
-
import { MatInputModule } from "@angular/material/input";
|
|
10
|
-
import { MatSelectModule } from "@angular/material/select";
|
|
11
|
-
|
|
12
|
-
@NgModule({
|
|
13
|
-
imports: [
|
|
14
|
-
MatProgressBarModule,
|
|
15
|
-
MatTooltipModule,
|
|
16
|
-
MatTableModule,
|
|
17
|
-
MatCheckboxModule,
|
|
18
|
-
MatButtonModule,
|
|
19
|
-
MatIconModule,
|
|
20
|
-
MatFormFieldModule,
|
|
21
|
-
MatInputModule,
|
|
22
|
-
MatSelectModule
|
|
23
|
-
],
|
|
24
|
-
exports: [
|
|
25
|
-
MatProgressBarModule,
|
|
26
|
-
MatTooltipModule,
|
|
27
|
-
MatTableModule,
|
|
28
|
-
MatCheckboxModule,
|
|
29
|
-
MatButtonModule,
|
|
30
|
-
MatIconModule,
|
|
31
|
-
MatFormFieldModule,
|
|
32
|
-
MatInputModule,
|
|
33
|
-
MatSelectModule
|
|
34
|
-
]
|
|
35
|
-
})
|
|
36
|
-
export class MaterialModule { }
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { NgModule } from "@angular/core";
|
|
2
|
-
import { CommonModule } from "@angular/common";
|
|
3
|
-
import { MaterialModule } from "./material.module";
|
|
4
|
-
import { NgApexchartsModule } from "ng-apexcharts"
|
|
5
|
-
import { MatTableModule } from "@angular/material/table";
|
|
6
|
-
import { HttpClientModule } from "@angular/common/http";
|
|
7
|
-
|
|
8
|
-
@NgModule({
|
|
9
|
-
declarations: [],
|
|
10
|
-
imports: [
|
|
11
|
-
CommonModule,
|
|
12
|
-
MaterialModule,
|
|
13
|
-
NgApexchartsModule,
|
|
14
|
-
HttpClientModule
|
|
15
|
-
],
|
|
16
|
-
exports: [
|
|
17
|
-
MaterialModule
|
|
18
|
-
]
|
|
19
|
-
})
|
|
20
|
-
export class SharedModule {}
|