@schukai/monster 3.51.5 → 3.52.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +17 -0
- package/README.md +15 -12
- package/example/components/form/button.mjs +10 -0
- package/example/components/form/select.mjs +25 -0
- package/example/components/form/tree-select.mjs +27 -0
- package/example/components/host/host.mjs +0 -0
- package/example/components/notify/message.mjs +4 -0
- package/example/components/notify/notify.mjs +4 -0
- package/example/components/state/log.mjs +0 -0
- package/example/components/state/state.mjs +0 -0
- package/package.json +6 -2
- package/source/components/constants.mjs +132 -0
- package/source/components/datatable/columnbar.mjs +310 -0
- package/source/components/datatable/constants.mjs +121 -0
- package/source/components/datatable/dataset.mjs +219 -0
- package/source/components/datatable/datasource/dom.mjs +186 -0
- package/source/components/datatable/datasource/namespace.mjs +13 -0
- package/source/components/datatable/datasource/rest.mjs +400 -0
- package/source/components/datatable/datasource.mjs +102 -0
- package/source/components/datatable/datatable/header.mjs +268 -0
- package/source/components/datatable/datatable/namespace.mjs +13 -0
- package/source/components/datatable/datatable.mjs +789 -0
- package/source/components/datatable/embedded-pagination.mjs +113 -0
- package/source/components/datatable/filter/abstract-base.mjs +31 -0
- package/source/components/datatable/filter/date-range.mjs +1041 -0
- package/source/components/datatable/filter/input.mjs +175 -0
- package/source/components/datatable/filter/namespace.mjs +13 -0
- package/source/components/datatable/filter/range.mjs +671 -0
- package/source/components/datatable/filter/select.mjs +65 -0
- package/source/components/datatable/filter/settings.mjs +116 -0
- package/source/components/datatable/filter-button.mjs +98 -0
- package/source/components/datatable/filter.mjs +929 -0
- package/source/components/datatable/namespace.mjs +11 -0
- package/source/components/datatable/pagination.mjs +456 -0
- package/source/components/datatable/style/column-bar.pcss +123 -0
- package/source/components/datatable/style/dataset.pcss +13 -0
- package/source/components/datatable/style/datasource.pcss +16 -0
- package/source/components/datatable/style/datatable.pcss +239 -0
- package/source/components/datatable/style/embedded-pagination.pcss +101 -0
- package/source/components/datatable/style/filter-button.pcss +22 -0
- package/source/components/datatable/style/filter-controls-defaults.pcss +46 -0
- package/source/components/datatable/style/filter-date-range.pcss +9 -0
- package/source/components/datatable/style/filter-range.pcss +5 -0
- package/source/components/datatable/style/filter.pcss +156 -0
- package/source/components/datatable/style/pagination.pcss +59 -0
- package/source/components/datatable/style/select-filter.pcss +27 -0
- package/source/components/datatable/stylesheet/column-bar.mjs +33 -0
- package/source/components/datatable/stylesheet/dataset.mjs +33 -0
- package/source/components/datatable/stylesheet/datasource.mjs +33 -0
- package/source/components/datatable/stylesheet/datatable.mjs +33 -0
- package/source/components/datatable/stylesheet/embedded-pagination.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-button.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-date-range.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-range.mjs +33 -0
- package/source/components/datatable/stylesheet/filter.mjs +33 -0
- package/source/components/datatable/stylesheet/namespace.mjs +13 -0
- package/source/components/datatable/stylesheet/pagination.mjs +33 -0
- package/source/components/datatable/stylesheet/select-filter.mjs +33 -0
- package/source/components/datatable/util.mjs +60 -0
- package/source/components/form/action-button.mjs +262 -0
- package/source/components/form/api-button.mjs +515 -0
- package/source/components/form/button-bar.mjs +739 -0
- package/source/components/form/button.mjs +350 -0
- package/source/components/form/confirm-button.mjs +330 -0
- package/source/components/form/constants.mjs +111 -0
- package/source/components/form/context-help.mjs +123 -0
- package/source/components/form/events.mjs +84 -0
- package/source/components/form/form.mjs +601 -0
- package/source/components/form/message-state-button.mjs +396 -0
- package/source/components/form/namespace.mjs +13 -0
- package/source/components/form/popper-button.mjs +435 -0
- package/source/components/form/popper.mjs +487 -0
- package/source/components/form/reload.mjs +360 -0
- package/source/components/form/select.mjs +2314 -0
- package/source/components/form/shadow-reload.mjs +137 -0
- package/source/components/form/state-button.mjs +182 -0
- package/source/components/form/style/action-button.pcss +41 -0
- package/source/components/form/style/api-button.pcss +0 -0
- package/source/components/form/style/button-bar.pcss +51 -0
- package/source/components/form/style/button.pcss +8 -0
- package/source/components/form/style/confirm-button.pcss +17 -0
- package/source/components/form/style/context-help.pcss +16 -0
- package/source/components/form/style/form.pcss +10 -0
- package/source/components/form/style/message-state-button.pcss +10 -0
- package/source/components/form/style/popper-button.pcss +16 -0
- package/source/components/form/style/popper.pcss +8 -0
- package/source/components/form/style/select.pcss +265 -0
- package/source/components/form/style/state-button.pcss +116 -0
- package/source/components/form/style/tabs.pcss +170 -0
- package/source/components/form/style/tree-select.pcss +81 -0
- package/source/components/form/stylesheet/action-button.mjs +33 -0
- package/source/components/form/stylesheet/api-button.mjs +33 -0
- package/source/components/form/stylesheet/button-bar.mjs +33 -0
- package/source/components/form/stylesheet/button.mjs +33 -0
- package/source/components/form/stylesheet/confirm-button.mjs +33 -0
- package/source/components/form/stylesheet/context-help.mjs +33 -0
- package/source/components/form/stylesheet/form.mjs +33 -0
- package/source/components/form/stylesheet/message-state-button.mjs +33 -0
- package/source/components/form/stylesheet/namespace.mjs +13 -0
- package/source/components/form/stylesheet/popper-button.mjs +33 -0
- package/source/components/form/stylesheet/popper.mjs +33 -0
- package/source/components/form/stylesheet/select.mjs +33 -0
- package/source/components/form/stylesheet/state-button.mjs +33 -0
- package/source/components/form/stylesheet/tabs.mjs +33 -0
- package/source/components/form/stylesheet/tree-select.mjs +33 -0
- package/source/components/form/tabs.mjs +1011 -0
- package/source/components/form/template.mjs +373 -0
- package/source/components/form/tree-select.mjs +527 -0
- package/source/components/form/types/namespace.mjs +13 -0
- package/source/components/form/types/state.mjs +93 -0
- package/source/components/form/util/fetch.mjs +133 -0
- package/source/components/form/util/floating-ui.mjs +245 -0
- package/source/components/form/util/namespace.mjs +13 -0
- package/source/components/form/util/popper.mjs +49 -0
- package/source/components/host/call-button.mjs +236 -0
- package/source/components/host/collapse.mjs +526 -0
- package/source/components/host/config-manager.mjs +304 -0
- package/source/components/host/constants.mjs +18 -0
- package/source/components/host/details.mjs +268 -0
- package/source/components/host/events.mjs +131 -0
- package/source/components/host/host.mjs +420 -0
- package/source/components/host/namespace.mjs +13 -0
- package/source/components/host/overlay.mjs +339 -0
- package/source/components/host/style/call-button.pcss +36 -0
- package/source/components/host/style/collapse.pcss +67 -0
- package/source/components/host/style/config-manager.pcss +5 -0
- package/source/components/host/style/details.pcss +68 -0
- package/source/components/host/style/host.pcss +43 -0
- package/source/components/host/style/overlay.pcss +73 -0
- package/source/components/host/style/toggle-button.pcss +36 -0
- package/source/components/host/style/viewer.pcss +13 -0
- package/source/components/host/stylesheet/call-button.mjs +33 -0
- package/source/components/host/stylesheet/collapse.mjs +33 -0
- package/source/components/host/stylesheet/config-manager.mjs +33 -0
- package/source/components/host/stylesheet/details.mjs +33 -0
- package/source/components/host/stylesheet/host.mjs +33 -0
- package/source/components/host/stylesheet/namespace.mjs +13 -0
- package/source/components/host/stylesheet/overlay.mjs +33 -0
- package/source/components/host/stylesheet/toggle-button.mjs +33 -0
- package/source/components/host/stylesheet/viewer.mjs +33 -0
- package/source/components/host/toggle-button.mjs +88 -0
- package/source/components/host/util.mjs +23 -0
- package/source/components/host/viewer.mjs +309 -0
- package/source/components/namespace.mjs +14 -0
- package/source/components/notify/constants.mjs +15 -0
- package/source/components/notify/events.mjs +15 -0
- package/source/components/notify/message.mjs +374 -0
- package/source/components/notify/namespace.mjs +15 -0
- package/source/components/notify/notify.mjs +236 -0
- package/source/components/notify/style/message.pcss +57 -0
- package/source/components/notify/style/notify.pcss +118 -0
- package/source/components/notify/stylesheet/message.mjs +33 -0
- package/source/components/notify/stylesheet/namespace.mjs +15 -0
- package/source/components/notify/stylesheet/notify.mjs +33 -0
- package/source/components/state/log/entry.mjs +126 -0
- package/source/components/state/log/namespace.mjs +13 -0
- package/source/components/state/log.mjs +275 -0
- package/source/components/state/namespace.mjs +13 -0
- package/source/components/state/state.mjs +131 -0
- package/source/components/state/style/log.pcss +111 -0
- package/source/components/state/style/state.pcss +113 -0
- package/source/components/state/stylesheet/log.mjs +33 -0
- package/source/components/state/stylesheet/state.mjs +33 -0
- package/source/components/style/badge.pcss +92 -0
- package/source/components/style/border.pcss +77 -0
- package/source/components/style/button.pcss +105 -0
- package/source/components/style/card.pcss +108 -0
- package/source/components/style/color.pcss +257 -0
- package/source/components/style/common.pcss +103 -0
- package/source/components/style/control.pcss +11 -0
- package/source/components/style/data-grid.pcss +43 -0
- package/source/components/style/display.pcss +42 -0
- package/source/components/style/floating-ui.pcss +33 -0
- package/source/components/style/form.pcss +5 -0
- package/source/components/style/host.pcss +15 -0
- package/source/components/style/link.pcss +63 -0
- package/source/components/style/mixin/badge.pcss +18 -0
- package/source/components/style/mixin/button.pcss +54 -0
- package/source/components/style/mixin/form.pcss +247 -0
- package/source/components/style/mixin/hover.pcss +8 -0
- package/source/components/style/mixin/media.pcss +107 -0
- package/source/components/style/mixin/property.pcss +288 -0
- package/source/components/style/mixin/skeleton.pcss +26 -0
- package/source/components/style/mixin/spinner.pcss +24 -0
- package/source/components/style/mixin/typography.pcss +52 -0
- package/source/components/style/normalize.pcss +14 -0
- package/source/components/style/popper.pcss +78 -0
- package/source/components/style/property.pcss +17 -0
- package/source/components/style/ripple.pcss +14 -0
- package/source/components/style/skeleton.pcss +28 -0
- package/source/components/style/space.pcss +47 -0
- package/source/components/style/spinner.pcss +6 -0
- package/source/components/style/table.pcss +46 -0
- package/source/components/style/theme.pcss +119 -0
- package/source/components/style/typography.pcss +131 -0
- package/source/components/stylesheet/badge.mjs +33 -0
- package/source/components/stylesheet/border.mjs +33 -0
- package/source/components/stylesheet/button.mjs +33 -0
- package/source/components/stylesheet/card.mjs +33 -0
- package/source/components/stylesheet/color.mjs +33 -0
- package/source/components/stylesheet/common.mjs +33 -0
- package/source/components/stylesheet/control.mjs +33 -0
- package/source/components/stylesheet/data-grid.mjs +33 -0
- package/source/components/stylesheet/display.mjs +33 -0
- package/source/components/stylesheet/floating-ui.mjs +33 -0
- package/source/components/stylesheet/form.mjs +33 -0
- package/source/components/stylesheet/host.mjs +33 -0
- package/source/components/stylesheet/link.mjs +33 -0
- package/source/components/stylesheet/namespace.mjs +13 -0
- package/source/components/stylesheet/normalize.mjs +33 -0
- package/source/components/stylesheet/popper.mjs +33 -0
- package/source/components/stylesheet/property.mjs +33 -0
- package/source/components/stylesheet/ripple.mjs +33 -0
- package/source/components/stylesheet/skeleton.mjs +33 -0
- package/source/components/stylesheet/space.mjs +33 -0
- package/source/components/stylesheet/spinner.mjs +33 -0
- package/source/components/stylesheet/table.mjs +33 -0
- package/source/components/stylesheet/theme.mjs +33 -0
- package/source/components/stylesheet/tree-menu.mjs +33 -0
- package/source/components/stylesheet/typography.mjs +33 -0
- package/source/components/tree-menu/namespace.mjs +13 -0
- package/source/components/tree-menu/style/tree-menu.pcss +107 -0
- package/source/components/tree-menu/stylesheet/namespace.mjs +13 -0
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +33 -0
- package/source/components/tree-menu/tree-menu.mjs +660 -0
- package/source/constraints/abstract.mjs +17 -24
- package/source/constraints/abstractoperator.mjs +27 -22
- package/source/constraints/andoperator.mjs +20 -17
- package/source/constraints/invalid.mjs +17 -17
- package/source/constraints/isarray.mjs +20 -20
- package/source/constraints/isobject.mjs +20 -20
- package/source/constraints/oroperator.mjs +45 -45
- package/source/constraints/valid.mjs +17 -17
- package/source/data/buildmap.mjs +108 -103
- package/source/data/buildtree.mjs +59 -57
- package/source/data/datasource/dom.mjs +80 -84
- package/source/data/datasource/namespace.mjs +1 -1
- package/source/data/datasource/server/restapi/data-fetch-error.mjs +27 -25
- package/source/data/datasource/server/restapi/writeerror.mjs +34 -32
- package/source/data/datasource/server/restapi.mjs +176 -177
- package/source/data/datasource/server/webconnect.mjs +150 -156
- package/source/data/datasource/server.mjs +58 -59
- package/source/data/datasource/storage/localstorage.mjs +25 -24
- package/source/data/datasource/storage/sessionstorage.mjs +28 -25
- package/source/data/datasource/storage.mjs +74 -73
- package/source/data/datasource.mjs +176 -167
- package/source/data/diff.mjs +98 -97
- package/source/data/extend.mjs +42 -42
- package/source/data/pathfinder.mjs +301 -288
- package/source/data/pipe.mjs +36 -36
- package/source/data/transformer.mjs +742 -726
- package/source/dom/assembler.mjs +44 -44
- package/source/dom/attributes.mjs +142 -122
- package/source/dom/constants.mjs +62 -58
- package/source/dom/customcontrol.mjs +299 -299
- package/source/dom/customelement.mjs +843 -806
- package/source/dom/dimension.mjs +56 -46
- package/source/dom/events.mjs +74 -69
- package/source/dom/focusmanager.mjs +175 -175
- package/source/dom/locale.mjs +28 -28
- package/source/dom/ready.mjs +13 -13
- package/source/dom/resource/data.mjs +117 -111
- package/source/dom/resource/link/stylesheet.mjs +16 -16
- package/source/dom/resource/link.mjs +94 -96
- package/source/dom/resource/script.mjs +72 -74
- package/source/dom/resource.mjs +174 -172
- package/source/dom/resourcemanager.mjs +152 -156
- package/source/dom/slotted.mjs +78 -80
- package/source/dom/template.mjs +126 -112
- package/source/dom/theme.mjs +35 -35
- package/source/dom/updater.mjs +673 -651
- package/source/dom/util/extract-keys.mjs +34 -22
- package/source/dom/util/init-options-from-attributes.mjs +46 -38
- package/source/dom/util/namespace.mjs +13 -0
- package/source/dom/util/set-option-from-attribute.mjs +35 -29
- package/source/dom/util.mjs +112 -81
- package/source/dom/worker/factory.mjs +83 -83
- package/source/i18n/formatter.mjs +75 -73
- package/source/i18n/locale.mjs +146 -144
- package/source/i18n/provider.mjs +70 -64
- package/source/i18n/providers/embed.mjs +136 -127
- package/source/i18n/providers/fetch.mjs +84 -76
- package/source/i18n/translations.mjs +205 -195
- package/source/logging/handler/console.mjs +36 -36
- package/source/logging/handler.mjs +140 -140
- package/source/logging/logentry.mjs +25 -25
- package/source/logging/logger.mjs +177 -175
- package/source/math/random.mjs +63 -59
- package/source/monster.mjs +223 -103
- package/source/net/webconnect/message.mjs +31 -31
- package/source/net/webconnect.mjs +278 -271
- package/source/text/bracketed-key-value-hash.mjs +182 -179
- package/source/text/formatter.mjs +235 -210
- package/source/text/generate-range-comparison-expression.mjs +56 -34
- package/source/text/namespace.mjs +1 -1
- package/source/types/base.mjs +69 -61
- package/source/types/basewithoptions.mjs +46 -46
- package/source/types/binary.mjs +20 -20
- package/source/types/dataurl.mjs +96 -90
- package/source/types/global.mjs +45 -39
- package/source/types/id.mjs +25 -25
- package/source/types/internal.mjs +115 -114
- package/source/types/is.mjs +56 -40
- package/source/types/mediatype.mjs +119 -119
- package/source/types/namespace.mjs +1 -1
- package/source/types/node.mjs +160 -150
- package/source/types/nodelist.mjs +94 -96
- package/source/types/noderecursiveiterator.mjs +50 -50
- package/source/types/observablequeue.mjs +73 -73
- package/source/types/observer.mjs +104 -104
- package/source/types/observerlist.mjs +66 -66
- package/source/types/proxyobserver.mjs +210 -210
- package/source/types/queue.mjs +63 -63
- package/source/types/randomid.mjs +13 -13
- package/source/types/regex.mjs +3 -1
- package/source/types/stack.mjs +64 -64
- package/source/types/tokenlist.mjs +206 -205
- package/source/types/typeof.mjs +12 -10
- package/source/types/uniquequeue.mjs +48 -48
- package/source/types/uuid.mjs +32 -32
- package/source/types/validate.mjs +67 -67
- package/source/types/version.mjs +115 -105
- package/source/util/clone.mjs +103 -91
- package/source/util/comparator.mjs +97 -97
- package/source/util/deadmansswitch.mjs +40 -44
- package/source/util/freeze.mjs +10 -9
- package/source/util/namespace.mjs +1 -1
- package/source/util/processing.mjs +104 -105
- package/source/util/runtime.mjs +56 -44
- package/source/util/trimspaces.mjs +24 -24
- package/test/cases/components/form/button.mjs +122 -0
- package/test/cases/components/form/confirm-button.mjs +127 -0
- package/test/cases/components/form/form.mjs +317 -0
- package/test/cases/components/form/reload.mjs +188 -0
- package/test/cases/components/form/select.mjs +229 -0
- package/test/cases/components/form/state-button.mjs +130 -0
- package/test/cases/components/form/tabs.mjs +98 -0
- package/test/cases/components/form/template.mjs +189 -0
- package/test/cases/components/form/tree-select.mjs +216 -0
- package/test/cases/components/host/details.mjs +68 -0
- package/test/cases/components/host/host.mjs +70 -0
- package/test/cases/components/host/overlay.mjs +60 -0
- package/test/cases/components/host/util.mjs +79 -0
- package/test/cases/components/notify/message.mjs +39 -0
- package/test/cases/components/notify/notify.mjs +89 -0
- package/test/cases/dom/customcontrol.mjs +5 -4
- package/test/cases/math/random.mjs +0 -1
- package/test/cases/monster.mjs +1 -1
- package/test/cases/net/webconnect/message.mjs +0 -1
- package/test/cases/types/node.mjs +1 -1
- package/test/util/chai-dom.mjs +2 -2
- package/test/util/intersection-mock.mjs +69 -0
- package/test/util/jsdom.mjs +41 -25
- package/test/util/localstorage.mjs +1 -0
- package/test/util/resize-observer.mjs +29 -0
- package/test/util/websocket.mjs +4 -1
- package/test/web/import.js +16 -1
- package/test/web/test.html +28 -5
- package/test/web/tests.js +30398 -17879
@@ -0,0 +1,339 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2023 schukai GmbH
|
3
|
+
* SPDX-License-Identifier: AGPL-3.0
|
4
|
+
*/
|
5
|
+
|
6
|
+
import {
|
7
|
+
assembleMethodSymbol,
|
8
|
+
CustomElement,
|
9
|
+
registerCustomElement,
|
10
|
+
} from "../../dom/customelement.mjs";
|
11
|
+
import "../notify/notify.mjs";
|
12
|
+
import { OverlayStyleSheet } from "./stylesheet/overlay.mjs";
|
13
|
+
import { ATTRIBUTE_ROLE } from "../../dom/constants.mjs";
|
14
|
+
import {
|
15
|
+
findTargetElementFromEvent,
|
16
|
+
fireCustomEvent,
|
17
|
+
} from "../../dom/events.mjs";
|
18
|
+
import { instanceSymbol } from "../../constants.mjs";
|
19
|
+
|
20
|
+
export { Overlay };
|
21
|
+
|
22
|
+
/**
|
23
|
+
* @private
|
24
|
+
* @type {symbol}
|
25
|
+
*/
|
26
|
+
const overlayElementSymbol = Symbol("overlayElement");
|
27
|
+
|
28
|
+
/**
|
29
|
+
* @private
|
30
|
+
* @type {symbol}
|
31
|
+
*/
|
32
|
+
const overlayCloseElementSymbol = Symbol("overlayCloserElement");
|
33
|
+
|
34
|
+
/**
|
35
|
+
* @private
|
36
|
+
* @type {symbol}
|
37
|
+
*/
|
38
|
+
const overlayOpenElementSymbol = Symbol("overlayOpenElement");
|
39
|
+
|
40
|
+
/**
|
41
|
+
* @private
|
42
|
+
* @type {symbol}
|
43
|
+
*/
|
44
|
+
const closeEventHandlerSymbol = Symbol("closeEventHandler");
|
45
|
+
|
46
|
+
/**
|
47
|
+
* @private
|
48
|
+
* @type {symbol}
|
49
|
+
*/
|
50
|
+
const openEventHandlerSymbol = Symbol("openEventHandler");
|
51
|
+
|
52
|
+
/**
|
53
|
+
* @private
|
54
|
+
* @type {string}
|
55
|
+
*/
|
56
|
+
const ATTRIBUTE_VALUE_OVERLAY_OPEN = "overlay-open";
|
57
|
+
|
58
|
+
/**
|
59
|
+
* The Overlay component is used to show an overlay and a button to open the overlay.
|
60
|
+
*
|
61
|
+
* <img src="./images/overlay.png">
|
62
|
+
*
|
63
|
+
* Dependencies: the system uses functions of the [monsterjs](https://monsterjs.org/) library
|
64
|
+
*
|
65
|
+
* You can create this control either by specifying the HTML tag <monster-overlay />` directly in the HTML or using
|
66
|
+
* Javascript via the `document.createElement('monster-overlay');` method.
|
67
|
+
*
|
68
|
+
* ```html
|
69
|
+
* <monster-overlay></monster-overlay>
|
70
|
+
* ```
|
71
|
+
*
|
72
|
+
* Or you can create this CustomControl directly in Javascript:
|
73
|
+
*
|
74
|
+
* ```js
|
75
|
+
* import '@schukai/component-state/source/overlay.mjs';
|
76
|
+
* document.createElement('monster-overlay');
|
77
|
+
* ```
|
78
|
+
*
|
79
|
+
* The Body should have a class "hidden" to ensure that the styles are applied correctly.
|
80
|
+
*
|
81
|
+
* ```css
|
82
|
+
* body.hidden {
|
83
|
+
* visibility: hidden;
|
84
|
+
* }
|
85
|
+
* ```
|
86
|
+
*
|
87
|
+
* @startuml overlay.png
|
88
|
+
* skinparam monochrome true
|
89
|
+
* skinparam shadowing false
|
90
|
+
* HTMLElement <|-- CustomElement
|
91
|
+
* CustomElement <|-- CustomControl
|
92
|
+
* CustomControl <|-- Overlay
|
93
|
+
* @enduml
|
94
|
+
*
|
95
|
+
* @copyright schukai GmbH
|
96
|
+
* @memberOf Monster.Components.Host
|
97
|
+
* @summary A simple overlay component
|
98
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-before-open
|
99
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-open
|
100
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-before-close
|
101
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-closed
|
102
|
+
*/
|
103
|
+
class Overlay extends CustomElement {
|
104
|
+
/**
|
105
|
+
* This method is called by the `instanceof` operator.
|
106
|
+
* @returns {symbol}
|
107
|
+
*/
|
108
|
+
static get [instanceSymbol]() {
|
109
|
+
return Symbol.for("@schukai/component-host/overlay@@instance");
|
110
|
+
}
|
111
|
+
|
112
|
+
/**
|
113
|
+
* To set the options via the html tag the attribute `data-monster-options` must be used.
|
114
|
+
* @see {@link https://monsterjs.org/en/doc/#configurate-a-monster-control}
|
115
|
+
*
|
116
|
+
* The individual configuration values can be found in the table.
|
117
|
+
*
|
118
|
+
* @property {Object} templates Template definitions
|
119
|
+
* @property {string} templates.main Main template
|
120
|
+
* @property {Object} container Container definitions
|
121
|
+
* @property {array} container Container definitions
|
122
|
+
* @property {string} container[].name Name of the container
|
123
|
+
* @property {string} container[].content Content of the container
|
124
|
+
* @property {string} container[].class Css class of the container
|
125
|
+
* @property {Object} classes Css classes
|
126
|
+
* @property {string} classes.body Css class to hide the body. This class is removed when the component is ready.
|
127
|
+
* @property {string} classes.overlay Css class to hide the overlay. This class is removed when the component is ready.
|
128
|
+
* @property {Object} features Feature definitions
|
129
|
+
* @property {boolean} features.escapeKey If true the overlay can be closed with the escape key
|
130
|
+
*/
|
131
|
+
get defaults() {
|
132
|
+
return Object.assign({}, super.defaults, {
|
133
|
+
templates: {
|
134
|
+
main: getTemplate(),
|
135
|
+
},
|
136
|
+
overlay: [
|
137
|
+
{
|
138
|
+
name: "content",
|
139
|
+
content: "<slot></slot>",
|
140
|
+
class: "",
|
141
|
+
},
|
142
|
+
],
|
143
|
+
classes: {
|
144
|
+
body: "hidden",
|
145
|
+
overlay: "hide-empty",
|
146
|
+
},
|
147
|
+
features: {
|
148
|
+
escapeKey: true,
|
149
|
+
},
|
150
|
+
});
|
151
|
+
}
|
152
|
+
|
153
|
+
/**
|
154
|
+
* @private
|
155
|
+
*/
|
156
|
+
connectedCallback() {
|
157
|
+
super.connectedCallback();
|
158
|
+
|
159
|
+
/**
|
160
|
+
* show the scroll bar always
|
161
|
+
* @type {string}
|
162
|
+
*/
|
163
|
+
document.documentElement.style.overflowY = "scroll";
|
164
|
+
|
165
|
+
const classNames = this.getOption("classes.body");
|
166
|
+
|
167
|
+
if (document.body.classList.contains(classNames)) {
|
168
|
+
document.body.classList.remove(classNames);
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
/**
|
173
|
+
*
|
174
|
+
* @returns {Monster.Components.Host.Overlay}
|
175
|
+
*/
|
176
|
+
[assembleMethodSymbol]() {
|
177
|
+
super[assembleMethodSymbol]();
|
178
|
+
|
179
|
+
initControlReferences.call(this);
|
180
|
+
initEventHandler.call(this);
|
181
|
+
}
|
182
|
+
|
183
|
+
/**
|
184
|
+
*
|
185
|
+
* @returns {Monster.Components.Host.Overlay}
|
186
|
+
*/
|
187
|
+
toggle() {
|
188
|
+
if (this[overlayElementSymbol].classList.contains("open")) {
|
189
|
+
this.close();
|
190
|
+
} else {
|
191
|
+
this.open();
|
192
|
+
}
|
193
|
+
return this;
|
194
|
+
}
|
195
|
+
|
196
|
+
/**
|
197
|
+
* @returns {Monster.Components.Host.Overlay}
|
198
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-before-open
|
199
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-open
|
200
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-before-close
|
201
|
+
* @fires Monster.Components.Host.Overlay.event:monster-overlay-closed
|
202
|
+
*/
|
203
|
+
open() {;
|
204
|
+
fireCustomEvent(this, "monster-overlay-before-open", {});
|
205
|
+
|
206
|
+
this[overlayElementSymbol].classList.remove("hide-empty");
|
207
|
+
|
208
|
+
setTimeout(() => {
|
209
|
+
this[overlayElementSymbol].classList.add("open");
|
210
|
+
setTimeout(() => {
|
211
|
+
fireCustomEvent(this, "monster-overlay-open", {});
|
212
|
+
}, 0);
|
213
|
+
}, 0);
|
214
|
+
|
215
|
+
return this;
|
216
|
+
}
|
217
|
+
|
218
|
+
/**
|
219
|
+
* @returns {Monster.Components.Host.Overlay}
|
220
|
+
*/
|
221
|
+
close() {;
|
222
|
+
fireCustomEvent(this, "monster-overlay-before-close", {});
|
223
|
+
setTimeout(() => {
|
224
|
+
this[overlayElementSymbol].classList.remove("open");
|
225
|
+
setTimeout(() => {
|
226
|
+
fireCustomEvent(this, "monster-overlay-closed", {});
|
227
|
+
}, 0);
|
228
|
+
}, 0);
|
229
|
+
return this;
|
230
|
+
}
|
231
|
+
|
232
|
+
/**
|
233
|
+
*
|
234
|
+
* @return {string}
|
235
|
+
*/
|
236
|
+
static getTag() {
|
237
|
+
return "monster-overlay";
|
238
|
+
}
|
239
|
+
|
240
|
+
/**
|
241
|
+
* @return {CSSStyleSheet[]}
|
242
|
+
*/
|
243
|
+
static getCSSStyleSheet() {
|
244
|
+
return [OverlayStyleSheet];
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
/**
|
249
|
+
* @private
|
250
|
+
* @return {Select}
|
251
|
+
* @throws {Error} no shadow-root is defined
|
252
|
+
*/
|
253
|
+
function initControlReferences() {;
|
254
|
+
|
255
|
+
if (!this.shadowRoot) {
|
256
|
+
throw new Error("no shadow-root is defined");
|
257
|
+
}
|
258
|
+
|
259
|
+
this[overlayElementSymbol] = this.shadowRoot.getElementById("overlay");
|
260
|
+
this[overlayCloseElementSymbol] = this.shadowRoot.querySelector(
|
261
|
+
"[data-monster-role=overlay-close]",
|
262
|
+
);
|
263
|
+
this[overlayOpenElementSymbol] = this.shadowRoot.querySelector(
|
264
|
+
"[data-monster-role=overlay-open]",
|
265
|
+
);
|
266
|
+
}
|
267
|
+
|
268
|
+
/**
|
269
|
+
* @private
|
270
|
+
*/
|
271
|
+
function initEventHandler() {;
|
272
|
+
|
273
|
+
/**
|
274
|
+
* @param {Event} event
|
275
|
+
*/
|
276
|
+
this[closeEventHandlerSymbol] = (event) => {
|
277
|
+
this.close();
|
278
|
+
};
|
279
|
+
|
280
|
+
this[overlayCloseElementSymbol].addEventListener(
|
281
|
+
"click",
|
282
|
+
this[closeEventHandlerSymbol],
|
283
|
+
);
|
284
|
+
|
285
|
+
/**
|
286
|
+
* @param {Event} event
|
287
|
+
*/
|
288
|
+
this[openEventHandlerSymbol] = (event) => {
|
289
|
+
const element = findTargetElementFromEvent(
|
290
|
+
event,
|
291
|
+
ATTRIBUTE_ROLE,
|
292
|
+
ATTRIBUTE_VALUE_OVERLAY_OPEN,
|
293
|
+
);
|
294
|
+
if (element) {
|
295
|
+
this.open();
|
296
|
+
}
|
297
|
+
};
|
298
|
+
|
299
|
+
this.addEventListener("click", this[openEventHandlerSymbol]);
|
300
|
+
|
301
|
+
if (this.getOption("features.escapeKey") === true) {
|
302
|
+
this.addEventListener("keydown", (event) => {
|
303
|
+
if (event.key === "Escape") {
|
304
|
+
const isNotCombinedKey = !(
|
305
|
+
event.ctrlKey ||
|
306
|
+
event.altKey ||
|
307
|
+
event.shiftKey
|
308
|
+
);
|
309
|
+
if (isNotCombinedKey) {
|
310
|
+
this.toggleOverlay();
|
311
|
+
}
|
312
|
+
}
|
313
|
+
});
|
314
|
+
}
|
315
|
+
|
316
|
+
return this;
|
317
|
+
}
|
318
|
+
|
319
|
+
/**
|
320
|
+
* @private
|
321
|
+
* @return {string}
|
322
|
+
*/
|
323
|
+
function getTemplate() {
|
324
|
+
// language=HTML
|
325
|
+
return `
|
326
|
+
<template id="host-overlay">
|
327
|
+
<div data-monster-replace="path:host-overlay.content"
|
328
|
+
data-monster-attributes="part path:host-overlay.name, data-monster-role path:host-container.overlay"></div>
|
329
|
+
</template>
|
330
|
+
|
331
|
+
<div data-monster-role="overlay-open" part="open"></div>
|
332
|
+
|
333
|
+
<div id="overlay" data-monster-role="overlay" part="overlay" data-monster-insert="host-overlay path:overlay"
|
334
|
+
data-monster-attributes="class path:classes.overlay">
|
335
|
+
<div data-monster-role="overlay-close" part="close"></div>
|
336
|
+
</div>`;
|
337
|
+
}
|
338
|
+
|
339
|
+
registerCustomElement(Overlay);
|
@@ -0,0 +1,36 @@
|
|
1
|
+
@import "../../style/normalize.pcss";
|
2
|
+
@import "../../style/mixin/button.pcss";
|
3
|
+
@import "../../style/button.pcss";
|
4
|
+
@import "../../style/mixin/typography.pcss";
|
5
|
+
@import "../../style/mixin/hover.pcss";
|
6
|
+
@import "../../style/control.pcss";
|
7
|
+
@import "../../style/property.pcss";
|
8
|
+
@import "../../style/link.pcss";
|
9
|
+
|
10
|
+
[data-monster-role=control] {
|
11
|
+
display: flex;
|
12
|
+
align-items: center;
|
13
|
+
flex-direction: row;
|
14
|
+
justify-content: flex-end;
|
15
|
+
|
16
|
+
& a[data-monster-role=filter-button] {
|
17
|
+
display: flex;
|
18
|
+
align-items: center;
|
19
|
+
|
20
|
+
color: var(--monster-color-primary-1);
|
21
|
+
background: none;
|
22
|
+
|
23
|
+
&:after {
|
24
|
+
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-filter-square' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M6 11.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
25
|
+
margin: 2px 3px 0 5px;
|
26
|
+
padding-top: 4px;
|
27
|
+
}
|
28
|
+
|
29
|
+
|
30
|
+
}
|
31
|
+
|
32
|
+
&.hidden {
|
33
|
+
display: none;
|
34
|
+
}
|
35
|
+
|
36
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
@import "../../style/normalize.pcss";
|
2
|
+
@import "../../style/display.pcss";
|
3
|
+
@import "../../style/mixin/button.pcss";
|
4
|
+
@import "../../style/button.pcss";
|
5
|
+
@import "../../style/mixin/typography.pcss";
|
6
|
+
@import "../../style/mixin/hover.pcss";
|
7
|
+
@import "../../style/control.pcss";
|
8
|
+
@import "../../style/property.pcss";
|
9
|
+
@import "../../style/ripple.pcss";
|
10
|
+
|
11
|
+
|
12
|
+
[data-monster-role=control] {
|
13
|
+
@mixin paragraph;
|
14
|
+
|
15
|
+
&.overflow-hidden {
|
16
|
+
overflow: hidden;
|
17
|
+
}
|
18
|
+
|
19
|
+
& button {
|
20
|
+
border-top: 0;
|
21
|
+
border-left: 0;
|
22
|
+
border-right: 0;
|
23
|
+
}
|
24
|
+
|
25
|
+
& .button:hover {
|
26
|
+
@mixin box-hover;
|
27
|
+
}
|
28
|
+
|
29
|
+
& [data-monster-role="detail"] {
|
30
|
+
@mixin paragraph;
|
31
|
+
|
32
|
+
height: 0;
|
33
|
+
transition: height 0.4s ease-in-out;
|
34
|
+
box-sizing: border-box;
|
35
|
+
width: 100%;
|
36
|
+
|
37
|
+
background-color: var(--monster-bg-color-primary-2);
|
38
|
+
color: var(--monster-color-primary-2);
|
39
|
+
|
40
|
+
& .padding {
|
41
|
+
padding: 1rem;
|
42
|
+
}
|
43
|
+
|
44
|
+
& .deco-line {
|
45
|
+
margin: 0;
|
46
|
+
border: 0;
|
47
|
+
padding: 0;
|
48
|
+
height: 2px;
|
49
|
+
|
50
|
+
background: linear-gradient(to right, var(--monster-color-gradient-1) 0, var(--monster-color-gradient-2) 50%, var(--monster-color-gradient-3) 100%);
|
51
|
+
@media (prefers-color-scheme: dark) {
|
52
|
+
background: var(--monster-color-primary-1);
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
}
|
57
|
+
|
58
|
+
}
|
59
|
+
|
60
|
+
& [data-monster-role="detail"].active {
|
61
|
+
height: var(--monster-height);
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
|
@@ -0,0 +1,68 @@
|
|
1
|
+
@import "../../style/normalize.pcss";
|
2
|
+
@import "../../style/display.pcss";
|
3
|
+
@import "../../style/mixin/button.pcss";
|
4
|
+
@import "../../style/button.pcss";
|
5
|
+
@import "../../style/mixin/typography.pcss";
|
6
|
+
@import "../../style/mixin/hover.pcss";
|
7
|
+
@import "../../style/control.pcss";
|
8
|
+
@import "../../style/property.pcss";
|
9
|
+
@import "../../style/ripple.pcss";
|
10
|
+
|
11
|
+
|
12
|
+
[data-monster-role=control] {
|
13
|
+
|
14
|
+
flex-direction: column;
|
15
|
+
|
16
|
+
/*
|
17
|
+
@mixin paragraph;
|
18
|
+
|
19
|
+
|
20
|
+
& button {
|
21
|
+
border-top: 0;
|
22
|
+
border-left: 0;
|
23
|
+
border-right: 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
& .button:hover {
|
27
|
+
@mixin box-hover;
|
28
|
+
}
|
29
|
+
|
30
|
+
& [data-monster-role="detail"] {
|
31
|
+
@mixin paragraph;
|
32
|
+
height: 0;
|
33
|
+
transition: height 0.5s ease-in-out;
|
34
|
+
box-sizing: border-box;
|
35
|
+
|
36
|
+
background-color: var(--monster-bg-color-primary-2);
|
37
|
+
color: var(--monster-color-primary-2);
|
38
|
+
|
39
|
+
& .padding {
|
40
|
+
padding: 1rem;
|
41
|
+
}
|
42
|
+
|
43
|
+
& .deco-line {
|
44
|
+
margin: 0;
|
45
|
+
border: 0;
|
46
|
+
padding: 0;
|
47
|
+
height: 2px;
|
48
|
+
|
49
|
+
background: linear-gradient(to right, var(--monster-color-gradient-1) 0, var(--monster-color-gradient-2) 50%, var(--monster-color-gradient-3) 100%);
|
50
|
+
@media (prefers-color-scheme: dark) {
|
51
|
+
background: var(--monster-color-primary-1);
|
52
|
+
}
|
53
|
+
|
54
|
+
|
55
|
+
}
|
56
|
+
|
57
|
+
|
58
|
+
}
|
59
|
+
|
60
|
+
& [data-monster-role="detail"].active {
|
61
|
+
height: var(--monster-height);
|
62
|
+
}
|
63
|
+
*/
|
64
|
+
|
65
|
+
|
66
|
+
}
|
67
|
+
|
68
|
+
|
@@ -0,0 +1,43 @@
|
|
1
|
+
@import "../../style/display.pcss";
|
2
|
+
@import "../../style/normalize.pcss";
|
3
|
+
@import "../../style/border.pcss";
|
4
|
+
@import "../../style/form.pcss";
|
5
|
+
@import "../../style/typography.pcss";
|
6
|
+
@import "../../style/control.pcss";
|
7
|
+
@import "../../style/property.pcss";
|
8
|
+
|
9
|
+
[data-monster-role="control"] {
|
10
|
+
min-height: 100vh;
|
11
|
+
box-sizing: border-box;
|
12
|
+
margin: 0;
|
13
|
+
padding: 0;
|
14
|
+
border: 0;
|
15
|
+
|
16
|
+
display: flex;
|
17
|
+
|
18
|
+
flex-direction: column;
|
19
|
+
align-content: stretch;
|
20
|
+
justify-content: flex-start;
|
21
|
+
flex-wrap: nowrap;
|
22
|
+
}
|
23
|
+
|
24
|
+
[data-monster-role="header"] {
|
25
|
+
display: flex;
|
26
|
+
justify-content: space-between;
|
27
|
+
align-items: center;
|
28
|
+
height: 64px;
|
29
|
+
margin: 0 0 0 60px;
|
30
|
+
}
|
31
|
+
|
32
|
+
[data-monster-role="content"] {
|
33
|
+
|
34
|
+
display: flex;
|
35
|
+
justify-content: space-between;
|
36
|
+
align-items: center;
|
37
|
+
}
|
38
|
+
|
39
|
+
[data-monster-role="footer"] {
|
40
|
+
display: flex;
|
41
|
+
justify-content: space-between;
|
42
|
+
align-items: center;
|
43
|
+
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
@import "../../style/normalize.pcss";
|
2
|
+
@import "../../style/display.pcss";
|
3
|
+
@import "../../style/border.pcss";
|
4
|
+
@import "../../style/form.pcss";
|
5
|
+
@import "../../style/typography.pcss";
|
6
|
+
@import "../../style/control.pcss";
|
7
|
+
@import "../../style/property.pcss";
|
8
|
+
|
9
|
+
|
10
|
+
/* prevent monster-reload from load */
|
11
|
+
[data-monster-role=overlay].hide-empty {
|
12
|
+
display: none;
|
13
|
+
}
|
14
|
+
|
15
|
+
[data-monster-role=overlay] {
|
16
|
+
height: 100%;
|
17
|
+
width: 0;
|
18
|
+
position: fixed;
|
19
|
+
z-index: var(--monster-z-index-offcanvas);
|
20
|
+
left: 0;
|
21
|
+
top: 0;
|
22
|
+
color: var(--monster-color-primary-2);
|
23
|
+
background-color: var(--monster-bg-color-primary-2);
|
24
|
+
overflow-x: hidden;
|
25
|
+
transition: 0.5s;
|
26
|
+
}
|
27
|
+
|
28
|
+
[data-monster-role=overlay] [data-monster-role=overlay-close] {
|
29
|
+
position: absolute;
|
30
|
+
top: 10px;
|
31
|
+
left: 10px;
|
32
|
+
width: 40px;
|
33
|
+
height: 40px;
|
34
|
+
cursor: pointer;
|
35
|
+
}
|
36
|
+
|
37
|
+
[data-monster-role=overlay] [data-monster-role=overlay-close]::before {
|
38
|
+
content: "";
|
39
|
+
display: block;
|
40
|
+
width: 100%;
|
41
|
+
height: 100%;
|
42
|
+
mask-repeat: no-repeat;
|
43
|
+
mask-position: center;
|
44
|
+
mask-size: contain;
|
45
|
+
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3E%3C/svg%3E");
|
46
|
+
background-color: var(--monster-color-primary-1);
|
47
|
+
}
|
48
|
+
|
49
|
+
[data-monster-role=overlay-open] {
|
50
|
+
position: absolute;
|
51
|
+
top: 10px;
|
52
|
+
left: 10px;
|
53
|
+
width: 40px;
|
54
|
+
height: 40px;
|
55
|
+
cursor: pointer;
|
56
|
+
}
|
57
|
+
|
58
|
+
[data-monster-role=overlay-open]::before {
|
59
|
+
content: "";
|
60
|
+
display: block;
|
61
|
+
width: 100%;
|
62
|
+
height: 100%;
|
63
|
+
mask-repeat: no-repeat;
|
64
|
+
mask-position: center;
|
65
|
+
mask-size: contain;
|
66
|
+
background-color: var(--monster-color-primary-1);
|
67
|
+
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M1 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V2zM1 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V7zM1 12a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2z'/%3E%3C/svg%3E");
|
68
|
+
}
|
69
|
+
|
70
|
+
[data-monster-role=overlay].open {
|
71
|
+
width: 100%;
|
72
|
+
}
|
73
|
+
|
@@ -0,0 +1,36 @@
|
|
1
|
+
@import "../../style/normalize.pcss";
|
2
|
+
@import "../../style/mixin/button.pcss";
|
3
|
+
@import "../../style/button.pcss";
|
4
|
+
@import "../../style/mixin/typography.pcss";
|
5
|
+
@import "../../style/mixin/hover.pcss";
|
6
|
+
@import "../../style/control.pcss";
|
7
|
+
@import "../../style/property.pcss";
|
8
|
+
@import "../../style/link.pcss";
|
9
|
+
|
10
|
+
[data-monster-role=control] {
|
11
|
+
display: flex;
|
12
|
+
align-items: center;
|
13
|
+
flex-direction: row;
|
14
|
+
justify-content: flex-end;
|
15
|
+
|
16
|
+
& a[data-monster-role=filter-button] {
|
17
|
+
display: flex;
|
18
|
+
align-items: center;
|
19
|
+
|
20
|
+
color: var(--monster-color-primary-1);
|
21
|
+
background: none;
|
22
|
+
|
23
|
+
&:after {
|
24
|
+
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-filter-square' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M6 11.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
25
|
+
margin: 2px 3px 0 5px;
|
26
|
+
padding-top: 4px;
|
27
|
+
}
|
28
|
+
|
29
|
+
|
30
|
+
}
|
31
|
+
|
32
|
+
&.hidden {
|
33
|
+
display: none;
|
34
|
+
}
|
35
|
+
|
36
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
@import "../../style/normalize.pcss";
|
2
|
+
@import "../../style/mixin/button.pcss";
|
3
|
+
@import "../../style/button.pcss";
|
4
|
+
@import "../../style/mixin/typography.pcss";
|
5
|
+
@import "../../style/mixin/hover.pcss";
|
6
|
+
@import "../../style/control.pcss";
|
7
|
+
@import "../../style/property.pcss";
|
8
|
+
@import "../../style/link.pcss";
|
9
|
+
|
10
|
+
|
11
|
+
[data-monster-role="viewer"] {
|
12
|
+
height: inherit;
|
13
|
+
}
|