@schukai/monster 3.65.0 → 3.65.20
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +82 -327
- package/README.md +44 -40
- package/package.json +1 -48
- package/source/components/constants.mjs +10 -3
- package/source/components/datatable/change-button.mjs +12 -5
- package/source/components/datatable/columnbar.mjs +10 -1
- package/source/components/datatable/constants.mjs +11 -4
- package/source/components/datatable/dataset.mjs +10 -1
- package/source/components/datatable/datasource/dom.mjs +14 -1
- package/source/components/datatable/datasource/rest.mjs +10 -1
- package/source/components/datatable/datasource.mjs +10 -1
- package/source/components/datatable/datatable/header.mjs +220 -218
- package/source/components/datatable/datatable.mjs +757 -752
- package/source/components/datatable/embedded-pagination.mjs +10 -1
- package/source/components/datatable/filter/abstract-base.mjs +10 -1
- package/source/components/datatable/filter/date-range.mjs +10 -1
- package/source/components/datatable/filter/input.mjs +10 -1
- package/source/components/datatable/filter/range.mjs +10 -1
- package/source/components/datatable/filter/select.mjs +11 -4
- package/source/components/datatable/filter/settings.mjs +14 -0
- package/source/components/datatable/filter/util.mjs +14 -0
- package/source/components/datatable/filter-button.mjs +10 -1
- package/source/components/datatable/filter.mjs +11 -3
- package/source/components/datatable/pagination.mjs +14 -5
- package/source/components/datatable/save-button.mjs +279 -270
- package/source/components/datatable/status.mjs +10 -1
- package/source/components/datatable/stylesheet/change-button.mjs +16 -7
- package/source/components/datatable/stylesheet/column-bar.mjs +16 -7
- package/source/components/datatable/stylesheet/dataset.mjs +16 -7
- package/source/components/datatable/stylesheet/datasource.mjs +16 -7
- package/source/components/datatable/stylesheet/datatable.mjs +16 -7
- package/source/components/datatable/stylesheet/embedded-pagination.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-button.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-date-range.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-range.mjs +16 -7
- package/source/components/datatable/stylesheet/filter.mjs +16 -7
- package/source/components/datatable/stylesheet/pagination.mjs +16 -7
- package/source/components/datatable/stylesheet/save-button.mjs +16 -7
- package/source/components/datatable/stylesheet/select-filter.mjs +16 -7
- package/source/components/datatable/stylesheet/status.mjs +16 -7
- package/source/components/datatable/util.mjs +16 -8
- package/source/components/form/action-button.mjs +11 -3
- package/source/components/form/api-button.mjs +11 -3
- package/source/components/form/button-bar.mjs +11 -3
- package/source/components/form/button.mjs +254 -249
- package/source/components/form/confirm-button.mjs +11 -3
- package/source/components/form/constants.mjs +10 -3
- package/source/components/form/context-error.mjs +69 -52
- package/source/components/form/context-help.mjs +11 -3
- package/source/components/form/field-set.mjs +10 -15
- package/source/components/form/form.mjs +12 -4
- package/source/components/form/message-state-button.mjs +11 -3
- package/source/components/form/popper-button.mjs +11 -3
- package/source/components/form/popper.mjs +6 -6
- package/source/components/form/reload.mjs +12 -4
- package/source/components/form/select.mjs +44 -33
- package/source/components/form/shadow-reload.mjs +11 -3
- package/source/components/form/state-button.mjs +11 -3
- package/source/components/form/stylesheet/action-button.mjs +16 -7
- package/source/components/form/stylesheet/api-button.mjs +16 -7
- package/source/components/form/stylesheet/button-bar.mjs +16 -7
- package/source/components/form/stylesheet/button.mjs +16 -7
- package/source/components/form/stylesheet/confirm-button.mjs +16 -7
- package/source/components/form/stylesheet/context-error.mjs +16 -7
- package/source/components/form/stylesheet/context-help.mjs +16 -7
- package/source/components/form/stylesheet/field-set.mjs +16 -7
- package/source/components/form/stylesheet/form.mjs +16 -7
- package/source/components/form/stylesheet/message-state-button.mjs +16 -7
- package/source/components/form/stylesheet/popper-button.mjs +16 -7
- package/source/components/form/stylesheet/select.mjs +16 -7
- package/source/components/form/stylesheet/state-button.mjs +16 -7
- package/source/components/form/stylesheet/toggle-switch.mjs +16 -7
- package/source/components/form/stylesheet/tree-select.mjs +16 -7
- package/source/components/form/tabs.mjs +12 -8
- package/source/components/form/template.mjs +11 -3
- package/source/components/form/toggle-switch.mjs +12 -8
- package/source/components/form/tree-select.mjs +10 -3
- package/source/components/form/types/state.mjs +10 -3
- package/source/components/form/util/fetch.mjs +10 -3
- package/source/components/form/util/floating-ui.mjs +10 -3
- package/source/components/form/util/popper.mjs +10 -3
- package/source/components/host/call-button.mjs +10 -1
- package/source/components/host/collapse.mjs +4 -6
- package/source/components/host/config-manager.mjs +2 -0
- package/source/components/host/constants.mjs +2 -0
- package/source/components/host/details.mjs +5 -8
- package/source/components/host/host.mjs +10 -1
- package/source/components/host/overlay.mjs +10 -1
- package/source/components/host/stylesheet/call-button.mjs +16 -7
- package/source/components/host/stylesheet/config-manager.mjs +16 -7
- package/source/components/host/stylesheet/host.mjs +16 -7
- package/source/components/host/stylesheet/overlay.mjs +16 -7
- package/source/components/host/stylesheet/toggle-button.mjs +16 -7
- package/source/components/host/stylesheet/viewer.mjs +16 -7
- package/source/components/host/toggle-button.mjs +10 -1
- package/source/components/host/util.mjs +14 -0
- package/source/components/host/viewer.mjs +10 -1
- package/source/components/layout/collapse.mjs +4 -3
- package/source/components/layout/details.mjs +2 -0
- package/source/components/layout/panel.mjs +179 -169
- package/source/components/layout/popper.mjs +324 -320
- package/source/components/layout/split-panel.mjs +329 -303
- package/source/components/layout/stylesheet/collapse.mjs +16 -7
- package/source/components/layout/stylesheet/details.mjs +16 -7
- package/source/components/layout/stylesheet/panel.mjs +16 -7
- package/source/components/layout/stylesheet/popper.mjs +16 -7
- package/source/components/layout/stylesheet/split-panel.mjs +16 -7
- package/source/components/layout/stylesheet/tabs.mjs +16 -7
- package/source/components/layout/stylesheet/width-toggle.mjs +16 -7
- package/source/components/layout/tabs.mjs +39 -24
- package/source/components/layout/width-toggle.mjs +148 -138
- package/source/components/navigation/style/table-of-content.pcss +20 -5
- package/source/components/navigation/stylesheet/table-of-content.mjs +17 -8
- package/source/components/navigation/table-of-content.mjs +394 -266
- package/source/components/notify/constants.mjs +10 -3
- package/source/components/notify/message.mjs +16 -9
- package/source/components/notify/notify.mjs +11 -4
- package/source/components/notify/stylesheet/message.mjs +16 -7
- package/source/components/notify/stylesheet/notify.mjs +16 -7
- package/source/components/state/log/entry.mjs +10 -1
- package/source/components/state/log.mjs +10 -1
- package/source/components/state/state.mjs +10 -1
- package/source/components/state/stylesheet/log.mjs +16 -7
- package/source/components/state/stylesheet/state.mjs +16 -7
- package/source/components/style/mixin/form.pcss +0 -1
- package/source/components/stylesheet/badge.mjs +16 -7
- package/source/components/stylesheet/border.mjs +16 -7
- package/source/components/stylesheet/button.mjs +16 -7
- package/source/components/stylesheet/card.mjs +16 -7
- package/source/components/stylesheet/color.mjs +16 -7
- package/source/components/stylesheet/common.mjs +16 -7
- package/source/components/stylesheet/control.mjs +16 -7
- package/source/components/stylesheet/data-grid.mjs +16 -7
- package/source/components/stylesheet/display.mjs +16 -7
- package/source/components/stylesheet/floating-ui.mjs +16 -7
- package/source/components/stylesheet/form.mjs +16 -7
- package/source/components/stylesheet/host.mjs +16 -7
- package/source/components/stylesheet/icons.mjs +16 -7
- package/source/components/stylesheet/link.mjs +16 -7
- package/source/components/stylesheet/mixin/badge.mjs +16 -7
- package/source/components/stylesheet/mixin/button.mjs +16 -7
- package/source/components/stylesheet/mixin/form.mjs +16 -7
- package/source/components/stylesheet/mixin/hover.mjs +16 -7
- package/source/components/stylesheet/mixin/icon.mjs +16 -7
- package/source/components/stylesheet/mixin/media.mjs +16 -7
- package/source/components/stylesheet/mixin/property.mjs +16 -7
- package/source/components/stylesheet/mixin/skeleton.mjs +16 -7
- package/source/components/stylesheet/mixin/spinner.mjs +16 -7
- package/source/components/stylesheet/mixin/typography.mjs +16 -7
- package/source/components/stylesheet/normalize.mjs +16 -7
- package/source/components/stylesheet/popper.mjs +16 -7
- package/source/components/stylesheet/property.mjs +16 -7
- package/source/components/stylesheet/ripple.mjs +16 -7
- package/source/components/stylesheet/skeleton.mjs +16 -7
- package/source/components/stylesheet/space.mjs +16 -7
- package/source/components/stylesheet/spinner.mjs +16 -7
- package/source/components/stylesheet/table.mjs +16 -7
- package/source/components/stylesheet/theme.mjs +16 -7
- package/source/components/stylesheet/tree-menu.mjs +10 -3
- package/source/components/stylesheet/typography.mjs +16 -7
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +16 -7
- package/source/components/tree-menu/tree-menu.mjs +19 -8
- package/source/constants.mjs +10 -6
- package/source/constraints/abstract.mjs +10 -3
- package/source/constraints/abstractoperator.mjs +10 -3
- package/source/constraints/andoperator.mjs +10 -3
- package/source/constraints/invalid.mjs +10 -3
- package/source/constraints/isarray.mjs +10 -3
- package/source/constraints/isobject.mjs +10 -3
- package/source/constraints/oroperator.mjs +10 -3
- package/source/constraints/valid.mjs +10 -3
- package/source/data/buildmap.mjs +10 -3
- package/source/data/buildtree.mjs +10 -3
- package/source/data/datasource/dom.mjs +10 -3
- package/source/data/datasource/server/restapi/data-fetch-error.mjs +10 -3
- package/source/data/datasource/server/restapi/writeerror.mjs +10 -3
- package/source/data/datasource/server/restapi.mjs +10 -3
- package/source/data/datasource/server/webconnect.mjs +10 -3
- package/source/data/datasource/server.mjs +10 -3
- package/source/data/datasource/storage/localstorage.mjs +10 -3
- package/source/data/datasource/storage/sessionstorage.mjs +10 -3
- package/source/data/datasource/storage.mjs +10 -3
- package/source/data/datasource.mjs +10 -3
- package/source/data/diff.mjs +10 -3
- package/source/data/extend.mjs +10 -3
- package/source/data/pathfinder.mjs +10 -3
- package/source/data/pipe.mjs +10 -3
- package/source/data/transformer.mjs +34 -10
- package/source/dom/assembler.mjs +10 -3
- package/source/dom/attributes.mjs +10 -3
- package/source/dom/constants.mjs +10 -3
- package/source/dom/customcontrol.mjs +11 -4
- package/source/dom/customelement.mjs +31 -17
- package/source/dom/dimension.mjs +10 -3
- package/source/dom/events.mjs +10 -3
- package/source/dom/focusmanager.mjs +10 -3
- package/source/dom/locale.mjs +10 -3
- package/source/dom/ready.mjs +2 -1
- package/source/dom/resource/data.mjs +10 -3
- package/source/dom/resource/link/stylesheet.mjs +10 -3
- package/source/dom/resource/link.mjs +10 -3
- package/source/dom/resource/script.mjs +10 -3
- package/source/dom/resource.mjs +10 -3
- package/source/dom/resourcemanager.mjs +10 -3
- package/source/dom/slotted.mjs +14 -0
- package/source/dom/template.mjs +124 -136
- package/source/dom/theme.mjs +10 -3
- package/source/dom/updater.mjs +10 -3
- package/source/dom/util/extract-keys.mjs +10 -3
- package/source/dom/util/init-options-from-attributes.mjs +68 -61
- package/source/dom/util/set-option-from-attribute.mjs +10 -3
- package/source/dom/util.mjs +11 -4
- package/source/dom/worker/factory.mjs +10 -3
- package/source/i18n/formatter.mjs +10 -3
- package/source/i18n/locale.mjs +10 -3
- package/source/i18n/provider.mjs +10 -3
- package/source/i18n/providers/embed.mjs +10 -3
- package/source/i18n/providers/fetch.mjs +10 -3
- package/source/i18n/translations.mjs +10 -3
- package/source/logging/handler/console.mjs +10 -3
- package/source/logging/handler.mjs +10 -3
- package/source/logging/logentry.mjs +10 -3
- package/source/logging/logger.mjs +10 -3
- package/source/math/random.mjs +10 -3
- package/source/monster.mjs +3 -9
- package/source/net/webconnect/message.mjs +10 -3
- package/source/net/webconnect.mjs +20 -5
- package/source/text/bracketed-key-value-hash.mjs +10 -3
- package/source/text/formatter.mjs +10 -3
- package/source/text/generate-range-comparison-expression.mjs +10 -3
- package/source/text/util.mjs +14 -0
- package/source/types/base.mjs +10 -3
- package/source/types/basewithoptions.mjs +10 -3
- package/source/types/binary.mjs +10 -3
- package/source/types/dataurl.mjs +10 -3
- package/source/types/global.mjs +14 -7
- package/source/types/id.mjs +10 -3
- package/source/types/internal.mjs +11 -3
- package/source/types/is.mjs +10 -3
- package/source/types/mediatype.mjs +10 -3
- package/source/types/node.mjs +10 -3
- package/source/types/nodelist.mjs +10 -3
- package/source/types/noderecursiveiterator.mjs +10 -3
- package/source/types/observablequeue.mjs +10 -3
- package/source/types/observer.mjs +10 -3
- package/source/types/observerlist.mjs +10 -3
- package/source/types/proxyobserver.mjs +10 -3
- package/source/types/queue.mjs +10 -3
- package/source/types/randomid.mjs +10 -3
- package/source/types/regex.mjs +10 -3
- package/source/types/stack.mjs +10 -3
- package/source/types/tokenlist.mjs +10 -3
- package/source/types/typeof.mjs +10 -3
- package/source/types/uniquequeue.mjs +10 -3
- package/source/types/uuid.mjs +10 -3
- package/source/types/validate.mjs +10 -3
- package/source/types/version.mjs +10 -3
- package/source/util/clone.mjs +10 -3
- package/source/util/comparator.mjs +10 -3
- package/source/util/deadmansswitch.mjs +10 -3
- package/source/util/freeze.mjs +10 -3
- package/source/util/processing.mjs +10 -3
- package/source/util/runtime.mjs +10 -7
- package/source/util/sleep.mjs +10 -10
- package/source/util/trimspaces.mjs +10 -3
- package/test/cases/data/datasource/server/websocket.mjs +7 -9
- package/test/cases/data/transformer.mjs +47 -15
- package/test/cases/dom/customcontrol.mjs +0 -1
- package/test/cases/dom/customelement.mjs +1 -3
- package/test/cases/dom/template.mjs +3 -1
- package/test/util/jsdom.mjs +8 -7
- package/test/util/websocket.mjs +5 -1
- package/test/web/import.js +2 -1
- package/test/web/puppeteer.mjs +111 -0
- package/test/web/test.html +2 -2
- package/test/web/tests.js +2036 -1189
- package/example/components/form/button.mjs +0 -10
- package/example/components/form/field-set.mjs +0 -4
- package/example/components/form/select.mjs +0 -25
- package/example/components/form/toggle-switch.mjs +0 -7
- package/example/components/form/tree-select.mjs +0 -27
- package/example/components/host/host.mjs +0 -0
- package/example/components/notify/message.mjs +0 -4
- package/example/components/notify/notify.mjs +0 -4
- package/example/components/state/log.mjs +0 -0
- package/example/components/state/state.mjs +0 -0
- package/example/constraints/andoperator.mjs +0 -17
- package/example/constraints/invalid.mjs +0 -6
- package/example/constraints/isarray.mjs +0 -11
- package/example/constraints/isobject.mjs +0 -12
- package/example/constraints/oroperator.mjs +0 -15
- package/example/constraints/valid.mjs +0 -6
- package/example/data/buildmap.mjs +0 -67
- package/example/data/datasource/server/restapi.mjs +0 -20
- package/example/data/datasource/server/webconnect.mjs +0 -9
- package/example/data/datasource.mjs +0 -7
- package/example/data/diff.mjs +0 -39
- package/example/data/pathfinder-1.mjs +0 -23
- package/example/data/pathfinder-2.mjs +0 -19
- package/example/data/pipe.mjs +0 -14
- package/example/data/transformer.mjs +0 -9
- package/example/dom/customelement.mjs +0 -14
- package/example/dom/theme.mjs +0 -5
- package/example/dom/updater.mjs +0 -23
- package/example/i18n/formatter.mjs +0 -10
- package/example/i18n/providers/embed.mjs +0 -5
- package/example/i18n/providers/fetch.mjs +0 -5
- package/example/i18n/translations.mjs +0 -20
- package/example/net/webconnect.mjs +0 -16
- package/example/types/basewithoptions.mjs +0 -10
- package/example/types/is-1.mjs +0 -5
- package/example/types/is-10.mjs +0 -6
- package/example/types/is-2.mjs +0 -4
- package/example/types/is-3.mjs +0 -4
- package/example/types/is-4.mjs +0 -5
- package/example/types/is-5.mjs +0 -4
- package/example/types/is-6.mjs +0 -4
- package/example/types/is-7.mjs +0 -4
- package/example/types/is-8.mjs +0 -4
- package/example/types/is-9.mjs +0 -6
- package/example/types/noderecursiveiterator.mjs +0 -32
- package/example/types/observer.mjs +0 -9
- package/example/types/proxyobserver.mjs +0 -25
- package/example/types/queue.mjs +0 -20
- package/example/types/tokenlist-1.mjs +0 -4
- package/example/types/tokenlist-2.mjs +0 -7
- package/example/types/tokenlist-3.mjs +0 -5
- package/example/types/tokenlist-4.mjs +0 -5
- package/example/types/tokenlist-5.mjs +0 -5
- package/example/types/typeof.mjs +0 -9
- package/example/types/version-1.mjs +0 -6
- package/example/types/version-2.mjs +0 -3
- package/example/util/comparator.mjs +0 -10
- package/example/util/deadmansswitch.mjs +0 -9
- package/example/util/processing.mjs +0 -17
- package/source/components/datatable/datasource/namespace.mjs +0 -13
- package/source/components/datatable/datatable/namespace.mjs +0 -13
- package/source/components/datatable/events.mjs +0 -24
- package/source/components/datatable/filter/namespace.mjs +0 -13
- package/source/components/datatable/namespace.mjs +0 -11
- package/source/components/datatable/stylesheet/namespace.mjs +0 -13
- package/source/components/events.mjs +0 -17
- package/source/components/form/events.mjs +0 -108
- package/source/components/form/namespace.mjs +0 -13
- package/source/components/form/stylesheet/namespace.mjs +0 -13
- package/source/components/form/types/namespace.mjs +0 -13
- package/source/components/form/util/namespace.mjs +0 -13
- package/source/components/host/events.mjs +0 -131
- package/source/components/host/namespace.mjs +0 -13
- package/source/components/host/stylesheet/namespace.mjs +0 -13
- package/source/components/layout/events.mjs +0 -30
- package/source/components/layout/namespace.mjs +0 -13
- package/source/components/namespace.mjs +0 -14
- package/source/components/notify/events.mjs +0 -15
- package/source/components/notify/namespace.mjs +0 -15
- package/source/components/notify/stylesheet/namespace.mjs +0 -15
- package/source/components/state/log/namespace.mjs +0 -13
- package/source/components/state/namespace.mjs +0 -13
- package/source/components/stylesheet/namespace.mjs +0 -13
- package/source/components/tree-menu/namespace.mjs +0 -13
- package/source/components/tree-menu/stylesheet/namespace.mjs +0 -13
- package/source/constraints/namespace.mjs +0 -13
- package/source/data/datasource/namespace.mjs +0 -13
- package/source/data/datasource/server/namespace.mjs +0 -13
- package/source/data/datasource/server/restapi/namespace.mjs +0 -13
- package/source/data/datasource/storage/namespace.mjs +0 -13
- package/source/data/namespace.mjs +0 -13
- package/source/dom/namespace.mjs +0 -13
- package/source/dom/resource/link/namespace.mjs +0 -13
- package/source/dom/resource/namespace.mjs +0 -13
- package/source/dom/util/namespace.mjs +0 -13
- package/source/dom/worker/namespace.mjs +0 -13
- package/source/i18n/namespace.mjs +0 -13
- package/source/i18n/providers/namespace.mjs +0 -13
- package/source/logging/handler/namespace.mjs +0 -11
- package/source/logging/namespace.mjs +0 -13
- package/source/math/namespace.mjs +0 -13
- package/source/net/namespace.mjs +0 -13
- package/source/net/webconnect/namespace.mjs +0 -13
- package/source/text/namespace.mjs +0 -13
- package/source/types/namespace.mjs +0 -13
- package/source/util/namespace.mjs +0 -13
@@ -8,28 +8,31 @@
|
|
8
8
|
* For those who do not wish to adhere to the AGPLv3, a commercial license is available.
|
9
9
|
* Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
|
10
10
|
* For more information about purchasing a commercial license, please contact schukai GmbH.
|
11
|
+
*
|
12
|
+
* SPDX-License-Identifier: AGPL-3.0
|
11
13
|
*/
|
12
|
-
|
14
|
+
|
15
|
+
import { instanceSymbol } from "../../constants.mjs";
|
13
16
|
import {
|
14
|
-
|
15
|
-
|
17
|
+
addAttributeToken,
|
18
|
+
removeAttributeToken,
|
16
19
|
} from "../../dom/attributes.mjs";
|
17
|
-
import {ATTRIBUTE_ROLE} from "../../dom/constants.mjs";
|
20
|
+
import { ATTRIBUTE_ROLE } from "../../dom/constants.mjs";
|
18
21
|
import {
|
19
|
-
|
20
|
-
|
22
|
+
assembleMethodSymbol,
|
23
|
+
CustomElement,
|
24
|
+
registerCustomElement,
|
21
25
|
} from "../../dom/customelement.mjs";
|
22
|
-
import {fireCustomEvent} from "../../dom/events.mjs";
|
23
|
-
import {getDocument} from "../../dom/util.mjs";
|
24
|
-
import {DeadMansSwitch} from "../../util/deadmansswitch.mjs";
|
25
|
-
import {
|
26
|
-
import {
|
27
|
-
import {
|
28
|
-
import {
|
29
|
-
import {
|
30
|
-
|
31
|
-
|
32
|
-
export {Popper};
|
26
|
+
import { fireCustomEvent } from "../../dom/events.mjs";
|
27
|
+
import { getDocument } from "../../dom/util.mjs";
|
28
|
+
import { DeadMansSwitch } from "../../util/deadmansswitch.mjs";
|
29
|
+
import { STYLE_DISPLAY_MODE_BLOCK } from "../form/constants.mjs";
|
30
|
+
import { positionPopper } from "../form/util/floating-ui.mjs";
|
31
|
+
import { CustomControl } from "../../dom/customcontrol.mjs";
|
32
|
+
import { PopperStyleSheet } from "./stylesheet/popper.mjs";
|
33
|
+
import { isArray } from "../../types/is.mjs";
|
34
|
+
|
35
|
+
export { Popper };
|
33
36
|
|
34
37
|
/**
|
35
38
|
* @private
|
@@ -77,15 +80,6 @@ const popperElementSymbol = Symbol("popperElement");
|
|
77
80
|
*/
|
78
81
|
const arrowElementSymbol = Symbol("arrowElement");
|
79
82
|
|
80
|
-
/**
|
81
|
-
* This action callback executes the actions when a button is clicked.
|
82
|
-
*
|
83
|
-
* @callback Monster.Components.Form~exampleActionCallback
|
84
|
-
* @param {Event} e Event
|
85
|
-
* @memberOf Monster.Components.Form
|
86
|
-
* @this {CustomControl}
|
87
|
-
*/
|
88
|
-
|
89
83
|
/**
|
90
84
|
* A Popper is a floating UI element that can be shown or hidden.
|
91
85
|
*
|
@@ -94,142 +88,153 @@ const arrowElementSymbol = Symbol("arrowElement");
|
|
94
88
|
* @example /examples/components/layout/popper-simple
|
95
89
|
* @example /examples/components/layout/popper-click
|
96
90
|
*
|
97
|
-
* @since 1.
|
91
|
+
* @since 1.65.0
|
98
92
|
* @copyright schukai GmbH
|
99
93
|
* @summary A beautiful popper that can make your life easier and also looks good.
|
100
94
|
* @fires monster-popper-hide fired when the popper is hide.
|
101
95
|
* @fires monster-popper-hidden fired when the popper is hidden.
|
102
96
|
* @fires monster-popper-open fired when the popper is open.
|
103
97
|
* @fires monster-popper-opened fired when the popper is opened.
|
104
|
-
*
|
105
98
|
*/
|
106
|
-
class Popper extends
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
99
|
+
class Popper extends CustomElement {
|
100
|
+
/**
|
101
|
+
* This method is called by the `instanceof` operator.
|
102
|
+
* @returns {symbol}
|
103
|
+
*/
|
104
|
+
static get [instanceSymbol]() {
|
105
|
+
return Symbol.for("@schukai/monster/components/layout/popper@@instance");
|
106
|
+
}
|
107
|
+
|
108
|
+
/**
|
109
|
+
* To set the options via the html tag the attribute `data-monster-options` must be used.
|
110
|
+
* @see {@link https://monsterjs.org/en/doc/#configurate-a-monster-control}
|
111
|
+
*
|
112
|
+
* The individual configuration values can be found in the table.
|
113
|
+
*
|
114
|
+
* @property {Object} templates The templates for the control.
|
115
|
+
* @property {string} templates.main The main template.
|
116
|
+
* @property {string} mode The mode of the popper. Possible values are `click`, `enter`, `manual`, `focus`, "auto" or a combination of them.
|
117
|
+
* @property {string} content The content of the popper.
|
118
|
+
* @property {object} popper The popper options.
|
119
|
+
* @property {string} popper.placement The placement of the popper. Possible values are `top`, `bottom`, `left` and `right`.
|
120
|
+
* @property {function[]} popper.middleware The middleware functions of the popper.
|
121
|
+
* @property {Object} features The features of the popper.
|
122
|
+
* @property {boolean} features.preventOpenEventSent Prevents the open event from being sent.
|
123
|
+
*/
|
124
|
+
get defaults() {
|
125
|
+
return Object.assign({}, super.defaults, {
|
126
|
+
templates: {
|
127
|
+
main: getTemplate(),
|
128
|
+
},
|
129
|
+
mode: "auto focus",
|
130
|
+
content: "<slot></slot>",
|
131
|
+
popper: {
|
132
|
+
placement: "top",
|
133
|
+
middleware: ["autoPlacement", "offset:10", "arrow"],
|
134
|
+
},
|
135
|
+
features: {
|
136
|
+
preventOpenEventSent: false,
|
137
|
+
},
|
138
|
+
});
|
139
|
+
}
|
140
|
+
|
141
|
+
/**
|
142
|
+
* This method is called by the `connectedCallback` method on the first call.
|
143
|
+
*
|
144
|
+
* @return {Void}
|
145
|
+
*/
|
146
|
+
[assembleMethodSymbol]() {
|
147
|
+
super[assembleMethodSymbol]();
|
148
|
+
initControlReferences.call(this);
|
149
|
+
initEventHandler.call(this);
|
150
|
+
}
|
151
|
+
|
152
|
+
/**
|
153
|
+
* This method returns the tag name of the element.
|
154
|
+
*
|
155
|
+
* @return {string}
|
156
|
+
*/
|
157
|
+
static getTag() {
|
158
|
+
return "monster-popper";
|
159
|
+
}
|
160
|
+
|
161
|
+
/**
|
162
|
+
* This method returns the css styles of the element.
|
163
|
+
*
|
164
|
+
* @return {CSSStyleSheet[]}
|
165
|
+
*/
|
166
|
+
static getCSSStyleSheet() {
|
167
|
+
return [PopperStyleSheet];
|
168
|
+
}
|
169
|
+
|
170
|
+
/**
|
171
|
+
* This method is called when the element is connected to the dom.
|
172
|
+
*
|
173
|
+
* @return {void}
|
174
|
+
*/
|
175
|
+
connectedCallback() {
|
176
|
+
super.connectedCallback();
|
177
|
+
|
178
|
+
const document = getDocument();
|
179
|
+
|
180
|
+
for (const [, type] of Object.entries(["click", "touch"])) {
|
181
|
+
// close on outside ui-events
|
182
|
+
document.addEventListener(type, this[closeEventHandler]);
|
183
|
+
}
|
184
|
+
|
185
|
+
updatePopper.call(this);
|
186
|
+
attachResizeObserver.call(this);
|
187
|
+
}
|
188
|
+
|
189
|
+
/**
|
190
|
+
* This method is called when the element is disconnected from the dom.
|
191
|
+
*
|
192
|
+
* @return {void}
|
193
|
+
*/
|
194
|
+
disconnectedCallback() {
|
195
|
+
super.disconnectedCallback();
|
196
|
+
|
197
|
+
// close on outside ui-events
|
198
|
+
for (const [, type] of Object.entries(["click", "touch"])) {
|
199
|
+
document.removeEventListener(type, this[closeEventHandler]);
|
200
|
+
}
|
201
|
+
|
202
|
+
disconnectResizeObserver.call(this);
|
203
|
+
}
|
204
|
+
|
205
|
+
/**
|
206
|
+
* With this method you can show the popper.
|
207
|
+
*
|
208
|
+
* @return {Popper}
|
209
|
+
*/
|
210
|
+
showDialog() {
|
211
|
+
show.call(this);
|
212
|
+
return this;
|
213
|
+
}
|
214
|
+
|
215
|
+
/**
|
216
|
+
* With this method you can hide the popper.
|
217
|
+
*
|
218
|
+
* @return {Popper}
|
219
|
+
*/
|
220
|
+
hideDialog() {
|
221
|
+
hide.call(this);
|
222
|
+
return this;
|
223
|
+
}
|
224
|
+
|
225
|
+
/**
|
226
|
+
* With this method you can toggle the popper.
|
227
|
+
*
|
228
|
+
* @return {Popper}
|
229
|
+
*/
|
230
|
+
toggleDialog() {
|
231
|
+
if (this[popperElementSymbol].style.display === STYLE_DISPLAY_MODE_BLOCK) {
|
232
|
+
this.hideDialog();
|
233
|
+
} else {
|
234
|
+
this.showDialog();
|
235
|
+
}
|
236
|
+
return this;
|
237
|
+
}
|
233
238
|
}
|
234
239
|
|
235
240
|
/**
|
@@ -237,38 +242,38 @@ class Popper extends CustomControl {
|
|
237
242
|
* @return {Popper}
|
238
243
|
*/
|
239
244
|
function initEventHandler() {
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
245
|
+
this[closeEventHandler] = (event) => {
|
246
|
+
const path = event.composedPath();
|
247
|
+
|
248
|
+
for (const [, element] of Object.entries(path)) {
|
249
|
+
if (element === this) {
|
250
|
+
return;
|
251
|
+
}
|
252
|
+
}
|
253
|
+
hide.call(this);
|
254
|
+
};
|
255
|
+
|
256
|
+
let modes = null;
|
257
|
+
const modeOption = this.getOption("mode");
|
258
|
+
|
259
|
+
if (typeof modeOption === "string") {
|
260
|
+
modes = modeOption.split(" ");
|
261
|
+
}
|
262
|
+
|
263
|
+
if (
|
264
|
+
modes === null ||
|
265
|
+
modes === undefined ||
|
266
|
+
isArray(modes) === false ||
|
267
|
+
modes.length === 0
|
268
|
+
) {
|
269
|
+
modes = ["manual"];
|
270
|
+
}
|
271
|
+
|
272
|
+
for (const [, mode] of Object.entries(modes)) {
|
273
|
+
initEventHandlerByMode.call(this, mode);
|
274
|
+
}
|
275
|
+
|
276
|
+
return this;
|
272
277
|
}
|
273
278
|
|
274
279
|
/**
|
@@ -278,160 +283,159 @@ function initEventHandler() {
|
|
278
283
|
* @throws Error
|
279
284
|
*/
|
280
285
|
function initEventHandlerByMode(mode) {
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
286
|
+
switch (mode) {
|
287
|
+
case "manual":
|
288
|
+
break;
|
289
|
+
|
290
|
+
case "focus":
|
291
|
+
this[buttonElementSymbol].addEventListener("focus", (event) => {
|
292
|
+
if (this.getOption("features.preventOpenEventSent") === true) {
|
293
|
+
event.preventDefault();
|
294
|
+
}
|
295
|
+
this.showDialog();
|
296
|
+
});
|
297
|
+
this[buttonElementSymbol].addEventListener("blur", (event) => {
|
298
|
+
if (this.getOption("features.preventOpenEventSent") === true) {
|
299
|
+
event.preventDefault();
|
300
|
+
}
|
301
|
+
this.hideDialog();
|
302
|
+
});
|
303
|
+
break;
|
304
|
+
|
305
|
+
case "click":
|
306
|
+
this[buttonElementSymbol].addEventListener("click", (event) => {
|
307
|
+
if (this.getOption("features.preventOpenEventSent") === true) {
|
308
|
+
event.preventDefault();
|
309
|
+
}
|
310
|
+
this.toggleDialog();
|
311
|
+
});
|
312
|
+
break;
|
313
|
+
case "enter":
|
314
|
+
this[buttonElementSymbol].addEventListener("mouseenter", (event) => {
|
315
|
+
if (this.getOption("features.preventOpenEventSent") === true) {
|
316
|
+
event.preventDefault();
|
317
|
+
}
|
318
|
+
this.showDialog();
|
319
|
+
});
|
320
|
+
break;
|
321
|
+
|
322
|
+
case "auto": // is hover
|
323
|
+
this[buttonElementSymbol].addEventListener("mouseenter", (event) => {
|
324
|
+
if (this.getOption("features.preventOpenEventSent") === true) {
|
325
|
+
event.preventDefault();
|
326
|
+
}
|
327
|
+
this.showDialog();
|
328
|
+
});
|
329
|
+
this[buttonElementSymbol].addEventListener("mouseleave", (event) => {
|
330
|
+
if (this.getOption("features.preventOpenEventSent") === true) {
|
331
|
+
event.preventDefault();
|
332
|
+
}
|
333
|
+
this.hideDialog();
|
334
|
+
});
|
335
|
+
break;
|
336
|
+
default:
|
337
|
+
throw new Error(`Unknown mode ${mode}`);
|
338
|
+
}
|
334
339
|
}
|
335
340
|
|
336
341
|
/**
|
337
342
|
* @private
|
338
343
|
*/
|
339
344
|
function attachResizeObserver() {
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
345
|
+
// against flickering
|
346
|
+
this[resizeObserverSymbol] = new ResizeObserver((entries) => {
|
347
|
+
if (this[timerCallbackSymbol] instanceof DeadMansSwitch) {
|
348
|
+
try {
|
349
|
+
this[timerCallbackSymbol].touch();
|
350
|
+
return;
|
351
|
+
} catch (e) {
|
352
|
+
delete this[timerCallbackSymbol];
|
353
|
+
}
|
354
|
+
}
|
355
|
+
|
356
|
+
this[timerCallbackSymbol] = new DeadMansSwitch(200, () => {
|
357
|
+
updatePopper.call(this);
|
358
|
+
});
|
359
|
+
});
|
360
|
+
|
361
|
+
this[resizeObserverSymbol].observe(this.parentElement);
|
357
362
|
}
|
358
363
|
|
359
364
|
function disconnectResizeObserver() {
|
360
|
-
|
361
|
-
|
362
|
-
|
365
|
+
if (this[resizeObserverSymbol] instanceof ResizeObserver) {
|
366
|
+
this[resizeObserverSymbol].disconnect();
|
367
|
+
}
|
363
368
|
}
|
364
369
|
|
365
370
|
/**
|
366
371
|
* @private
|
367
372
|
*/
|
368
373
|
function hide() {
|
369
|
-
|
374
|
+
const self = this;
|
370
375
|
|
371
|
-
|
372
|
-
|
373
|
-
|
376
|
+
fireCustomEvent(self, "monster-popper-hide", {
|
377
|
+
self,
|
378
|
+
});
|
374
379
|
|
375
|
-
|
376
|
-
|
380
|
+
self[popperElementSymbol].style.display = "none";
|
381
|
+
removeAttributeToken(self[controlElementSymbol], "class", "open");
|
377
382
|
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
+
setTimeout(() => {
|
384
|
+
fireCustomEvent(self, "monster-popper-hidden", {
|
385
|
+
self,
|
386
|
+
});
|
387
|
+
}, 0);
|
383
388
|
}
|
384
389
|
|
385
390
|
/**
|
386
391
|
* @private
|
387
|
-
* @this PopperButton
|
388
392
|
*/
|
389
393
|
function show() {
|
390
|
-
|
394
|
+
const self = this;
|
391
395
|
|
392
|
-
|
393
|
-
|
394
|
-
|
396
|
+
if (self.getOption("disabled", false) === true) {
|
397
|
+
return;
|
398
|
+
}
|
395
399
|
|
396
|
-
|
397
|
-
|
398
|
-
|
400
|
+
if (self[popperElementSymbol].style.display === STYLE_DISPLAY_MODE_BLOCK) {
|
401
|
+
return;
|
402
|
+
}
|
399
403
|
|
400
|
-
|
401
|
-
|
402
|
-
|
404
|
+
fireCustomEvent(self, "monster-popper-open", {
|
405
|
+
self,
|
406
|
+
});
|
403
407
|
|
404
|
-
|
405
|
-
|
408
|
+
self[popperElementSymbol].style.visibility = "hidden";
|
409
|
+
self[popperElementSymbol].style.display = STYLE_DISPLAY_MODE_BLOCK;
|
406
410
|
|
407
|
-
|
408
|
-
|
411
|
+
addAttributeToken(self[controlElementSymbol], "class", "open");
|
412
|
+
updatePopper.call(self);
|
409
413
|
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
414
|
+
setTimeout(() => {
|
415
|
+
fireCustomEvent(self, "monster-popper-opened", {
|
416
|
+
self,
|
417
|
+
});
|
418
|
+
}, 0);
|
415
419
|
}
|
416
420
|
|
417
421
|
/**
|
418
422
|
* @private
|
419
423
|
*/
|
420
424
|
function updatePopper() {
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
425
|
+
if (this[popperElementSymbol].style.display !== STYLE_DISPLAY_MODE_BLOCK) {
|
426
|
+
return;
|
427
|
+
}
|
428
|
+
|
429
|
+
if (this.getOption("disabled", false) === true) {
|
430
|
+
return;
|
431
|
+
}
|
432
|
+
|
433
|
+
positionPopper.call(
|
434
|
+
this,
|
435
|
+
this[controlElementSymbol],
|
436
|
+
this[popperElementSymbol],
|
437
|
+
this.getOption("popper", {}),
|
438
|
+
);
|
435
439
|
}
|
436
440
|
|
437
441
|
/**
|
@@ -439,19 +443,19 @@ function updatePopper() {
|
|
439
443
|
* @return {Popper}
|
440
444
|
*/
|
441
445
|
function initControlReferences() {
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
446
|
+
this[controlElementSymbol] = this.shadowRoot.querySelector(
|
447
|
+
`[${ATTRIBUTE_ROLE}=control]`,
|
448
|
+
);
|
449
|
+
this[buttonElementSymbol] = this.shadowRoot.querySelector(
|
450
|
+
`[${ATTRIBUTE_ROLE}=button]`,
|
451
|
+
);
|
452
|
+
this[popperElementSymbol] = this.shadowRoot.querySelector(
|
453
|
+
`[${ATTRIBUTE_ROLE}=popper]`,
|
454
|
+
);
|
455
|
+
this[arrowElementSymbol] = this.shadowRoot.querySelector(
|
456
|
+
`[${ATTRIBUTE_ROLE}=arrow]`,
|
457
|
+
);
|
458
|
+
return this;
|
455
459
|
}
|
456
460
|
|
457
461
|
/**
|
@@ -459,8 +463,8 @@ function initControlReferences() {
|
|
459
463
|
* @return {string}
|
460
464
|
*/
|
461
465
|
function getTemplate() {
|
462
|
-
|
463
|
-
|
466
|
+
// language=HTML
|
467
|
+
return `
|
464
468
|
<div data-monster-role="control" part="control">
|
465
469
|
<slot name="button" data-monster-role="button"></slot>
|
466
470
|
|