@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
@@ -547,11 +547,9 @@ function updateFilterSelections() {
|
|
547
547
|
this[filterSelectElementSymbol].setOption("options", options);
|
548
548
|
|
549
549
|
setTimeout(() => {
|
550
|
-
|
551
|
-
this[
|
552
|
-
|
553
|
-
});
|
554
|
-
}, 0);
|
550
|
+
this[filterSelectElementSymbol].value =
|
551
|
+
this[settingsSymbol].getSelected();
|
552
|
+
}, 10);
|
555
553
|
});
|
556
554
|
}
|
557
555
|
|