@wavemaker/app-ng-runtime 12.0.0-next.45501 → 12.0.0-next.45752
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/base/bundles/index.umd.js +7 -1
- app-ng-runtime/components/base/esm2022/utils/live-utils.mjs +8 -2
- app-ng-runtime/components/base/fesm2022/index.mjs +7 -1
- app-ng-runtime/components/base/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/data/form/bundles/index.umd.js +4 -0
- app-ng-runtime/components/data/form/esm2022/form-field/form-field.directive.mjs +5 -1
- app-ng-runtime/components/data/form/fesm2022/index.mjs +4 -0
- app-ng-runtime/components/data/form/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/data/form/form-field/form-field.directive.d.ts +1 -0
- 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/components/input/default/bundles/index.umd.js +15 -13
- app-ng-runtime/components/input/default/esm2022/select/select.component.mjs +17 -15
- app-ng-runtime/components/input/default/fesm2022/index.mjs +16 -14
- app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +1 -1
@@ -665,12 +665,12 @@ class TableComponent extends StylableComponent {
|
|
665
665
|
this.callDataGridMethod('applyRowNgClass', getConditionalClasses(nv, ov), index);
|
666
666
|
}, watchName));
|
667
667
|
},
|
668
|
-
registerColNgClassWatcher: (rowData, colDef, rowIndex, colIndex) => {
|
668
|
+
registerColNgClassWatcher: (rowData, colDef, rowIndex, colIndex, summaryRow) => {
|
669
669
|
if (!colDef['col-ng-class']) {
|
670
670
|
return;
|
671
671
|
}
|
672
672
|
const row = this.getClonedRowObject(rowData);
|
673
|
-
const watchName = `${this.widgetId}_colNgClass_${rowIndex}_${colIndex}`;
|
673
|
+
const watchName = summaryRow ? `${this.widgetId}_summaryRow_colNgClass_${rowIndex}_${colIndex}` : `${this.widgetId}_colNgClass_${rowIndex}_${colIndex}`;
|
674
674
|
$unwatch(watchName);
|
675
675
|
//[Todo-CSP]: generate watcher expr in page if col-ng-class attr is present for table
|
676
676
|
this.registerDestroyListener($watch(colDef['col-ng-class'], this.viewParent, { row }, (nv, ov) => {
|