@smartbit4all/ng-client 4.2.106 → 4.2.108
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/components/generic-component/expanded-row-renderer.component.mjs +12 -4
- package/esm2022/lib/smart-grid/smart-grid.component.mjs +10 -3
- package/esm2022/lib/view-context/smart-ui-action/ui-action-button/ui-action-button.component.mjs +47 -14
- package/fesm2022/smartbit4all-ng-client.mjs +65 -17
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-grid/components/generic-component/expanded-row-renderer.component.d.ts +4 -1
- package/lib/smart-grid/smart-grid.component.d.ts +1 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.2.108.tgz +0 -0
- package/smartbit4all-ng-client-4.2.106.tgz +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComponentFactoryService } from '../../../component-factory-service/component-factory-service.service';
|
|
3
3
|
import { SmartTableRowExpander } from '../../../smart-table/projects';
|
|
4
|
+
import { SmartGrid } from '../../models/model';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ExpandedRowRendererComponent implements AfterViewInit {
|
|
6
7
|
private cfService;
|
|
@@ -8,8 +9,10 @@ export declare class ExpandedRowRendererComponent implements AfterViewInit {
|
|
|
8
9
|
rowId: number;
|
|
9
10
|
rowExpander: SmartTableRowExpander<any>;
|
|
10
11
|
expandedComponent: any;
|
|
12
|
+
smartGrid: SmartGrid;
|
|
11
13
|
constructor(cfService: ComponentFactoryService);
|
|
14
|
+
ngOnDestroy(): void;
|
|
12
15
|
ngAfterViewInit(): Promise<void>;
|
|
13
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandedRowRendererComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedRowRendererComponent, "lib-expanded-row-renderer-component", never, { "rowId": { "alias": "rowId"; "required": false; }; "rowExpander": { "alias": "rowExpander"; "required": false; }; "expandedComponent": { "alias": "expandedComponent"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedRowRendererComponent, "lib-expanded-row-renderer-component", never, { "rowId": { "alias": "rowId"; "required": false; }; "rowExpander": { "alias": "rowExpander"; "required": false; }; "expandedComponent": { "alias": "expandedComponent"; "required": false; }; "smartGrid": { "alias": "smartGrid"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
18
|
}
|
|
@@ -136,6 +136,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
136
136
|
shouldShowOptionsButton(row: any): boolean;
|
|
137
137
|
calculateMenuActions(row: GridRow): UiAction[];
|
|
138
138
|
createCellToActionMap(): void;
|
|
139
|
+
rowTrackByFn(index: number, row: any): any;
|
|
139
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartGridComponent, never>;
|
|
140
141
|
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>;
|
|
141
142
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|