@sunbird-cb/collection 0.0.1-cbrelease-4.8.29
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 +24 -0
- package/esm2022/lib/_common/app-tour-dialog/app-tour-dialog.component.mjs +57 -0
- package/esm2022/lib/_common/app-tour-dialog/app-tour-dialog.module.mjs +32 -0
- package/esm2022/lib/_common/avatar-photo/avatar-photo.component.mjs +89 -0
- package/esm2022/lib/_common/avatar-photo/avatar-photo.module.mjs +44 -0
- package/esm2022/lib/_common/completion-spinner/completion-spinner.component.mjs +22 -0
- package/esm2022/lib/_common/completion-spinner/completion-spinner.module.mjs +26 -0
- package/esm2022/lib/_common/content-picker-v2/components/filters/filters.component.mjs +52 -0
- package/esm2022/lib/_common/content-picker-v2/components/search-input/search-input.component.mjs +61 -0
- package/esm2022/lib/_common/content-picker-v2/content-picker-v2.component.mjs +126 -0
- package/esm2022/lib/_common/content-picker-v2/content-picker-v2.model.mjs +2 -0
- package/esm2022/lib/_common/content-picker-v2/content-picker-v2.module.mjs +85 -0
- package/esm2022/lib/_common/content-picker-v2/content-picker-v2.service.mjs +20 -0
- package/esm2022/lib/_common/content-progress/content-progress.component.mjs +57 -0
- package/esm2022/lib/_common/content-progress/content-progress.module.mjs +28 -0
- package/esm2022/lib/_common/content-progress/content-progress.service.mjs +63 -0
- package/esm2022/lib/_common/display-content-type/display-content-type.component.mjs +21 -0
- package/esm2022/lib/_common/display-content-type/display-content-type.module.mjs +19 -0
- package/esm2022/lib/_common/display-content-type-icon/display-content-type-icon.component.mjs +22 -0
- package/esm2022/lib/_common/display-content-type-icon/display-content-type-icon.module.mjs +28 -0
- package/esm2022/lib/_common/display-contents/display-contents.component.mjs +58 -0
- package/esm2022/lib/_common/display-contents/display-contents.module.mjs +56 -0
- package/esm2022/lib/_common/email-input/email-input.component.mjs +70 -0
- package/esm2022/lib/_common/email-input/email-input.module.mjs +36 -0
- package/esm2022/lib/_common/language-selector/language-selector.component.mjs +49 -0
- package/esm2022/lib/_common/language-selector/language-selector.module.mjs +35 -0
- package/esm2022/lib/_common/locale-translator/locale-translator.component.mjs +19 -0
- package/esm2022/lib/_common/locale-translator/locale-translator.module.mjs +20 -0
- package/esm2022/lib/_common/mark-as-complete/confirm-dialog/confirm-dialog.component.mjs +47 -0
- package/esm2022/lib/_common/mark-as-complete/mark-as-complete.component.mjs +74 -0
- package/esm2022/lib/_common/mark-as-complete/mark-as-complete.model.mjs +2 -0
- package/esm2022/lib/_common/mark-as-complete/mark-as-complete.module.mjs +57 -0
- package/esm2022/lib/_common/mark-as-complete/mark-as-complete.service.mjs +24 -0
- package/esm2022/lib/_common/pipe-content-route/pipe-content-route.module.mjs +20 -0
- package/esm2022/lib/_common/pipe-content-route/pipe-content-route.pipe.mjs +58 -0
- package/esm2022/lib/_common/player-brief/player-brief.component.mjs +118 -0
- package/esm2022/lib/_common/player-brief/player-brief.module.mjs +67 -0
- package/esm2022/lib/_common/profile-image/profile-image/profile-image.component.mjs +32 -0
- package/esm2022/lib/_common/profile-image/profile-image.module.mjs +26 -0
- package/esm2022/lib/_common/sticky-header/sticky-header.component.mjs +13 -0
- package/esm2022/lib/_common/sticky-header/sticky-header.module.mjs +20 -0
- package/esm2022/lib/_common/tour-guide/tour-guide.component.mjs +15 -0
- package/esm2022/lib/_common/tour-guide/tour-guide.module.mjs +28 -0
- package/esm2022/lib/_common/tour-guide/tour-guide.service.mjs +162 -0
- package/esm2022/lib/_common/user-autocomplete/user-autocomplete.component.mjs +112 -0
- package/esm2022/lib/_common/user-autocomplete/user-autocomplete.model.mjs +12 -0
- package/esm2022/lib/_common/user-autocomplete/user-autocomplete.module.mjs +51 -0
- package/esm2022/lib/_common/user-autocomplete/user-autocomplete.service.mjs +47 -0
- package/esm2022/lib/_common/user-content-rating/user-content-rating.component.mjs +74 -0
- package/esm2022/lib/_common/user-content-rating/user-content-rating.module.mjs +36 -0
- package/esm2022/lib/_common/user-image/user-image.component.mjs +60 -0
- package/esm2022/lib/_common/user-image/user-image.module.mjs +24 -0
- package/esm2022/lib/_constants/goals-error.constants.mjs +11 -0
- package/esm2022/lib/_constants/widget-content.constants.mjs +17 -0
- package/esm2022/lib/_models/common.model.mjs +2 -0
- package/esm2022/lib/_models/error.model.mjs +2 -0
- package/esm2022/lib/_models/player-media.model.mjs +2 -0
- package/esm2022/lib/_services/dynamic-assets-loader.service.mjs +65 -0
- package/esm2022/lib/_services/search-api.service.mjs +98 -0
- package/esm2022/lib/_services/search-serv.service.mjs +370 -0
- package/esm2022/lib/_services/videojs-util.mjs +330 -0
- package/esm2022/lib/_services/viewer-route-util.mjs +74 -0
- package/esm2022/lib/_services/widget-content-share.service.mjs +94 -0
- package/esm2022/lib/_services/widget-content.model.mjs +112 -0
- package/esm2022/lib/_services/widget-content.service.mjs +209 -0
- package/esm2022/lib/_services/widget-search.model.mjs +2 -0
- package/esm2022/lib/_services/widget-share.model.mjs +2 -0
- package/esm2022/lib/_services/widget-user.model.mjs +2 -0
- package/esm2022/lib/_services/widget-user.service.mjs +41 -0
- package/esm2022/lib/activity-card/activity-card.component.mjs +61 -0
- package/esm2022/lib/activity-card/activity-card.module.mjs +37 -0
- package/esm2022/lib/app-button/app-button.component.mjs +43 -0
- package/esm2022/lib/app-button/app-button.module.mjs +40 -0
- package/esm2022/lib/at-glance/at-glance.component.mjs +41 -0
- package/esm2022/lib/at-glance/at-glance.model.mjs +2 -0
- package/esm2022/lib/at-glance/at-glance.module.mjs +29 -0
- package/esm2022/lib/author-card/author-card.component.mjs +35 -0
- package/esm2022/lib/author-card/author-card.model.mjs +2 -0
- package/esm2022/lib/author-card/author-card.module.mjs +23 -0
- package/esm2022/lib/breadcrumbs-org/breadcrumbs-org.component.mjs +102 -0
- package/esm2022/lib/breadcrumbs-org/breadcrumbs-org.module.mjs +36 -0
- package/esm2022/lib/breadcrumbs-org/breadcrumbs-org.service.mjs +99 -0
- package/esm2022/lib/btn-apps/btn-apps.component.mjs +114 -0
- package/esm2022/lib/btn-apps/btn-apps.model.mjs +2 -0
- package/esm2022/lib/btn-apps/btn-apps.module.mjs +44 -0
- package/esm2022/lib/btn-call/btn-call-dialog/btn-call-dialog.component.mjs +37 -0
- package/esm2022/lib/btn-call/btn-call.component.mjs +42 -0
- package/esm2022/lib/btn-call/btn-call.module.mjs +41 -0
- package/esm2022/lib/btn-catalog/btn-catalog.component.mjs +38 -0
- package/esm2022/lib/btn-catalog/btn-catalog.module.mjs +35 -0
- package/esm2022/lib/btn-channel-analytics/btn-channel-analytics.component.mjs +25 -0
- package/esm2022/lib/btn-channel-analytics/btn-channel-analytics.module.mjs +36 -0
- package/esm2022/lib/btn-content-download/btn-content-download.component.mjs +71 -0
- package/esm2022/lib/btn-content-download/btn-content-download.module.mjs +32 -0
- package/esm2022/lib/btn-content-download/btn-content-download.service.mjs +14 -0
- package/esm2022/lib/btn-content-feedback/btn-content-feedback-dialog/btn-content-feedback-dialog.component.mjs +74 -0
- package/esm2022/lib/btn-content-feedback/btn-content-feedback.component.mjs +48 -0
- package/esm2022/lib/btn-content-feedback/btn-content-feedback.model.mjs +2 -0
- package/esm2022/lib/btn-content-feedback/btn-content-feedback.module.mjs +49 -0
- package/esm2022/lib/btn-content-feedback/btn-content-feedback.service.mjs +29 -0
- package/esm2022/lib/btn-content-feedback-v2/btn-content-feedback-v2.module.mjs +77 -0
- package/esm2022/lib/btn-content-feedback-v2/components/btn-content-feedback-dialog-v2/btn-content-feedback-dialog-v2.component.mjs +133 -0
- package/esm2022/lib/btn-content-feedback-v2/components/btn-content-feedback-v2/btn-content-feedback-v2.component.mjs +43 -0
- package/esm2022/lib/btn-content-feedback-v2/components/feedback-snackbar/feedback-snackbar.component.mjs +20 -0
- package/esm2022/lib/btn-content-feedback-v2/models/btn-content-feedback-v2.model.mjs +2 -0
- package/esm2022/lib/btn-content-feedback-v2/models/feedback.model.mjs +16 -0
- package/esm2022/lib/btn-content-feedback-v2/services/feedback.service.mjs +53 -0
- package/esm2022/lib/btn-content-like/btn-content-like.component.mjs +132 -0
- package/esm2022/lib/btn-content-like/btn-content-like.module.mjs +36 -0
- package/esm2022/lib/btn-content-like/btn-content-like.service.mjs +73 -0
- package/esm2022/lib/btn-content-mail-me/btn-content-mail-me-dialog/btn-content-mail-me-dialog.component.mjs +31 -0
- package/esm2022/lib/btn-content-mail-me/btn-content-mail-me.component.mjs +101 -0
- package/esm2022/lib/btn-content-mail-me/btn-content-mail-me.module.mjs +37 -0
- package/esm2022/lib/btn-content-share/btn-content-share-dialog/btn-content-share-dialog.component.mjs +140 -0
- package/esm2022/lib/btn-content-share/btn-content-share.component.mjs +53 -0
- package/esm2022/lib/btn-content-share/btn-content-share.module.mjs +80 -0
- package/esm2022/lib/btn-facebook-share/btn-facebook-share/btn-facebook-share.component.mjs +40 -0
- package/esm2022/lib/btn-facebook-share/btn-facebook-share.module.mjs +18 -0
- package/esm2022/lib/btn-feature/btn-feature.component.mjs +189 -0
- package/esm2022/lib/btn-feature/btn-feature.module.mjs +53 -0
- package/esm2022/lib/btn-feature/btn-feature.service.mjs +20 -0
- package/esm2022/lib/btn-feature/mobile-apps.service.mjs +98 -0
- package/esm2022/lib/btn-feature/models/mobile-events.model.mjs +12 -0
- package/esm2022/lib/btn-feature/navigation-external.service.mjs +31 -0
- package/esm2022/lib/btn-feature/widget-url-resolver.directive.mjs +46 -0
- package/esm2022/lib/btn-follow/btn-follow.component.mjs +68 -0
- package/esm2022/lib/btn-follow/btn-follow.model.mjs +2 -0
- package/esm2022/lib/btn-follow/btn-follow.module.mjs +22 -0
- package/esm2022/lib/btn-follow/btn-follow.service.mjs +102 -0
- package/esm2022/lib/btn-fullscreen/btn-fullscreen.component.mjs +61 -0
- package/esm2022/lib/btn-fullscreen/btn-fullscreen.module.mjs +32 -0
- package/esm2022/lib/btn-fullscreen/fullscreen.util.mjs +41 -0
- package/esm2022/lib/btn-goals/btn-goals-dialog/btn-goals-dialog.component.mjs +24 -0
- package/esm2022/lib/btn-goals/btn-goals-error/btn-goals-error.component.mjs +40 -0
- package/esm2022/lib/btn-goals/btn-goals-selection/btn-goals-selection.component.mjs +95 -0
- package/esm2022/lib/btn-goals/btn-goals.component.mjs +65 -0
- package/esm2022/lib/btn-goals/btn-goals.model.mjs +19 -0
- package/esm2022/lib/btn-goals/btn-goals.module.mjs +66 -0
- package/esm2022/lib/btn-goals/btn-goals.service.mjs +120 -0
- package/esm2022/lib/btn-kb/btn-kb-confirm/btn-kb-confirm.component.mjs +29 -0
- package/esm2022/lib/btn-kb/btn-kb-dialog/btn-kb-dialog.component.mjs +178 -0
- package/esm2022/lib/btn-kb/btn-kb.component.mjs +50 -0
- package/esm2022/lib/btn-kb/btn-kb.module.mjs +80 -0
- package/esm2022/lib/btn-kb/btn-kb.service.mjs +77 -0
- package/esm2022/lib/btn-kb-analytics/btn-kb-analytics.component.mjs +29 -0
- package/esm2022/lib/btn-kb-analytics/btn-kb-analytics.module.mjs +32 -0
- package/esm2022/lib/btn-linkedin-share/btn-linkedin-share/btn-linkedin-share.component.mjs +40 -0
- package/esm2022/lib/btn-linkedin-share/btn-linkedin-share.module.mjs +18 -0
- package/esm2022/lib/btn-mail-user/btn-mail-user-dialog/btn-mail-user-dialog.component.mjs +60 -0
- package/esm2022/lib/btn-mail-user/btn-mail-user.component.mjs +42 -0
- package/esm2022/lib/btn-mail-user/btn-mail-user.module.mjs +49 -0
- package/esm2022/lib/btn-page-back/btn-page-back.component.mjs +102 -0
- package/esm2022/lib/btn-page-back/btn-page-back.module.mjs +36 -0
- package/esm2022/lib/btn-page-back/btn-page-back.service.mjs +99 -0
- package/esm2022/lib/btn-page-back-admin/btn-page-back.component.mjs +102 -0
- package/esm2022/lib/btn-page-back-admin/btn-page-back.module.mjs +36 -0
- package/esm2022/lib/btn-page-back-admin/btn-page-back.service.mjs +99 -0
- package/esm2022/lib/btn-page-back-nav/btn-page-back-nav.component.mjs +64 -0
- package/esm2022/lib/btn-page-back-nav/btn-page-back-nav.module.mjs +32 -0
- package/esm2022/lib/btn-page-back-nav/btn-page-back-nav.service.mjs +99 -0
- package/esm2022/lib/btn-playlist/btn-playlist-dialog/btn-playlist-dialog.component.mjs +26 -0
- package/esm2022/lib/btn-playlist/btn-playlist-selection/btn-playlist-selection.component.mjs +105 -0
- package/esm2022/lib/btn-playlist/btn-playlist.component.mjs +80 -0
- package/esm2022/lib/btn-playlist/btn-playlist.model.mjs +26 -0
- package/esm2022/lib/btn-playlist/btn-playlist.module.mjs +65 -0
- package/esm2022/lib/btn-playlist/btn-playlist.service.mjs +181 -0
- package/esm2022/lib/btn-preview/btn-preview-dialog/btn-preview-dialog.component.mjs +14 -0
- package/esm2022/lib/btn-preview/btn-preview.component.mjs +16 -0
- package/esm2022/lib/btn-preview/btn-preview.module.mjs +21 -0
- package/esm2022/lib/btn-preview/btn-preview.service.mjs +14 -0
- package/esm2022/lib/btn-profile/btn-profile.component.mjs +165 -0
- package/esm2022/lib/btn-profile/btn-profile.module.mjs +59 -0
- package/esm2022/lib/btn-settings/btn-settings.component.mjs +134 -0
- package/esm2022/lib/btn-settings/btn-settings.module.mjs +55 -0
- package/esm2022/lib/btn-settings/btn-settings.service.mjs +228 -0
- package/esm2022/lib/btn-twitter-share/btn-twitter-share/btn-twitter-share.component.mjs +43 -0
- package/esm2022/lib/btn-twitter-share/btn-twitter-share.module.mjs +18 -0
- package/esm2022/lib/card-activity/card-activity.component.mjs +49 -0
- package/esm2022/lib/card-activity/card-activity.module.mjs +35 -0
- package/esm2022/lib/card-breadcrumb/card-breadcrumb.component.mjs +35 -0
- package/esm2022/lib/card-breadcrumb/card-breadcrumb.model.mjs +2 -0
- package/esm2022/lib/card-breadcrumb/card-breadcrumb.module.mjs +20 -0
- package/esm2022/lib/card-browse-course/card-browse-course.component.mjs +61 -0
- package/esm2022/lib/card-browse-course/card-browse-course.module.mjs +64 -0
- package/esm2022/lib/card-carrier/card-carrier.component.mjs +19 -0
- package/esm2022/lib/card-carrier/carrier.model.mjs +2 -0
- package/esm2022/lib/card-carrier-home/card-carrier-home.component.mjs +44 -0
- package/esm2022/lib/card-carrier-home/card-carrier-home.module.mjs +52 -0
- package/esm2022/lib/card-carrier-home/carrier.model.mjs +2 -0
- package/esm2022/lib/card-channel/card-channel.component.mjs +21 -0
- package/esm2022/lib/card-channel/card-channel.model.mjs +2 -0
- package/esm2022/lib/card-channel/card-channel.module.mjs +32 -0
- package/esm2022/lib/card-channel-v2/card-channel-v2.component.mjs +23 -0
- package/esm2022/lib/card-channel-v2/card-channel-v2.module.mjs +39 -0
- package/esm2022/lib/card-content/card-content.component.mjs +239 -0
- package/esm2022/lib/card-content/card-content.model.mjs +11 -0
- package/esm2022/lib/card-content/card-content.module.mjs +136 -0
- package/esm2022/lib/card-course/card-course.component.mjs +376 -0
- package/esm2022/lib/card-course/card-course.module.mjs +30 -0
- package/esm2022/lib/card-discuss/card-discuss.component.mjs +32 -0
- package/esm2022/lib/card-discuss/discuss.model.mjs +2 -0
- package/esm2022/lib/card-home-discuss/card-home-discuss.component.mjs +51 -0
- package/esm2022/lib/card-home-discuss/card-home-discuss.module.mjs +29 -0
- package/esm2022/lib/card-home-discuss/discuss.model.mjs +2 -0
- package/esm2022/lib/card-home-network/card-home-network.component.mjs +33 -0
- package/esm2022/lib/card-home-network/card-home-network.module.mjs +28 -0
- package/esm2022/lib/card-home-top/card-activity/card-activity.component.mjs +33 -0
- package/esm2022/lib/card-home-top/card-competency/card-competency.component.mjs +31 -0
- package/esm2022/lib/card-home-top/card-goal/card-goal.component.mjs +38 -0
- package/esm2022/lib/card-home-top/card-home-top.component.mjs +28 -0
- package/esm2022/lib/card-home-top/card-home-top.module.mjs +45 -0
- package/esm2022/lib/card-home-top/card-learning-status/card-learning-status.component.mjs +26 -0
- package/esm2022/lib/card-home-top/star-rating/star-rating.component.mjs +62 -0
- package/esm2022/lib/card-hubs-list/card-hubs-list.component.mjs +103 -0
- package/esm2022/lib/card-hubs-list/card-hubs-list.module.mjs +33 -0
- package/esm2022/lib/card-knowledge/card-knowledge.component.mjs +64 -0
- package/esm2022/lib/card-knowledge/card-knowledge.model.mjs +2 -0
- package/esm2022/lib/card-knowledge/card-knowledge.module.mjs +62 -0
- package/esm2022/lib/card-learn/card-learn.component.mjs +64 -0
- package/esm2022/lib/card-learn/card-learn.module.mjs +64 -0
- package/esm2022/lib/card-network/card-network.component.mjs +116 -0
- package/esm2022/lib/card-network/card-network.module.mjs +84 -0
- package/esm2022/lib/card-network/card-network.service.mjs +53 -0
- package/esm2022/lib/card-network-home/card-network-home.component.mjs +43 -0
- package/esm2022/lib/card-network-home/card-network-home.module.mjs +83 -0
- package/esm2022/lib/card-table/card-table.component.mjs +281 -0
- package/esm2022/lib/card-table/card-table.model.mjs +2 -0
- package/esm2022/lib/card-table/card-table.module.mjs +84 -0
- package/esm2022/lib/card-table/pipe-table-list/pipe-table-list.module.mjs +20 -0
- package/esm2022/lib/card-table/pipe-table-list/pipe-table-list.pipe.mjs +17 -0
- package/esm2022/lib/card-table/pipe-table-meta/pipe-table-meta.module.mjs +20 -0
- package/esm2022/lib/card-table/pipe-table-meta/pipe-table-meta.pipe.mjs +20 -0
- package/esm2022/lib/card-table/relative-url/relative-url.module.mjs +20 -0
- package/esm2022/lib/card-table/relative-url/relative-url.pipe.mjs +17 -0
- package/esm2022/lib/card-welcome/card-welcome.component.mjs +62 -0
- package/esm2022/lib/card-welcome/card-welcome.module.mjs +64 -0
- package/esm2022/lib/carrier-strip-multiple/carrier-strip-multiple.component.mjs +223 -0
- package/esm2022/lib/carrier-strip-multiple/carrier-strip-multiple.model.mjs +2 -0
- package/esm2022/lib/carrier-strip-multiple/carrier-strip-multiple.module.mjs +55 -0
- package/esm2022/lib/carrier-strip-multiple/carrier-strip-multiple.service.mjs +20 -0
- package/esm2022/lib/challenge/challenge.component.mjs +80 -0
- package/esm2022/lib/challenge/challenge.module.mjs +41 -0
- package/esm2022/lib/channel-hub/channel-hub.component.mjs +36 -0
- package/esm2022/lib/channel-hub/channel-hub.model.mjs +2 -0
- package/esm2022/lib/channel-hub/channel-hub.module.mjs +31 -0
- package/esm2022/lib/collection.config.mjs +165 -0
- package/esm2022/lib/content-assign/content-assign.model.mjs +2 -0
- package/esm2022/lib/content-assign/content-assign.service.mjs +47 -0
- package/esm2022/lib/content-strip-multiple/content-strip-multiple.component.mjs +364 -0
- package/esm2022/lib/content-strip-multiple/content-strip-multiple.model.mjs +2 -0
- package/esm2022/lib/content-strip-multiple/content-strip-multiple.module.mjs +55 -0
- package/esm2022/lib/content-strip-multiple/content-strip-multiple.service.mjs +31 -0
- package/esm2022/lib/content-strip-new-multiple/content-strip-new-multiple.component.mjs +372 -0
- package/esm2022/lib/content-strip-new-multiple/content-strip-new-multiple.model.mjs +2 -0
- package/esm2022/lib/content-strip-new-multiple/content-strip-new-multiple.module.mjs +55 -0
- package/esm2022/lib/content-strip-new-multiple/content-strip-new-multiple.service.mjs +31 -0
- package/esm2022/lib/content-strip-single/content-strip-single.component.mjs +179 -0
- package/esm2022/lib/content-strip-single/content-strip-single.model.mjs +2 -0
- package/esm2022/lib/content-strip-single/content-strip-single.module.mjs +55 -0
- package/esm2022/lib/content-strip-single/content-strip-single.service.mjs +30 -0
- package/esm2022/lib/ctrl-file-upload/components/ctrl-file-upload/ctrl-file-upload.component.mjs +58 -0
- package/esm2022/lib/ctrl-file-upload/ctrl-file-upload.module.mjs +19 -0
- package/esm2022/lib/discuss-strip-multiple/discuss-strip-multiple.component.mjs +222 -0
- package/esm2022/lib/discuss-strip-multiple/discuss-strip-multiple.model.mjs +2 -0
- package/esm2022/lib/discuss-strip-multiple/discuss-strip-multiple.module.mjs +55 -0
- package/esm2022/lib/discuss-strip-multiple/discuss-strip-multiple.service.mjs +20 -0
- package/esm2022/lib/discussion-forum/actionBtn/btn-social-delete/btn-social-delete.component.mjs +39 -0
- package/esm2022/lib/discussion-forum/actionBtn/btn-social-delete/btn-social-delete.module.mjs +20 -0
- package/esm2022/lib/discussion-forum/actionBtn/btn-social-like/btn-social-like.component.mjs +76 -0
- package/esm2022/lib/discussion-forum/actionBtn/btn-social-like/btn-social-like.module.mjs +40 -0
- package/esm2022/lib/discussion-forum/actionBtn/btn-social-vote/btn-social-vote.component.mjs +122 -0
- package/esm2022/lib/discussion-forum/actionBtn/btn-social-vote/btn-social-vote.module.mjs +22 -0
- package/esm2022/lib/discussion-forum/components/discussion-forum/discussion-forum.component.mjs +183 -0
- package/esm2022/lib/discussion-forum/components/discussion-post/discussion-post.component.mjs +175 -0
- package/esm2022/lib/discussion-forum/components/discussion-reply/discussion-reply.component.mjs +82 -0
- package/esm2022/lib/discussion-forum/dialog/dialog-social-activity-user/dialog-social-activity-user.component.mjs +163 -0
- package/esm2022/lib/discussion-forum/dialog/dialog-social-activity-user/dialog-social-activity-user.module.mjs +43 -0
- package/esm2022/lib/discussion-forum/dialog/dialog-social-delete-post/dialog-social-delete-post.component.mjs +45 -0
- package/esm2022/lib/discussion-forum/dialog/dialog-social-delete-post/dialog-social-delete-post.module.mjs +20 -0
- package/esm2022/lib/discussion-forum/discussion-forum.module.mjs +90 -0
- package/esm2022/lib/discussion-forum/editor-quill/editor-quill.component.mjs +47 -0
- package/esm2022/lib/discussion-forum/editor-quill/editor-quill.module.mjs +73 -0
- package/esm2022/lib/discussion-forum/ws-discussion-forum-user.service.mjs +32 -0
- package/esm2022/lib/discussion-forum/ws-discussion-forum.model.mjs +58 -0
- package/esm2022/lib/discussion-forum/ws-discussion-forum.services.mjs +56 -0
- package/esm2022/lib/element-html/element-html.component.mjs +66 -0
- package/esm2022/lib/element-html/element-html.model.mjs +2 -0
- package/esm2022/lib/element-html/element-html.module.mjs +18 -0
- package/esm2022/lib/embedded-page/embedded-page.component.mjs +34 -0
- package/esm2022/lib/embedded-page/embedded-page.model.mjs +2 -0
- package/esm2022/lib/embedded-page/embedded-page.module.mjs +21 -0
- package/esm2022/lib/error-resolver/components/error-access-forbidden/error-access-forbidden.component.mjs +51 -0
- package/esm2022/lib/error-resolver/components/error-access-forbidden/error-access-forbidden.model.mjs +2 -0
- package/esm2022/lib/error-resolver/components/error-content-unavailable/error-content-unavailable.component.mjs +51 -0
- package/esm2022/lib/error-resolver/components/error-content-unavailable/error-content-unavailable.model.mjs +2 -0
- package/esm2022/lib/error-resolver/components/error-feature-disabled/error-feature-disabled.component.mjs +50 -0
- package/esm2022/lib/error-resolver/components/error-feature-disabled/error-feature-disabled.model.mjs +2 -0
- package/esm2022/lib/error-resolver/components/error-feature-unavailable/error-feature-unavailable.component.mjs +50 -0
- package/esm2022/lib/error-resolver/components/error-feature-unavailable/error-feature-unavailable.model.mjs +2 -0
- package/esm2022/lib/error-resolver/components/error-internal-server/error-internal-server.component.mjs +51 -0
- package/esm2022/lib/error-resolver/components/error-internal-server/error-internal-server.model.mjs +2 -0
- package/esm2022/lib/error-resolver/components/error-not-found/error-not-found.component.mjs +51 -0
- package/esm2022/lib/error-resolver/components/error-not-found/error-not-found.model.mjs +2 -0
- package/esm2022/lib/error-resolver/components/error-service-unavailable/error-service-unavailable.component.mjs +51 -0
- package/esm2022/lib/error-resolver/components/error-service-unavailable/error-service-unavailable.model.mjs +2 -0
- package/esm2022/lib/error-resolver/components/error-something-wrong/error-something-wrong.component.mjs +51 -0
- package/esm2022/lib/error-resolver/components/error-something-wrong/error-something-wrong.model.mjs +2 -0
- package/esm2022/lib/error-resolver/error-resolver.component.mjs +80 -0
- package/esm2022/lib/error-resolver/error-resolver.model.mjs +2 -0
- package/esm2022/lib/error-resolver/error-resolver.module.mjs +45 -0
- package/esm2022/lib/error-resolver/error-resolver.service.mjs +23 -0
- package/esm2022/lib/gallery-view/gallery-view.component.mjs +58 -0
- package/esm2022/lib/gallery-view/gallery-view.model.mjs +2 -0
- package/esm2022/lib/gallery-view/gallery-view.module.mjs +22 -0
- package/esm2022/lib/graph-general/graph-general-color-palette.mjs +135 -0
- package/esm2022/lib/graph-general/graph-general.component.mjs +366 -0
- package/esm2022/lib/graph-general/graph-general.model.mjs +2 -0
- package/esm2022/lib/graph-general/graph-general.module.mjs +20 -0
- package/esm2022/lib/graph-general/graph-general.service.mjs +21 -0
- package/esm2022/lib/grid-layout/grid-layout.component.mjs +33 -0
- package/esm2022/lib/grid-layout/grid-layout.model.mjs +21 -0
- package/esm2022/lib/grid-layout/grid-layout.module.mjs +19 -0
- package/esm2022/lib/group-checkbox/group-checkbox.component.mjs +24 -0
- package/esm2022/lib/group-checkbox/group-checkbox.model.mjs +2 -0
- package/esm2022/lib/group-checkbox/group-checkbox.module.mjs +36 -0
- package/esm2022/lib/image-map-responsive/image-map-responsive.component.mjs +84 -0
- package/esm2022/lib/image-map-responsive/image-map-responsive.model.mjs +2 -0
- package/esm2022/lib/image-map-responsive/image-map-responsive.module.mjs +19 -0
- package/esm2022/lib/intranet-selector/intranet-selector.component.mjs +48 -0
- package/esm2022/lib/intranet-selector/intranet-selector.model.mjs +2 -0
- package/esm2022/lib/intranet-selector/intranet-selector.module.mjs +23 -0
- package/esm2022/lib/intranet-selector/intranet-selector.service.mjs +26 -0
- package/esm2022/lib/layout-linear/layout-linear.component.mjs +17 -0
- package/esm2022/lib/layout-linear/layout-linear.module.mjs +18 -0
- package/esm2022/lib/layout-tab/layout-tab.component.mjs +46 -0
- package/esm2022/lib/layout-tab/layout-tab.model.mjs +2 -0
- package/esm2022/lib/layout-tab/layout-tab.module.mjs +19 -0
- package/esm2022/lib/left-menu/base64.json +3 -0
- package/esm2022/lib/left-menu/left-menu.component.mjs +86 -0
- package/esm2022/lib/left-menu/left-menu.model.mjs +2 -0
- package/esm2022/lib/left-menu/left-menu.module.mjs +68 -0
- package/esm2022/lib/left-menu/left-menu.service.mjs +26 -0
- package/esm2022/lib/left-menu-without-logo/left-menu-without-logo.component.mjs +34 -0
- package/esm2022/lib/left-menu-without-logo/left-menu-without-logo.model.mjs +2 -0
- package/esm2022/lib/left-menu-without-logo/left-menu-without-logo.module.mjs +62 -0
- package/esm2022/lib/network-strip-multiple/network-strip-multiple.component.mjs +227 -0
- package/esm2022/lib/network-strip-multiple/network-strip-multiple.model.mjs +2 -0
- package/esm2022/lib/network-strip-multiple/network-strip-multiple.module.mjs +55 -0
- package/esm2022/lib/network-strip-multiple/network-strip-multiple.service.mjs +20 -0
- package/esm2022/lib/page/page.component.mjs +178 -0
- package/esm2022/lib/page/page.module.mjs +56 -0
- package/esm2022/lib/picker-content/picker-content.component.mjs +199 -0
- package/esm2022/lib/picker-content/picker-content.model.mjs +2 -0
- package/esm2022/lib/picker-content/picker-content.module.mjs +93 -0
- package/esm2022/lib/picker-content/picker-content.service.mjs +26 -0
- package/esm2022/lib/player-amp/player-amp.component.mjs +232 -0
- package/esm2022/lib/player-amp/player-amp.model.mjs +2 -0
- package/esm2022/lib/player-amp/player-amp.module.mjs +19 -0
- package/esm2022/lib/player-amp/player-amp.utility.mjs +49 -0
- package/esm2022/lib/player-audio/player-audio.component.mjs +151 -0
- package/esm2022/lib/player-audio/player-audio.module.mjs +18 -0
- package/esm2022/lib/player-pdf/player-pdf.component.mjs +346 -0
- package/esm2022/lib/player-pdf/player-pdf.model.mjs +2 -0
- package/esm2022/lib/player-pdf/player-pdf.module.mjs +59 -0
- package/esm2022/lib/player-slides/player-slides.component.mjs +15 -0
- package/esm2022/lib/player-slides/player-slides.module.mjs +19 -0
- package/esm2022/lib/player-video/player-video.component.mjs +218 -0
- package/esm2022/lib/player-video/player-video.module.mjs +20 -0
- package/esm2022/lib/player-web-pages/player-web-pages.component.mjs +15 -0
- package/esm2022/lib/player-web-pages/player-web-pages.module.mjs +19 -0
- package/esm2022/lib/player-youtube/player-youtube.component.mjs +216 -0
- package/esm2022/lib/player-youtube/player-youtube.module.mjs +19 -0
- package/esm2022/lib/profile-v2/profile-academics/profile-academics.component.mjs +26 -0
- package/esm2022/lib/profile-v2/profile-academics/profile-academics.model.mjs +2 -0
- package/esm2022/lib/profile-v2/profile-academics/profile-academics.module.mjs +28 -0
- package/esm2022/lib/profile-v2/profile-career/profile-career.component.mjs +30 -0
- package/esm2022/lib/profile-v2/profile-career/profile-career.model.mjs +2 -0
- package/esm2022/lib/profile-v2/profile-career/profile-career.module.mjs +28 -0
- package/esm2022/lib/profile-v2/profile-competencies/profile-competencies.component.mjs +24 -0
- package/esm2022/lib/profile-v2/profile-competencies/profile-competencies.module.mjs +27 -0
- package/esm2022/lib/profile-v2/profile-cretifications/profile-cretifications.component.mjs +25 -0
- package/esm2022/lib/profile-v2/profile-cretifications/profile-cretifications.model.mjs +2 -0
- package/esm2022/lib/profile-v2/profile-cretifications/profile-cretifications.module.mjs +27 -0
- package/esm2022/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.component.mjs +28 -0
- package/esm2022/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.model.mjs +2 -0
- package/esm2022/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.module.mjs +27 -0
- package/esm2022/lib/profile-v2/profile-departments/profile-departments.component.mjs +24 -0
- package/esm2022/lib/profile-v2/profile-departments/profile-departments.module.mjs +27 -0
- package/esm2022/lib/profile-v2/profile-hobbies/profile-hobbies.component.mjs +25 -0
- package/esm2022/lib/profile-v2/profile-hobbies/profile-hobbies.model.mjs +2 -0
- package/esm2022/lib/profile-v2/profile-hobbies/profile-hobbies.module.mjs +27 -0
- package/esm2022/lib/registration.config.mjs +630 -0
- package/esm2022/lib/release-notes/release-notes.component.mjs +25 -0
- package/esm2022/lib/release-notes/release-notes.model.mjs +2 -0
- package/esm2022/lib/release-notes/release-notes.module.mjs +63 -0
- package/esm2022/lib/scrollspy-left-menu/scrollspy-left-menu.component.mjs +32 -0
- package/esm2022/lib/scrollspy-left-menu/scrollspy-left-menu.model.mjs +2 -0
- package/esm2022/lib/scrollspy-left-menu/scrollspy-left-menu.module.mjs +24 -0
- package/esm2022/lib/selector-responsive/selector-responsive.component.mjs +61 -0
- package/esm2022/lib/selector-responsive/selector-responsive.model.mjs +2 -0
- package/esm2022/lib/selector-responsive/selector-responsive.module.mjs +20 -0
- package/esm2022/lib/sliders/sliders.component.mjs +79 -0
- package/esm2022/lib/sliders/sliders.model.mjs +2 -0
- package/esm2022/lib/sliders/sliders.module.mjs +57 -0
- package/esm2022/lib/sliders-mob/sliders-mob.component.mjs +77 -0
- package/esm2022/lib/sliders-mob/sliders-mob.module.mjs +32 -0
- package/esm2022/lib/tree/tree.component.mjs +35 -0
- package/esm2022/lib/tree/tree.model.mjs +2 -0
- package/esm2022/lib/tree/tree.module.mjs +40 -0
- package/esm2022/lib/tree-catalog/tree-catalog-menu/tree-catalog-menu.component.mjs +35 -0
- package/esm2022/lib/tree-catalog/tree-catalog-route.pipe.mjs +16 -0
- package/esm2022/lib/tree-catalog/tree-catalog.component.mjs +49 -0
- package/esm2022/lib/tree-catalog/tree-catalog.model.mjs +2 -0
- package/esm2022/lib/tree-catalog/tree-catalog.module.mjs +46 -0
- package/esm2022/lib/tree-catalog/tree-catalog.service.mjs +39 -0
- package/esm2022/lib/ui-admin-table/create-department.services.mjs +61 -0
- package/esm2022/lib/ui-admin-table/directory-list/directory-table.component.mjs +135 -0
- package/esm2022/lib/ui-admin-table/interface/interfaces.mjs +2 -0
- package/esm2022/lib/ui-admin-table/ui-admin-table.module.mjs +98 -0
- package/esm2022/lib/ui-admin-table/user-list/ui-admin-user-table.component.mjs +189 -0
- package/esm2022/lib/ui-admin-table/user-list-popup/ui-user-table-pop-up.component.mjs +159 -0
- package/esm2022/lib/ui-admin-table/user-list-popup/ui-user-table-pop-up.services.mjs +23 -0
- package/esm2022/lib/ui-admin-table/user-popup/user-popup.mjs +49 -0
- package/esm2022/lib/ui-org-table/interface/interfaces.mjs +2 -0
- package/esm2022/lib/ui-org-table/org-user-table-v2/org-user-table-v2.component.mjs +206 -0
- package/esm2022/lib/ui-org-table/ui-org-table.module.mjs +87 -0
- package/esm2022/lib/ui-org-table/user-list/org-user-table.component.mjs +194 -0
- package/esm2022/lib/user-content-detailed-rating/contentRating.model.mjs +2 -0
- package/esm2022/lib/user-content-detailed-rating/user-content-detailed-rating.component.mjs +35 -0
- package/esm2022/lib/user-content-detailed-rating/user-content-detailed-rating.module.mjs +40 -0
- package/esm2022/lib/video-wrapper/video-wrapper.component.mjs +42 -0
- package/esm2022/lib/video-wrapper/video-wrapper.model.mjs +2 -0
- package/esm2022/lib/video-wrapper/video-wrapper.module.mjs +28 -0
- package/esm2022/public-api.mjs +275 -0
- package/esm2022/sunbird-cb-collection.mjs +2 -0
- package/fesm2022/sunbird-cb-collection.mjs +21006 -0
- package/fesm2022/sunbird-cb-collection.mjs.map +1 -0
- package/index.d.ts +3 -0
- package/lib/_common/app-tour-dialog/app-tour-dialog.component.d.ts +24 -0
- package/lib/_common/app-tour-dialog/app-tour-dialog.component.d.ts.map +1 -0
- package/lib/_common/app-tour-dialog/app-tour-dialog.module.d.ts +13 -0
- package/lib/_common/app-tour-dialog/app-tour-dialog.module.d.ts.map +1 -0
- package/lib/_common/avatar-photo/avatar-photo.component.d.ts +20 -0
- package/lib/_common/avatar-photo/avatar-photo.component.d.ts.map +1 -0
- package/lib/_common/avatar-photo/avatar-photo.module.d.ts +15 -0
- package/lib/_common/avatar-photo/avatar-photo.module.d.ts.map +1 -0
- package/lib/_common/completion-spinner/completion-spinner.component.d.ts +11 -0
- package/lib/_common/completion-spinner/completion-spinner.component.d.ts.map +1 -0
- package/lib/_common/completion-spinner/completion-spinner.module.d.ts +10 -0
- package/lib/_common/completion-spinner/completion-spinner.module.d.ts.map +1 -0
- package/lib/_common/content-picker-v2/components/filters/filters.component.d.ts +21 -0
- package/lib/_common/content-picker-v2/components/filters/filters.component.d.ts.map +1 -0
- package/lib/_common/content-picker-v2/components/search-input/search-input.component.d.ts +30 -0
- package/lib/_common/content-picker-v2/components/search-input/search-input.component.d.ts.map +1 -0
- package/lib/_common/content-picker-v2/content-picker-v2.component.d.ts +49 -0
- package/lib/_common/content-picker-v2/content-picker-v2.component.d.ts.map +1 -0
- package/lib/_common/content-picker-v2/content-picker-v2.model.d.ts +21 -0
- package/lib/_common/content-picker-v2/content-picker-v2.model.d.ts.map +1 -0
- package/lib/_common/content-picker-v2/content-picker-v2.module.d.ts +24 -0
- package/lib/_common/content-picker-v2/content-picker-v2.module.d.ts.map +1 -0
- package/lib/_common/content-picker-v2/content-picker-v2.service.d.ts +10 -0
- package/lib/_common/content-picker-v2/content-picker-v2.service.d.ts.map +1 -0
- package/lib/_common/content-progress/content-progress.component.d.ts +17 -0
- package/lib/_common/content-progress/content-progress.component.d.ts.map +1 -0
- package/lib/_common/content-progress/content-progress.module.d.ts +11 -0
- package/lib/_common/content-progress/content-progress.module.d.ts.map +1 -0
- package/lib/_common/content-progress/content-progress.service.d.ts +21 -0
- package/lib/_common/content-progress/content-progress.service.d.ts.map +1 -0
- package/lib/_common/display-content-type/display-content-type.component.d.ts +12 -0
- package/lib/_common/display-content-type/display-content-type.component.d.ts.map +1 -0
- package/lib/_common/display-content-type/display-content-type.module.d.ts +10 -0
- package/lib/_common/display-content-type/display-content-type.module.d.ts.map +1 -0
- package/lib/_common/display-content-type-icon/display-content-type-icon.component.d.ts +12 -0
- package/lib/_common/display-content-type-icon/display-content-type-icon.component.d.ts.map +1 -0
- package/lib/_common/display-content-type-icon/display-content-type-icon.module.d.ts +11 -0
- package/lib/_common/display-content-type-icon/display-content-type-icon.module.d.ts.map +1 -0
- package/lib/_common/display-contents/display-contents.component.d.ts +25 -0
- package/lib/_common/display-contents/display-contents.component.d.ts.map +1 -0
- package/lib/_common/display-contents/display-contents.module.d.ts +16 -0
- package/lib/_common/display-contents/display-contents.module.d.ts.map +1 -0
- package/lib/_common/email-input/email-input.component.d.ts +25 -0
- package/lib/_common/email-input/email-input.component.d.ts.map +1 -0
- package/lib/_common/email-input/email-input.module.d.ts +13 -0
- package/lib/_common/email-input/email-input.module.d.ts.map +1 -0
- package/lib/_common/language-selector/language-selector.component.d.ts +21 -0
- package/lib/_common/language-selector/language-selector.component.d.ts.map +1 -0
- package/lib/_common/language-selector/language-selector.module.d.ts +12 -0
- package/lib/_common/language-selector/language-selector.module.d.ts.map +1 -0
- package/lib/_common/locale-translator/locale-translator.component.d.ts +10 -0
- package/lib/_common/locale-translator/locale-translator.component.d.ts.map +1 -0
- package/lib/_common/locale-translator/locale-translator.module.d.ts +9 -0
- package/lib/_common/locale-translator/locale-translator.module.d.ts.map +1 -0
- package/lib/_common/mark-as-complete/confirm-dialog/confirm-dialog.component.d.ts +27 -0
- package/lib/_common/mark-as-complete/confirm-dialog/confirm-dialog.component.d.ts.map +1 -0
- package/lib/_common/mark-as-complete/mark-as-complete.component.d.ts +23 -0
- package/lib/_common/mark-as-complete/mark-as-complete.component.d.ts.map +1 -0
- package/lib/_common/mark-as-complete/mark-as-complete.model.d.ts +9 -0
- package/lib/_common/mark-as-complete/mark-as-complete.model.d.ts.map +1 -0
- package/lib/_common/mark-as-complete/mark-as-complete.module.d.ts +19 -0
- package/lib/_common/mark-as-complete/mark-as-complete.module.d.ts.map +1 -0
- package/lib/_common/mark-as-complete/mark-as-complete.service.d.ts +11 -0
- package/lib/_common/mark-as-complete/mark-as-complete.service.d.ts.map +1 -0
- package/lib/_common/pipe-content-route/pipe-content-route.module.d.ts +9 -0
- package/lib/_common/pipe-content-route/pipe-content-route.module.d.ts.map +1 -0
- package/lib/_common/pipe-content-route/pipe-content-route.pipe.d.ts +16 -0
- package/lib/_common/pipe-content-route/pipe-content-route.pipe.d.ts.map +1 -0
- package/lib/_common/player-brief/player-brief.component.d.ts +34 -0
- package/lib/_common/player-brief/player-brief.component.d.ts.map +1 -0
- package/lib/_common/player-brief/player-brief.module.d.ts +20 -0
- package/lib/_common/player-brief/player-brief.module.d.ts.map +1 -0
- package/lib/_common/profile-image/profile-image/profile-image.component.d.ts +14 -0
- package/lib/_common/profile-image/profile-image/profile-image.component.d.ts.map +1 -0
- package/lib/_common/profile-image/profile-image.module.d.ts +10 -0
- package/lib/_common/profile-image/profile-image.module.d.ts.map +1 -0
- package/lib/_common/sticky-header/sticky-header.component.d.ts +8 -0
- package/lib/_common/sticky-header/sticky-header.component.d.ts.map +1 -0
- package/lib/_common/sticky-header/sticky-header.module.d.ts +9 -0
- package/lib/_common/sticky-header/sticky-header.module.d.ts.map +1 -0
- package/lib/_common/tour-guide/tour-guide.component.d.ts +9 -0
- package/lib/_common/tour-guide/tour-guide.component.d.ts.map +1 -0
- package/lib/_common/tour-guide/tour-guide.module.d.ts +11 -0
- package/lib/_common/tour-guide/tour-guide.module.d.ts.map +1 -0
- package/lib/_common/tour-guide/tour-guide.service.d.ts +22 -0
- package/lib/_common/tour-guide/tour-guide.service.d.ts.map +1 -0
- package/lib/_common/user-autocomplete/user-autocomplete.component.d.ts +35 -0
- package/lib/_common/user-autocomplete/user-autocomplete.component.d.ts.map +1 -0
- package/lib/_common/user-autocomplete/user-autocomplete.model.d.ts +18 -0
- package/lib/_common/user-autocomplete/user-autocomplete.model.d.ts.map +1 -0
- package/lib/_common/user-autocomplete/user-autocomplete.module.d.ts +16 -0
- package/lib/_common/user-autocomplete/user-autocomplete.module.d.ts.map +1 -0
- package/lib/_common/user-autocomplete/user-autocomplete.service.d.ts +15 -0
- package/lib/_common/user-autocomplete/user-autocomplete.service.d.ts.map +1 -0
- package/lib/_common/user-content-rating/user-content-rating.component.d.ts +21 -0
- package/lib/_common/user-content-rating/user-content-rating.component.d.ts.map +1 -0
- package/lib/_common/user-content-rating/user-content-rating.module.d.ts +13 -0
- package/lib/_common/user-content-rating/user-content-rating.module.d.ts.map +1 -0
- package/lib/_common/user-image/user-image.component.d.ts +22 -0
- package/lib/_common/user-image/user-image.component.d.ts.map +1 -0
- package/lib/_common/user-image/user-image.module.d.ts +10 -0
- package/lib/_common/user-image/user-image.module.d.ts.map +1 -0
- package/lib/_constants/goals-error.constants.d.ts +10 -0
- package/lib/_constants/goals-error.constants.d.ts.map +1 -0
- package/lib/_constants/widget-content.constants.d.ts +8 -0
- package/lib/_constants/widget-content.constants.d.ts.map +1 -0
- package/lib/_models/common.model.d.ts +4 -0
- package/lib/_models/common.model.d.ts.map +1 -0
- package/lib/_models/error.model.d.ts +6 -0
- package/lib/_models/error.model.d.ts.map +1 -0
- package/lib/_models/player-media.model.d.ts +21 -0
- package/lib/_models/player-media.model.d.ts.map +1 -0
- package/lib/_services/dynamic-assets-loader.service.d.ts +12 -0
- package/lib/_services/dynamic-assets-loader.service.d.ts.map +1 -0
- package/lib/_services/search-api.service.d.ts +17 -0
- package/lib/_services/search-api.service.d.ts.map +1 -0
- package/lib/_services/search-serv.service.d.ts +61 -0
- package/lib/_services/search-serv.service.d.ts.map +1 -0
- package/lib/_services/videojs-util.d.ts +35 -0
- package/lib/_services/videojs-util.d.ts.map +1 -0
- package/lib/_services/viewer-route-util.d.ts +9 -0
- package/lib/_services/viewer-route-util.d.ts.map +1 -0
- package/lib/_services/widget-content-share.service.d.ts +23 -0
- package/lib/_services/widget-content-share.service.d.ts.map +1 -0
- package/lib/_services/widget-content.model.d.ts +391 -0
- package/lib/_services/widget-content.model.d.ts.map +1 -0
- package/lib/_services/widget-content.service.d.ts +55 -0
- package/lib/_services/widget-content.service.d.ts.map +1 -0
- package/lib/_services/widget-search.model.d.ts +230 -0
- package/lib/_services/widget-search.model.d.ts.map +1 -0
- package/lib/_services/widget-share.model.d.ts +59 -0
- package/lib/_services/widget-share.model.d.ts.map +1 -0
- package/lib/_services/widget-user.model.d.ts +6 -0
- package/lib/_services/widget-user.model.d.ts.map +1 -0
- package/lib/_services/widget-user.service.d.ts +15 -0
- package/lib/_services/widget-user.service.d.ts.map +1 -0
- package/lib/activity-card/activity-card.component.d.ts +20 -0
- package/lib/activity-card/activity-card.component.d.ts.map +1 -0
- package/lib/activity-card/activity-card.module.d.ts +13 -0
- package/lib/activity-card/activity-card.module.d.ts.map +1 -0
- package/lib/app-button/app-button.component.d.ts +18 -0
- package/lib/app-button/app-button.component.d.ts.map +1 -0
- package/lib/app-button/app-button.module.d.ts +14 -0
- package/lib/app-button/app-button.module.d.ts.map +1 -0
- package/lib/at-glance/at-glance.component.d.ts +15 -0
- package/lib/at-glance/at-glance.component.d.ts.map +1 -0
- package/lib/at-glance/at-glance.model.d.ts +33 -0
- package/lib/at-glance/at-glance.model.d.ts.map +1 -0
- package/lib/at-glance/at-glance.module.d.ts +15 -0
- package/lib/at-glance/at-glance.module.d.ts.map +1 -0
- package/lib/author-card/author-card.component.d.ts +14 -0
- package/lib/author-card/author-card.component.d.ts.map +1 -0
- package/lib/author-card/author-card.model.d.ts +7 -0
- package/lib/author-card/author-card.model.d.ts.map +1 -0
- package/lib/author-card/author-card.module.d.ts +14 -0
- package/lib/author-card/author-card.module.d.ts.map +1 -0
- package/lib/breadcrumbs-org/breadcrumbs-org.component.d.ts +35 -0
- package/lib/breadcrumbs-org/breadcrumbs-org.component.d.ts.map +1 -0
- package/lib/breadcrumbs-org/breadcrumbs-org.module.d.ts +13 -0
- package/lib/breadcrumbs-org/breadcrumbs-org.module.d.ts.map +1 -0
- package/lib/breadcrumbs-org/breadcrumbs-org.service.d.ts +23 -0
- package/lib/breadcrumbs-org/breadcrumbs-org.service.d.ts.map +1 -0
- package/lib/btn-apps/btn-apps.component.d.ts +28 -0
- package/lib/btn-apps/btn-apps.component.d.ts.map +1 -0
- package/lib/btn-apps/btn-apps.model.d.ts +5 -0
- package/lib/btn-apps/btn-apps.model.d.ts.map +1 -0
- package/lib/btn-apps/btn-apps.module.d.ts +15 -0
- package/lib/btn-apps/btn-apps.module.d.ts.map +1 -0
- package/lib/btn-call/btn-call-dialog/btn-call-dialog.component.d.ts +18 -0
- package/lib/btn-call/btn-call-dialog/btn-call-dialog.component.d.ts.map +1 -0
- package/lib/btn-call/btn-call.component.d.ts +23 -0
- package/lib/btn-call/btn-call.component.d.ts.map +1 -0
- package/lib/btn-call/btn-call.module.d.ts +15 -0
- package/lib/btn-call/btn-call.module.d.ts.map +1 -0
- package/lib/btn-catalog/btn-catalog.component.d.ts +16 -0
- package/lib/btn-catalog/btn-catalog.component.d.ts.map +1 -0
- package/lib/btn-catalog/btn-catalog.module.d.ts +13 -0
- package/lib/btn-catalog/btn-catalog.module.d.ts.map +1 -0
- package/lib/btn-channel-analytics/btn-channel-analytics.component.d.ts +15 -0
- package/lib/btn-channel-analytics/btn-channel-analytics.component.d.ts.map +1 -0
- package/lib/btn-channel-analytics/btn-channel-analytics.module.d.ts +13 -0
- package/lib/btn-channel-analytics/btn-channel-analytics.module.d.ts.map +1 -0
- package/lib/btn-content-download/btn-content-download.component.d.ts +30 -0
- package/lib/btn-content-download/btn-content-download.component.d.ts.map +1 -0
- package/lib/btn-content-download/btn-content-download.module.d.ts +12 -0
- package/lib/btn-content-download/btn-content-download.module.d.ts.map +1 -0
- package/lib/btn-content-download/btn-content-download.service.d.ts +7 -0
- package/lib/btn-content-download/btn-content-download.service.d.ts.map +1 -0
- package/lib/btn-content-feedback/btn-content-feedback-dialog/btn-content-feedback-dialog.component.d.ts +29 -0
- package/lib/btn-content-feedback/btn-content-feedback-dialog/btn-content-feedback-dialog.component.d.ts.map +1 -0
- package/lib/btn-content-feedback/btn-content-feedback.component.d.ts +24 -0
- package/lib/btn-content-feedback/btn-content-feedback.component.d.ts.map +1 -0
- package/lib/btn-content-feedback/btn-content-feedback.model.d.ts +15 -0
- package/lib/btn-content-feedback/btn-content-feedback.model.d.ts.map +1 -0
- package/lib/btn-content-feedback/btn-content-feedback.module.d.ts +17 -0
- package/lib/btn-content-feedback/btn-content-feedback.module.d.ts.map +1 -0
- package/lib/btn-content-feedback/btn-content-feedback.service.d.ts +12 -0
- package/lib/btn-content-feedback/btn-content-feedback.service.d.ts.map +1 -0
- package/lib/btn-content-feedback-v2/btn-content-feedback-v2.module.d.ts +21 -0
- package/lib/btn-content-feedback-v2/btn-content-feedback-v2.module.d.ts.map +1 -0
- package/lib/btn-content-feedback-v2/components/btn-content-feedback-dialog-v2/btn-content-feedback-dialog-v2.component.d.ts +31 -0
- package/lib/btn-content-feedback-v2/components/btn-content-feedback-dialog-v2/btn-content-feedback-dialog-v2.component.d.ts.map +1 -0
- package/lib/btn-content-feedback-v2/components/btn-content-feedback-v2/btn-content-feedback-v2.component.d.ts +20 -0
- package/lib/btn-content-feedback-v2/components/btn-content-feedback-v2/btn-content-feedback-v2.component.d.ts.map +1 -0
- package/lib/btn-content-feedback-v2/components/feedback-snackbar/feedback-snackbar.component.d.ts +11 -0
- package/lib/btn-content-feedback-v2/components/feedback-snackbar/feedback-snackbar.component.d.ts.map +1 -0
- package/lib/btn-content-feedback-v2/models/btn-content-feedback-v2.model.d.ts +6 -0
- package/lib/btn-content-feedback-v2/models/btn-content-feedback-v2.model.d.ts.map +1 -0
- package/lib/btn-content-feedback-v2/models/feedback.model.d.ts +112 -0
- package/lib/btn-content-feedback-v2/models/feedback.model.d.ts.map +1 -0
- package/lib/btn-content-feedback-v2/services/feedback.service.d.ts +23 -0
- package/lib/btn-content-feedback-v2/services/feedback.service.d.ts.map +1 -0
- package/lib/btn-content-like/btn-content-like.component.d.ts +40 -0
- package/lib/btn-content-like/btn-content-like.component.d.ts.map +1 -0
- package/lib/btn-content-like/btn-content-like.module.d.ts +13 -0
- package/lib/btn-content-like/btn-content-like.module.d.ts.map +1 -0
- package/lib/btn-content-like/btn-content-like.service.d.ts +25 -0
- package/lib/btn-content-like/btn-content-like.service.d.ts.map +1 -0
- package/lib/btn-content-mail-me/btn-content-mail-me-dialog/btn-content-mail-me-dialog.component.d.ts +23 -0
- package/lib/btn-content-mail-me/btn-content-mail-me-dialog/btn-content-mail-me-dialog.component.d.ts.map +1 -0
- package/lib/btn-content-mail-me/btn-content-mail-me.component.d.ts +23 -0
- package/lib/btn-content-mail-me/btn-content-mail-me.component.d.ts.map +1 -0
- package/lib/btn-content-mail-me/btn-content-mail-me.module.d.ts +14 -0
- package/lib/btn-content-mail-me/btn-content-mail-me.module.d.ts.map +1 -0
- package/lib/btn-content-share/btn-content-share-dialog/btn-content-share-dialog.component.d.ts +34 -0
- package/lib/btn-content-share/btn-content-share-dialog/btn-content-share-dialog.component.d.ts.map +1 -0
- package/lib/btn-content-share/btn-content-share.component.d.ts +23 -0
- package/lib/btn-content-share/btn-content-share.component.d.ts.map +1 -0
- package/lib/btn-content-share/btn-content-share.module.d.ts +24 -0
- package/lib/btn-content-share/btn-content-share.module.d.ts.map +1 -0
- package/lib/btn-facebook-share/btn-facebook-share/btn-facebook-share.component.d.ts +19 -0
- package/lib/btn-facebook-share/btn-facebook-share/btn-facebook-share.component.d.ts.map +1 -0
- package/lib/btn-facebook-share/btn-facebook-share.module.d.ts +9 -0
- package/lib/btn-facebook-share/btn-facebook-share.module.d.ts.map +1 -0
- package/lib/btn-feature/btn-feature.component.d.ts +72 -0
- package/lib/btn-feature/btn-feature.component.d.ts.map +1 -0
- package/lib/btn-feature/btn-feature.module.d.ts +18 -0
- package/lib/btn-feature/btn-feature.module.d.ts.map +1 -0
- package/lib/btn-feature/btn-feature.service.d.ts +10 -0
- package/lib/btn-feature/btn-feature.service.d.ts.map +1 -0
- package/lib/btn-feature/mobile-apps.service.d.ts +25 -0
- package/lib/btn-feature/mobile-apps.service.d.ts.map +1 -0
- package/lib/btn-feature/models/mobile-events.model.d.ts +12 -0
- package/lib/btn-feature/models/mobile-events.model.d.ts.map +1 -0
- package/lib/btn-feature/navigation-external.service.d.ts +12 -0
- package/lib/btn-feature/navigation-external.service.d.ts.map +1 -0
- package/lib/btn-feature/widget-url-resolver.directive.d.ts +15 -0
- package/lib/btn-feature/widget-url-resolver.directive.d.ts.map +1 -0
- package/lib/btn-follow/btn-follow.component.d.ts +22 -0
- package/lib/btn-follow/btn-follow.component.d.ts.map +1 -0
- package/lib/btn-follow/btn-follow.model.d.ts +6 -0
- package/lib/btn-follow/btn-follow.model.d.ts.map +1 -0
- package/lib/btn-follow/btn-follow.module.d.ts +13 -0
- package/lib/btn-follow/btn-follow.module.d.ts.map +1 -0
- package/lib/btn-follow/btn-follow.service.d.ts +25 -0
- package/lib/btn-follow/btn-follow.service.d.ts.map +1 -0
- package/lib/btn-fullscreen/btn-fullscreen.component.d.ts +22 -0
- package/lib/btn-fullscreen/btn-fullscreen.component.d.ts.map +1 -0
- package/lib/btn-fullscreen/btn-fullscreen.module.d.ts +12 -0
- package/lib/btn-fullscreen/btn-fullscreen.module.d.ts.map +1 -0
- package/lib/btn-fullscreen/fullscreen.util.d.ts +21 -0
- package/lib/btn-fullscreen/fullscreen.util.d.ts.map +1 -0
- package/lib/btn-goals/btn-goals-dialog/btn-goals-dialog.component.d.ts +16 -0
- package/lib/btn-goals/btn-goals-dialog/btn-goals-dialog.component.d.ts.map +1 -0
- package/lib/btn-goals/btn-goals-error/btn-goals-error.component.d.ts +17 -0
- package/lib/btn-goals/btn-goals-error/btn-goals-error.component.d.ts.map +1 -0
- package/lib/btn-goals/btn-goals-selection/btn-goals-selection.component.d.ts +27 -0
- package/lib/btn-goals/btn-goals-selection/btn-goals-selection.component.d.ts.map +1 -0
- package/lib/btn-goals/btn-goals.component.d.ts +22 -0
- package/lib/btn-goals/btn-goals.component.d.ts.map +1 -0
- package/lib/btn-goals/btn-goals.model.d.ts +105 -0
- package/lib/btn-goals/btn-goals.model.d.ts.map +1 -0
- package/lib/btn-goals/btn-goals.module.d.ts +22 -0
- package/lib/btn-goals/btn-goals.module.d.ts.map +1 -0
- package/lib/btn-goals/btn-goals.service.d.ts +32 -0
- package/lib/btn-goals/btn-goals.service.d.ts.map +1 -0
- package/lib/btn-kb/btn-kb-confirm/btn-kb-confirm.component.d.ts +14 -0
- package/lib/btn-kb/btn-kb-confirm/btn-kb-confirm.component.d.ts.map +1 -0
- package/lib/btn-kb/btn-kb-dialog/btn-kb-dialog.component.d.ts +40 -0
- package/lib/btn-kb/btn-kb-dialog/btn-kb-dialog.component.d.ts.map +1 -0
- package/lib/btn-kb/btn-kb.component.d.ts +22 -0
- package/lib/btn-kb/btn-kb.component.d.ts.map +1 -0
- package/lib/btn-kb/btn-kb.module.d.ts +24 -0
- package/lib/btn-kb/btn-kb.module.d.ts.map +1 -0
- package/lib/btn-kb/btn-kb.service.d.ts +23 -0
- package/lib/btn-kb/btn-kb.service.d.ts.map +1 -0
- package/lib/btn-kb-analytics/btn-kb-analytics.component.d.ts +23 -0
- package/lib/btn-kb-analytics/btn-kb-analytics.component.d.ts.map +1 -0
- package/lib/btn-kb-analytics/btn-kb-analytics.module.d.ts +12 -0
- package/lib/btn-kb-analytics/btn-kb-analytics.module.d.ts.map +1 -0
- package/lib/btn-linkedin-share/btn-linkedin-share/btn-linkedin-share.component.d.ts +19 -0
- package/lib/btn-linkedin-share/btn-linkedin-share/btn-linkedin-share.component.d.ts.map +1 -0
- package/lib/btn-linkedin-share/btn-linkedin-share.module.d.ts +9 -0
- package/lib/btn-linkedin-share/btn-linkedin-share.module.d.ts.map +1 -0
- package/lib/btn-mail-user/btn-mail-user-dialog/btn-mail-user-dialog.component.d.ts +22 -0
- package/lib/btn-mail-user/btn-mail-user-dialog/btn-mail-user-dialog.component.d.ts.map +1 -0
- package/lib/btn-mail-user/btn-mail-user.component.d.ts +25 -0
- package/lib/btn-mail-user/btn-mail-user.component.d.ts.map +1 -0
- package/lib/btn-mail-user/btn-mail-user.module.d.ts +17 -0
- package/lib/btn-mail-user/btn-mail-user.module.d.ts.map +1 -0
- package/lib/btn-page-back/btn-page-back.component.d.ts +35 -0
- package/lib/btn-page-back/btn-page-back.component.d.ts.map +1 -0
- package/lib/btn-page-back/btn-page-back.module.d.ts +13 -0
- package/lib/btn-page-back/btn-page-back.module.d.ts.map +1 -0
- package/lib/btn-page-back/btn-page-back.service.d.ts +23 -0
- package/lib/btn-page-back/btn-page-back.service.d.ts.map +1 -0
- package/lib/btn-page-back-admin/btn-page-back.component.d.ts +35 -0
- package/lib/btn-page-back-admin/btn-page-back.component.d.ts.map +1 -0
- package/lib/btn-page-back-admin/btn-page-back.module.d.ts +13 -0
- package/lib/btn-page-back-admin/btn-page-back.module.d.ts.map +1 -0
- package/lib/btn-page-back-admin/btn-page-back.service.d.ts +23 -0
- package/lib/btn-page-back-admin/btn-page-back.service.d.ts.map +1 -0
- package/lib/btn-page-back-nav/btn-page-back-nav.component.d.ts +28 -0
- package/lib/btn-page-back-nav/btn-page-back-nav.component.d.ts.map +1 -0
- package/lib/btn-page-back-nav/btn-page-back-nav.module.d.ts +12 -0
- package/lib/btn-page-back-nav/btn-page-back-nav.module.d.ts.map +1 -0
- package/lib/btn-page-back-nav/btn-page-back-nav.service.d.ts +23 -0
- package/lib/btn-page-back-nav/btn-page-back-nav.service.d.ts.map +1 -0
- package/lib/btn-playlist/btn-playlist-dialog/btn-playlist-dialog.component.d.ts +15 -0
- package/lib/btn-playlist/btn-playlist-dialog/btn-playlist-dialog.component.d.ts.map +1 -0
- package/lib/btn-playlist/btn-playlist-selection/btn-playlist-selection.component.d.ts +32 -0
- package/lib/btn-playlist/btn-playlist-selection/btn-playlist-selection.component.d.ts.map +1 -0
- package/lib/btn-playlist/btn-playlist.component.d.ts +27 -0
- package/lib/btn-playlist/btn-playlist.component.d.ts.map +1 -0
- package/lib/btn-playlist/btn-playlist.model.d.ts +66 -0
- package/lib/btn-playlist/btn-playlist.model.d.ts.map +1 -0
- package/lib/btn-playlist/btn-playlist.module.d.ts +21 -0
- package/lib/btn-playlist/btn-playlist.module.d.ts.map +1 -0
- package/lib/btn-playlist/btn-playlist.service.d.ts +35 -0
- package/lib/btn-playlist/btn-playlist.service.d.ts.map +1 -0
- package/lib/btn-preview/btn-preview-dialog/btn-preview-dialog.component.d.ts +9 -0
- package/lib/btn-preview/btn-preview-dialog/btn-preview-dialog.component.d.ts.map +1 -0
- package/lib/btn-preview/btn-preview.component.d.ts +10 -0
- package/lib/btn-preview/btn-preview.component.d.ts.map +1 -0
- package/lib/btn-preview/btn-preview.module.d.ts +10 -0
- package/lib/btn-preview/btn-preview.module.d.ts.map +1 -0
- package/lib/btn-preview/btn-preview.service.d.ts +7 -0
- package/lib/btn-preview/btn-preview.service.d.ts.map +1 -0
- package/lib/btn-profile/btn-profile.component.d.ts +38 -0
- package/lib/btn-profile/btn-profile.component.d.ts.map +1 -0
- package/lib/btn-profile/btn-profile.module.d.ts +19 -0
- package/lib/btn-profile/btn-profile.module.d.ts.map +1 -0
- package/lib/btn-settings/btn-settings.component.d.ts +40 -0
- package/lib/btn-settings/btn-settings.component.d.ts.map +1 -0
- package/lib/btn-settings/btn-settings.module.d.ts +17 -0
- package/lib/btn-settings/btn-settings.module.d.ts.map +1 -0
- package/lib/btn-settings/btn-settings.service.d.ts +32 -0
- package/lib/btn-settings/btn-settings.service.d.ts.map +1 -0
- package/lib/btn-twitter-share/btn-twitter-share/btn-twitter-share.component.d.ts +20 -0
- package/lib/btn-twitter-share/btn-twitter-share/btn-twitter-share.component.d.ts.map +1 -0
- package/lib/btn-twitter-share/btn-twitter-share.module.d.ts +9 -0
- package/lib/btn-twitter-share/btn-twitter-share.module.d.ts.map +1 -0
- package/lib/card-activity/card-activity.component.d.ts +12 -0
- package/lib/card-activity/card-activity.component.d.ts.map +1 -0
- package/lib/card-activity/card-activity.module.d.ts +21 -0
- package/lib/card-activity/card-activity.module.d.ts.map +1 -0
- package/lib/card-breadcrumb/card-breadcrumb.component.d.ts +14 -0
- package/lib/card-breadcrumb/card-breadcrumb.component.d.ts.map +1 -0
- package/lib/card-breadcrumb/card-breadcrumb.model.d.ts +8 -0
- package/lib/card-breadcrumb/card-breadcrumb.model.d.ts.map +1 -0
- package/lib/card-breadcrumb/card-breadcrumb.module.d.ts +12 -0
- package/lib/card-breadcrumb/card-breadcrumb.module.d.ts.map +1 -0
- package/lib/card-browse-course/card-browse-course.component.d.ts +24 -0
- package/lib/card-browse-course/card-browse-course.component.d.ts.map +1 -0
- package/lib/card-browse-course/card-browse-course.module.d.ts +20 -0
- package/lib/card-browse-course/card-browse-course.module.d.ts.map +1 -0
- package/lib/card-carrier/card-carrier.component.d.ts +10 -0
- package/lib/card-carrier/card-carrier.component.d.ts.map +1 -0
- package/lib/card-carrier/carrier.model.d.ts +10 -0
- package/lib/card-carrier/carrier.model.d.ts.map +1 -0
- package/lib/card-carrier-home/card-carrier-home.component.d.ts +17 -0
- package/lib/card-carrier-home/card-carrier-home.component.d.ts.map +1 -0
- package/lib/card-carrier-home/card-carrier-home.module.d.ts +18 -0
- package/lib/card-carrier-home/card-carrier-home.module.d.ts.map +1 -0
- package/lib/card-carrier-home/carrier.model.d.ts +11 -0
- package/lib/card-carrier-home/carrier.model.d.ts.map +1 -0
- package/lib/card-channel/card-channel.component.d.ts +12 -0
- package/lib/card-channel/card-channel.component.d.ts.map +1 -0
- package/lib/card-channel/card-channel.model.d.ts +10 -0
- package/lib/card-channel/card-channel.model.d.ts.map +1 -0
- package/lib/card-channel/card-channel.module.d.ts +12 -0
- package/lib/card-channel/card-channel.module.d.ts.map +1 -0
- package/lib/card-channel-v2/card-channel-v2.component.d.ts +13 -0
- package/lib/card-channel-v2/card-channel-v2.component.d.ts.map +1 -0
- package/lib/card-channel-v2/card-channel-v2.module.d.ts +13 -0
- package/lib/card-channel-v2/card-channel-v2.module.d.ts.map +1 -0
- package/lib/card-content/card-content.component.d.ts +49 -0
- package/lib/card-content/card-content.component.d.ts.map +1 -0
- package/lib/card-content/card-content.model.d.ts +30 -0
- package/lib/card-content/card-content.model.d.ts.map +1 -0
- package/lib/card-content/card-content.module.d.ts +35 -0
- package/lib/card-content/card-content.module.d.ts.map +1 -0
- package/lib/card-course/card-course.component.d.ts +16 -0
- package/lib/card-course/card-course.component.d.ts.map +1 -0
- package/lib/card-course/card-course.module.d.ts +19 -0
- package/lib/card-course/card-course.module.d.ts.map +1 -0
- package/lib/card-discuss/card-discuss.component.d.ts +16 -0
- package/lib/card-discuss/card-discuss.component.d.ts.map +1 -0
- package/lib/card-discuss/discuss.model.d.ts +286 -0
- package/lib/card-discuss/discuss.model.d.ts.map +1 -0
- package/lib/card-home-discuss/card-home-discuss.component.d.ts +19 -0
- package/lib/card-home-discuss/card-home-discuss.component.d.ts.map +1 -0
- package/lib/card-home-discuss/card-home-discuss.module.d.ts +18 -0
- package/lib/card-home-discuss/card-home-discuss.module.d.ts.map +1 -0
- package/lib/card-home-discuss/discuss.model.d.ts +249 -0
- package/lib/card-home-discuss/discuss.model.d.ts.map +1 -0
- package/lib/card-home-network/card-home-network.component.d.ts +15 -0
- package/lib/card-home-network/card-home-network.component.d.ts.map +1 -0
- package/lib/card-home-network/card-home-network.module.d.ts +17 -0
- package/lib/card-home-network/card-home-network.module.d.ts.map +1 -0
- package/lib/card-home-top/card-activity/card-activity.component.d.ts +18 -0
- package/lib/card-home-top/card-activity/card-activity.component.d.ts.map +1 -0
- package/lib/card-home-top/card-competency/card-competency.component.d.ts +12 -0
- package/lib/card-home-top/card-competency/card-competency.component.d.ts.map +1 -0
- package/lib/card-home-top/card-goal/card-goal.component.d.ts +11 -0
- package/lib/card-home-top/card-goal/card-goal.component.d.ts.map +1 -0
- package/lib/card-home-top/card-home-top.component.d.ts +13 -0
- package/lib/card-home-top/card-home-top.component.d.ts.map +1 -0
- package/lib/card-home-top/card-home-top.module.d.ts +27 -0
- package/lib/card-home-top/card-home-top.module.d.ts.map +1 -0
- package/lib/card-home-top/card-learning-status/card-learning-status.component.d.ts +10 -0
- package/lib/card-home-top/card-learning-status/card-learning-status.component.d.ts.map +1 -0
- package/lib/card-home-top/star-rating/star-rating.component.d.ts +24 -0
- package/lib/card-home-top/star-rating/star-rating.component.d.ts.map +1 -0
- package/lib/card-hubs-list/card-hubs-list.component.d.ts +37 -0
- package/lib/card-hubs-list/card-hubs-list.component.d.ts.map +1 -0
- package/lib/card-hubs-list/card-hubs-list.module.d.ts +19 -0
- package/lib/card-hubs-list/card-hubs-list.module.d.ts.map +1 -0
- package/lib/card-knowledge/card-knowledge.component.d.ts +33 -0
- package/lib/card-knowledge/card-knowledge.component.d.ts.map +1 -0
- package/lib/card-knowledge/card-knowledge.model.d.ts +10 -0
- package/lib/card-knowledge/card-knowledge.model.d.ts.map +1 -0
- package/lib/card-knowledge/card-knowledge.module.d.ts +18 -0
- package/lib/card-knowledge/card-knowledge.module.d.ts.map +1 -0
- package/lib/card-learn/card-learn.component.d.ts +25 -0
- package/lib/card-learn/card-learn.component.d.ts.map +1 -0
- package/lib/card-learn/card-learn.module.d.ts +20 -0
- package/lib/card-learn/card-learn.module.d.ts.map +1 -0
- package/lib/card-network/card-network.component.d.ts +39 -0
- package/lib/card-network/card-network.component.d.ts.map +1 -0
- package/lib/card-network/card-network.module.d.ts +24 -0
- package/lib/card-network/card-network.module.d.ts.map +1 -0
- package/lib/card-network/card-network.service.d.ts +14 -0
- package/lib/card-network/card-network.service.d.ts.map +1 -0
- package/lib/card-network-home/card-network-home.component.d.ts +19 -0
- package/lib/card-network-home/card-network-home.component.d.ts.map +1 -0
- package/lib/card-network-home/card-network-home.module.d.ts +24 -0
- package/lib/card-network-home/card-network-home.module.d.ts.map +1 -0
- package/lib/card-table/card-table.component.d.ts +52 -0
- package/lib/card-table/card-table.component.d.ts.map +1 -0
- package/lib/card-table/card-table.model.d.ts +46 -0
- package/lib/card-table/card-table.model.d.ts.map +1 -0
- package/lib/card-table/card-table.module.d.ts +23 -0
- package/lib/card-table/card-table.module.d.ts.map +1 -0
- package/lib/card-table/pipe-table-list/pipe-table-list.module.d.ts +9 -0
- package/lib/card-table/pipe-table-list/pipe-table-list.module.d.ts.map +1 -0
- package/lib/card-table/pipe-table-list/pipe-table-list.pipe.d.ts +8 -0
- package/lib/card-table/pipe-table-list/pipe-table-list.pipe.d.ts.map +1 -0
- package/lib/card-table/pipe-table-meta/pipe-table-meta.module.d.ts +9 -0
- package/lib/card-table/pipe-table-meta/pipe-table-meta.module.d.ts.map +1 -0
- package/lib/card-table/pipe-table-meta/pipe-table-meta.pipe.d.ts +8 -0
- package/lib/card-table/pipe-table-meta/pipe-table-meta.pipe.d.ts.map +1 -0
- package/lib/card-table/relative-url/relative-url.module.d.ts +9 -0
- package/lib/card-table/relative-url/relative-url.module.d.ts.map +1 -0
- package/lib/card-table/relative-url/relative-url.pipe.d.ts +8 -0
- package/lib/card-table/relative-url/relative-url.pipe.d.ts.map +1 -0
- package/lib/card-welcome/card-welcome.component.d.ts +24 -0
- package/lib/card-welcome/card-welcome.component.d.ts.map +1 -0
- package/lib/card-welcome/card-welcome.module.d.ts +20 -0
- package/lib/card-welcome/card-welcome.module.d.ts.map +1 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.component.d.ts +73 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.component.d.ts.map +1 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.model.d.ts +74 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.model.d.ts.map +1 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.module.d.ts +18 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.module.d.ts.map +1 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.service.d.ts +11 -0
- package/lib/carrier-strip-multiple/carrier-strip-multiple.service.d.ts.map +1 -0
- package/lib/challenge/challenge.component.d.ts +24 -0
- package/lib/challenge/challenge.component.d.ts.map +1 -0
- package/lib/challenge/challenge.module.d.ts +14 -0
- package/lib/challenge/challenge.module.d.ts.map +1 -0
- package/lib/channel-hub/channel-hub.component.d.ts +11 -0
- package/lib/channel-hub/channel-hub.component.d.ts.map +1 -0
- package/lib/channel-hub/channel-hub.model.d.ts +16 -0
- package/lib/channel-hub/channel-hub.model.d.ts.map +1 -0
- package/lib/channel-hub/channel-hub.module.d.ts +12 -0
- package/lib/channel-hub/channel-hub.module.d.ts.map +1 -0
- package/lib/collection.config.d.ts +165 -0
- package/lib/collection.config.d.ts.map +1 -0
- package/lib/content-assign/content-assign.model.d.ts +44 -0
- package/lib/content-assign/content-assign.model.d.ts.map +1 -0
- package/lib/content-assign/content-assign.service.d.ts +15 -0
- package/lib/content-assign/content-assign.service.d.ts.map +1 -0
- package/lib/content-strip-multiple/content-strip-multiple.component.d.ts +83 -0
- package/lib/content-strip-multiple/content-strip-multiple.component.d.ts.map +1 -0
- package/lib/content-strip-multiple/content-strip-multiple.model.d.ts +85 -0
- package/lib/content-strip-multiple/content-strip-multiple.model.d.ts.map +1 -0
- package/lib/content-strip-multiple/content-strip-multiple.module.d.ts +18 -0
- package/lib/content-strip-multiple/content-strip-multiple.module.d.ts.map +1 -0
- package/lib/content-strip-multiple/content-strip-multiple.service.d.ts +14 -0
- package/lib/content-strip-multiple/content-strip-multiple.service.d.ts.map +1 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.component.d.ts +83 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.component.d.ts.map +1 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.model.d.ts +94 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.model.d.ts.map +1 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.module.d.ts +18 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.module.d.ts.map +1 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.service.d.ts +14 -0
- package/lib/content-strip-new-multiple/content-strip-new-multiple.service.d.ts.map +1 -0
- package/lib/content-strip-single/content-strip-single.component.d.ts +38 -0
- package/lib/content-strip-single/content-strip-single.component.d.ts.map +1 -0
- package/lib/content-strip-single/content-strip-single.model.d.ts +53 -0
- package/lib/content-strip-single/content-strip-single.model.d.ts.map +1 -0
- package/lib/content-strip-single/content-strip-single.module.d.ts +18 -0
- package/lib/content-strip-single/content-strip-single.module.d.ts.map +1 -0
- package/lib/content-strip-single/content-strip-single.service.d.ts +14 -0
- package/lib/content-strip-single/content-strip-single.service.d.ts.map +1 -0
- package/lib/ctrl-file-upload/components/ctrl-file-upload/ctrl-file-upload.component.d.ts +20 -0
- package/lib/ctrl-file-upload/components/ctrl-file-upload/ctrl-file-upload.component.d.ts.map +1 -0
- package/lib/ctrl-file-upload/ctrl-file-upload.module.d.ts +10 -0
- package/lib/ctrl-file-upload/ctrl-file-upload.module.d.ts.map +1 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.component.d.ts +73 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.component.d.ts.map +1 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.model.d.ts +76 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.model.d.ts.map +1 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.module.d.ts +18 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.module.d.ts.map +1 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.service.d.ts +11 -0
- package/lib/discuss-strip-multiple/discuss-strip-multiple.service.d.ts.map +1 -0
- package/lib/discussion-forum/actionBtn/btn-social-delete/btn-social-delete.component.d.ts +14 -0
- package/lib/discussion-forum/actionBtn/btn-social-delete/btn-social-delete.component.d.ts.map +1 -0
- package/lib/discussion-forum/actionBtn/btn-social-delete/btn-social-delete.module.d.ts +11 -0
- package/lib/discussion-forum/actionBtn/btn-social-delete/btn-social-delete.module.d.ts.map +1 -0
- package/lib/discussion-forum/actionBtn/btn-social-like/btn-social-like.component.d.ts +25 -0
- package/lib/discussion-forum/actionBtn/btn-social-like/btn-social-like.component.d.ts.map +1 -0
- package/lib/discussion-forum/actionBtn/btn-social-like/btn-social-like.module.d.ts +14 -0
- package/lib/discussion-forum/actionBtn/btn-social-like/btn-social-like.module.d.ts.map +1 -0
- package/lib/discussion-forum/actionBtn/btn-social-vote/btn-social-vote.component.d.ts +29 -0
- package/lib/discussion-forum/actionBtn/btn-social-vote/btn-social-vote.component.d.ts.map +1 -0
- package/lib/discussion-forum/actionBtn/btn-social-vote/btn-social-vote.module.d.ts +13 -0
- package/lib/discussion-forum/actionBtn/btn-social-vote/btn-social-vote.module.d.ts.map +1 -0
- package/lib/discussion-forum/components/discussion-forum/discussion-forum.component.d.ts +44 -0
- package/lib/discussion-forum/components/discussion-forum/discussion-forum.component.d.ts.map +1 -0
- package/lib/discussion-forum/components/discussion-post/discussion-post.component.d.ts +50 -0
- package/lib/discussion-forum/components/discussion-post/discussion-post.component.d.ts.map +1 -0
- package/lib/discussion-forum/components/discussion-reply/discussion-reply.component.d.ts +30 -0
- package/lib/discussion-forum/components/discussion-reply/discussion-reply.component.d.ts.map +1 -0
- package/lib/discussion-forum/dialog/dialog-social-activity-user/dialog-social-activity-user.component.d.ts +60 -0
- package/lib/discussion-forum/dialog/dialog-social-activity-user/dialog-social-activity-user.component.d.ts.map +1 -0
- package/lib/discussion-forum/dialog/dialog-social-activity-user/dialog-social-activity-user.module.d.ts +15 -0
- package/lib/discussion-forum/dialog/dialog-social-activity-user/dialog-social-activity-user.module.d.ts.map +1 -0
- package/lib/discussion-forum/dialog/dialog-social-delete-post/dialog-social-delete-post.component.d.ts +23 -0
- package/lib/discussion-forum/dialog/dialog-social-delete-post/dialog-social-delete-post.component.d.ts.map +1 -0
- package/lib/discussion-forum/dialog/dialog-social-delete-post/dialog-social-delete-post.module.d.ts +12 -0
- package/lib/discussion-forum/dialog/dialog-social-delete-post/dialog-social-delete-post.module.d.ts.map +1 -0
- package/lib/discussion-forum/discussion-forum.module.d.ts +28 -0
- package/lib/discussion-forum/discussion-forum.module.d.ts.map +1 -0
- package/lib/discussion-forum/editor-quill/editor-quill.component.d.ts +20 -0
- package/lib/discussion-forum/editor-quill/editor-quill.component.d.ts.map +1 -0
- package/lib/discussion-forum/editor-quill/editor-quill.module.d.ts +11 -0
- package/lib/discussion-forum/editor-quill/editor-quill.module.d.ts.map +1 -0
- package/lib/discussion-forum/ws-discussion-forum-user.service.d.ts +14 -0
- package/lib/discussion-forum/ws-discussion-forum-user.service.d.ts.map +1 -0
- package/lib/discussion-forum/ws-discussion-forum.model.d.ts +244 -0
- package/lib/discussion-forum/ws-discussion-forum.model.d.ts.map +1 -0
- package/lib/discussion-forum/ws-discussion-forum.services.d.ts +19 -0
- package/lib/discussion-forum/ws-discussion-forum.services.d.ts.map +1 -0
- package/lib/element-html/element-html.component.d.ts +18 -0
- package/lib/element-html/element-html.component.d.ts.map +1 -0
- package/lib/element-html/element-html.model.d.ts +13 -0
- package/lib/element-html/element-html.model.d.ts.map +1 -0
- package/lib/element-html/element-html.module.d.ts +10 -0
- package/lib/element-html/element-html.module.d.ts.map +1 -0
- package/lib/embedded-page/embedded-page.component.d.ts +18 -0
- package/lib/embedded-page/embedded-page.component.d.ts.map +1 -0
- package/lib/embedded-page/embedded-page.model.d.ts +12 -0
- package/lib/embedded-page/embedded-page.model.d.ts.map +1 -0
- package/lib/embedded-page/embedded-page.module.d.ts +12 -0
- package/lib/embedded-page/embedded-page.module.d.ts.map +1 -0
- package/lib/error-resolver/components/error-access-forbidden/error-access-forbidden.component.d.ts +19 -0
- package/lib/error-resolver/components/error-access-forbidden/error-access-forbidden.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-access-forbidden/error-access-forbidden.model.d.ts +6 -0
- package/lib/error-resolver/components/error-access-forbidden/error-access-forbidden.model.d.ts.map +1 -0
- package/lib/error-resolver/components/error-content-unavailable/error-content-unavailable.component.d.ts +19 -0
- package/lib/error-resolver/components/error-content-unavailable/error-content-unavailable.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-content-unavailable/error-content-unavailable.model.d.ts +6 -0
- package/lib/error-resolver/components/error-content-unavailable/error-content-unavailable.model.d.ts.map +1 -0
- package/lib/error-resolver/components/error-feature-disabled/error-feature-disabled.component.d.ts +19 -0
- package/lib/error-resolver/components/error-feature-disabled/error-feature-disabled.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-feature-disabled/error-feature-disabled.model.d.ts +5 -0
- package/lib/error-resolver/components/error-feature-disabled/error-feature-disabled.model.d.ts.map +1 -0
- package/lib/error-resolver/components/error-feature-unavailable/error-feature-unavailable.component.d.ts +19 -0
- package/lib/error-resolver/components/error-feature-unavailable/error-feature-unavailable.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-feature-unavailable/error-feature-unavailable.model.d.ts +5 -0
- package/lib/error-resolver/components/error-feature-unavailable/error-feature-unavailable.model.d.ts.map +1 -0
- package/lib/error-resolver/components/error-internal-server/error-internal-server.component.d.ts +19 -0
- package/lib/error-resolver/components/error-internal-server/error-internal-server.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-internal-server/error-internal-server.model.d.ts +6 -0
- package/lib/error-resolver/components/error-internal-server/error-internal-server.model.d.ts.map +1 -0
- package/lib/error-resolver/components/error-not-found/error-not-found.component.d.ts +19 -0
- package/lib/error-resolver/components/error-not-found/error-not-found.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-not-found/error-not-found.model.d.ts +7 -0
- package/lib/error-resolver/components/error-not-found/error-not-found.model.d.ts.map +1 -0
- package/lib/error-resolver/components/error-service-unavailable/error-service-unavailable.component.d.ts +19 -0
- package/lib/error-resolver/components/error-service-unavailable/error-service-unavailable.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-service-unavailable/error-service-unavailable.model.d.ts +6 -0
- package/lib/error-resolver/components/error-service-unavailable/error-service-unavailable.model.d.ts.map +1 -0
- package/lib/error-resolver/components/error-something-wrong/error-something-wrong.component.d.ts +19 -0
- package/lib/error-resolver/components/error-something-wrong/error-something-wrong.component.d.ts.map +1 -0
- package/lib/error-resolver/components/error-something-wrong/error-something-wrong.model.d.ts +6 -0
- package/lib/error-resolver/components/error-something-wrong/error-something-wrong.model.d.ts.map +1 -0
- package/lib/error-resolver/error-resolver.component.d.ts +21 -0
- package/lib/error-resolver/error-resolver.component.d.ts.map +1 -0
- package/lib/error-resolver/error-resolver.model.d.ts +28 -0
- package/lib/error-resolver/error-resolver.model.d.ts.map +1 -0
- package/lib/error-resolver/error-resolver.module.d.ts +19 -0
- package/lib/error-resolver/error-resolver.module.d.ts.map +1 -0
- package/lib/error-resolver/error-resolver.service.d.ts +11 -0
- package/lib/error-resolver/error-resolver.service.d.ts.map +1 -0
- package/lib/gallery-view/gallery-view.component.d.ts +18 -0
- package/lib/gallery-view/gallery-view.component.d.ts.map +1 -0
- package/lib/gallery-view/gallery-view.model.d.ts +35 -0
- package/lib/gallery-view/gallery-view.model.d.ts.map +1 -0
- package/lib/gallery-view/gallery-view.module.d.ts +13 -0
- package/lib/gallery-view/gallery-view.module.d.ts.map +1 -0
- package/lib/graph-general/graph-general-color-palette.d.ts +6 -0
- package/lib/graph-general/graph-general-color-palette.d.ts.map +1 -0
- package/lib/graph-general/graph-general.component.d.ts +33 -0
- package/lib/graph-general/graph-general.component.d.ts.map +1 -0
- package/lib/graph-general/graph-general.model.d.ts +85 -0
- package/lib/graph-general/graph-general.model.d.ts.map +1 -0
- package/lib/graph-general/graph-general.module.d.ts +12 -0
- package/lib/graph-general/graph-general.module.d.ts.map +1 -0
- package/lib/graph-general/graph-general.service.d.ts +17 -0
- package/lib/graph-general/graph-general.service.d.ts.map +1 -0
- package/lib/grid-layout/grid-layout.component.d.ts +13 -0
- package/lib/grid-layout/grid-layout.component.d.ts.map +1 -0
- package/lib/grid-layout/grid-layout.model.d.ts +27 -0
- package/lib/grid-layout/grid-layout.model.d.ts.map +1 -0
- package/lib/grid-layout/grid-layout.module.d.ts +10 -0
- package/lib/grid-layout/grid-layout.module.d.ts.map +1 -0
- package/lib/group-checkbox/group-checkbox.component.d.ts +13 -0
- package/lib/group-checkbox/group-checkbox.component.d.ts.map +1 -0
- package/lib/group-checkbox/group-checkbox.model.d.ts +7 -0
- package/lib/group-checkbox/group-checkbox.model.d.ts.map +1 -0
- package/lib/group-checkbox/group-checkbox.module.d.ts +13 -0
- package/lib/group-checkbox/group-checkbox.module.d.ts.map +1 -0
- package/lib/image-map-responsive/image-map-responsive.component.d.ts +26 -0
- package/lib/image-map-responsive/image-map-responsive.component.d.ts.map +1 -0
- package/lib/image-map-responsive/image-map-responsive.model.d.ts +30 -0
- package/lib/image-map-responsive/image-map-responsive.model.d.ts.map +1 -0
- package/lib/image-map-responsive/image-map-responsive.module.d.ts +9 -0
- package/lib/image-map-responsive/image-map-responsive.module.d.ts.map +1 -0
- package/lib/intranet-selector/intranet-selector.component.d.ts +15 -0
- package/lib/intranet-selector/intranet-selector.component.d.ts.map +1 -0
- package/lib/intranet-selector/intranet-selector.model.d.ts +10 -0
- package/lib/intranet-selector/intranet-selector.model.d.ts.map +1 -0
- package/lib/intranet-selector/intranet-selector.module.d.ts +10 -0
- package/lib/intranet-selector/intranet-selector.module.d.ts.map +1 -0
- package/lib/intranet-selector/intranet-selector.service.d.ts +12 -0
- package/lib/intranet-selector/intranet-selector.service.d.ts.map +1 -0
- package/lib/layout-linear/layout-linear.component.d.ts +14 -0
- package/lib/layout-linear/layout-linear.component.d.ts.map +1 -0
- package/lib/layout-linear/layout-linear.module.d.ts +10 -0
- package/lib/layout-linear/layout-linear.module.d.ts.map +1 -0
- package/lib/layout-tab/layout-tab.component.d.ts +20 -0
- package/lib/layout-tab/layout-tab.component.d.ts.map +1 -0
- package/lib/layout-tab/layout-tab.model.d.ts +12 -0
- package/lib/layout-tab/layout-tab.model.d.ts.map +1 -0
- package/lib/layout-tab/layout-tab.module.d.ts +11 -0
- package/lib/layout-tab/layout-tab.module.d.ts.map +1 -0
- package/lib/left-menu/left-menu.component.d.ts +26 -0
- package/lib/left-menu/left-menu.component.d.ts.map +1 -0
- package/lib/left-menu/left-menu.model.d.ts +25 -0
- package/lib/left-menu/left-menu.model.d.ts.map +1 -0
- package/lib/left-menu/left-menu.module.d.ts +20 -0
- package/lib/left-menu/left-menu.module.d.ts.map +1 -0
- package/lib/left-menu/left-menu.service.d.ts +11 -0
- package/lib/left-menu/left-menu.service.d.ts.map +1 -0
- package/lib/left-menu-without-logo/left-menu-without-logo.component.d.ts +18 -0
- package/lib/left-menu-without-logo/left-menu-without-logo.component.d.ts.map +1 -0
- package/lib/left-menu-without-logo/left-menu-without-logo.model.d.ts +14 -0
- package/lib/left-menu-without-logo/left-menu-without-logo.model.d.ts.map +1 -0
- package/lib/left-menu-without-logo/left-menu-without-logo.module.d.ts +19 -0
- package/lib/left-menu-without-logo/left-menu-without-logo.module.d.ts.map +1 -0
- package/lib/network-strip-multiple/network-strip-multiple.component.d.ts +73 -0
- package/lib/network-strip-multiple/network-strip-multiple.component.d.ts.map +1 -0
- package/lib/network-strip-multiple/network-strip-multiple.model.d.ts +74 -0
- package/lib/network-strip-multiple/network-strip-multiple.model.d.ts.map +1 -0
- package/lib/network-strip-multiple/network-strip-multiple.module.d.ts +18 -0
- package/lib/network-strip-multiple/network-strip-multiple.module.d.ts.map +1 -0
- package/lib/network-strip-multiple/network-strip-multiple.service.d.ts +11 -0
- package/lib/network-strip-multiple/network-strip-multiple.service.d.ts.map +1 -0
- package/lib/page/page.component.d.ts +40 -0
- package/lib/page/page.component.d.ts.map +1 -0
- package/lib/page/page.module.d.ts +18 -0
- package/lib/page/page.module.d.ts.map +1 -0
- package/lib/picker-content/picker-content.component.d.ts +57 -0
- package/lib/picker-content/picker-content.component.d.ts.map +1 -0
- package/lib/picker-content/picker-content.model.d.ts +20 -0
- package/lib/picker-content/picker-content.model.d.ts.map +1 -0
- package/lib/picker-content/picker-content.module.d.ts +25 -0
- package/lib/picker-content/picker-content.module.d.ts.map +1 -0
- package/lib/picker-content/picker-content.service.d.ts +15 -0
- package/lib/picker-content/picker-content.service.d.ts.map +1 -0
- package/lib/player-amp/player-amp.component.d.ts +36 -0
- package/lib/player-amp/player-amp.component.d.ts.map +1 -0
- package/lib/player-amp/player-amp.model.d.ts +16 -0
- package/lib/player-amp/player-amp.model.d.ts.map +1 -0
- package/lib/player-amp/player-amp.module.d.ts +9 -0
- package/lib/player-amp/player-amp.module.d.ts.map +1 -0
- package/lib/player-amp/player-amp.utility.d.ts +12 -0
- package/lib/player-amp/player-amp.utility.d.ts.map +1 -0
- package/lib/player-audio/player-audio.component.d.ts +25 -0
- package/lib/player-audio/player-audio.component.d.ts.map +1 -0
- package/lib/player-audio/player-audio.module.d.ts +9 -0
- package/lib/player-audio/player-audio.module.d.ts.map +1 -0
- package/lib/player-pdf/player-pdf.component.d.ts +66 -0
- package/lib/player-pdf/player-pdf.component.d.ts.map +1 -0
- package/lib/player-pdf/player-pdf.model.d.ts +25 -0
- package/lib/player-pdf/player-pdf.model.d.ts.map +1 -0
- package/lib/player-pdf/player-pdf.module.d.ts +18 -0
- package/lib/player-pdf/player-pdf.module.d.ts.map +1 -0
- package/lib/player-slides/player-slides.component.d.ts +10 -0
- package/lib/player-slides/player-slides.component.d.ts.map +1 -0
- package/lib/player-slides/player-slides.module.d.ts +9 -0
- package/lib/player-slides/player-slides.module.d.ts.map +1 -0
- package/lib/player-video/player-video.component.d.ts +28 -0
- package/lib/player-video/player-video.component.d.ts.map +1 -0
- package/lib/player-video/player-video.module.d.ts +9 -0
- package/lib/player-video/player-video.module.d.ts.map +1 -0
- package/lib/player-web-pages/player-web-pages.component.d.ts +10 -0
- package/lib/player-web-pages/player-web-pages.component.d.ts.map +1 -0
- package/lib/player-web-pages/player-web-pages.module.d.ts +9 -0
- package/lib/player-web-pages/player-web-pages.module.d.ts.map +1 -0
- package/lib/player-youtube/player-youtube.component.d.ts +30 -0
- package/lib/player-youtube/player-youtube.component.d.ts.map +1 -0
- package/lib/player-youtube/player-youtube.module.d.ts +9 -0
- package/lib/player-youtube/player-youtube.module.d.ts.map +1 -0
- package/lib/profile-v2/profile-academics/profile-academics.component.d.ts +12 -0
- package/lib/profile-v2/profile-academics/profile-academics.component.d.ts.map +1 -0
- package/lib/profile-v2/profile-academics/profile-academics.model.d.ts +6 -0
- package/lib/profile-v2/profile-academics/profile-academics.model.d.ts.map +1 -0
- package/lib/profile-v2/profile-academics/profile-academics.module.d.ts +17 -0
- package/lib/profile-v2/profile-academics/profile-academics.module.d.ts.map +1 -0
- package/lib/profile-v2/profile-career/profile-career.component.d.ts +13 -0
- package/lib/profile-v2/profile-career/profile-career.component.d.ts.map +1 -0
- package/lib/profile-v2/profile-career/profile-career.model.d.ts +6 -0
- package/lib/profile-v2/profile-career/profile-career.model.d.ts.map +1 -0
- package/lib/profile-v2/profile-career/profile-career.module.d.ts +17 -0
- package/lib/profile-v2/profile-career/profile-career.module.d.ts.map +1 -0
- package/lib/profile-v2/profile-competencies/profile-competencies.component.d.ts +11 -0
- package/lib/profile-v2/profile-competencies/profile-competencies.component.d.ts.map +1 -0
- package/lib/profile-v2/profile-competencies/profile-competencies.module.d.ts +16 -0
- package/lib/profile-v2/profile-competencies/profile-competencies.module.d.ts.map +1 -0
- package/lib/profile-v2/profile-cretifications/profile-cretifications.component.d.ts +12 -0
- package/lib/profile-v2/profile-cretifications/profile-cretifications.component.d.ts.map +1 -0
- package/lib/profile-v2/profile-cretifications/profile-cretifications.model.d.ts +6 -0
- package/lib/profile-v2/profile-cretifications/profile-cretifications.model.d.ts.map +1 -0
- package/lib/profile-v2/profile-cretifications/profile-cretifications.module.d.ts +16 -0
- package/lib/profile-v2/profile-cretifications/profile-cretifications.module.d.ts.map +1 -0
- package/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.component.d.ts +13 -0
- package/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.component.d.ts.map +1 -0
- package/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.model.d.ts +6 -0
- package/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.model.d.ts.map +1 -0
- package/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.module.d.ts +16 -0
- package/lib/profile-v2/profile-cretifications-v2/profile-cretifications-v2.module.d.ts.map +1 -0
- package/lib/profile-v2/profile-departments/profile-departments.component.d.ts +11 -0
- package/lib/profile-v2/profile-departments/profile-departments.component.d.ts.map +1 -0
- package/lib/profile-v2/profile-departments/profile-departments.module.d.ts +16 -0
- package/lib/profile-v2/profile-departments/profile-departments.module.d.ts.map +1 -0
- package/lib/profile-v2/profile-hobbies/profile-hobbies.component.d.ts +12 -0
- package/lib/profile-v2/profile-hobbies/profile-hobbies.component.d.ts.map +1 -0
- package/lib/profile-v2/profile-hobbies/profile-hobbies.model.d.ts +6 -0
- package/lib/profile-v2/profile-hobbies/profile-hobbies.model.d.ts.map +1 -0
- package/lib/profile-v2/profile-hobbies/profile-hobbies.module.d.ts +16 -0
- package/lib/profile-v2/profile-hobbies/profile-hobbies.module.d.ts.map +1 -0
- package/lib/registration.config.d.ts +5 -0
- package/lib/registration.config.d.ts.map +1 -0
- package/lib/release-notes/release-notes.component.d.ts +12 -0
- package/lib/release-notes/release-notes.component.d.ts.map +1 -0
- package/lib/release-notes/release-notes.model.d.ts +13 -0
- package/lib/release-notes/release-notes.model.d.ts.map +1 -0
- package/lib/release-notes/release-notes.module.d.ts +20 -0
- package/lib/release-notes/release-notes.module.d.ts.map +1 -0
- package/lib/scrollspy-left-menu/scrollspy-left-menu.component.d.ts +16 -0
- package/lib/scrollspy-left-menu/scrollspy-left-menu.component.d.ts.map +1 -0
- package/lib/scrollspy-left-menu/scrollspy-left-menu.model.d.ts +12 -0
- package/lib/scrollspy-left-menu/scrollspy-left-menu.model.d.ts.map +1 -0
- package/lib/scrollspy-left-menu/scrollspy-left-menu.module.d.ts +10 -0
- package/lib/scrollspy-left-menu/scrollspy-left-menu.module.d.ts.map +1 -0
- package/lib/selector-responsive/selector-responsive.component.d.ts +15 -0
- package/lib/selector-responsive/selector-responsive.component.d.ts.map +1 -0
- package/lib/selector-responsive/selector-responsive.model.d.ts +12 -0
- package/lib/selector-responsive/selector-responsive.model.d.ts.map +1 -0
- package/lib/selector-responsive/selector-responsive.module.d.ts +11 -0
- package/lib/selector-responsive/selector-responsive.module.d.ts.map +1 -0
- package/lib/sliders/sliders.component.d.ts +21 -0
- package/lib/sliders/sliders.component.d.ts.map +1 -0
- package/lib/sliders/sliders.model.d.ts +17 -0
- package/lib/sliders/sliders.model.d.ts.map +1 -0
- package/lib/sliders/sliders.module.d.ts +17 -0
- package/lib/sliders/sliders.module.d.ts.map +1 -0
- package/lib/sliders-mob/sliders-mob.component.d.ts +20 -0
- package/lib/sliders-mob/sliders-mob.component.d.ts.map +1 -0
- package/lib/sliders-mob/sliders-mob.module.d.ts +11 -0
- package/lib/sliders-mob/sliders-mob.module.d.ts.map +1 -0
- package/lib/tree/tree.component.d.ts +18 -0
- package/lib/tree/tree.component.d.ts.map +1 -0
- package/lib/tree/tree.model.d.ts +6 -0
- package/lib/tree/tree.model.d.ts.map +1 -0
- package/lib/tree/tree.module.d.ts +14 -0
- package/lib/tree/tree.module.d.ts.map +1 -0
- package/lib/tree-catalog/tree-catalog-menu/tree-catalog-menu.component.d.ts +15 -0
- package/lib/tree-catalog/tree-catalog-menu/tree-catalog-menu.component.d.ts.map +1 -0
- package/lib/tree-catalog/tree-catalog-route.pipe.d.ts +8 -0
- package/lib/tree-catalog/tree-catalog-route.pipe.d.ts.map +1 -0
- package/lib/tree-catalog/tree-catalog.component.d.ts +19 -0
- package/lib/tree-catalog/tree-catalog.component.d.ts.map +1 -0
- package/lib/tree-catalog/tree-catalog.model.d.ts +9 -0
- package/lib/tree-catalog/tree-catalog.model.d.ts.map +1 -0
- package/lib/tree-catalog/tree-catalog.module.d.ts +17 -0
- package/lib/tree-catalog/tree-catalog.module.d.ts.map +1 -0
- package/lib/tree-catalog/tree-catalog.service.d.ts +15 -0
- package/lib/tree-catalog/tree-catalog.service.d.ts.map +1 -0
- package/lib/ui-admin-table/create-department.services.d.ts +14 -0
- package/lib/ui-admin-table/create-department.services.d.ts.map +1 -0
- package/lib/ui-admin-table/directory-list/directory-table.component.d.ts +44 -0
- package/lib/ui-admin-table/directory-list/directory-table.component.d.ts.map +1 -0
- package/lib/ui-admin-table/interface/interfaces.d.ts +27 -0
- package/lib/ui-admin-table/interface/interfaces.d.ts.map +1 -0
- package/lib/ui-admin-table/ui-admin-table.module.d.ts +30 -0
- package/lib/ui-admin-table/ui-admin-table.module.d.ts.map +1 -0
- package/lib/ui-admin-table/user-list/ui-admin-user-table.component.d.ts +58 -0
- package/lib/ui-admin-table/user-list/ui-admin-user-table.component.d.ts.map +1 -0
- package/lib/ui-admin-table/user-list-popup/ui-user-table-pop-up.component.d.ts +50 -0
- package/lib/ui-admin-table/user-list-popup/ui-user-table-pop-up.component.d.ts.map +1 -0
- package/lib/ui-admin-table/user-list-popup/ui-user-table-pop-up.services.d.ts +11 -0
- package/lib/ui-admin-table/user-list-popup/ui-user-table-pop-up.services.d.ts.map +1 -0
- package/lib/ui-admin-table/user-popup/user-popup.d.ts +27 -0
- package/lib/ui-admin-table/user-popup/user-popup.d.ts.map +1 -0
- package/lib/ui-org-table/interface/interfaces.d.ts +30 -0
- package/lib/ui-org-table/interface/interfaces.d.ts.map +1 -0
- package/lib/ui-org-table/org-user-table-v2/org-user-table-v2.component.d.ts +60 -0
- package/lib/ui-org-table/org-user-table-v2/org-user-table-v2.component.d.ts.map +1 -0
- package/lib/ui-org-table/ui-org-table.module.d.ts +25 -0
- package/lib/ui-org-table/ui-org-table.module.d.ts.map +1 -0
- package/lib/ui-org-table/user-list/org-user-table.component.d.ts +56 -0
- package/lib/ui-org-table/user-list/org-user-table.component.d.ts.map +1 -0
- package/lib/user-content-detailed-rating/contentRating.model.d.ts +10 -0
- package/lib/user-content-detailed-rating/contentRating.model.d.ts.map +1 -0
- package/lib/user-content-detailed-rating/user-content-detailed-rating.component.d.ts +19 -0
- package/lib/user-content-detailed-rating/user-content-detailed-rating.component.d.ts.map +1 -0
- package/lib/user-content-detailed-rating/user-content-detailed-rating.module.d.ts +14 -0
- package/lib/user-content-detailed-rating/user-content-detailed-rating.module.d.ts.map +1 -0
- package/lib/video-wrapper/video-wrapper.component.d.ts +14 -0
- package/lib/video-wrapper/video-wrapper.component.d.ts.map +1 -0
- package/lib/video-wrapper/video-wrapper.model.d.ts +7 -0
- package/lib/video-wrapper/video-wrapper.model.d.ts.map +1 -0
- package/lib/video-wrapper/video-wrapper.module.d.ts +11 -0
- package/lib/video-wrapper/video-wrapper.module.d.ts.map +1 -0
- package/package.json +45 -0
- package/public-api.d.ts +275 -0
- package/public-api.d.ts.map +1 -0
- package/sunbird-cb-collection.d.ts.map +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"author-card.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/author-card/author-card.module.ts"],"names":[],"mappings":";;;;;;;;AASA,qBAKa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAI"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
4
|
+
import { ConfigurationsService, NsInstanceConfig } from '@sunbird-cb/utils-v2';
|
|
5
|
+
import { BreadcrumbsOrgService } from './breadcrumbs-org.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
type TUrl = undefined | 'none' | 'back' | string;
|
|
8
|
+
export declare class BreadcrumbsOrgComponent extends WidgetBaseComponent implements OnInit, NsWidgetResolver.IWidgetData<{
|
|
9
|
+
url: TUrl;
|
|
10
|
+
}> {
|
|
11
|
+
private btnBackSvc;
|
|
12
|
+
private router;
|
|
13
|
+
private configSvc;
|
|
14
|
+
widgetData: {
|
|
15
|
+
url: TUrl;
|
|
16
|
+
titles?: NsWidgetResolver.ITitle[];
|
|
17
|
+
};
|
|
18
|
+
presentUrl: string;
|
|
19
|
+
id: string;
|
|
20
|
+
visible: boolean;
|
|
21
|
+
enablePeopleSearch: boolean;
|
|
22
|
+
hubsList: NsInstanceConfig.IHubs[];
|
|
23
|
+
constructor(btnBackSvc: BreadcrumbsOrgService, router: Router, configSvc: ConfigurationsService);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
get backUrl(): {
|
|
26
|
+
fragment?: string;
|
|
27
|
+
routeUrl: string;
|
|
28
|
+
queryParams: any;
|
|
29
|
+
};
|
|
30
|
+
toggleVisibility(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsOrgComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbsOrgComponent, "ws-widget-breadcrumbs-org", never, { "widgetData": { "alias": "widgetData"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
|
+
}
|
|
34
|
+
export {};
|
|
35
|
+
//# sourceMappingURL=breadcrumbs-org.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breadcrumbs-org.component.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/breadcrumbs-org/breadcrumbs-org.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAiC,MAAM,EAAE,MAAM,eAAe,CAAA;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAA;AACxC,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC/E,OAAO,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAC9E,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAA;;AACjE,KAAK,IAAI,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAA;AAEhD,qBAmBa,uBAAwB,SAAQ,mBAC7C,YAAW,MAAM,EAAE,gBAAgB,CAAC,WAAW,CAAC;IAAE,GAAG,EAAE,IAAI,CAAA;CAAE,CAAC;IAS1D,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,SAAS;IAVV,UAAU,EAAE;QAAE,GAAG,EAAE,IAAI,CAAC;QAAC,MAAM,CAAC,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAA;KAAE,CAA8B;IACpG,UAAU,SAAK;IAER,EAAE,SAAa;IACtB,OAAO,UAAQ;IACf,kBAAkB,UAAO;IACzB,QAAQ,EAAG,gBAAgB,CAAC,KAAK,EAAE,CAAA;gBAEzB,UAAU,EAAE,qBAAqB,EACjC,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,qBAAqB;IAK1C,QAAQ;IASR,IAAI,OAAO,IAAI;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,GAAG,CAAA;KAAE,CAmCvE;IAQD,gBAAgB;yCArEL,uBAAuB;2CAAvB,uBAAuB;CAwEnC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./breadcrumbs-org.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@angular/material/legacy-button";
|
|
6
|
+
import * as i5 from "@angular/material/icon";
|
|
7
|
+
import * as i6 from "@angular/material/legacy-card";
|
|
8
|
+
export declare class BreadcrumbsOrgModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsOrgModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BreadcrumbsOrgModule, [typeof i1.BreadcrumbsOrgComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.MatLegacyButtonModule, typeof i5.MatIconModule, typeof i6.MatLegacyCardModule], [typeof i1.BreadcrumbsOrgComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BreadcrumbsOrgModule>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=breadcrumbs-org.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breadcrumbs-org.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/breadcrumbs-org/breadcrumbs-org.module.ts"],"names":[],"mappings":";;;;;;;AAQA,qBAWa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAI"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbsOrgService {
|
|
4
|
+
private router;
|
|
5
|
+
widgetUrl: string;
|
|
6
|
+
previousRouteUrls: string[];
|
|
7
|
+
private routerSubscription;
|
|
8
|
+
constructor(router: Router);
|
|
9
|
+
initialize(): void;
|
|
10
|
+
getLastUrl(pageNumber?: number): {
|
|
11
|
+
fragment: string | undefined;
|
|
12
|
+
route: string;
|
|
13
|
+
queryParams: {
|
|
14
|
+
[key: string]: string;
|
|
15
|
+
} | undefined;
|
|
16
|
+
};
|
|
17
|
+
private getQParams;
|
|
18
|
+
private isUrlEncoded;
|
|
19
|
+
checkUrl(url: any): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsOrgService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbsOrgService>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=breadcrumbs-org.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breadcrumbs-org.service.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/breadcrumbs-org/breadcrumbs-org.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,MAAM,EAAE,MAAM,iBAAiB,CAAA;;AAGzD,qBAGa,qBAAqB;IAK9B,OAAO,CAAC,MAAM;IAJhB,SAAS,EAAG,MAAM,CAAA;IACX,iBAAiB,EAAE,MAAM,EAAE,CAAK;IACvC,OAAO,CAAC,kBAAkB,CAA4B;gBAE5C,MAAM,EAAE,MAAM;IAGjB,UAAU;IA+BjB,UAAU,CAAC,UAAU,GAAE,MAAU;;;;;;;IA4BjC,OAAO,CAAC,UAAU;IA6BlB,OAAO,CAAC,YAAY;IAIpB,QAAQ,CAAC,GAAG,EAAE,GAAG;yCApGN,qBAAqB;6CAArB,qBAAqB;CAwGjC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
3
|
+
import { ConfigurationsService, NsPage } from '@sunbird-cb/utils-v2';
|
|
4
|
+
import { IBtnAppsConfig } from './btn-apps.model';
|
|
5
|
+
import { Router } from '@angular/router';
|
|
6
|
+
import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class BtnAppsComponent extends WidgetBaseComponent implements OnInit, OnDestroy, NsWidgetResolver.IWidgetData<IBtnAppsConfig> {
|
|
9
|
+
private dialog;
|
|
10
|
+
private configSvc;
|
|
11
|
+
private router;
|
|
12
|
+
widgetData: IBtnAppsConfig;
|
|
13
|
+
isPinFeatureAvailable: boolean;
|
|
14
|
+
instanceVal: string;
|
|
15
|
+
isUrlOpened: boolean;
|
|
16
|
+
pinnedApps: NsWidgetResolver.IRenderConfigWithTypedData<NsPage.INavLink>[];
|
|
17
|
+
featuredApps: NsWidgetResolver.IRenderConfigWithTypedData<NsPage.INavLink>[];
|
|
18
|
+
private pinnedAppsSubs?;
|
|
19
|
+
constructor(dialog: MatDialog, configSvc: ConfigurationsService, router: Router);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
setPinnedApps(): void;
|
|
23
|
+
setFeaturedApps(): void;
|
|
24
|
+
logout(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnAppsComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnAppsComponent, "ws-widget-btn-apps", never, { "widgetData": { "alias": "widgetData"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=btn-apps.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-apps.component.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-apps/btn-apps.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AACnE,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,EAAmB,MAAM,sBAAsB,CAAA;AAGrF,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,MAAM,EAAkC,MAAM,iBAAiB,CAAA;AACxE,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAA;;AAE9E,qBAKa,gBAAiB,SAAQ,mBACpC,YAAW,MAAM,EAAE,SAAS,EAAE,gBAAgB,CAAC,WAAW,CAAC,cAAc,CAAC;IAUxE,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,MAAM;IAXP,UAAU,EAAG,cAAc,CAAA;IACpC,qBAAqB,UAAO;IAC5B,WAAW,SAAK;IAChB,WAAW,UAAQ;IACnB,UAAU,EAAE,gBAAgB,CAAC,0BAA0B,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAK;IAC/E,YAAY,EAAE,gBAAgB,CAAC,0BAA0B,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAK;IAEjF,OAAO,CAAC,cAAc,CAAC,CAAc;gBAE3B,MAAM,EAAE,SAAS,EACjB,SAAS,EAAE,qBAAqB,EAChC,MAAM,EAAE,MAAM;IAoBxB,QAAQ;IAQR,WAAW;IAMX,aAAa;IAuBb,eAAe;IAyBf,MAAM;yCA/FK,gBAAgB;2CAAhB,gBAAgB;CAkG5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-apps.model.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-apps/btn-apps.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC7B,aAAa,EAAE,MAAM,CAAA;IACrB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./btn-apps.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@angular/material/legacy-button";
|
|
6
|
+
import * as i5 from "@angular/material/icon";
|
|
7
|
+
import * as i6 from "@angular/material/legacy-menu";
|
|
8
|
+
import * as i7 from "@angular/material/core";
|
|
9
|
+
import * as i8 from "@sunbird-cb/resolver-v2";
|
|
10
|
+
export declare class BtnAppsModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnAppsModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BtnAppsModule, [typeof i1.BtnAppsComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.MatLegacyButtonModule, typeof i5.MatIconModule, typeof i6.MatLegacyMenuModule, typeof i7.MatRippleModule, typeof i8.SbUiResolverModule], [typeof i1.BtnAppsComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BtnAppsModule>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=btn-apps.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-apps.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-apps/btn-apps.module.ts"],"names":[],"mappings":";;;;;;;;;AAUA,qBAaa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAI"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatLegacySnackBar as MatSnackBar } from '@angular/material/legacy-snack-bar';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface IWidgetBtnCallDialogData {
|
|
5
|
+
name: string;
|
|
6
|
+
phone: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class BtnCallDialogComponent implements OnInit {
|
|
9
|
+
private snackBar;
|
|
10
|
+
data: IWidgetBtnCallDialogData;
|
|
11
|
+
constructor(snackBar: MatSnackBar, data: IWidgetBtnCallDialogData);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
copyToClipboard(successMsg: string): void;
|
|
14
|
+
raiseTelemetry(_subType: 'copyToClipboard' | 'callSME'): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnCallDialogComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnCallDialogComponent, "ws-widget-btn-call-dialog", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=btn-call-dialog.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-call-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../../library/sunbird-cb/collection/src/lib/btn-call/btn-call-dialog/btn-call-dialog.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAU,MAAM,eAAe,CAAA;AAEzD,OAAO,EAAE,iBAAiB,IAAI,WAAW,EAAE,MAAM,oCAAoC,CAAA;;AAGrF,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;CACd;AAED,qBAKa,sBAAuB,YAAW,MAAM;IAGjD,OAAO,CAAC,QAAQ;IAEgB,IAAI,EAAE,wBAAwB;gBAFtD,QAAQ,EAAE,WAAW,EAEG,IAAI,EAAE,wBAAwB;IAGhE,QAAQ;IAGR,eAAe,CAAC,UAAU,EAAE,MAAM;IAYlC,cAAc,CAAC,QAAQ,EAAE,iBAAiB,GAAG,SAAS;yCAvB3C,sBAAsB;2CAAtB,sBAAsB;CAkClC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
3
|
+
import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog';
|
|
4
|
+
import { ConfigurationsService } from '@sunbird-cb/utils-v2';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export interface IWidgetBtnCall {
|
|
7
|
+
userName: string;
|
|
8
|
+
userPhone: string;
|
|
9
|
+
replaceIconWithLabel?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class BtnCallComponent extends WidgetBaseComponent implements OnInit, NsWidgetResolver.IWidgetData<IWidgetBtnCall> {
|
|
12
|
+
private dialog;
|
|
13
|
+
private configSvc;
|
|
14
|
+
widgetData: IWidgetBtnCall;
|
|
15
|
+
isCallEnabled: boolean;
|
|
16
|
+
constructor(dialog: MatDialog, configSvc: ConfigurationsService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
showCallDialog(): void;
|
|
19
|
+
raiseTelemetry(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnCallComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnCallComponent, "ws-widget-btn-call", never, { "widgetData": { "alias": "widgetData"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=btn-call.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-call.component.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-call/btn-call.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAA;AACxD,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC/E,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAA;AAK9E,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAA;;AAE5D,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,EAAE,MAAM,CAAA;IACjB,oBAAoB,CAAC,EAAE,OAAO,CAAA;CAC/B;AACD,qBAKa,gBAAiB,SAAQ,mBACpC,YAAW,MAAM,EAAE,gBAAgB,CAAC,WAAW,CAAC,cAAc,CAAC;IAM7D,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,SAAS;IANV,UAAU,EAAG,cAAc,CAAA;IACpC,aAAa,UAAQ;gBAIX,MAAM,EAAE,SAAS,EACjB,SAAS,EAAE,qBAAqB;IAK1C,QAAQ;IAMR,cAAc;IAUd,cAAc;yCA7BH,gBAAgB;2CAAhB,gBAAgB;CAuC5B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./btn-call.component";
|
|
3
|
+
import * as i2 from "./btn-call-dialog/btn-call-dialog.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/legacy-button";
|
|
6
|
+
import * as i5 from "@angular/material/icon";
|
|
7
|
+
import * as i6 from "@angular/material/legacy-tooltip";
|
|
8
|
+
import * as i7 from "@angular/material/legacy-dialog";
|
|
9
|
+
import * as i8 from "@angular/material/legacy-snack-bar";
|
|
10
|
+
export declare class BtnCallModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnCallModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BtnCallModule, [typeof i1.BtnCallComponent, typeof i2.BtnCallDialogComponent], [typeof i3.CommonModule, typeof i4.MatLegacyButtonModule, typeof i5.MatIconModule, typeof i6.MatLegacyTooltipModule, typeof i7.MatLegacyDialogModule, typeof i8.MatLegacySnackBarModule], [typeof i1.BtnCallComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BtnCallModule>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=btn-call.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-call.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-call/btn-call.module.ts"],"names":[],"mappings":";;;;;;;;;AAUA,qBAYa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAI"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TreeCatalogService } from '../tree-catalog/tree-catalog.service';
|
|
2
|
+
import { TFetchStatus } from '@sunbird-cb/utils-v2';
|
|
3
|
+
import { NSSearch } from '../_services/widget-search.model';
|
|
4
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BtnCatalogComponent extends WidgetBaseComponent implements NsWidgetResolver.IWidgetData<any> {
|
|
7
|
+
private catalogSvc;
|
|
8
|
+
widgetData: any;
|
|
9
|
+
catalogItems: NSSearch.IFilterUnitContent[] | null;
|
|
10
|
+
catalogFetchStatus: TFetchStatus;
|
|
11
|
+
constructor(catalogSvc: TreeCatalogService);
|
|
12
|
+
getCatalog(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnCatalogComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnCatalogComponent, "ws-widget-btn-catalog", never, { "widgetData": { "alias": "widgetData"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=btn-catalog.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-catalog.component.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-catalog/btn-catalog.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAA;AACzE,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAA;AAC3D,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;;AAE/E,qBAKa,mBAAoB,SAAQ,mBACvC,YAAW,gBAAgB,CAAC,WAAW,CAAC,GAAG,CAAC;IAMhC,OAAO,CAAC,UAAU;IAJrB,UAAU,EAAG,GAAG,CAAA;IACzB,YAAY,EAAE,QAAQ,CAAC,kBAAkB,EAAE,GAAG,IAAI,CAAO;IACzD,kBAAkB,EAAE,YAAY,CAAS;gBAErB,UAAU,EAAE,kBAAkB;IAIlD,UAAU;yCAXC,mBAAmB;2CAAnB,mBAAmB;CA0B/B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./btn-catalog.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/legacy-button";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
import * as i5 from "@angular/material/legacy-menu";
|
|
7
|
+
import * as i6 from "../tree-catalog/tree-catalog.module";
|
|
8
|
+
export declare class BtnCatalogModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnCatalogModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BtnCatalogModule, [typeof i1.BtnCatalogComponent], [typeof i2.CommonModule, typeof i3.MatLegacyButtonModule, typeof i4.MatIconModule, typeof i5.MatLegacyMenuModule, typeof i6.TreeCatalogModule], never>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BtnCatalogModule>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=btn-catalog.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-catalog.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-catalog/btn-catalog.module.ts"],"names":[],"mappings":";;;;;;;AASA,qBAUa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAI"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { NsContent } from '../_services/widget-content.model';
|
|
2
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface IButtonChannelAnalytics {
|
|
5
|
+
identifier: string;
|
|
6
|
+
contentType: NsContent.EContentTypes;
|
|
7
|
+
}
|
|
8
|
+
export declare class BtnChannelAnalyticsComponent extends WidgetBaseComponent implements NsWidgetResolver.IWidgetData<IButtonChannelAnalytics> {
|
|
9
|
+
widgetData: IButtonChannelAnalytics;
|
|
10
|
+
get showButton(): boolean;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnChannelAnalyticsComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnChannelAnalyticsComponent, "ws-widget-btn-channel-analytics", never, { "widgetData": { "alias": "widgetData"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=btn-channel-analytics.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-channel-analytics.component.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-channel-analytics/btn-channel-analytics.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAA;AAC7D,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;;AAE/E,UAAU,uBAAuB;IAC/B,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,SAAS,CAAC,aAAa,CAAA;CACrC;AACD,qBAKa,4BAA6B,SAAQ,mBAChD,YAAW,gBAAgB,CAAC,WAAW,CAAC,uBAAuB,CAAC;IAEvD,UAAU,EAAG,uBAAuB,CAAA;IAE7C,IAAW,UAAU,YAKpB;yCAVU,4BAA4B;2CAA5B,4BAA4B;CAYxC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./btn-channel-analytics.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
import * as i5 from "@angular/material/legacy-button";
|
|
7
|
+
import * as i6 from "@angular/material/legacy-tooltip";
|
|
8
|
+
export declare class BtnChannelAnalyticsModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnChannelAnalyticsModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BtnChannelAnalyticsModule, [typeof i1.BtnChannelAnalyticsComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.MatIconModule, typeof i5.MatLegacyButtonModule, typeof i6.MatLegacyTooltipModule], [typeof i1.BtnChannelAnalyticsComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BtnChannelAnalyticsModule>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=btn-channel-analytics.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-channel-analytics.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-channel-analytics/btn-channel-analytics.module.ts"],"names":[],"mappings":";;;;;;;AAOA,qBAWa,yBAAyB;yCAAzB,yBAAyB;0CAAzB,yBAAyB;0CAAzB,yBAAyB;CAAI"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
3
|
+
import { ConfigurationsService } from '@sunbird-cb/utils-v2';
|
|
4
|
+
import { NsContent } from '../_services/widget-content.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export interface IWidgetBtnDownload {
|
|
7
|
+
identifier: string;
|
|
8
|
+
contentType: NsContent.EContentTypes;
|
|
9
|
+
resourceType: string;
|
|
10
|
+
mimeType: NsContent.EMimeTypes;
|
|
11
|
+
downloadUrl: string;
|
|
12
|
+
isExternal: boolean;
|
|
13
|
+
artifactUrl: string;
|
|
14
|
+
status?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare class BtnContentDownloadComponent extends WidgetBaseComponent implements OnInit, NsWidgetResolver.IWidgetData<IWidgetBtnDownload> {
|
|
17
|
+
private configSvc;
|
|
18
|
+
widgetData: IWidgetBtnDownload;
|
|
19
|
+
forPreview: boolean;
|
|
20
|
+
id: string;
|
|
21
|
+
downloadable: boolean;
|
|
22
|
+
constructor(configSvc: ConfigurationsService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
private get isContentDownloadable();
|
|
25
|
+
download(event: Event): void;
|
|
26
|
+
raiseTelemetry(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentDownloadComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnContentDownloadComponent, "ws-widget-btn-content-download", never, { "widgetData": { "alias": "widgetData"; "required": false; }; "forPreview": { "alias": "forPreview"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=btn-content-download.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-download.component.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-download/btn-content-download.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAiC,MAAM,EAAE,MAAM,eAAe,CAAA;AACrE,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAA;AAE5D,OAAO,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAA;;AAE7D,MAAM,WAAW,kBAAkB;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,SAAS,CAAC,aAAa,CAAA;IACpC,YAAY,EAAE,MAAM,CAAA;IACpB,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAA;IAC9B,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,OAAO,CAAA;IACnB,WAAW,EAAE,MAAM,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,qBAKa,2BAA4B,SAAQ,mBAC/C,YAAW,MAAM,EAAE,gBAAgB,CAAC,WAAW,CAAC,kBAAkB,CAAC;IAWjE,OAAO,CAAC,SAAS;IAVV,UAAU,EAAG,kBAAkB,CAAA;IAC/B,UAAU,UAAQ;IAEpB,EAAE,SAAqB;IAC9B,YAAY,UAAQ;gBAMV,SAAS,EAAE,qBAAqB;IAI1C,QAAQ;IAOR,OAAO,KAAK,qBAAqB,GA6BhC;IAED,QAAQ,CAAC,KAAK,EAAE,KAAK;IAQrB,cAAc;yCA9DH,2BAA2B;2CAA3B,2BAA2B;CAqEvC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./btn-content-download.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/legacy-button";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
import * as i5 from "@angular/material/legacy-tooltip";
|
|
7
|
+
export declare class BtnContentDownloadModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentDownloadModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BtnContentDownloadModule, [typeof i1.BtnContentDownloadComponent], [typeof i2.CommonModule, typeof i3.MatLegacyButtonModule, typeof i4.MatIconModule, typeof i5.MatLegacyTooltipModule], [typeof i1.BtnContentDownloadComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BtnContentDownloadModule>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=btn-content-download.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-download.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-download/btn-content-download.module.ts"],"names":[],"mappings":";;;;;;AAOA,qBAUa,wBAAwB;yCAAxB,wBAAwB;0CAAxB,wBAAwB;0CAAxB,wBAAwB;CAAI"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class BtnContentDownloadService {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentDownloadService, never>;
|
|
5
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BtnContentDownloadService>;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=btn-content-download.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-download.service.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-download/btn-content-download.service.ts"],"names":[],"mappings":";AAEA,qBAGa,yBAAyB;;yCAAzB,yBAAyB;6CAAzB,yBAAyB;CAGrC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
|
|
3
|
+
import { MatLegacySnackBar as MatSnackBar } from '@angular/material/legacy-snack-bar';
|
|
4
|
+
import { NsFeedback } from '../btn-content-feedback.model';
|
|
5
|
+
import { BtnContentFeedbackService } from '../btn-content-feedback.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export interface IBtnFeedbackData {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
}
|
|
11
|
+
export declare class BtnContentFeedbackDialogComponent implements OnInit {
|
|
12
|
+
private snackBar;
|
|
13
|
+
data: IBtnFeedbackData;
|
|
14
|
+
private dialogRef;
|
|
15
|
+
private btnFeedbackSvc;
|
|
16
|
+
feedbackRequest: NsFeedback.IWsFeedbackTypeRequest;
|
|
17
|
+
submitInProgress: boolean;
|
|
18
|
+
ratingLoop: number[];
|
|
19
|
+
numbersPattern: RegExp;
|
|
20
|
+
constructor(snackBar: MatSnackBar, data: IBtnFeedbackData, dialogRef: MatDialogRef<BtnContentFeedbackDialogComponent>, btnFeedbackSvc: BtnContentFeedbackService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
submitFeedback(request: NsFeedback.IWsFeedbackTypeRequest, successMsg: string, errorMsg: string): void;
|
|
23
|
+
private openSnackBar;
|
|
24
|
+
private resetFeedbackForm;
|
|
25
|
+
private resetFeedbackRequest;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentFeedbackDialogComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnContentFeedbackDialogComponent, "ws-widget-btn-content-feedback-dialog", never, {}, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=btn-content-feedback-dialog.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback/btn-content-feedback-dialog/btn-content-feedback-dialog.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAU,MAAM,eAAe,CAAA;AACzD,OAAO,EAA6C,kBAAkB,IAAI,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAC/H,OAAO,EAAE,iBAAiB,IAAI,WAAW,EAAE,MAAM,oCAAoC,CAAA;AACrF,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAA;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;;AAC3E,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CACzB;AACD,qBAKa,iCAAkC,YAAW,MAAM;IAO5D,OAAO,CAAC,QAAQ;IACgB,IAAI,EAAE,gBAAgB;IACtD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,cAAc;IARxB,eAAe,EAAE,UAAU,CAAC,sBAAsB,CAA8B;IAChF,gBAAgB,UAAQ;IACxB,UAAU,EAAE,MAAM,EAAE,CAAK;IACzB,cAAc,SAAc;gBAElB,QAAQ,EAAE,WAAW,EACG,IAAI,EAAE,gBAAgB,EAC9C,SAAS,EAAE,YAAY,CAAC,iCAAiC,CAAC,EAC1D,cAAc,EAAE,yBAAyB;IAGnD,QAAQ;IAIR,cAAc,CAAC,OAAO,EAAE,UAAU,CAAC,sBAAsB,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAe/F,OAAO,CAAC,YAAY;IAKpB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,oBAAoB;yCA1CjB,iCAAiC;2CAAjC,iCAAiC;CA0D7C"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
3
|
+
import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog';
|
|
4
|
+
import { ConfigurationsService } from '@sunbird-cb/utils-v2';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
interface IWidgetBtnContentFeedback {
|
|
7
|
+
identifier: string;
|
|
8
|
+
name: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class BtnContentFeedbackComponent extends WidgetBaseComponent implements OnInit, NsWidgetResolver.IWidgetData<IWidgetBtnContentFeedback> {
|
|
11
|
+
private dialog;
|
|
12
|
+
private configSvc;
|
|
13
|
+
widgetData: IWidgetBtnContentFeedback;
|
|
14
|
+
forPreview: boolean;
|
|
15
|
+
isFeedbackEnabled: boolean;
|
|
16
|
+
id: string;
|
|
17
|
+
constructor(dialog: MatDialog, configSvc: ConfigurationsService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
openFeedbackDialog(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentFeedbackComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnContentFeedbackComponent, "ws-widget-btn-content-feedback", never, { "widgetData": { "alias": "widgetData"; "required": false; }; "forPreview": { "alias": "forPreview"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=btn-content-feedback.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback.component.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback/btn-content-feedback.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiC,MAAM,EAAE,MAAM,eAAe,CAAA;AACrE,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC/E,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAA;AAE9E,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAA;;AAE5D,UAAU,yBAAyB;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;CACb;AAED,qBAKa,2BAA4B,SAAQ,mBAC/C,YAAW,MAAM,EAAE,gBAAgB,CAAC,WAAW,CAAC,yBAAyB,CAAC;IAM9D,OAAO,CAAC,MAAM;IAAa,OAAO,CAAC,SAAS;IAL/C,UAAU,EAAG,yBAAyB,CAAA;IACtC,UAAU,UAAQ;IAC3B,iBAAiB,UAAQ;IAElB,EAAE,SAAqB;gBACV,MAAM,EAAE,SAAS,EAAU,SAAS,EAAE,qBAAqB;IAI/E,QAAQ;IAMR,kBAAkB;yCAjBP,2BAA2B;2CAA3B,2BAA2B;CA2BvC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare namespace NsFeedback {
|
|
2
|
+
interface IWsFeedbackTypeRequest {
|
|
3
|
+
contentId: string | null;
|
|
4
|
+
feedbackSubType: string | null;
|
|
5
|
+
rating?: number | string;
|
|
6
|
+
feedback: IWsFeedback[];
|
|
7
|
+
feedbackType: string;
|
|
8
|
+
}
|
|
9
|
+
interface IWsFeedback {
|
|
10
|
+
question: string;
|
|
11
|
+
meta: string;
|
|
12
|
+
answer: string;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=btn-content-feedback.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback.model.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback/btn-content-feedback.model.ts"],"names":[],"mappings":"AAAA,yBAAiB,UAAU,CAAC;IAC1B,UAAiB,sBAAsB;QACrC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAA;QACxB,eAAe,EAAE,MAAM,GAAG,IAAI,CAAA;QAC9B,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;QACxB,QAAQ,EAAE,WAAW,EAAE,CAAA;QACvB,YAAY,EAAE,MAAM,CAAA;KACrB;IACD,UAAiB,WAAW;QAC1B,QAAQ,EAAE,MAAM,CAAA;QAChB,IAAI,EAAE,MAAM,CAAA;QACZ,MAAM,EAAE,MAAM,CAAA;KACf;CACF"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./btn-content-feedback.component";
|
|
3
|
+
import * as i2 from "./btn-content-feedback-dialog/btn-content-feedback-dialog.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@angular/material/legacy-button";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "@angular/material/legacy-input";
|
|
9
|
+
import * as i8 from "@angular/material/legacy-tooltip";
|
|
10
|
+
import * as i9 from "@angular/material/legacy-dialog";
|
|
11
|
+
import * as i10 from "@angular/material/legacy-form-field";
|
|
12
|
+
export declare class BtnContentFeedbackModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentFeedbackModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BtnContentFeedbackModule, [typeof i1.BtnContentFeedbackComponent, typeof i2.BtnContentFeedbackDialogComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.MatLegacyButtonModule, typeof i6.MatIconModule, typeof i7.MatLegacyInputModule, typeof i8.MatLegacyTooltipModule, typeof i9.MatLegacyDialogModule, typeof i10.MatLegacyFormFieldModule], [typeof i1.BtnContentFeedbackComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BtnContentFeedbackModule>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=btn-content-feedback.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback/btn-content-feedback.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAYA,qBAca,wBAAwB;yCAAxB,wBAAwB;0CAAxB,wBAAwB;0CAAxB,wBAAwB;CAAI"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { NsFeedback } from './btn-content-feedback.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BtnContentFeedbackService {
|
|
6
|
+
private http;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
submitFeedback(data: NsFeedback.IWsFeedbackTypeRequest): Observable<any>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentFeedbackService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BtnContentFeedbackService>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=btn-content-feedback.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback.service.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback/btn-content-feedback.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;AAEjC,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAA;;AAMzD,qBAGa,yBAAyB;IAGlC,OAAO,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAG1B,cAAc,CAAC,IAAI,EAAE,UAAU,CAAC,sBAAsB,GAAG,UAAU,CAAC,GAAG,CAAC;yCAN7D,yBAAyB;6CAAzB,yBAAyB;CAiBrC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/btn-content-feedback-v2/btn-content-feedback-v2.component";
|
|
3
|
+
import * as i2 from "./components/btn-content-feedback-dialog-v2/btn-content-feedback-dialog-v2.component";
|
|
4
|
+
import * as i3 from "./components/feedback-snackbar/feedback-snackbar.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "../discussion-forum/editor-quill/editor-quill.module";
|
|
8
|
+
import * as i7 from "@angular/material/legacy-button";
|
|
9
|
+
import * as i8 from "@angular/material/icon";
|
|
10
|
+
import * as i9 from "@angular/material/legacy-tooltip";
|
|
11
|
+
import * as i10 from "@angular/material/legacy-dialog";
|
|
12
|
+
import * as i11 from "@angular/material/legacy-progress-spinner";
|
|
13
|
+
import * as i12 from "@angular/material/legacy-form-field";
|
|
14
|
+
import * as i13 from "@angular/material/legacy-input";
|
|
15
|
+
import * as i14 from "@angular/material/legacy-snack-bar";
|
|
16
|
+
export declare class BtnContentFeedbackV2Module {
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentFeedbackV2Module, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BtnContentFeedbackV2Module, [typeof i1.BtnContentFeedbackV2Component, typeof i2.BtnContentFeedbackDialogV2Component, typeof i3.FeedbackSnackbarComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.EditorQuillModule, typeof i7.MatLegacyButtonModule, typeof i8.MatIconModule, typeof i9.MatLegacyTooltipModule, typeof i10.MatLegacyDialogModule, typeof i11.MatLegacyProgressSpinnerModule, typeof i12.MatLegacyFormFieldModule, typeof i13.MatLegacyInputModule, typeof i14.MatLegacySnackBarModule], [typeof i1.BtnContentFeedbackV2Component, typeof i2.BtnContentFeedbackDialogV2Component, typeof i3.FeedbackSnackbarComponent]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BtnContentFeedbackV2Module>;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=btn-content-feedback-v2.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback-v2.module.d.ts","sourceRoot":"","sources":["../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback-v2/btn-content-feedback-v2.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAkBA,qBA0Ba,0BAA0B;yCAA1B,0BAA0B;0CAA1B,0BAA0B;0CAA1B,0BAA0B;CAAI"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
|
|
3
|
+
import { MatLegacySnackBar as MatSnackBar } from '@angular/material/legacy-snack-bar';
|
|
4
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
5
|
+
import { TSendStatus, TFetchStatus } from '@sunbird-cb/utils-v2';
|
|
6
|
+
import { NsContent } from '../../../_services/widget-content.model';
|
|
7
|
+
import { FeedbackService } from '../../services/feedback.service';
|
|
8
|
+
import { IFeedbackConfig } from '../../models/feedback.model';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class BtnContentFeedbackDialogV2Component implements OnInit {
|
|
11
|
+
content: NsContent.IContent;
|
|
12
|
+
private dialogRef;
|
|
13
|
+
private feedbackApi;
|
|
14
|
+
private snackbar;
|
|
15
|
+
positiveFeedbackSendStatus: TSendStatus;
|
|
16
|
+
negativeFeedbackSendStatus: TSendStatus;
|
|
17
|
+
singleFeedbackSendStatus: TSendStatus;
|
|
18
|
+
configFetchStatus: TFetchStatus;
|
|
19
|
+
feedbackForm: UntypedFormGroup;
|
|
20
|
+
singleFeedbackForm: UntypedFormGroup;
|
|
21
|
+
feedbackConfig: IFeedbackConfig;
|
|
22
|
+
constructor(content: NsContent.IContent, dialogRef: MatDialogRef<BtnContentFeedbackDialogV2Component>, feedbackApi: FeedbackService, snackbar: MatSnackBar);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
submitPositiveFeedback(text: string): void;
|
|
25
|
+
submitNegativeFeedback(text: string): void;
|
|
26
|
+
submitSingleFeedback(): void;
|
|
27
|
+
submitFeedback(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentFeedbackDialogV2Component, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnContentFeedbackDialogV2Component, "ws-widget-btn-content-feedback-dialog-v2", never, {}, {}, never, never, false, never>;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=btn-content-feedback-dialog-v2.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback-dialog-v2.component.d.ts","sourceRoot":"","sources":["../../../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback-v2/components/btn-content-feedback-dialog-v2/btn-content-feedback-dialog-v2.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,MAAM,EAAE,MAAM,eAAe,CAAA;AACzD,OAAO,EAA6C,kBAAkB,IAAI,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAC/H,OAAO,EAAE,iBAAiB,IAAI,WAAW,EAAE,MAAM,oCAAoC,CAAA;AACrF,OAAO,EAAE,gBAAgB,EAAkC,MAAM,gBAAgB,CAAA;AACjF,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAA;AACnE,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAA;AACjE,OAAO,EAAgC,eAAe,EAAE,MAAM,6BAA6B,CAAA;;AAG3F,qBAKa,mCAAoC,YAAW,MAAM;IAU9B,OAAO,EAAE,SAAS,CAAC,QAAQ;IAC3D,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,QAAQ;IAZlB,0BAA0B,EAAE,WAAW,CAAA;IACvC,0BAA0B,EAAE,WAAW,CAAA;IACvC,wBAAwB,EAAE,WAAW,CAAA;IACrC,iBAAiB,EAAE,YAAY,CAAA;IAC/B,YAAY,EAAE,gBAAgB,CAAA;IAC9B,kBAAkB,EAAE,gBAAgB,CAAA;IACpC,cAAc,EAAG,eAAe,CAAA;gBAGE,OAAO,EAAE,SAAS,CAAC,QAAQ,EACnD,SAAS,EAAE,YAAY,CAAC,mCAAmC,CAAC,EAC5D,WAAW,EAAE,eAAe,EAC5B,QAAQ,EAAE,WAAW;IAiB/B,QAAQ;IAaR,sBAAsB,CAAC,IAAI,EAAE,MAAM;IA4BnC,sBAAsB,CAAC,IAAI,EAAE,MAAM;IA4BnC,oBAAoB;IA2BpB,cAAc;yCA9HH,mCAAmC;2CAAnC,mCAAmC;CAuI/C"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog';
|
|
3
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
4
|
+
import { ConfigurationsService } from '@sunbird-cb/utils-v2';
|
|
5
|
+
import { IWidgetBtnContentFeedbackV2 } from '../../models/btn-content-feedback-v2.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class BtnContentFeedbackV2Component extends WidgetBaseComponent implements OnInit, NsWidgetResolver.IWidgetData<IWidgetBtnContentFeedbackV2> {
|
|
8
|
+
private dialog;
|
|
9
|
+
private configSvc;
|
|
10
|
+
widgetData: IWidgetBtnContentFeedbackV2;
|
|
11
|
+
forPreview: boolean;
|
|
12
|
+
id: string;
|
|
13
|
+
isFeedbackEnabled: boolean;
|
|
14
|
+
constructor(dialog: MatDialog, configSvc: ConfigurationsService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
openFeedbackDialog(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BtnContentFeedbackV2Component, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnContentFeedbackV2Component, "ws-widget-btn-content-feedback-v2", never, { "widgetData": { "alias": "widgetData"; "required": false; }; "forPreview": { "alias": "forPreview"; "required": false; }; }, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=btn-content-feedback-v2.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn-content-feedback-v2.component.d.ts","sourceRoot":"","sources":["../../../../../../../library/sunbird-cb/collection/src/lib/btn-content-feedback-v2/components/btn-content-feedback-v2/btn-content-feedback-v2.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiC,MAAM,EAAE,MAAM,eAAe,CAAA;AACrE,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAA;AAC9E,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAE/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAA;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,4CAA4C,CAAA;;AAExF,qBAKa,6BAA8B,SAAQ,mBACjD,YAAW,MAAM,EAAE,gBAAgB,CAAC,WAAW,CAAC,2BAA2B,CAAC;IAMhE,OAAO,CAAC,MAAM;IAAa,OAAO,CAAC,SAAS;IAL/C,UAAU,EAAG,2BAA2B,CAAA;IACxC,UAAU,UAAQ;IAEpB,EAAE,SAAuB;IAChC,iBAAiB,UAAQ;gBACL,MAAM,EAAE,SAAS,EAAU,SAAS,EAAE,qBAAqB;IAI/E,QAAQ;IAMR,kBAAkB;yCAjBP,6BAA6B;2CAA7B,6BAA6B;CAyBzC"}
|