ngx-st-tables 17.0.122 → 17.0.123

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.
@@ -65,7 +65,10 @@ export declare class MaterialTableComponent extends StSubscribeDestroyComponent
65
65
  initSelectedRow: import("@angular/core").InputSignal<any>;
66
66
  extraCustomFilter: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
67
67
  loadData: import("@angular/core").OutputEmitterRef<StMaterialTableLoadData>;
68
- saveEditedRow: import("@angular/core").OutputEmitterRef<any>;
68
+ saveEditedRow: import("@angular/core").OutputEmitterRef<{
69
+ row: any;
70
+ index: number;
71
+ }>;
69
72
  saveCreatedRow: import("@angular/core").OutputEmitterRef<any>;
70
73
  rowDeleted: import("@angular/core").OutputEmitterRef<{
71
74
  row: any;
@@ -135,7 +138,7 @@ export declare class MaterialTableComponent extends StSubscribeDestroyComponent
135
138
  *
136
139
  * The library updates its local copy optimistically.
137
140
  */
138
- saveEditRow(row: any, column: ViewStMaterialTableColumnModel): void;
141
+ saveEditRow(row: any, column: ViewStMaterialTableColumnModel, index: number): void;
139
142
  cancelEditRow(row: any, column: ViewStMaterialTableColumnModel): void;
140
143
  /**
141
144
  * Handles immediate field value changes for auto-save mode.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-st-tables",
3
- "version": "17.0.122",
3
+ "version": "17.0.123",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.12",
6
6
  "@angular/core": "^17.3.12",