ngx-st-tables 17.0.116 → 17.0.117
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.
|
@@ -77,6 +77,7 @@ export declare class MaterialTableComponent extends StSubscribeDestroyComponent
|
|
|
77
77
|
row: any;
|
|
78
78
|
field: string;
|
|
79
79
|
value: any;
|
|
80
|
+
index: number;
|
|
80
81
|
}>;
|
|
81
82
|
private _data;
|
|
82
83
|
initLocalColumns: import("@angular/core").WritableSignal<StMaterialTableColumnModel[]>;
|
|
@@ -138,7 +139,7 @@ export declare class MaterialTableComponent extends StSubscribeDestroyComponent
|
|
|
138
139
|
* In auto-save mode, ngModel is bound directly to rowData, so we don't need to update it.
|
|
139
140
|
* We only emit to parent so they can update their data copy.
|
|
140
141
|
*/
|
|
141
|
-
onFieldValueChanged(row: any, column: ViewStMaterialTableColumnModel, value: any): void;
|
|
142
|
+
onFieldValueChanged(row: any, column: ViewStMaterialTableColumnModel, value: any, index: number): void;
|
|
142
143
|
isAllSelected(): boolean;
|
|
143
144
|
toggleAllRows(): void;
|
|
144
145
|
removeSelectedRow(row: any): void;
|