@smartbit4all/ng-client 4.0.27 → 4.0.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/esm2022/lib/smart-grid/smart-grid.component.mjs +49 -4
- package/fesm2022/smartbit4all-ng-client.mjs +1772 -1728
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-grid/smart-grid.component.d.ts +7 -3
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.0.29.tgz +0 -0
- package/smartbit4all-ng-client-4.0.27.tgz +0 -0
|
@@ -10,11 +10,12 @@ import { ExpandableSection } from '../smart-expandable-section/projects';
|
|
|
10
10
|
import { SmartTable, SmarttableComponent } from '../smart-table/projects';
|
|
11
11
|
import { UiActionDescriptor } from '../view-context/api';
|
|
12
12
|
import { ComponentLibrary, UiActionDescriptorService, UiActionToolbarComponent } from '../view-context/projects';
|
|
13
|
-
import { GridRow } from './api/grid-api';
|
|
13
|
+
import { GridColumnMeta, GridRow } from './api/grid-api';
|
|
14
14
|
import { SmartGrid, SmartLayoutDef } from './models/model';
|
|
15
15
|
import { SmartGridService } from './smart-grid.service';
|
|
16
|
-
import { MenuItem } from 'primeng/api';
|
|
16
|
+
import { MenuItem, SortEvent, SortMeta } from 'primeng/api';
|
|
17
17
|
import { Menu } from 'primeng/menu';
|
|
18
|
+
import { TableLazyLoadEvent } from 'primeng/table';
|
|
18
19
|
import * as i0 from "@angular/core";
|
|
19
20
|
export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnChanges {
|
|
20
21
|
private service;
|
|
@@ -103,10 +104,13 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
103
104
|
private onSelectAll;
|
|
104
105
|
private onSelectRows;
|
|
105
106
|
editColumns(): void;
|
|
106
|
-
columns:
|
|
107
|
+
columns: GridColumnMeta[];
|
|
107
108
|
menuButtons: MenuItem[];
|
|
108
109
|
menu: Menu;
|
|
109
110
|
onOptionsClick(event: Event, row: GridRow): void;
|
|
111
|
+
previousmultiSortMeta?: SortMeta[];
|
|
112
|
+
gridSort(event: SortEvent): void;
|
|
113
|
+
lazyLoad(event?: TableLazyLoadEvent): void;
|
|
110
114
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartGridComponent, never>;
|
|
111
115
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartGridComponent, "smart-grid", never, { "smartGrid": { "alias": "smartGrid"; "required": false; }; "uuid": { "alias": "uuid"; "required": false; }; "dev": { "alias": "dev"; "required": false; }; }, {}, never, never, false, never>;
|
|
112
116
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|