@wavemaker/app-ng-runtime 11.14.2-1.6423 → 11.14.2-2.6435
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/components/base/bundles/index.umd.js +6 -12
- package/components/base/esm2022/widgets/common/base/base.component.mjs +8 -14
- package/components/base/fesm2022/index.mjs +7 -13
- package/components/base/fesm2022/index.mjs.map +1 -1
- package/components/data/table/bundles/index.umd.js +5 -5
- package/components/data/table/esm2022/table.component.mjs +7 -7
- package/components/data/table/fesm2022/index.mjs +6 -6
- package/components/data/table/fesm2022/index.mjs.map +1 -1
- package/components/prefab/bundles/index.umd.js +0 -4
- package/components/prefab/esm2022/prefab.directive.mjs +1 -5
- package/components/prefab/fesm2022/index.mjs +0 -4
- package/components/prefab/fesm2022/index.mjs.map +1 -1
- package/core/bundles/index.umd.js +187 -330
- package/core/esm2022/public_api.mjs +2 -2
- package/core/esm2022/utils/watcher.mjs +191 -327
- package/core/fesm2022/index.mjs +194 -330
- package/core/fesm2022/index.mjs.map +1 -1
- package/core/public_api.d.ts +1 -1
- package/core/utils/watcher.d.ts +5 -26
- package/npm-shrinkwrap.json +2 -2
- package/package-lock.json +2 -2
- package/package.json +1 -1
- package/runtime/base/bundles/index.umd.js +11 -171
- package/runtime/base/components/app-component/app.component.d.ts +0 -4
- package/runtime/base/esm2022/components/app-component/app.component.mjs +9 -40
- package/runtime/base/esm2022/components/base-page.component.mjs +3 -35
- package/runtime/base/esm2022/components/base-partial.component.mjs +3 -37
- package/runtime/base/esm2022/components/base-prefab.component.mjs +3 -32
- package/runtime/base/esm2022/components/base-spa-page.component.mjs +3 -37
- package/runtime/base/fesm2022/index.mjs +12 -172
- package/runtime/base/fesm2022/index.mjs.map +1 -1
- package/runtime/dynamic/bundles/index.umd.js +4 -0
- package/runtime/dynamic/esm2022/app/app.config.mjs +6 -2
- package/runtime/dynamic/fesm2022/index.mjs +5 -1
- package/runtime/dynamic/fesm2022/index.mjs.map +1 -1
|
@@ -587,7 +587,11 @@
|
|
|
587
587
|
this.prevData = i2.getClonedObject(row);
|
|
588
588
|
},
|
|
589
589
|
afterRowUpdate: (row, e, callBack, options) => {
|
|
590
|
+
i2.muteWatchers();
|
|
590
591
|
this.updateRecord(lodashEs.extend({}, options, { row, 'prevData': options.rowindex ? options.rowindex : this.prevData, 'event': e, 'callBack': callBack }));
|
|
592
|
+
setTimeout(() => {
|
|
593
|
+
i2.unMuteWatchers();
|
|
594
|
+
}, 10);
|
|
591
595
|
},
|
|
592
596
|
onBeforeRowUpdate: (row, e, options) => {
|
|
593
597
|
return this.invokeEventCallback('beforerowupdate', { $event: e, $data: row, row, options: options });
|
|
@@ -1411,7 +1415,6 @@
|
|
|
1411
1415
|
this.selectedItems = [];
|
|
1412
1416
|
this.fieldDefs = [];
|
|
1413
1417
|
this.fullFieldDefs = [];
|
|
1414
|
-
this.gridData = [];
|
|
1415
1418
|
this.__fullData = null;
|
|
1416
1419
|
// MEMORY LEAK FIX: Destroy jQuery datatable widget before clearing gridOptions
|
|
1417
1420
|
if (this.datagridElement && this.datagridElement.datatable) {
|
|
@@ -1920,10 +1923,7 @@
|
|
|
1920
1923
|
this.headerselectall = false;
|
|
1921
1924
|
this.setDataGridOption("headerselectall", false);
|
|
1922
1925
|
}
|
|
1923
|
-
|
|
1924
|
-
if (this.datasource && this.dataset !== undefined) {
|
|
1925
|
-
this.watchVariableDataSet(this.dataset);
|
|
1926
|
-
}
|
|
1926
|
+
this.watchVariableDataSet(this.dataset);
|
|
1927
1927
|
this.onDataSourceChange();
|
|
1928
1928
|
break;
|
|
1929
1929
|
case 'dataset':
|