@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.
- package/bundles/sunbird-cb-collection.umd.js +216 -18
- package/bundles/sunbird-cb-collection.umd.js.map +1 -1
- package/bundles/sunbird-cb-collection.umd.min.js +2 -2
- package/bundles/sunbird-cb-collection.umd.min.js.map +1 -1
- package/esm2015/lib/ui-admin-table/interface/interfaces.js +1 -2
- package/esm2015/lib/ui-org-table/org-user-table-v2/org-user-table-v2.component.js +193 -0
- package/esm2015/lib/ui-org-table/ui-org-table.module.js +4 -3
- package/esm2015/sunbird-cb-collection.js +18 -17
- package/esm5/lib/ui-admin-table/interface/interfaces.js +1 -2
- package/esm5/lib/ui-org-table/org-user-table-v2/org-user-table-v2.component.js +204 -0
- package/esm5/lib/ui-org-table/ui-org-table.module.js +4 -3
- package/esm5/sunbird-cb-collection.js +18 -17
- package/fesm2015/sunbird-cb-collection.js +191 -4
- package/fesm2015/sunbird-cb-collection.js.map +1 -1
- package/fesm5/sunbird-cb-collection.js +201 -4
- package/fesm5/sunbird-cb-collection.js.map +1 -1
- package/lib/ui-admin-table/interface/interfaces.d.ts +0 -1
- package/lib/ui-org-table/org-user-table-v2/org-user-table-v2.component.d.ts +54 -0
- package/package.json +1 -1
- package/sunbird-cb-collection.d.ts +17 -16
- package/sunbird-cb-collection.metadata.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { OnInit, EventEmitter, AfterViewInit, OnChanges, SimpleChanges, AfterViewChecked, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
3
|
+
import { MatPaginator, PageEvent } from '@angular/material';
|
|
4
|
+
import { MatSort } from '@angular/material/sort';
|
|
5
|
+
import { ITableData, IColums } from '../interface/interfaces';
|
|
6
|
+
export declare class OrgUserTableV2Component implements OnInit, AfterViewInit, OnChanges, AfterViewChecked {
|
|
7
|
+
private changeDetector;
|
|
8
|
+
tableData: ITableData | undefined;
|
|
9
|
+
data?: [];
|
|
10
|
+
isUpload?: boolean;
|
|
11
|
+
isCreate?: boolean;
|
|
12
|
+
isDownload?: boolean;
|
|
13
|
+
isConsumptionReport?: boolean;
|
|
14
|
+
userId?: any;
|
|
15
|
+
clicked?: EventEmitter<any>;
|
|
16
|
+
actionsClick?: EventEmitter<any>;
|
|
17
|
+
eOnRowClick: EventEmitter<any>;
|
|
18
|
+
eOnButtonClick: EventEmitter<any>;
|
|
19
|
+
searchByEnterKey: EventEmitter<any>;
|
|
20
|
+
pageChangeClick: EventEmitter<any>;
|
|
21
|
+
showEditOnCondition?: boolean;
|
|
22
|
+
isSearchBar: boolean;
|
|
23
|
+
paginationv1?: boolean | true;
|
|
24
|
+
paginationv2?: boolean | false;
|
|
25
|
+
bodyHeight: number;
|
|
26
|
+
displayedColumns: IColums[] | undefined;
|
|
27
|
+
dataSource: any;
|
|
28
|
+
widgetData: any;
|
|
29
|
+
pageLength?: number;
|
|
30
|
+
pageSize: number;
|
|
31
|
+
pageSizeOptions: number[];
|
|
32
|
+
totalRecords?: any;
|
|
33
|
+
tabChangeIndex?: any;
|
|
34
|
+
paginator: MatPaginator;
|
|
35
|
+
matPaginator: MatPaginator;
|
|
36
|
+
matSort: MatSort;
|
|
37
|
+
selection: SelectionModel<any>;
|
|
38
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
39
|
+
ngOnInit(): void;
|
|
40
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
41
|
+
ngAfterViewInit(): void;
|
|
42
|
+
ngAfterViewChecked(): void;
|
|
43
|
+
applyFilter(filterValue: any): void;
|
|
44
|
+
buttonClick(action: string, row: any): void;
|
|
45
|
+
getFinalColumns(): "" | String[];
|
|
46
|
+
isAllSelected(): boolean;
|
|
47
|
+
filterList(list: any[], key: string): any[];
|
|
48
|
+
masterToggle(): void;
|
|
49
|
+
checkboxLabel(row?: any): string;
|
|
50
|
+
onRowClick(e: any): void;
|
|
51
|
+
onButtonClick(type: string, event: any): void;
|
|
52
|
+
onSearchEnter(event: any): void;
|
|
53
|
+
onPageChange(event: PageEvent): void;
|
|
54
|
+
}
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
export * from './public-api';
|
|
2
2
|
export { AvatarPhotoComponent as ɵa } from './lib/_common/avatar-photo/avatar-photo.component';
|
|
3
|
-
export { CompletionSpinnerComponent as
|
|
4
|
-
export { FiltersComponent as
|
|
5
|
-
export { SearchInputComponent as
|
|
6
|
-
export { ContentPickerV2Component as
|
|
7
|
-
export { ContentPickerV2Service as
|
|
3
|
+
export { CompletionSpinnerComponent as ɵhh } from './lib/_common/completion-spinner/completion-spinner.component';
|
|
4
|
+
export { FiltersComponent as ɵhs } from './lib/_common/content-picker-v2/components/filters/filters.component';
|
|
5
|
+
export { SearchInputComponent as ɵhr } from './lib/_common/content-picker-v2/components/search-input/search-input.component';
|
|
6
|
+
export { ContentPickerV2Component as ɵhp } from './lib/_common/content-picker-v2/content-picker-v2.component';
|
|
7
|
+
export { ContentPickerV2Service as ɵhq } from './lib/_common/content-picker-v2/content-picker-v2.service';
|
|
8
8
|
export { ContentProgressComponent as ɵck } from './lib/_common/content-progress/content-progress.component';
|
|
9
|
-
export { DisplayContentTypeIconComponent as
|
|
9
|
+
export { DisplayContentTypeIconComponent as ɵhi } from './lib/_common/display-content-type-icon/display-content-type-icon.component';
|
|
10
10
|
export { DisplayContentTypeComponent as ɵcj } from './lib/_common/display-content-type/display-content-type.component';
|
|
11
|
-
export { DisplayContentsComponent as
|
|
12
|
-
export { EmailInputComponent as
|
|
11
|
+
export { DisplayContentsComponent as ɵhj } from './lib/_common/display-contents/display-contents.component';
|
|
12
|
+
export { EmailInputComponent as ɵhk } from './lib/_common/email-input/email-input.component';
|
|
13
13
|
export { LanguageSelectorComponent as ɵcd } from './lib/_common/language-selector/language-selector.component';
|
|
14
|
-
export { LocaleTranslatorComponent as
|
|
14
|
+
export { LocaleTranslatorComponent as ɵhl } from './lib/_common/locale-translator/locale-translator.component';
|
|
15
15
|
export { ConfirmDialogComponent as ɵbq } from './lib/_common/mark-as-complete/confirm-dialog/confirm-dialog.component';
|
|
16
16
|
export { MarkAsCompleteComponent as ɵbp } from './lib/_common/mark-as-complete/mark-as-complete.component';
|
|
17
17
|
export { MarkAsCompleteService as ɵbr } from './lib/_common/mark-as-complete/mark-as-complete.service';
|
|
18
|
-
export { PlayerBriefComponent as
|
|
18
|
+
export { PlayerBriefComponent as ɵhm } from './lib/_common/player-brief/player-brief.component';
|
|
19
19
|
export { ProfileImageComponent as ɵcl } from './lib/_common/profile-image/profile-image/profile-image.component';
|
|
20
|
-
export { StickyHeaderComponent as
|
|
20
|
+
export { StickyHeaderComponent as ɵho } from './lib/_common/sticky-header/sticky-header.component';
|
|
21
21
|
export { UserAutocompleteComponent as ɵw } from './lib/_common/user-autocomplete/user-autocomplete.component';
|
|
22
|
-
export { UserContentRatingComponent as
|
|
22
|
+
export { UserContentRatingComponent as ɵhn } from './lib/_common/user-content-rating/user-content-rating.component';
|
|
23
23
|
export { UserImageComponent as ɵx } from './lib/_common/user-image/user-image.component';
|
|
24
24
|
export { DynamicAssetsLoaderService as ɵeu } from './lib/_services/dynamic-assets-loader.service';
|
|
25
25
|
export { SearchApiService as ɵes } from './lib/_services/search-api.service';
|
|
@@ -30,7 +30,7 @@ export { ActivityCardComponent as ɵco } from './lib/activity-card/activity-card
|
|
|
30
30
|
export { AppButtonComponent as ɵhc } from './lib/app-button/app-button.component';
|
|
31
31
|
export { AppButtonModule as ɵhb } from './lib/app-button/app-button.module';
|
|
32
32
|
export { AuthorCardComponent as ɵdi } from './lib/author-card/author-card.component';
|
|
33
|
-
export { BreadcrumbsOrgComponent as
|
|
33
|
+
export { BreadcrumbsOrgComponent as ɵhg } from './lib/breadcrumbs-org/breadcrumbs-org.component';
|
|
34
34
|
export { BtnAppsComponent as ɵb } from './lib/btn-apps/btn-apps.component';
|
|
35
35
|
export { BtnCallDialogComponent as ɵd } from './lib/btn-call/btn-call-dialog/btn-call-dialog.component';
|
|
36
36
|
export { BtnCallComponent as ɵc } from './lib/btn-call/btn-call.component';
|
|
@@ -149,13 +149,13 @@ export { ErrorResolverService as ɵdz } from './lib/error-resolver/error-resolve
|
|
|
149
149
|
export { GalleryViewComponent as ɵei } from './lib/gallery-view/gallery-view.component';
|
|
150
150
|
export { GraphGeneralComponent as ɵej } from './lib/graph-general/graph-general.component';
|
|
151
151
|
export { GridLayoutComponent as ɵek } from './lib/grid-layout/grid-layout.component';
|
|
152
|
-
export { GroupCheckboxComponent as
|
|
152
|
+
export { GroupCheckboxComponent as ɵhu } from './lib/group-checkbox/group-checkbox.component';
|
|
153
153
|
export { ImageMapResponsiveComponent as ɵel } from './lib/image-map-responsive/image-map-responsive.component';
|
|
154
154
|
export { IntranetSelectorComponent as ɵem } from './lib/intranet-selector/intranet-selector.component';
|
|
155
155
|
export { IntranetSelectorService as ɵen } from './lib/intranet-selector/intranet-selector.service';
|
|
156
156
|
export { LayoutLinearComponent as ɵeo } from './lib/layout-linear/layout-linear.component';
|
|
157
157
|
export { LayoutTabComponent as ɵep } from './lib/layout-tab/layout-tab.component';
|
|
158
|
-
export { LeftMenuWithoutLogoComponent as
|
|
158
|
+
export { LeftMenuWithoutLogoComponent as ɵht } from './lib/left-menu-without-logo/left-menu-without-logo.component';
|
|
159
159
|
export { LeftMenuComponent as ɵhd } from './lib/left-menu/left-menu.component';
|
|
160
160
|
export { NetworkStripMultipleComponent as ɵfo } from './lib/network-strip-multiple/network-strip-multiple.component';
|
|
161
161
|
export { NetworkStripMultipleModule as ɵfn } from './lib/network-strip-multiple/network-strip-multiple.module';
|
|
@@ -183,7 +183,7 @@ export { ProfileDepartmentsModule as ɵgc } from './lib/profile-v2/profile-depar
|
|
|
183
183
|
export { ProfileHobbiesComponent as ɵgf } from './lib/profile-v2/profile-hobbies/profile-hobbies.component';
|
|
184
184
|
export { ProfileHobbiesModule as ɵge } from './lib/profile-v2/profile-hobbies/profile-hobbies.module';
|
|
185
185
|
export { ReleaseNotesComponent as ɵfq } from './lib/release-notes/release-notes.component';
|
|
186
|
-
export { ScrollspyLeftMenuComponent as
|
|
186
|
+
export { ScrollspyLeftMenuComponent as ɵhv } from './lib/scrollspy-left-menu/scrollspy-left-menu.component';
|
|
187
187
|
export { SelectorResponsiveComponent as ɵgg } from './lib/selector-responsive/selector-responsive.component';
|
|
188
188
|
export { SlidersMobComponent as ɵgj } from './lib/sliders-mob/sliders-mob.component';
|
|
189
189
|
export { SlidersComponent as ɵfr } from './lib/sliders/sliders.component';
|
|
@@ -197,6 +197,7 @@ export { UIUserTablePopUpComponent as ɵgz } from './lib/ui-admin-table/user-lis
|
|
|
197
197
|
export { UserViewPopUpService as ɵha } from './lib/ui-admin-table/user-list-popup/ui-user-table-pop-up.services';
|
|
198
198
|
export { UIAdminUserTableComponent as ɵgv } from './lib/ui-admin-table/user-list/ui-admin-user-table.component';
|
|
199
199
|
export { UserPopupComponent as ɵgy } from './lib/ui-admin-table/user-popup/user-popup';
|
|
200
|
+
export { OrgUserTableV2Component as ɵhf } from './lib/ui-org-table/org-user-table-v2/org-user-table-v2.component';
|
|
200
201
|
export { OrgUserTableComponent as ɵhe } from './lib/ui-org-table/user-list/org-user-table.component';
|
|
201
202
|
export { UserContentDetailedRatingComponent as ɵdj } from './lib/user-content-detailed-rating/user-content-detailed-rating.component';
|
|
202
203
|
export { VideoWrapperComponent as ɵgi } from './lib/video-wrapper/video-wrapper.component';
|