@wavemaker/app-ng-runtime 11.8.3-rc.5744 → 11.8.4-next.27396
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.
- app-ng-runtime/components/data/table/bundles/index.umd.js +2 -2
- app-ng-runtime/components/data/table/esm2022/table.component.mjs +3 -3
- app-ng-runtime/components/data/table/fesm2022/index.mjs +2 -2
- app-ng-runtime/components/data/table/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/data/table/table.component.d.ts +1 -1
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +1 -1
|
@@ -266,7 +266,7 @@ export declare class TableComponent extends StylableComponent implements AfterCo
|
|
|
266
266
|
onFormRender: ($row: any, e: any, operation: any, alwaysNewRow: any) => void;
|
|
267
267
|
onBeforeFormRender: (row: any, e: any, operation: any) => any;
|
|
268
268
|
registerRowNgClassWatcher: (rowData: any, index: any) => void;
|
|
269
|
-
registerColNgClassWatcher: (rowData: any, colDef: any, rowIndex: any, colIndex: any) => void;
|
|
269
|
+
registerColNgClassWatcher: (rowData: any, colDef: any, rowIndex: any, colIndex: any, summaryRow: any) => void;
|
|
270
270
|
clearCustomExpression: () => void;
|
|
271
271
|
clearRowDetailExpression: () => void;
|
|
272
272
|
generateCustomExpressions: (rowData: any, index: any, summaryRow?: any) => void;
|
app-ng-runtime/package.json
CHANGED
|
@@ -722,7 +722,7 @@ $.widget('wm.datatable', {
|
|
|
722
722
|
}
|
|
723
723
|
}
|
|
724
724
|
row.$index = rowIndex + 1;
|
|
725
|
-
this.options.registerColNgClassWatcher(row, colDef, rowIndex, colId);
|
|
725
|
+
this.options.registerColNgClassWatcher(row, colDef, rowIndex, colId, summaryRow);
|
|
726
726
|
return $htm;
|
|
727
727
|
},
|
|
728
728
|
//Get event related template for editable widget
|