@progress-chef/platform-shared-components 0.0.129 → 0.0.130
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/esm2022/lib/molecules/grid-pagination/grid-pagination.component.mjs +21 -17
- package/fesm2022/progress-chef-platform-shared-components.mjs +12 -8
- package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -1
- package/lib/molecules/grid-pagination/grid-pagination.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ import { SortDescriptor } from '@progress/kendo-data-query';
|
|
|
4
4
|
import { LoaderSize, LoaderThemeColor, LoaderType } from '../../atoms/loader/loader.component';
|
|
5
5
|
import { CellClickEvent, CellCloseEvent, GridComponent, GridDataResult, PageChangeEvent, RowClassArgs, SelectAllCheckboxState, SelectableMode, SelectableSettings } from '@progress/kendo-angular-grid';
|
|
6
6
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
7
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class CustomColumnTemplate {
|
|
9
10
|
template: TemplateRef<Component>;
|
|
@@ -14,6 +15,7 @@ export declare class CustomColumnTemplate {
|
|
|
14
15
|
}
|
|
15
16
|
export declare class GridPaginationComponent implements OnInit, AfterContentInit, AfterViewInit {
|
|
16
17
|
private cdRef;
|
|
18
|
+
private sanitizer;
|
|
17
19
|
private renderer;
|
|
18
20
|
columnTemplates: QueryList<CustomColumnTemplate> | [];
|
|
19
21
|
templateRef: TemplateRef<any> | null;
|
|
@@ -112,7 +114,9 @@ export declare class GridPaginationComponent implements OnInit, AfterContentInit
|
|
|
112
114
|
isDeleteColumnSticky: boolean;
|
|
113
115
|
emitRefreshEvt: EventEmitter<any>;
|
|
114
116
|
isSelectAllCheckboxRequired: boolean;
|
|
115
|
-
|
|
117
|
+
kebabAIIcon: string;
|
|
118
|
+
kebabIconSafeUrl: import("@angular/platform-browser").SafeResourceUrl;
|
|
119
|
+
constructor(cdRef: ChangeDetectorRef, sanitizer: DomSanitizer, renderer: Renderer2);
|
|
116
120
|
columnTemplateDict: any;
|
|
117
121
|
ngOnInit(): void;
|
|
118
122
|
scrollBottom(): void;
|