@pongrass/utils 1.1.2-v20 → 1.1.4-v20
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/fesm2022/pongrass-utils.mjs +16 -4
- package/fesm2022/pongrass-utils.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -628,6 +628,7 @@ declare class TableGridComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
628
628
|
initialPageNumber: number;
|
|
629
629
|
tableGridReady: EventEmitter<GridReadyEvent>;
|
|
630
630
|
tableRowSelection: EventEmitter<any>;
|
|
631
|
+
tableRowSelectionChanged: EventEmitter<any>;
|
|
631
632
|
tableRowClicked: EventEmitter<{
|
|
632
633
|
event: any;
|
|
633
634
|
row: any;
|
|
@@ -666,6 +667,8 @@ declare class TableGridComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
666
667
|
onRowSelected(event: any): void;
|
|
667
668
|
/** Send event to parent component when a row is clicked */
|
|
668
669
|
onRowClicked(event: any): void;
|
|
670
|
+
/** Send on checkbox selection event event to parent component when row selection is changed */
|
|
671
|
+
onRowSelectionChanged(event: any): void;
|
|
669
672
|
/** Create column state on initialization of table grid */
|
|
670
673
|
private createColumnState;
|
|
671
674
|
/** Set visibility of columns and send the event and column form to parent component along with last checkbox event data */
|
|
@@ -697,7 +700,7 @@ declare class TableGridComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
697
700
|
onCellValueChanged(event: CellValueChangedEvent): void;
|
|
698
701
|
ngOnDestroy(): void;
|
|
699
702
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableGridComponent, never>;
|
|
700
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableGridComponent, "prg-ws-table-grid", never, { "tableConfiguration": { "alias": "tableConfiguration"; "required": false; }; "columnToolVisible": { "alias": "columnToolVisible"; "required": false; }; "initialPageNumber": { "alias": "initialPageNumber"; "required": false; }; }, { "tableGridReady": "tableGridReady"; "tableRowSelection": "tableRowSelection"; "tableRowClicked": "tableRowClicked"; "columnStateEvent": "columnStateEvent"; "pageChange": "pageChange"; "filterChanged": "filterChanged"; "cellValueChanged": "cellValueChanged"; }, never, never, false, never>;
|
|
703
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableGridComponent, "prg-ws-table-grid", never, { "tableConfiguration": { "alias": "tableConfiguration"; "required": false; }; "columnToolVisible": { "alias": "columnToolVisible"; "required": false; }; "initialPageNumber": { "alias": "initialPageNumber"; "required": false; }; }, { "tableGridReady": "tableGridReady"; "tableRowSelection": "tableRowSelection"; "tableRowSelectionChanged": "tableRowSelectionChanged"; "tableRowClicked": "tableRowClicked"; "columnStateEvent": "columnStateEvent"; "pageChange": "pageChange"; "filterChanged": "filterChanged"; "cellValueChanged": "cellValueChanged"; }, never, never, false, never>;
|
|
701
704
|
}
|
|
702
705
|
|
|
703
706
|
declare class TableGridModule {
|