@schukai/monster 3.102.2 → 3.102.4
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/CHANGELOG.md +22 -0
- package/package.json +1 -1
- package/source/components/datatable/dataset.mjs +2 -2
- package/source/components/datatable/datatable.mjs +1190 -1196
- package/source/components/datatable/filter.mjs +3 -5
- package/source/components/datatable/pagination.mjs +1 -1
- package/source/components/datatable/stylesheet/datatable.mjs +13 -6
- package/source/components/form/form.mjs +1 -2
- package/source/components/form/select.mjs +2191 -2198
- package/source/components/layout/split-panel.mjs +1 -2
- package/source/dom/customcontrol.mjs +328 -296
- package/source/dom/updater.mjs +795 -796
- package/source/monster.mjs +1 -0
- package/source/types/internal.mjs +0 -1
- package/source/types/version.mjs +1 -1
- package/test/cases/monster.mjs +1 -1
- package/test/web/test.html +2 -2
- package/test/web/tests.js +181 -70
@@ -180,7 +180,6 @@ function initEventHandler() {
|
|
180
180
|
this[debounceBindSymbol] = {};
|
181
181
|
|
182
182
|
if (this.getOption("features.writeBack") === true) {
|
183
|
-
|
184
183
|
setTimeout(() => {
|
185
184
|
const events = this.getOption("writeBack.events");
|
186
185
|
for (const event of events) {
|
@@ -215,7 +214,7 @@ function initEventHandler() {
|
|
215
214
|
});
|
216
215
|
});
|
217
216
|
}
|
218
|
-
},0);
|
217
|
+
}, 0);
|
219
218
|
}
|
220
219
|
|
221
220
|
return this;
|