@sunbird-cb/collection 1.0.32 → 1.0.34

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.
@@ -1,4 +1,4 @@
1
- import { Component, Input, NgModule, Inject, Injectable, ɵɵdefineInjectable, ɵɵinject, ViewChild, Pipe, HostBinding, EventEmitter, Output, Directive, HostListener, LOCALE_ID, NO_ERRORS_SCHEMA, ViewEncapsulation, ElementRef } from '@angular/core';
1
+ import { Component, Input, NgModule, Inject, Injectable, ɵɵdefineInjectable, ɵɵinject, ViewChild, Pipe, HostBinding, EventEmitter, Output, Directive, HostListener, LOCALE_ID, NO_ERRORS_SCHEMA, ViewEncapsulation, ElementRef, ChangeDetectorRef } from '@angular/core';
2
2
  import { CommonModule } from '@angular/common';
3
3
  import { __extends, __assign, __awaiter, __generator, __read, __values, __spread } from 'tslib';
4
4
  import { WidgetBaseComponent, WidgetResolverModule } from '@sunbird-cb/resolver';
@@ -22432,12 +22432,209 @@ if (false) {
22432
22432
  OrgUserTableComponent.prototype.selection;
22433
22433
  }
22434
22434
 
22435
+ var OrgUserTableV2Component = (function () {
22436
+ function OrgUserTableV2Component(changeDetector) {
22437
+ this.changeDetector = changeDetector;
22438
+ this.eOnRowClick = new EventEmitter();
22439
+ this.eOnButtonClick = new EventEmitter();
22440
+ this.searchByEnterKey = new EventEmitter();
22441
+ this.pageChangeClick = new EventEmitter();
22442
+ this.isSearchBar = true;
22443
+ this.bodyHeight = document.body.clientHeight - 125;
22444
+ this.pageSize = 20;
22445
+ this.pageSizeOptions = [20, 30, 40];
22446
+ this.selection = new SelectionModel(true, []);
22447
+ this.dataSource = new MatTableDataSource$1();
22448
+ this.actionsClick = new EventEmitter();
22449
+ this.clicked = new EventEmitter();
22450
+ }
22451
+ Object.defineProperty(OrgUserTableV2Component.prototype, "matPaginator", {
22452
+ set: function (paginator) {
22453
+ this.paginator = paginator;
22454
+ },
22455
+ enumerable: true,
22456
+ configurable: true
22457
+ });
22458
+ Object.defineProperty(OrgUserTableV2Component.prototype, "matSort", {
22459
+ set: function (sort) {
22460
+ if (!this.dataSource.sort) {
22461
+ this.dataSource.sort = sort;
22462
+ }
22463
+ },
22464
+ enumerable: true,
22465
+ configurable: true
22466
+ });
22467
+ OrgUserTableV2Component.prototype.ngOnInit = function () {
22468
+ if (this.tableData) {
22469
+ this.displayedColumns = this.tableData.columns;
22470
+ }
22471
+ this.dataSource.data = this.data;
22472
+ this.dataSource = new MatTableDataSource$1(this.data);
22473
+ this.pageLength = this.totalRecords;
22474
+ };
22475
+ OrgUserTableV2Component.prototype.ngOnChanges = function (changes) {
22476
+ if (changes.data && changes.data.currentValue) {
22477
+ this.dataSource.data = get(changes, 'data.currentValue');
22478
+ }
22479
+ };
22480
+ OrgUserTableV2Component.prototype.ngAfterViewInit = function () {
22481
+ if (this.data) {
22482
+ this.dataSource.data = this.data;
22483
+ }
22484
+ };
22485
+ OrgUserTableV2Component.prototype.ngAfterViewChecked = function () {
22486
+ if (this.totalRecords !== undefined && this.totalRecords !== '') {
22487
+ if (this.dataSource && this.dataSource.paginator && this.dataSource.paginator.length !== this.totalRecords) {
22488
+ this.dataSource.paginator.length = this.totalRecords;
22489
+ }
22490
+ this.pageLength = this.totalRecords;
22491
+ this.changeDetector.detectChanges();
22492
+ }
22493
+ };
22494
+ OrgUserTableV2Component.prototype.applyFilter = function (filterValue) {
22495
+ if (filterValue) {
22496
+ var fValue = filterValue.trim();
22497
+ fValue = filterValue.toLowerCase();
22498
+ this.dataSource.filter = fValue;
22499
+ }
22500
+ else {
22501
+ this.dataSource.filter = '';
22502
+ }
22503
+ };
22504
+ OrgUserTableV2Component.prototype.buttonClick = function (action, row) {
22505
+ if (this.tableData) {
22506
+ var isDisabled = get(find(this.tableData.actions, (function (ac) { return ac.name === action; })), 'disabled') || false;
22507
+ if (!isDisabled && this.actionsClick) {
22508
+ this.actionsClick.emit({ action: action, row: row });
22509
+ }
22510
+ }
22511
+ };
22512
+ OrgUserTableV2Component.prototype.getFinalColumns = function () {
22513
+ if (this.tableData !== undefined) {
22514
+ var columns = map$1(this.tableData.columns, (function (c) { return c.key; }));
22515
+ if (this.tableData.needCheckBox) {
22516
+ columns.splice(0, 0, 'select');
22517
+ }
22518
+ if (this.tableData.needHash) {
22519
+ columns.splice(0, 0, 'SR');
22520
+ }
22521
+ if (this.tableData.actions && this.tableData.actions.length > 0) {
22522
+ columns.push('Actions');
22523
+ }
22524
+ if (this.tableData.needUserMenus) {
22525
+ columns.push('Menu');
22526
+ }
22527
+ return columns;
22528
+ }
22529
+ return '';
22530
+ };
22531
+ OrgUserTableV2Component.prototype.isAllSelected = function () {
22532
+ var numSelected = this.selection.selected.length;
22533
+ var numRows = this.dataSource.data.length;
22534
+ return numSelected === numRows;
22535
+ };
22536
+ OrgUserTableV2Component.prototype.filterList = function (list, key) {
22537
+ return list.map((function (lst) { return lst[key]; }));
22538
+ };
22539
+ OrgUserTableV2Component.prototype.masterToggle = function () {
22540
+ var _this = this;
22541
+ this.isAllSelected() ?
22542
+ this.selection.clear() :
22543
+ this.dataSource.data.forEach((function (row) { return _this.selection.select(row); }));
22544
+ };
22545
+ OrgUserTableV2Component.prototype.checkboxLabel = function (row) {
22546
+ if (!row) {
22547
+ return (this.isAllSelected() ? 'select' : 'deselect') + " all";
22548
+ }
22549
+ return (this.selection.isSelected(row) ? 'deselect' : 'select') + " row " + (row.position + 1);
22550
+ };
22551
+ OrgUserTableV2Component.prototype.onRowClick = function (e) {
22552
+ this.eOnRowClick.emit(e);
22553
+ };
22554
+ OrgUserTableV2Component.prototype.onButtonClick = function (type, event) {
22555
+ this.eOnButtonClick.emit({ type: type, event: event });
22556
+ };
22557
+ OrgUserTableV2Component.prototype.onSearchEnter = function (event) {
22558
+ this.searchByEnterKey.emit(event.target.value);
22559
+ };
22560
+ OrgUserTableV2Component.prototype.onPageChange = function (event) {
22561
+ this.pageSize = event.pageSize;
22562
+ this.pageChangeClick.emit(event);
22563
+ };
22564
+ OrgUserTableV2Component.decorators = [
22565
+ { type: Component, args: [{
22566
+ selector: 'ws-widget-org-user-table-v2',
22567
+ template: "<div class=\"example-container margin-top-m\">\n <div class=\"example-loading-shade\"></div>\n\n <div class=\"example-table-container\">\n <div class=\"container-balanced\">\n <div class=\"flex flex-1 custom\">\n <div class=\"flex-1\">\n <div class=\"search\" *ngIf=\"isSearchBar\">\n <div class=rsearch>\n <mat-icon class=\"color-60 search-icon\">search</mat-icon>\n <input class=\"sinput color-60\" type=\"Standard\" label=\"\"\n (input)=\"applyFilter($event.target.value)\" (keydown.enter)=\"onSearchEnter($event)\"\n placeholder=\"Search\">\n </div>\n </div>\n </div>\n <div class=\"flex-2 right-align\">\n <!-- <button type=\"button\" mat-button class=\"upload-btn\" *ngIf=\"isUpload\"\n (click)=\"onButtonClick('upload', $event)\">\n <mat-icon>vertical_align_top</mat-icon> File upload\n </button> -->\n <button type=\"button\" mat-button class=\"upload-btn\" *ngIf=\"isDownload\"\n (click)=\"onButtonClick('download', $event)\">\n <mat-icon>vertical_align_bottom</mat-icon> Users Report\n </button>\n <button type=\"button\" mat-button class=\"upload-btn\" *ngIf=\"isConsumptionReport\"\n (click)=\"onButtonClick('consumptionReport', $event)\">\n <mat-icon>vertical_align_bottom</mat-icon> Consumption Report\n </button>\n <button type=\"button\" mat-button class=\"create-btn\" *ngIf=\"isCreate\"\n (click)=\"onButtonClick('createUser', $event)\">\n Create new\n </button>\n </div>\n </div>\n </div>\n\n <!-- </mat-form-field> -->\n <mat-table #table matSort [ngStyle]=\"{'height': bodyHeight}\" [matSortActive]=\"tableData!.sortColumn\"\n [matSortDirection]=\"tableData!.sortState\" [dataSource]=\"dataSource\"\n class=\"example-table table1 responsiveTable\" *ngIf=\"dataSource.data.length > 0\">\n\n <ng-container matColumnDef=\"{{col.key}}\" *ngFor=\"let col of tableData!.columns\">\n <mat-header-cell *matHeaderCellDef mat-sort-header class=\".h-400-r-14-l color-60\"> {{col.displayName}}\n </mat-header-cell>\n <mat-cell *matCellDef=\"let element\" (click)=\"onRowClick(element)\">\n <img *ngIf=\"col?.imageUrl\" src=\"{{element.posterImage}}\" class=\"pb-image\">\n <span *ngIf=\"col?.isList\" class=\"h-400-r-14-l color-87 textclass\">\n <div innerHTML=\"{{element[col.key]}}\"></div>\n </span>\n <span *ngIf=\"!col?.isList\" class=\"h-400-r-14-l color-87 textclass\">\n {{(col.key === 'dateCreatedOn' || col.key === 'dateUpdatedOn') ? (element[col.key] | date:'dd\n MMM yyy h:mm a') : element[col.key]}} {{col?.isList}}\n </span>\n </mat-cell>\n </ng-container>\n <ng-container matColumnDef=\"Actions\" *ngIf=\"tableData!.actions && tableData!.actions.length > 0\">\n <mat-header-cell *matHeaderCellDef class=\"clr-darkish-blue action-header\"> {{\n tableData!.actionColumnName || \"Actions\"}}\n </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" class=\"action-cell\">\n <div *ngFor=\"let ac of tableData!.actions\">\n <div *ngIf=\"ac.optional\">\n <ws-widget-app-button *ngIf=\"row[ac.optional_key] === ac.optional_Value\" [type]=\"ac.type\"\n [icon]=\"ac.icon\" [disabled]=\"ac.disabled || false\" [label]=\"ac.label\"\n (click)=\"buttonClick(ac.name,row)\"></ws-widget-app-button>\n </div>\n <div *ngIf=\"!ac.optional\">\n <ws-widget-app-button [type]=\"ac.type\" [icon]=\"ac.icon\" [label]=\"ac.label\"\n [disabled]=\"ac.disabled || false\" (click)=\"buttonClick(ac.name,row)\">\n </ws-widget-app-button>\n </div>\n </div>\n </mat-cell>\n </ng-container>\n <ng-container matColumnDef=\"Menu\">\n <mat-header-cell *matHeaderCellDef class=\"clr-darkish-blue action-header\">\n <!-- {{'Actions'}} -->\n </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" class=\"action-cell\">\n <button type=\"button\" mat-icon-button i18n-aria-label aria-label=\"action items\"\n [matMenuTriggerFor]=\"cardMenu\" [matMenuTriggerData]=\"{'data':row}\" class=\"action-btn\">\n <mat-icon>more_horiz</mat-icon>\n </button>\n </mat-cell>\n </ng-container>\n\n <mat-header-row *matHeaderRowDef=\"getFinalColumns()\"></mat-header-row>\n\n <mat-row *matRowDef=\"let row; columns: getFinalColumns();\" (click)=\"selection.toggle(row);\">\n </mat-row>\n\n <!-- <div *ngIf=\"dataSource.filteredData.length <= 0\">\n <mat-row *matRowDef=\"let row; columns: getFinalColumns();\"\n (click)=\"selection.toggle(row); onRowClick(row)\">\n ssss\n </mat-row>\n </div> -->\n </mat-table>\n <mat-card class=\"flex-1\" role=\"none\" *ngIf=\"dataSource.data.length == 0\">\n <span class=\"mat-subtitle\">No data found</span>\n </mat-card>\n </div>\n <mat-paginator [length]=\"pageLength\" [pageSize]=\"pageSize\" [pageSizeOptions]=\"pageSizeOptions\" showFirstLastButtons=\"true\"\n (page)=\"onPageChange($event)\" [pageIndex]=\"tabChangeIndex\"> </mat-paginator>\n</div>\n\n<mat-menu #cardMenu=\"matMenu\">\n <ng-template matMenuContent let-rowData=\"data\">\n <!-- <div > -->\n <button (click)=\"buttonClick('editInfo',rowData)\" mat-menu-item name=\"channel-analytics-button\"\n class=\"ws-mat-primary-text\" i18n-aria-label aria-label=\"Analytics\"\n *ngIf=\"rowData.allowEditUser && showEditOnCondition\">\n <mat-icon>edit</mat-icon> <span>Edit Info</span>\n </button>\n <button (click)=\"buttonClick('editInfo',rowData)\" mat-menu-item name=\"channel-analytics-button\"\n class=\"ws-mat-primary-text\" i18n-aria-label aria-label=\"Analytics\" *ngIf=\"!showEditOnCondition\">\n <mat-icon>edit</mat-icon> <span>Edit Info</span>\n </button>\n <button (click)=\"buttonClick('showOnKarma',rowData)\" mat-menu-item name=\"channel-analytics-button\"\n class=\"ws-mat-primary-text\" i18n-aria-label aria-label=\"Analytics\">\n <mat-icon>input</mat-icon> <span>Show on Karmayogi</span>\n </button>\n <!-- </div> -->\n <!-- <div mat-menu-item> -->\n <!-- <button (click)=\"rowData && rowData.blocked ? buttonClick('unblock',rowData): buttonClick('block',rowData)\"\n mat-menu-item name=\"channel-analytics-button\" class=\"ws-mat-primary-text\" i18n-aria-label\n aria-label=\"Analytics\">\n <mat-icon>block</mat-icon><span>{{rowData && rowData.blocked ? 'Unblock user':'Block user' }}</span>\n </button> -->\n <!-- </div> -->\n <!-- <div mat-menu-item> -->\n <button *ngIf=\"userId != rowData.userId\"\n (click)=\"rowData && rowData.active ? buttonClick('deactive',rowData): buttonClick('active',rowData)\"\n mat-menu-item name=\"channel-analytics-button\" class=\"ws-mat-primary-text\" i18n-aria-label\n aria-label=\"Analytics\">\n <mat-icon>toggle_off_sharp</mat-icon>\n <span>{{rowData && rowData.active? 'Deactivate user':'Activate user'}}</span>\n </button>\n </ng-template>\n</mat-menu>",
22568
+ styles: [".card-minimal-container{position:relative}.card-minimal-container .card-link{width:265px;height:150px;display:block}.card-minimal-container .card-link .card-thumbnail{object-fit:contain;width:100%;height:100%}.card-minimal-container .card-overlay{position:absolute;bottom:4px;background-color:rgba(0,0,0,.55);color:#fff;padding:4px 12px;box-sizing:border-box;width:100%}.card-minimal-container .card-overlay .card-title{margin-bottom:-6px}.status-danger{width:16px;height:16px;position:absolute;border-radius:50%;top:16px;left:16px;pointer-events:auto;cursor:pointer;background:#ce3939}.card-space-saving-container{position:relative;width:265px;height:100%;box-sizing:border-box}.card-space-saving-container .progress-bar{display:block;width:calc(100% + 32px);margin-left:-16px;margin-top:-16px}.card-space-saving-container mat-card-content{margin:0 -4px;min-height:120px}.card-space-saving-container .card-img{height:150px;display:block}.card-space-saving-container .card-header-meta{margin-top:8px}.card-space-saving-container .title-text{display:block;margin:12px 0}.card-space-saving-container .flip-desc-text{position:relative;overflow:hidden;line-height:1.4em;height:5.6em;margin-bottom:36px}.card-space-saving-container .flip-actions{position:absolute;bottom:0;left:0;width:100%;padding:12px;box-sizing:border-box}.card-space-saving-container .flip-actions .source-name{margin-bottom:0;font-weight:400}.card-ford-container{padding:16px 16px 0;position:relative;width:220px;height:243px;overflow:hidden;box-sizing:border-box}.card-ford-container .progress-bar{display:block;width:calc(100% + 32px);margin-left:-16px;margin-top:-16px}.card-ford-container mat-card-content{margin:160px}.card-ford-container .card-img{height:125px;display:block;object-fit:contain}@media only screen and (max-width:599px){.card-ford-container{width:200px;height:240px}.card-ford-container .card-img{height:115px}}.card-ford-container .complexity{display:flex;font-size:14px}.card-ford-container .duration{height:1.6em;display:flex}.card-ford-container .duration .resource-type{order:3;margin-left:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.card-ford-container .duration .duration-time{order:2;margin-left:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.card-ford-container .title-text{margin:12px 0;position:relative;overflow:hidden;height:1.3em;line-height:1.3em;text-overflow:ellipsis;white-space:nowrap}.card-ford-container .mode-tag{border-radius:5px;color:#fff}.card-ford-container .description-text{position:relative;overflow:hidden;height:4.2em;line-height:1.4em}.card-ford-container .mat-chip-list-wrapper{padding:8px 0 16px!important}.card-ford-container .text-description-trim{overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:9;display:-webkit-box;-webkit-box-orient:vertical;text-align:justify}.card-standard-container{position:relative;width:268px;height:100%;min-height:346px;border-radius:8px;box-sizing:border-box;box-shadow:0 10px 30px #99999933}.card-standard-container .progress-bar{display:block;width:calc(100% + 30px);margin-left:-15px;display:flex;margin-top:62px;background:bisque}.card-standard-container .source-div{position:relative;top:100px;background:#fff;z-index:3;border:1px solid #dedfe0;min-width:72px;min-height:72px;max-width:72px;max-height:72px;display:flex;border-radius:8px}.card-standard-container .source-div .source-icon{border-radius:8px;display:block;margin:auto;max-width:58px;max-height:-webkit-fill-available}.card-standard-container mat-card-content{margin:0 -4px}.card-standard-container .card-img{min-width:269px;max-width:269px;display:block;object-fit:contain;border-top-left-radius:8px;border-top-right-radius:8px}.card-standard-container .complexity{padding-top:7px;display:flex;font-size:14px;line-height:27px;padding-bottom:10px}.card-standard-container .complexity .mode-tag{border-radius:5px;order:2;margin-left:auto;color:#fff;font-size:10px}.card-standard-container .complexity .duration{display:flex;margin-left:auto;order:3}.card-standard-container .complexity .time-text{margin:0 5px 0 6px}.card-standard-container .basic{margin:auto 0}.card-standard-container .title-text{margin:12px 0;position:relative;overflow:hidden;height:3.78em;line-height:1.89em}.card-standard-container .description-text{position:relative;overflow:hidden;height:5.7em;line-height:1.9em}.card-discussions-container{flex:1;display:flex;position:relative;height:100%;min-height:140px;border-radius:8px;box-sizing:border-box;box-shadow:0 10px 30px #99999933}.card-discussions-container .progress-bar{display:block;width:calc(100% + 30px);margin-left:-15px;display:flex;margin-top:62px;background:bisque}.card-discussions-container .source-div{position:relative;top:100px;background:#fff;z-index:3;border:1px solid #dedfe0;min-width:72px;min-height:72px;max-width:72px;max-height:72px;display:flex;border-radius:8px}.card-discussions-container .source-div .source-icon{border-radius:8px;display:block;margin:auto;max-width:58px;max-height:-webkit-fill-available}.card-discussions-container mat-card-content{margin:0 -4px;flex:1}.card-discussions-container .card-img{min-width:269px;max-width:269px;display:block;object-fit:contain;border-top-left-radius:8px;border-top-right-radius:8px}.card-discussions-container .complexity{padding-top:7px;display:flex;font-size:14px;line-height:27px;padding-bottom:10px}.card-discussions-container .complexity .mode-tag{border-radius:5px;order:2;margin-left:auto;color:#fff;font-size:10px}.card-discussions-container .complexity .duration{display:flex;margin-left:auto;order:3}.card-discussions-container .complexity .time-text{margin:0 5px 0 6px}.card-discussions-container .basic{margin:auto 0}.card-discussions-container .title-text{overflow:hidden}.card-discussions-container .description-text{position:relative;overflow:hidden;height:auto;line-height:1.9em}.card-basic-infomartion-container{position:relative;width:265px;height:100%;box-sizing:border-box;min-height:300px}.card-basic-infomartion-container .card-img{height:150px;display:block;margin-bottom:0!important;object-fit:contain}.card-basic-infomartion-container .source-name{margin-bottom:0;font-weight:400;line-height:1.25rem!important}.card-basic-infomartion-container .title-text{margin:12px 0 0;position:relative;overflow:hidden;height:2.6em;line-height:1.3em}.card-basic-infomartion-container .source-image{object-fit:contain;height:35px;width:55px;overflow:auto}.card-with-user-details-container{position:relative;width:265px;height:100%;box-sizing:border-box;min-height:270px}.card-with-user-details-container .card-img{height:150px;display:block;margin-bottom:0!important;object-fit:contain}.card-with-user-details-container .source-name{margin-bottom:0;font-weight:400}.card-with-user-details-container .title-text{margin:12px 0 0;position:relative;overflow:hidden;height:2.6em;line-height:1.3em}.card-with-user-details-container .author-image{margin-right:12px;height:44px;width:44px}.card-with-user-details-container .back-color{background-color:#7e0a80}.card-with-user-details-container .space-0{margin-top:0!important;padding-top:0!important;margin-bottom:0!important}.detail-button{position:absolute;top:12px;right:12px;z-index:1}.greyOut{filter:grayscale(1);opacity:.7;cursor:auto!important}.disableClick{pointer-events:none}.display-contents{display:contents}.title-truncate{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.typeofc{width:101px;height:30px;border:1px solid;border-radius:8px;opacity:.4;align-items:center;justify-content:center;display:flex}.flex-9{flex:9}.center-right{align-items:center;justify-content:flex-end}.no-box{box-shadow:none!important}.table1{width:100%;display:flex;flex-direction:column}.textclass{word-break:break-word;margin:5px;cursor:pointer}.search{display:flex;flex:1}.lsearch{display:flex;flex:3}.rsearch{display:flex;position:relative;flex:1 1 auto}.sinput{width:45%;border-radius:4px;border:1px solid #d5d0d0;padding:9px 9px 9px 35px;margin-bottom:20px;margin-top:0;font:400 14px Lato}.searchText{display:flex;flex-direction:row-reverse;margin:23px 0 0 auto}.action-btn{border:none;background:0 0}mat-header-row{min-height:40px}.mat-header-cell{background-color:#f5f5f5}.container-balanced{max-width:99%;margin-left:auto!important;margin-right:auto!important}.flex-3{flex:3}.flex-1{flex:1}.flex-2{flex:2}.flex-4{flex:4}.flex-update{flex-direction:row}@media only screen and (max-width:599px){.card-ford-container .text-description-trim{-webkit-line-clamp:8}.flex-update{flex-direction:row}}.flex-custom{display:flex;flex-direction:column}@media only screen and (max-width:599px){.flex-custom-m{flex-direction:column}}.right-align{text-align:right}.create-btn{width:107px;background:#0075b7!important;color:#fff!important;font-family:Lato;font-weight:700;font-size:14px}.upload-btn{border:1px solid #dedede;border-radius:4px;margin:0 12px;color:#848484!important;font-family:Lato;font-weight:700;font-size:14px}.search-icon{position:absolute;top:9px;font-size:20px;left:10px}.example-container{display:flex;flex-direction:column;flex:1}.linkTextColor{color:#0074b6!important}.pb-image{height:40px;width:64px;margin:10px 8px 10px 0}"]
22569
+ }] }
22570
+ ];
22571
+ OrgUserTableV2Component.ctorParameters = function () { return [
22572
+ { type: ChangeDetectorRef }
22573
+ ]; };
22574
+ OrgUserTableV2Component.propDecorators = {
22575
+ tableData: [{ type: Input }],
22576
+ data: [{ type: Input }],
22577
+ isUpload: [{ type: Input }],
22578
+ isCreate: [{ type: Input }],
22579
+ isDownload: [{ type: Input }],
22580
+ isConsumptionReport: [{ type: Input }],
22581
+ userId: [{ type: Input }],
22582
+ clicked: [{ type: Output }],
22583
+ actionsClick: [{ type: Output }],
22584
+ eOnRowClick: [{ type: Output }],
22585
+ eOnButtonClick: [{ type: Output }],
22586
+ searchByEnterKey: [{ type: Output }],
22587
+ pageChangeClick: [{ type: Output }],
22588
+ showEditOnCondition: [{ type: Input }],
22589
+ isSearchBar: [{ type: Input }],
22590
+ paginationv1: [{ type: Input }],
22591
+ paginationv2: [{ type: Input }],
22592
+ totalRecords: [{ type: Input }],
22593
+ tabChangeIndex: [{ type: Input }],
22594
+ paginator: [{ type: ViewChild, args: [MatPaginator, { static: false },] }],
22595
+ matPaginator: [{ type: ViewChild, args: [MatPaginator, { static: false },] }],
22596
+ matSort: [{ type: ViewChild, args: [MatSort$1, { static: false },] }]
22597
+ };
22598
+ return OrgUserTableV2Component;
22599
+ }());
22600
+ if (false) {
22601
+ OrgUserTableV2Component.prototype.tableData;
22602
+ OrgUserTableV2Component.prototype.data;
22603
+ OrgUserTableV2Component.prototype.isUpload;
22604
+ OrgUserTableV2Component.prototype.isCreate;
22605
+ OrgUserTableV2Component.prototype.isDownload;
22606
+ OrgUserTableV2Component.prototype.isConsumptionReport;
22607
+ OrgUserTableV2Component.prototype.userId;
22608
+ OrgUserTableV2Component.prototype.clicked;
22609
+ OrgUserTableV2Component.prototype.actionsClick;
22610
+ OrgUserTableV2Component.prototype.eOnRowClick;
22611
+ OrgUserTableV2Component.prototype.eOnButtonClick;
22612
+ OrgUserTableV2Component.prototype.searchByEnterKey;
22613
+ OrgUserTableV2Component.prototype.pageChangeClick;
22614
+ OrgUserTableV2Component.prototype.showEditOnCondition;
22615
+ OrgUserTableV2Component.prototype.isSearchBar;
22616
+ OrgUserTableV2Component.prototype.paginationv1;
22617
+ OrgUserTableV2Component.prototype.paginationv2;
22618
+ OrgUserTableV2Component.prototype.bodyHeight;
22619
+ OrgUserTableV2Component.prototype.displayedColumns;
22620
+ OrgUserTableV2Component.prototype.dataSource;
22621
+ OrgUserTableV2Component.prototype.widgetData;
22622
+ OrgUserTableV2Component.prototype.pageLength;
22623
+ OrgUserTableV2Component.prototype.pageSize;
22624
+ OrgUserTableV2Component.prototype.pageSizeOptions;
22625
+ OrgUserTableV2Component.prototype.totalRecords;
22626
+ OrgUserTableV2Component.prototype.tabChangeIndex;
22627
+ OrgUserTableV2Component.prototype.paginator;
22628
+ OrgUserTableV2Component.prototype.selection;
22629
+ OrgUserTableV2Component.prototype.changeDetector;
22630
+ }
22631
+
22435
22632
  var UIORGTableModule = (function () {
22436
22633
  function UIORGTableModule() {
22437
22634
  }
22438
22635
  UIORGTableModule.decorators = [
22439
22636
  { type: NgModule, args: [{
22440
- declarations: [OrgUserTableComponent],
22637
+ declarations: [OrgUserTableComponent, OrgUserTableV2Component],
22441
22638
  imports: [
22442
22639
  CommonModule,
22443
22640
  MatTableModule$1,
@@ -22457,7 +22654,7 @@ var UIORGTableModule = (function () {
22457
22654
  MatCardModule,
22458
22655
  AppButtonModule,
22459
22656
  ],
22460
- exports: [OrgUserTableComponent],
22657
+ exports: [OrgUserTableComponent, OrgUserTableV2Component],
22461
22658
  },] }
22462
22659
  ];
22463
22660
  return UIORGTableModule;
@@ -24728,5 +24925,5 @@ var ScrollspyLeftMenuModule = (function () {
24728
24925
  return ScrollspyLeftMenuModule;
24729
24926
  }());
24730
24927
 
24731
- export { ActivityCardModule, AppTourDialogComponent, AppTourDialogModule, AtGlanceComponent, AtGlanceModule, AuthorCardModule, AvatarPhotoModule, BreadcrumbsOrgModule, BreadcrumbsOrgService, BtnAppsModule, BtnCallModule, BtnCatalogModule, BtnChannelAnalyticsModule, BtnContentDownloadModule, BtnContentDownloadService, BtnContentFeedbackModule, BtnContentFeedbackService, BtnContentFeedbackV2Module, BtnContentLikeModule, BtnContentLikeService, BtnContentMailMeModule, BtnContentShareModule, BtnFacebookShareModule, BtnFeatureModule, BtnFollowModule, BtnFollowService, BtnFullscreenModule, BtnGoalsModule, BtnGoalsService, BtnKbAnalyticsModule, BtnKbModule, BtnKbService, BtnLinkedinShareModule, BtnMailUserDialogComponent, BtnMailUserModule, BtnPageBackModule, BtnPageBackModuleAdmin, BtnPageBackNavModule, BtnPageBackNavService, BtnPageBackService, BtnPageBackServiceAdmin, BtnPlaylistModule, BtnPlaylistService, BtnPreviewModule, BtnPreviewService, BtnSettingsModule, BtnSettingsService, BtnSocialDeleteModule, BtnSocialLikeModule, BtnSocialVoteModule, BtnTwitterShareModule, COLOR_PALETTE, CardActivityModule, CardBreadcrumbModule, CardBrowseCourseModule, CardChannelModule, CardChannelModuleV2, CardContentModule, CardHomeTopModule, CardHubsListModule, CardKnowledgeModule, CardNetWorkService, CardNetworkHomeModule, CardNetworkModule, CardTableModule, CardWelcomeModule, ChannelHubModule, CompletionSpinnerModule, ContentAssignService, ContentPickerV2Module, ContentProgressModule, ContentProgressService, ContentStripMultipleModule, ContentStripMultipleService, ContentStripSingleModule, ContentStripSingleService, CtrlFileUploadModule, CustomTourService, DialogSocialActivityUserComponent, DialogSocialActivityUserModule, DialogSocialDeletePostComponent, DialogSocialDeletePostModule, DiscussionForumModule, DisplayContentTypeIconModule, DisplayContentTypeModule, DisplayContentsModule, EFeedbackRole, EFeedbackType, EditorQuillComponent, EditorQuillModule, ElementHtmlModule, EmailInputModule, EmbeddedPageModule, ErrorResolverComponent, ErrorResolverModule, FeedbackService, FeedbackSnackbarComponent, GRAPH_TYPES, GalleryViewModule, GraphGeneralModule, GraphGeneralService, GridLayoutModule, GroupCheckboxModule, ImageMapResponsiveModule, IntranetSelectorModule, LanguageSelectorModule, LayoutLinearModule, LayoutTabModule, LeftMenuModule, LeftMenuService, LeftMenuWithoutLogoModule, LocaleTranslatorModule, MarkAsCompleteModule, MyHammerConfig, NsAutoComplete, NsContent, NsContentConstants, NsDiscussionForum, NsGoal, NsPlaylist, PageComponent, PageModule, PickerContentModule, PickerContentService, PipeContentRouteModule, PipeContentRoutePipe, PlayerAmpModule, PlayerAudioModule, PlayerBriefModule, PlayerPdfModule, PlayerSlidesModule, PlayerVideoModule, PlayerWebPagesModule, PlayerYoutubeModule, ProfileImageModule, ROOT_WIDGET_CONFIG, ReleaseNotesModule, ScrollspyLeftMenuModule, SelectorResponsiveModule, SlidersMobModule, SlidersModule, StickyHeaderModule, TourComponent, TourModule, TreeCatalogModule, TreeCatalogService, TreeModule, UIAdminTableModule, UIORGTableModule, UserAutocompleteModule, UserAutocompleteService, UserContentDetailedRatingModule, UserContentRatingModule, UserImageModule, VIEWER_ROUTE_FROM_MIME, WIDGET_REGISTERED_MODULES, WIDGET_REGISTRATION_CONFIG, WidgetContentService, WidgetUserService, WsDiscussionForumService, colorPalettes, responsiveSuffix, sizeSuffix, viewerRouteGenerator, AvatarPhotoComponent as ɵa, BtnAppsComponent as ɵb, BtnTwitterShareComponent as ɵba, BtnFeatureComponent as ɵbb, BtnFeatureService as ɵbc, MobileAppsService as ɵbd, NavigationExternalService as ɵbe, WidgetUrlResolverDirective as ɵbf, BtnFollowComponent as ɵbg, BtnFullscreenComponent as ɵbh, BtnGoalsComponent as ɵbi, BtnGoalsDialogComponent as ɵbj, BtnGoalsSelectionComponent as ɵbk, BtnGoalsErrorComponent as ɵbl, BtnKbComponent as ɵbm, BtnKbDialogComponent as ɵbn, BtnKbConfirmComponent as ɵbo, MarkAsCompleteComponent as ɵbp, ConfirmDialogComponent as ɵbq, MarkAsCompleteService as ɵbr, BtnMailUserComponent as ɵbt, BtnPageBackComponent as ɵbu, BtnPageBackAdminComponent as ɵbv, BtnPageBackNavComponent as ɵbw, BtnPlaylistComponent as ɵbx, BtnPlaylistDialogComponent as ɵby, BtnPlaylistSelectionComponent as ɵbz, BtnCallComponent as ɵc, BtnPreviewComponent as ɵca, BtnPreviewDialogComponent as ɵcb, BtnSettingsComponent as ɵcc, LanguageSelectorComponent as ɵcd, BtnKbAnalyticsComponent as ɵce, CardBreadcrumbComponent as ɵcf, CardChannelV2Component as ɵcg, CardChannelComponent as ɵch, CardContentComponent as ɵci, DisplayContentTypeComponent as ɵcj, ContentProgressComponent as ɵck, ProfileImageComponent as ɵcl, CardKnowledgeComponent as ɵcm, CardWelcomeComponent as ɵcn, ActivityCardComponent as ɵco, ChallengeModule as ɵcp, ChallengeComponent as ɵcq, CardNetworkComponent as ɵcr, CardNetworkHomeComponent as ɵcs, CardHubsListComponent as ɵct, CardHomeTopComponent as ɵcu, StarRatingComponent as ɵcv, CardActivityComponent as ɵcw, CardCompetencyComponent as ɵcx, CardGoalComponent as ɵcy, CardLearningStatusComponent as ɵcz, BtnCallDialogComponent as ɵd, CardActivityComponent$1 as ɵda, CardTableComponent as ɵdb, PipeTableListModule as ɵdc, PipeListPipe as ɵdd, PipeTableMetaModule as ɵde, PipeMetaPipe as ɵdf, PipeRelativePathTableModule as ɵdg, RelativeUrlTablePipe as ɵdh, AuthorCardComponent as ɵdi, UserContentDetailedRatingComponent as ɵdj, CardBrowseCourseComponent as ɵdk, ChannelHubComponent as ɵdl, ContentStripMultipleComponent as ɵdm, ContentStripSingleComponent as ɵdn, CtrlFileUploadComponent as ɵdo, BtnSocialDeleteComponent as ɵdp, BtnSocialLikeComponent as ɵdq, NsDiscussionForum as ɵdr, WsDiscussionForumUserService as ɵds, BtnSocialVoteComponent as ɵdt, DiscussionForumComponent as ɵdu, DiscussionPostComponent as ɵdv, DiscussionReplyComponent as ɵdw, ElementHtmlComponent as ɵdx, EmbeddedPageComponent as ɵdy, ErrorResolverService as ɵdz, BtnCatalogComponent as ɵe, ErrorAccessForbiddenComponent as ɵea, ErrorContentUnavailableComponent as ɵeb, ErrorFeatureDisabledComponent as ɵec, ErrorFeatureUnavailableComponent as ɵed, ErrorInternalServerComponent as ɵee, ErrorNotFoundComponent as ɵef, ErrorServiceUnavailableComponent as ɵeg, ErrorSomethingWrongComponent as ɵeh, GalleryViewComponent as ɵei, GraphGeneralComponent as ɵej, GridLayoutComponent as ɵek, ImageMapResponsiveComponent as ɵel, IntranetSelectorComponent as ɵem, IntranetSelectorService as ɵen, LayoutLinearComponent as ɵeo, LayoutTabComponent as ɵep, PickerContentComponent as ɵeq, SearchServService as ɵer, SearchApiService as ɵes, PlayerAmpComponent as ɵet, DynamicAssetsLoaderService as ɵeu, PlayerAudioComponent as ɵev, PlayerPdfComponent as ɵew, PlayerSlidesComponent as ɵex, PlayerVideoComponent as ɵey, PlayerWebPagesComponent as ɵez, TreeCatalogComponent as ɵf, PlayerYoutubeComponent as ɵfa, BtnProfileModule as ɵfb, BtnProfileComponent as ɵfc, CardLearnModule as ɵfd, CardLearnComponent as ɵfe, CardHomeNetworkModule as ɵff, CardHomeNetworkComponent as ɵfg, CardHomeDiscussModule as ɵfh, CardHomeDiscussComponent as ɵfi, CardDiscussComponent as ɵfj, ContentStripNewMultipleModule as ɵfk, ContentStripNewMultipleComponent as ɵfl, ContentStripNewMultipleService as ɵfm, NetworkStripMultipleModule as ɵfn, NetworkStripMultipleComponent as ɵfo, ContentStripNewMultipleService$1 as ɵfp, ReleaseNotesComponent as ɵfq, SlidersComponent as ɵfr, ProfileAcademicsModule as ɵfs, ProfileAcademicsComponent as ɵft, ProfileCareerModule as ɵfu, ProfileCareerComponent as ɵfv, ProfileCompetenciesModule as ɵfw, ProfileCompetenciesComponent as ɵfx, ProfileCretificationsModule as ɵfy, ProfileCretificationsComponent as ɵfz, TreeCatalogMenuComponent as ɵg, ProfileCretificationsV2Module as ɵga, ProfileCretificationsV2Component as ɵgb, ProfileDepartmentsModule as ɵgc, ProfileDepartmentsComponent as ɵgd, ProfileHobbiesModule as ɵge, ProfileHobbiesComponent as ɵgf, SelectorResponsiveComponent as ɵgg, VideoWrapperModule as ɵgh, VideoWrapperComponent as ɵgi, SlidersMobComponent as ɵgj, CardCourseModule as ɵgk, CardCourseComponent as ɵgl, CardCarrierHomeModule as ɵgm, CardCarrierHomeComponent as ɵgn, CardCarrierComponent as ɵgo, CarrierStripMultipleModule as ɵgp, CarrierStripMultipleComponent as ɵgq, ContentStripNewMultipleService$2 as ɵgr, DiscussStripMultipleModule as ɵgs, DiscussStripMultipleComponent as ɵgt, ContentStripNewMultipleService$3 as ɵgu, UIAdminUserTableComponent as ɵgv, CreateDepartmentService as ɵgw, UIDirectoryTableComponent as ɵgx, UserPopupComponent as ɵgy, UIUserTablePopUpComponent as ɵgz, TreeCatalogRoutePipe as ɵh, UserViewPopUpService as ɵha, AppButtonModule as ɵhb, AppButtonComponent as ɵhc, LeftMenuComponent as ɵhd, OrgUserTableComponent as ɵhe, BreadcrumbsOrgComponent as ɵhf, CompletionSpinnerComponent as ɵhg, DisplayContentTypeIconComponent as ɵhh, DisplayContentsComponent as ɵhi, EmailInputComponent as ɵhj, LocaleTranslatorComponent as ɵhk, PlayerBriefComponent as ɵhl, UserContentRatingComponent as ɵhm, StickyHeaderComponent as ɵhn, ContentPickerV2Component as ɵho, ContentPickerV2Service as ɵhp, SearchInputComponent as ɵhq, FiltersComponent as ɵhr, LeftMenuWithoutLogoComponent as ɵhs, GroupCheckboxComponent as ɵht, ScrollspyLeftMenuComponent as ɵhu, TreeComponent as ɵi, BtnChannelAnalyticsComponent as ɵj, BtnContentDownloadComponent as ɵk, BtnContentFeedbackV2Component as ɵl, BtnContentFeedbackDialogV2Component as ɵm, NsContent as ɵn, BtnContentFeedbackComponent as ɵo, BtnContentFeedbackDialogComponent as ɵp, BtnContentLikeComponent as ɵq, BtnContentMailMeComponent as ɵr, WidgetContentShareService as ɵs, BtnContentMailMeDialogComponent as ɵt, BtnContentShareComponent as ɵu, BtnContentShareDialogComponent as ɵv, UserAutocompleteComponent as ɵw, UserImageComponent as ɵx, BtnLinkedinShareComponent as ɵy, BtnFacebookShareComponent as ɵz };
24928
+ export { ActivityCardModule, AppTourDialogComponent, AppTourDialogModule, AtGlanceComponent, AtGlanceModule, AuthorCardModule, AvatarPhotoModule, BreadcrumbsOrgModule, BreadcrumbsOrgService, BtnAppsModule, BtnCallModule, BtnCatalogModule, BtnChannelAnalyticsModule, BtnContentDownloadModule, BtnContentDownloadService, BtnContentFeedbackModule, BtnContentFeedbackService, BtnContentFeedbackV2Module, BtnContentLikeModule, BtnContentLikeService, BtnContentMailMeModule, BtnContentShareModule, BtnFacebookShareModule, BtnFeatureModule, BtnFollowModule, BtnFollowService, BtnFullscreenModule, BtnGoalsModule, BtnGoalsService, BtnKbAnalyticsModule, BtnKbModule, BtnKbService, BtnLinkedinShareModule, BtnMailUserDialogComponent, BtnMailUserModule, BtnPageBackModule, BtnPageBackModuleAdmin, BtnPageBackNavModule, BtnPageBackNavService, BtnPageBackService, BtnPageBackServiceAdmin, BtnPlaylistModule, BtnPlaylistService, BtnPreviewModule, BtnPreviewService, BtnSettingsModule, BtnSettingsService, BtnSocialDeleteModule, BtnSocialLikeModule, BtnSocialVoteModule, BtnTwitterShareModule, COLOR_PALETTE, CardActivityModule, CardBreadcrumbModule, CardBrowseCourseModule, CardChannelModule, CardChannelModuleV2, CardContentModule, CardHomeTopModule, CardHubsListModule, CardKnowledgeModule, CardNetWorkService, CardNetworkHomeModule, CardNetworkModule, CardTableModule, CardWelcomeModule, ChannelHubModule, CompletionSpinnerModule, ContentAssignService, ContentPickerV2Module, ContentProgressModule, ContentProgressService, ContentStripMultipleModule, ContentStripMultipleService, ContentStripSingleModule, ContentStripSingleService, CtrlFileUploadModule, CustomTourService, DialogSocialActivityUserComponent, DialogSocialActivityUserModule, DialogSocialDeletePostComponent, DialogSocialDeletePostModule, DiscussionForumModule, DisplayContentTypeIconModule, DisplayContentTypeModule, DisplayContentsModule, EFeedbackRole, EFeedbackType, EditorQuillComponent, EditorQuillModule, ElementHtmlModule, EmailInputModule, EmbeddedPageModule, ErrorResolverComponent, ErrorResolverModule, FeedbackService, FeedbackSnackbarComponent, GRAPH_TYPES, GalleryViewModule, GraphGeneralModule, GraphGeneralService, GridLayoutModule, GroupCheckboxModule, ImageMapResponsiveModule, IntranetSelectorModule, LanguageSelectorModule, LayoutLinearModule, LayoutTabModule, LeftMenuModule, LeftMenuService, LeftMenuWithoutLogoModule, LocaleTranslatorModule, MarkAsCompleteModule, MyHammerConfig, NsAutoComplete, NsContent, NsContentConstants, NsDiscussionForum, NsGoal, NsPlaylist, PageComponent, PageModule, PickerContentModule, PickerContentService, PipeContentRouteModule, PipeContentRoutePipe, PlayerAmpModule, PlayerAudioModule, PlayerBriefModule, PlayerPdfModule, PlayerSlidesModule, PlayerVideoModule, PlayerWebPagesModule, PlayerYoutubeModule, ProfileImageModule, ROOT_WIDGET_CONFIG, ReleaseNotesModule, ScrollspyLeftMenuModule, SelectorResponsiveModule, SlidersMobModule, SlidersModule, StickyHeaderModule, TourComponent, TourModule, TreeCatalogModule, TreeCatalogService, TreeModule, UIAdminTableModule, UIORGTableModule, UserAutocompleteModule, UserAutocompleteService, UserContentDetailedRatingModule, UserContentRatingModule, UserImageModule, VIEWER_ROUTE_FROM_MIME, WIDGET_REGISTERED_MODULES, WIDGET_REGISTRATION_CONFIG, WidgetContentService, WidgetUserService, WsDiscussionForumService, colorPalettes, responsiveSuffix, sizeSuffix, viewerRouteGenerator, AvatarPhotoComponent as ɵa, BtnAppsComponent as ɵb, BtnTwitterShareComponent as ɵba, BtnFeatureComponent as ɵbb, BtnFeatureService as ɵbc, MobileAppsService as ɵbd, NavigationExternalService as ɵbe, WidgetUrlResolverDirective as ɵbf, BtnFollowComponent as ɵbg, BtnFullscreenComponent as ɵbh, BtnGoalsComponent as ɵbi, BtnGoalsDialogComponent as ɵbj, BtnGoalsSelectionComponent as ɵbk, BtnGoalsErrorComponent as ɵbl, BtnKbComponent as ɵbm, BtnKbDialogComponent as ɵbn, BtnKbConfirmComponent as ɵbo, MarkAsCompleteComponent as ɵbp, ConfirmDialogComponent as ɵbq, MarkAsCompleteService as ɵbr, BtnMailUserComponent as ɵbt, BtnPageBackComponent as ɵbu, BtnPageBackAdminComponent as ɵbv, BtnPageBackNavComponent as ɵbw, BtnPlaylistComponent as ɵbx, BtnPlaylistDialogComponent as ɵby, BtnPlaylistSelectionComponent as ɵbz, BtnCallComponent as ɵc, BtnPreviewComponent as ɵca, BtnPreviewDialogComponent as ɵcb, BtnSettingsComponent as ɵcc, LanguageSelectorComponent as ɵcd, BtnKbAnalyticsComponent as ɵce, CardBreadcrumbComponent as ɵcf, CardChannelV2Component as ɵcg, CardChannelComponent as ɵch, CardContentComponent as ɵci, DisplayContentTypeComponent as ɵcj, ContentProgressComponent as ɵck, ProfileImageComponent as ɵcl, CardKnowledgeComponent as ɵcm, CardWelcomeComponent as ɵcn, ActivityCardComponent as ɵco, ChallengeModule as ɵcp, ChallengeComponent as ɵcq, CardNetworkComponent as ɵcr, CardNetworkHomeComponent as ɵcs, CardHubsListComponent as ɵct, CardHomeTopComponent as ɵcu, StarRatingComponent as ɵcv, CardActivityComponent as ɵcw, CardCompetencyComponent as ɵcx, CardGoalComponent as ɵcy, CardLearningStatusComponent as ɵcz, BtnCallDialogComponent as ɵd, CardActivityComponent$1 as ɵda, CardTableComponent as ɵdb, PipeTableListModule as ɵdc, PipeListPipe as ɵdd, PipeTableMetaModule as ɵde, PipeMetaPipe as ɵdf, PipeRelativePathTableModule as ɵdg, RelativeUrlTablePipe as ɵdh, AuthorCardComponent as ɵdi, UserContentDetailedRatingComponent as ɵdj, CardBrowseCourseComponent as ɵdk, ChannelHubComponent as ɵdl, ContentStripMultipleComponent as ɵdm, ContentStripSingleComponent as ɵdn, CtrlFileUploadComponent as ɵdo, BtnSocialDeleteComponent as ɵdp, BtnSocialLikeComponent as ɵdq, NsDiscussionForum as ɵdr, WsDiscussionForumUserService as ɵds, BtnSocialVoteComponent as ɵdt, DiscussionForumComponent as ɵdu, DiscussionPostComponent as ɵdv, DiscussionReplyComponent as ɵdw, ElementHtmlComponent as ɵdx, EmbeddedPageComponent as ɵdy, ErrorResolverService as ɵdz, BtnCatalogComponent as ɵe, ErrorAccessForbiddenComponent as ɵea, ErrorContentUnavailableComponent as ɵeb, ErrorFeatureDisabledComponent as ɵec, ErrorFeatureUnavailableComponent as ɵed, ErrorInternalServerComponent as ɵee, ErrorNotFoundComponent as ɵef, ErrorServiceUnavailableComponent as ɵeg, ErrorSomethingWrongComponent as ɵeh, GalleryViewComponent as ɵei, GraphGeneralComponent as ɵej, GridLayoutComponent as ɵek, ImageMapResponsiveComponent as ɵel, IntranetSelectorComponent as ɵem, IntranetSelectorService as ɵen, LayoutLinearComponent as ɵeo, LayoutTabComponent as ɵep, PickerContentComponent as ɵeq, SearchServService as ɵer, SearchApiService as ɵes, PlayerAmpComponent as ɵet, DynamicAssetsLoaderService as ɵeu, PlayerAudioComponent as ɵev, PlayerPdfComponent as ɵew, PlayerSlidesComponent as ɵex, PlayerVideoComponent as ɵey, PlayerWebPagesComponent as ɵez, TreeCatalogComponent as ɵf, PlayerYoutubeComponent as ɵfa, BtnProfileModule as ɵfb, BtnProfileComponent as ɵfc, CardLearnModule as ɵfd, CardLearnComponent as ɵfe, CardHomeNetworkModule as ɵff, CardHomeNetworkComponent as ɵfg, CardHomeDiscussModule as ɵfh, CardHomeDiscussComponent as ɵfi, CardDiscussComponent as ɵfj, ContentStripNewMultipleModule as ɵfk, ContentStripNewMultipleComponent as ɵfl, ContentStripNewMultipleService as ɵfm, NetworkStripMultipleModule as ɵfn, NetworkStripMultipleComponent as ɵfo, ContentStripNewMultipleService$1 as ɵfp, ReleaseNotesComponent as ɵfq, SlidersComponent as ɵfr, ProfileAcademicsModule as ɵfs, ProfileAcademicsComponent as ɵft, ProfileCareerModule as ɵfu, ProfileCareerComponent as ɵfv, ProfileCompetenciesModule as ɵfw, ProfileCompetenciesComponent as ɵfx, ProfileCretificationsModule as ɵfy, ProfileCretificationsComponent as ɵfz, TreeCatalogMenuComponent as ɵg, ProfileCretificationsV2Module as ɵga, ProfileCretificationsV2Component as ɵgb, ProfileDepartmentsModule as ɵgc, ProfileDepartmentsComponent as ɵgd, ProfileHobbiesModule as ɵge, ProfileHobbiesComponent as ɵgf, SelectorResponsiveComponent as ɵgg, VideoWrapperModule as ɵgh, VideoWrapperComponent as ɵgi, SlidersMobComponent as ɵgj, CardCourseModule as ɵgk, CardCourseComponent as ɵgl, CardCarrierHomeModule as ɵgm, CardCarrierHomeComponent as ɵgn, CardCarrierComponent as ɵgo, CarrierStripMultipleModule as ɵgp, CarrierStripMultipleComponent as ɵgq, ContentStripNewMultipleService$2 as ɵgr, DiscussStripMultipleModule as ɵgs, DiscussStripMultipleComponent as ɵgt, ContentStripNewMultipleService$3 as ɵgu, UIAdminUserTableComponent as ɵgv, CreateDepartmentService as ɵgw, UIDirectoryTableComponent as ɵgx, UserPopupComponent as ɵgy, UIUserTablePopUpComponent as ɵgz, TreeCatalogRoutePipe as ɵh, UserViewPopUpService as ɵha, AppButtonModule as ɵhb, AppButtonComponent as ɵhc, LeftMenuComponent as ɵhd, OrgUserTableComponent as ɵhe, OrgUserTableV2Component as ɵhf, BreadcrumbsOrgComponent as ɵhg, CompletionSpinnerComponent as ɵhh, DisplayContentTypeIconComponent as ɵhi, DisplayContentsComponent as ɵhj, EmailInputComponent as ɵhk, LocaleTranslatorComponent as ɵhl, PlayerBriefComponent as ɵhm, UserContentRatingComponent as ɵhn, StickyHeaderComponent as ɵho, ContentPickerV2Component as ɵhp, ContentPickerV2Service as ɵhq, SearchInputComponent as ɵhr, FiltersComponent as ɵhs, LeftMenuWithoutLogoComponent as ɵht, GroupCheckboxComponent as ɵhu, ScrollspyLeftMenuComponent as ɵhv, TreeComponent as ɵi, BtnChannelAnalyticsComponent as ɵj, BtnContentDownloadComponent as ɵk, BtnContentFeedbackV2Component as ɵl, BtnContentFeedbackDialogV2Component as ɵm, NsContent as ɵn, BtnContentFeedbackComponent as ɵo, BtnContentFeedbackDialogComponent as ɵp, BtnContentLikeComponent as ɵq, BtnContentMailMeComponent as ɵr, WidgetContentShareService as ɵs, BtnContentMailMeDialogComponent as ɵt, BtnContentShareComponent as ɵu, BtnContentShareDialogComponent as ɵv, UserAutocompleteComponent as ɵw, UserImageComponent as ɵx, BtnLinkedinShareComponent as ɵy, BtnFacebookShareComponent as ɵz };
24732
24929
  //# sourceMappingURL=sunbird-cb-collection.js.map