@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
@@ -23,7 +23,7 @@ import { Observer } from "../../types/observer.mjs";
|
|
23
23
|
import { SplitPanelStyleSheet } from "./stylesheet/split-panel.mjs";
|
24
24
|
import { instanceSymbol } from "../../constants.mjs";
|
25
25
|
import { internalSymbol } from "../../constants.mjs";
|
26
|
-
import {getDocument} from "../../dom/util.mjs";
|
26
|
+
import { getDocument } from "../../dom/util.mjs";
|
27
27
|
|
28
28
|
export { SplitPanel, TYPE_VERTICAL, TYPE_HORIZONTAL };
|
29
29
|
|
@@ -378,7 +378,6 @@ function initEventHandler() {
|
|
378
378
|
const dragEventHandler = (e) => {
|
379
379
|
self[internalSymbol].getSubject().isDragging = false;
|
380
380
|
|
381
|
-
|
382
381
|
document.body.style.userSelect = userSelectDefault;
|
383
382
|
|
384
383
|
document.removeEventListener("mousemove", eventListener);
|