@schukai/monster 3.65.0 → 3.65.21
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 +48 -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 +18 -11
- package/source/components/datatable/columnbar.mjs +10 -1
- package/source/components/datatable/constants.mjs +11 -4
- package/source/components/datatable/dataset.mjs +212 -203
- 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 +754 -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 +15 -11
- package/source/components/datatable/pagination.mjs +18 -9
- package/source/components/datatable/save-button.mjs +280 -270
- package/source/components/datatable/status.mjs +15 -5
- 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 +95 -87
- 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 +133 -123
- 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 -4
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,37 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## [3.65.21] - 2024-06-20
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- exchange of document.selector with function findElementWithSelectorUpwards [#199](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/199)
|
|
10
|
+
|
|
11
|
+
## [3.65.20] - 2024-06-20
|
|
12
|
+
|
|
13
|
+
- Changeover to new release process
|
|
14
|
+
|
|
15
|
+
## [3.65.3] - 2024-06-19
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- switch nodejs_22 to nodejs_20 (segmentation fault)
|
|
20
|
+
|
|
21
|
+
## [3.65.1] - 2024-06-17
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- close Button fix message.mjs [#197](https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/197)
|
|
26
|
+
- remove style add fill="currentColor" in getEmptyTemplate method [#195](https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/195)
|
|
1
27
|
|
|
2
28
|
## [3.65.0] - 2024-04-15
|
|
3
29
|
|
|
4
30
|
### Add Features
|
|
5
31
|
|
|
6
|
-
- new toc control
|
|
7
|
-
- new toc component [#189](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/189)
|
|
8
|
-
- new toc component [#189](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/189)
|
|
9
|
-
- new toc component [#188](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/188)
|
|
32
|
+
- new toc control [#189](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/189)
|
|
10
33
|
- new component field-set [#186](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/186)
|
|
11
|
-
### Changes
|
|
12
34
|
|
|
13
|
-
- documetation script
|
|
14
|
-
- wip showroom
|
|
15
|
-
- update build scripts [#186](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/186)
|
|
16
35
|
### Code Refactoring
|
|
17
36
|
|
|
18
37
|
- move popper to layout namespace [#190](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/190) [#189](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/189)
|
|
@@ -21,25 +40,21 @@
|
|
|
21
40
|
|
|
22
41
|
### Bug Fixes
|
|
23
42
|
|
|
24
|
-
- monster.mjs
|
|
43
|
+
- repair monster.mjs file
|
|
44
|
+
|
|
25
45
|
### Changes
|
|
26
46
|
|
|
27
|
-
- release and publish to npm new version 3.64.1
|
|
28
47
|
- update license text
|
|
29
48
|
- fix import statements
|
|
30
|
-
- add showroot files
|
|
31
|
-
- add showroot files
|
|
32
49
|
|
|
33
50
|
## [3.64.0] - 2024-04-04
|
|
34
51
|
|
|
35
52
|
### Add Features
|
|
36
53
|
|
|
37
54
|
- add new panel and rename switch-screen to switch-panel [#184](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/184)
|
|
55
|
+
|
|
38
56
|
### Changes
|
|
39
57
|
|
|
40
|
-
- release and publish to npm new version 3.64.0
|
|
41
|
-
- fix tests
|
|
42
|
-
- new command for create-issue, first step for theme generator
|
|
43
58
|
- test runners are now empowered to run selected files [#166](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/166)
|
|
44
59
|
|
|
45
60
|
## [3.63.3] - 2024-04-01
|
|
@@ -47,21 +62,15 @@
|
|
|
47
62
|
### Bug Fixes
|
|
48
63
|
|
|
49
64
|
- include state-button [#183](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/183)
|
|
50
|
-
### Changes
|
|
51
|
-
|
|
52
|
-
- release and publish to npm new version 3.63.3
|
|
53
|
-
- update devenv
|
|
54
|
-
- update issue templates
|
|
55
|
-
- update template and create showroom section
|
|
56
65
|
|
|
57
66
|
## [3.63.2] - 2024-03-28
|
|
58
67
|
|
|
59
68
|
### Bug Fixes
|
|
60
69
|
|
|
61
|
-
- colors and more, add
|
|
70
|
+
- colors and more, add ignore change to save button [#181](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/181) [#180](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/180)
|
|
71
|
+
|
|
62
72
|
### Changes
|
|
63
73
|
|
|
64
|
-
- release and publish to npm new version 3.63.2
|
|
65
74
|
- reorganize playground
|
|
66
75
|
|
|
67
76
|
## [3.63.1] - 2024-03-27
|
|
@@ -69,118 +78,77 @@
|
|
|
69
78
|
### Bug Fixes
|
|
70
79
|
|
|
71
80
|
- [#179](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/179) [#176](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/176)
|
|
72
|
-
### Changes
|
|
73
81
|
|
|
74
|
-
- release and publish to npm new version 3.63.1
|
|
75
82
|
|
|
76
83
|
## [3.63.0] - 2024-03-25
|
|
77
84
|
|
|
78
85
|
### Add Features
|
|
79
86
|
|
|
80
87
|
- add events to dataset methods [#178](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/178)
|
|
81
|
-
### Changes
|
|
82
|
-
|
|
83
|
-
- release and publish to npm new version 3.63.0
|
|
84
88
|
|
|
85
89
|
## [3.62.0] - 2024-03-25
|
|
86
90
|
|
|
87
91
|
### Add Features
|
|
88
92
|
|
|
89
93
|
- add addRow, removeRow and copyRow [#175](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/175) [#176](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/176) [#177](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/177)
|
|
90
|
-
### Changes
|
|
91
94
|
|
|
92
|
-
- release and publish to npm new version 3.62.0
|
|
93
95
|
|
|
94
96
|
## [3.61.0] - 2024-03-24
|
|
95
97
|
|
|
96
98
|
### Add Features
|
|
97
99
|
|
|
98
100
|
- new methods and tidy [#174](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/174) [#173](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/173)
|
|
99
|
-
### Changes
|
|
100
|
-
|
|
101
|
-
- release and publish to npm new version 3.61.0
|
|
102
|
-
- update tests and doc
|
|
103
|
-
- events
|
|
104
101
|
|
|
105
102
|
## [3.60.0] - 2024-03-24
|
|
106
103
|
|
|
107
104
|
### Add Features
|
|
108
105
|
|
|
109
106
|
- min/max for split screen [#172](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/172)
|
|
110
|
-
### Changes
|
|
111
107
|
|
|
112
|
-
- release and publish to npm new version 3.60.0
|
|
113
108
|
|
|
114
109
|
## [3.59.1] - 2024-03-23
|
|
115
110
|
|
|
116
111
|
### Bug Fixes
|
|
117
112
|
|
|
118
113
|
- console log [#171](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/171)
|
|
119
|
-
### Changes
|
|
120
|
-
|
|
121
|
-
- release and publish to npm new version 3.59.1
|
|
122
114
|
|
|
123
115
|
## [3.59.0] - 2024-03-23
|
|
124
116
|
|
|
125
117
|
### Add Features
|
|
126
118
|
|
|
127
119
|
- new split-screen [#171](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/171)
|
|
128
|
-
### Changes
|
|
129
|
-
|
|
130
|
-
- release and publish to npm new version 3.59.0
|
|
131
|
-
- update tests and doc
|
|
132
120
|
|
|
133
121
|
## [3.58.4] - 2024-03-18
|
|
134
122
|
|
|
135
123
|
### Bug Fixes
|
|
136
124
|
|
|
137
125
|
- store lists [#139](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/139)
|
|
138
|
-
### Changes
|
|
139
126
|
|
|
140
|
-
- release and publish to npm new version 3.58.4
|
|
141
127
|
|
|
142
128
|
## [3.58.3] - 2024-03-18
|
|
143
129
|
|
|
144
130
|
### Bug Fixes
|
|
145
131
|
|
|
146
132
|
- datatable colum with [#143](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/143)
|
|
147
|
-
### Changes
|
|
148
|
-
|
|
149
|
-
- release and publish to npm new version 3.58.3
|
|
150
133
|
|
|
151
134
|
## [3.58.2] - 2024-03-17
|
|
152
135
|
|
|
153
136
|
### Bug Fixes
|
|
154
137
|
|
|
155
138
|
- playground missing js and remove flex [#144](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/144)
|
|
156
|
-
### Changes
|
|
157
139
|
|
|
158
|
-
- release and publish to npm new version 3.58.2
|
|
159
140
|
|
|
160
141
|
## [3.58.1] - 2024-03-17
|
|
161
142
|
|
|
162
143
|
### Bug Fixes
|
|
163
144
|
|
|
164
145
|
- toggle-switch layout and text [#170](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/170)
|
|
165
|
-
### Changes
|
|
166
|
-
|
|
167
|
-
- release and publish to npm new version 3.58.1
|
|
168
146
|
|
|
169
147
|
## [3.58.0] - 2024-03-17
|
|
170
148
|
|
|
171
149
|
### Add Features
|
|
172
150
|
|
|
173
151
|
- new select feature emptyValueIfNoOptions [#142](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/142)
|
|
174
|
-
### Changes
|
|
175
|
-
|
|
176
|
-
- release and publish to npm new version 3.58.0
|
|
177
|
-
- update deploy script
|
|
178
|
-
- lint code
|
|
179
|
-
- build-webtest
|
|
180
|
-
- lint code
|
|
181
|
-
- code format
|
|
182
|
-
- release and publish to npm new version 3.57.0
|
|
183
|
-
- tests and more
|
|
184
152
|
|
|
185
153
|
## [3.57.0] - 2024-03-06
|
|
186
154
|
|
|
@@ -189,23 +157,14 @@
|
|
|
189
157
|
- [#162](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/162)
|
|
190
158
|
- new updaterTransformerMethodsSymbol method [#163](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/163)
|
|
191
159
|
- new updaterTransformerMethodsSymbol method [#163](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/163)
|
|
160
|
+
|
|
192
161
|
### Bug Fixes
|
|
193
162
|
|
|
194
163
|
- [#165](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/165)
|
|
195
164
|
- bind this to callback and fix timing [#158](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/158) [#164](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/164)
|
|
196
|
-
- add
|
|
197
|
-
- add
|
|
198
|
-
### Changes
|
|
165
|
+
- add arrow down handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160) [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
|
|
166
|
+
- add arrow down handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160) [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
|
|
199
167
|
|
|
200
|
-
- tests and more
|
|
201
|
-
- fix tests
|
|
202
|
-
- updates [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
|
|
203
|
-
- whitespace [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
|
|
204
|
-
- optimize outline [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
|
|
205
|
-
- optimize outline [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
|
|
206
|
-
- rename internal function [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
|
|
207
|
-
- fix missing fs bug
|
|
208
|
-
- release and publish to npm new version 3.56.1
|
|
209
168
|
### Documentation
|
|
210
169
|
|
|
211
170
|
- typo [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
|
|
@@ -215,49 +174,33 @@
|
|
|
215
174
|
### Bug Fixes
|
|
216
175
|
|
|
217
176
|
- [3] is not the right way [#151](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/151)
|
|
218
|
-
### Changes
|
|
219
|
-
|
|
220
|
-
- release and publish to npm new version 3.56.1
|
|
221
177
|
|
|
222
178
|
## [3.56.0] - 2024-02-26
|
|
223
179
|
|
|
224
180
|
### Add Features
|
|
225
181
|
|
|
226
182
|
- update datatable controls [#150](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/150) [#149](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/149) [#148](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/148) [#147](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/147) [#146](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/146) [#145](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/145)
|
|
227
|
-
### Changes
|
|
228
|
-
|
|
229
|
-
- release and publish to npm new version 3.56.0
|
|
230
|
-
- format
|
|
231
|
-
- format
|
|
232
|
-
- [#144](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/144)
|
|
233
183
|
|
|
234
184
|
## [3.55.6] - 2024-01-26
|
|
235
185
|
|
|
236
186
|
### Bug Fixes
|
|
237
187
|
|
|
238
188
|
- wrong font family for tab buttons [#140](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/140)
|
|
239
|
-
### Changes
|
|
240
189
|
|
|
241
|
-
- release and publish to npm new version 3.55.6
|
|
242
190
|
|
|
243
191
|
## [3.55.5] - 2024-01-24
|
|
244
192
|
|
|
245
193
|
### Bug Fixes
|
|
246
194
|
|
|
247
195
|
- predefine order in datatable [#138](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/138)
|
|
248
|
-
### Changes
|
|
249
196
|
|
|
250
|
-
- release and publish to npm new version 3.55.5
|
|
251
197
|
|
|
252
198
|
## [3.55.4] - 2024-01-24
|
|
253
199
|
|
|
254
200
|
### Bug Fixes
|
|
255
201
|
|
|
256
202
|
- add gap to button [#137](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/137)
|
|
257
|
-
### Changes
|
|
258
203
|
|
|
259
|
-
- release and publish to npm new version 3.55.4
|
|
260
|
-
- update tests
|
|
261
204
|
|
|
262
205
|
## [3.55.3] - 2024-01-23
|
|
263
206
|
|
|
@@ -266,18 +209,13 @@
|
|
|
266
209
|
- fix loading select [#135](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/135)
|
|
267
210
|
- reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
|
|
268
211
|
- reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
|
|
269
|
-
### Changes
|
|
270
|
-
|
|
271
|
-
- release and publish to npm new version 3.55.3
|
|
272
212
|
|
|
273
213
|
## [3.55.2] - 2024-01-22
|
|
274
214
|
|
|
275
215
|
### Bug Fixes
|
|
276
216
|
|
|
277
217
|
- double fetch [#134](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/134)
|
|
278
|
-
### Changes
|
|
279
218
|
|
|
280
|
-
- release and publish to npm new version 3.55.2
|
|
281
219
|
|
|
282
220
|
## [3.55.1] - 2024-01-22
|
|
283
221
|
|
|
@@ -286,41 +224,25 @@
|
|
|
286
224
|
- catch errors [#133](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/133)
|
|
287
225
|
- catch errors [#133](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/133)
|
|
288
226
|
- check parameter [#132](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/132)
|
|
289
|
-
### Changes
|
|
290
|
-
|
|
291
|
-
- release and publish to npm new version 3.55.1
|
|
292
|
-
- doc
|
|
293
|
-
- lint + formatt
|
|
294
|
-
- update nixos to 23-11
|
|
295
227
|
|
|
296
228
|
## [3.55.0] - 2023-11-29
|
|
297
229
|
|
|
298
230
|
### Add Features
|
|
299
231
|
|
|
300
232
|
- various changes [#131](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/131)
|
|
301
|
-
### Changes
|
|
302
|
-
|
|
303
|
-
- release and publish to npm new version 3.55.0
|
|
304
233
|
|
|
305
234
|
## [3.54.0] - 2023-11-23
|
|
306
235
|
|
|
307
236
|
### Add Features
|
|
308
237
|
|
|
309
238
|
- new closeOnSelect feature
|
|
310
|
-
### Changes
|
|
311
|
-
|
|
312
|
-
- release and publish to npm new version 3.54.0
|
|
313
239
|
|
|
314
240
|
## [3.53.0] - 2023-11-11
|
|
315
241
|
|
|
316
242
|
### Add Features
|
|
317
243
|
|
|
318
244
|
- new icons (css) [#130](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/130)
|
|
319
|
-
### Changes
|
|
320
245
|
|
|
321
|
-
- release and publish to npm new version 3.53.0
|
|
322
|
-
- tidy code
|
|
323
|
-
- tidy code
|
|
324
246
|
|
|
325
247
|
## [3.52.1] - 2023-11-05
|
|
326
248
|
|
|
@@ -328,9 +250,6 @@
|
|
|
328
250
|
|
|
329
251
|
- only 10 tabs can be activated [#129](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/129)
|
|
330
252
|
- fix some css bugs [#128](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/128)
|
|
331
|
-
### Changes
|
|
332
|
-
|
|
333
|
-
- release and publish to npm new version 3.52.1
|
|
334
253
|
|
|
335
254
|
## [3.52.0] - 2023-11-03
|
|
336
255
|
|
|
@@ -338,37 +257,12 @@
|
|
|
338
257
|
|
|
339
258
|
- integrate components, test, example and code [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127)
|
|
340
259
|
- integrate components in monster [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127)
|
|
341
|
-
### Changes
|
|
342
|
-
|
|
343
|
-
- release and publish to npm new version 3.52.0
|
|
344
|
-
- documentation
|
|
345
|
-
- update documentation
|
|
346
|
-
- add aws doc update to tasks [#126](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/126)
|
|
347
|
-
- code tidy and update web test
|
|
348
|
-
- code lint
|
|
349
|
-
- lint and format
|
|
350
|
-
- code tidy
|
|
351
|
-
|
|
352
|
-
## [3.51.5] - 2023-11-01
|
|
353
|
-
|
|
354
|
-
### Bug Fixes
|
|
355
|
-
|
|
356
|
-
- release process
|
|
357
|
-
### Changes
|
|
358
|
-
|
|
359
|
-
- release and publish to npm new version 3.51.5
|
|
360
|
-
- restore devDependencies
|
|
361
|
-
- update release process
|
|
362
|
-
- conversion of the repos to nix packagemanger [#125](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/125)
|
|
363
260
|
|
|
364
261
|
## [v3.51.4] - 2023-06-19
|
|
365
262
|
|
|
366
263
|
### Bug Fixes
|
|
367
264
|
|
|
368
265
|
- case if value === null
|
|
369
|
-
### Changes
|
|
370
|
-
|
|
371
|
-
- update packages
|
|
372
266
|
|
|
373
267
|
## [v3.51.3] - 2023-06-19
|
|
374
268
|
|
|
@@ -388,32 +282,20 @@
|
|
|
388
282
|
|
|
389
283
|
- issue [#121](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/121) bug in extractKeys
|
|
390
284
|
|
|
391
|
-
## [v3.51.0] - 2023-06-15
|
|
392
|
-
|
|
393
|
-
### Changes
|
|
394
|
-
|
|
395
|
-
- update doc
|
|
396
|
-
|
|
397
285
|
## [v3.50.0] - 2023-05-24
|
|
398
286
|
|
|
399
287
|
### Add Features
|
|
400
288
|
|
|
401
289
|
- new datetimeformat
|
|
402
|
-
### Changes
|
|
403
|
-
|
|
404
|
-
- update and format
|
|
405
290
|
|
|
406
291
|
## [v3.49.0] - 2023-05-07
|
|
407
292
|
|
|
408
|
-
### Changes
|
|
409
|
-
|
|
410
|
-
- update docs and struct
|
|
411
|
-
|
|
412
293
|
## [v3.48.0] - 2023-05-07
|
|
413
294
|
|
|
414
295
|
### Bug Fixes
|
|
415
296
|
|
|
416
297
|
- tests
|
|
298
|
+
|
|
417
299
|
### Code Refactoring
|
|
418
300
|
|
|
419
301
|
- initCustomControlOptionCallback -> initCustomControlCallback
|
|
@@ -426,15 +308,9 @@
|
|
|
426
308
|
|
|
427
309
|
## [v3.46.0] - 2023-05-02
|
|
428
310
|
|
|
429
|
-
### Bug Fixes
|
|
430
|
-
|
|
431
|
-
- tests
|
|
432
|
-
### Changes
|
|
433
|
-
|
|
434
|
-
- update packages
|
|
435
311
|
### Code Refactoring
|
|
436
312
|
|
|
437
|
-
- attribute and form
|
|
313
|
+
- attribute and form improvements
|
|
438
314
|
|
|
439
315
|
## [v3.44.1] - 2023-05-01
|
|
440
316
|
|
|
@@ -444,9 +320,6 @@
|
|
|
444
320
|
|
|
445
321
|
## [v3.44.0] - 2023-05-01
|
|
446
322
|
|
|
447
|
-
### Changes
|
|
448
|
-
|
|
449
|
-
- doc
|
|
450
323
|
### Code Refactoring
|
|
451
324
|
|
|
452
325
|
- monitor all attribute changes
|
|
@@ -463,23 +336,11 @@
|
|
|
463
336
|
|
|
464
337
|
- watch only if Object.keys(self[attributeObserverSymbol].length > 0)
|
|
465
338
|
|
|
466
|
-
## [v3.42.0] - 2023-04-03
|
|
467
|
-
|
|
468
|
-
### Changes
|
|
469
|
-
|
|
470
|
-
- update
|
|
471
|
-
|
|
472
|
-
## [v3.41.0] - 2023-04-03
|
|
473
|
-
|
|
474
|
-
### Changes
|
|
475
|
-
|
|
476
|
-
- update
|
|
477
|
-
|
|
478
339
|
## [v3.40.0] - 2023-04-03
|
|
479
340
|
|
|
480
341
|
### Add Features
|
|
481
342
|
|
|
482
|
-
-
|
|
343
|
+
- attribute observer
|
|
483
344
|
|
|
484
345
|
## [v3.39.1] - 2023-04-03
|
|
485
346
|
|
|
@@ -497,10 +358,7 @@
|
|
|
497
358
|
|
|
498
359
|
### Bug Fixes
|
|
499
360
|
|
|
500
|
-
- case
|
|
501
|
-
### Changes
|
|
502
|
-
|
|
503
|
-
- doc
|
|
361
|
+
- case sensitive options work now
|
|
504
362
|
|
|
505
363
|
## [v3.38.0] - 2023-04-03
|
|
506
364
|
|
|
@@ -541,23 +399,11 @@
|
|
|
541
399
|
|
|
542
400
|
- invalid input throws TypeError
|
|
543
401
|
|
|
544
|
-
## [v3.35.0] - 2023-03-27
|
|
545
|
-
|
|
546
|
-
### Changes
|
|
547
|
-
|
|
548
|
-
- tidy and doc
|
|
549
|
-
### Documentation
|
|
550
|
-
|
|
551
|
-
- update
|
|
552
|
-
|
|
553
402
|
## [v3.34.0] - 2023-03-27
|
|
554
403
|
|
|
555
404
|
### Add Features
|
|
556
405
|
|
|
557
406
|
- new function detectRuntimeEnvironment and convertToPixels
|
|
558
|
-
### Changes
|
|
559
|
-
|
|
560
|
-
- update packages
|
|
561
407
|
|
|
562
408
|
## [v3.33.0] - 2023-03-26
|
|
563
409
|
|
|
@@ -573,7 +419,6 @@
|
|
|
573
419
|
|
|
574
420
|
### Add Features
|
|
575
421
|
|
|
576
|
-
- \undefined and \null are special values
|
|
577
422
|
- \undefined and \null are special values
|
|
578
423
|
|
|
579
424
|
## [v3.31.1] - 2023-03-20
|
|
@@ -594,36 +439,24 @@
|
|
|
594
439
|
### Add Features
|
|
595
440
|
|
|
596
441
|
- add util.findElementWithIdUpwards
|
|
597
|
-
### Changes
|
|
598
|
-
|
|
599
|
-
- update packages
|
|
600
442
|
|
|
601
443
|
## [v3.29.0] - 2023-03-16
|
|
602
444
|
|
|
603
445
|
### Add Features
|
|
604
446
|
|
|
605
|
-
-
|
|
606
|
-
### Changes
|
|
607
|
-
|
|
608
|
-
- update packages
|
|
447
|
+
- custom events are composed and should bubble across shadowRoot
|
|
609
448
|
|
|
610
449
|
## [v3.28.0] - 2023-03-14
|
|
611
450
|
|
|
612
451
|
### Add Features
|
|
613
452
|
|
|
614
453
|
- customcontrol.updatei18n can now plural rules
|
|
615
|
-
### Changes
|
|
616
|
-
|
|
617
|
-
- update packages
|
|
618
454
|
|
|
619
455
|
## [v3.27.0] - 2023-03-14
|
|
620
456
|
|
|
621
457
|
### Add Features
|
|
622
458
|
|
|
623
459
|
- add instance getter
|
|
624
|
-
### Changes
|
|
625
|
-
|
|
626
|
-
- update packages
|
|
627
460
|
|
|
628
461
|
## [v3.26.0] - 2023-03-08
|
|
629
462
|
|
|
@@ -631,9 +464,6 @@
|
|
|
631
464
|
|
|
632
465
|
- prevent has already defined error
|
|
633
466
|
|
|
634
|
-
## [v3.25.0] - 2023-03-07
|
|
635
|
-
|
|
636
|
-
|
|
637
467
|
## [v3.24.0] - 2023-03-07
|
|
638
468
|
|
|
639
469
|
### Add Features
|
|
@@ -645,6 +475,7 @@
|
|
|
645
475
|
### Add Features
|
|
646
476
|
|
|
647
477
|
- template mapping
|
|
478
|
+
|
|
648
479
|
### Bug Fixes
|
|
649
480
|
|
|
650
481
|
- rebuild template insert hack
|
|
@@ -659,13 +490,10 @@
|
|
|
659
490
|
|
|
660
491
|
### Add Features
|
|
661
492
|
|
|
662
|
-
- check if element is in a
|
|
493
|
+
- check if element is in a shadowRoot.
|
|
663
494
|
|
|
664
495
|
## [v3.21.1] - 2023-03-07
|
|
665
496
|
|
|
666
|
-
### Changes
|
|
667
|
-
|
|
668
|
-
- update packages
|
|
669
497
|
### Code Refactoring
|
|
670
498
|
|
|
671
499
|
- change fkt name internalTemplateLookUP git s
|
|
@@ -702,11 +530,6 @@
|
|
|
702
530
|
|
|
703
531
|
## [v3.16.1] - 2023-02-26
|
|
704
532
|
|
|
705
|
-
### Changes
|
|
706
|
-
|
|
707
|
-
- update year
|
|
708
|
-
- add pipe and i18n test
|
|
709
|
-
|
|
710
533
|
## [v3.16.0] - 2023-02-26
|
|
711
534
|
|
|
712
535
|
### Add Features
|
|
@@ -772,6 +595,7 @@
|
|
|
772
595
|
### Add Features
|
|
773
596
|
|
|
774
597
|
- add callback configuration to restapi
|
|
598
|
+
-
|
|
775
599
|
### Changes
|
|
776
600
|
|
|
777
601
|
- update npm
|
|
@@ -781,7 +605,7 @@
|
|
|
781
605
|
|
|
782
606
|
### Bug Fixes
|
|
783
607
|
|
|
784
|
-
- make
|
|
608
|
+
- make exception messages more readable
|
|
785
609
|
|
|
786
610
|
## [v3.10.0] - 2023-02-04
|
|
787
611
|
|
|
@@ -800,6 +624,7 @@
|
|
|
800
624
|
### Add Features
|
|
801
625
|
|
|
802
626
|
- document translations
|
|
627
|
+
|
|
803
628
|
### Bug Fixes
|
|
804
629
|
|
|
805
630
|
- optimize i18n: transformer
|
|
@@ -814,11 +639,6 @@
|
|
|
814
639
|
### Add Features
|
|
815
640
|
|
|
816
641
|
- pathfinder now works with array
|
|
817
|
-
### Changes
|
|
818
|
-
|
|
819
|
-
- code format (rome)
|
|
820
|
-
- doc
|
|
821
|
-
- docs
|
|
822
642
|
|
|
823
643
|
## [v3.7.0] - 2023-01-26
|
|
824
644
|
|
|
@@ -841,6 +661,7 @@
|
|
|
841
661
|
|
|
842
662
|
- check the navigator languages too
|
|
843
663
|
- new embed i18n provider
|
|
664
|
+
-
|
|
844
665
|
### Bug Fixes
|
|
845
666
|
|
|
846
667
|
- doc
|
|
@@ -855,11 +676,6 @@
|
|
|
855
676
|
### Bug Fixes
|
|
856
677
|
|
|
857
678
|
- error in the status processing
|
|
858
|
-
### Changes
|
|
859
|
-
|
|
860
|
-
- update makefiles
|
|
861
|
-
- update makefiles
|
|
862
|
-
- doc
|
|
863
679
|
|
|
864
680
|
## [v3.4.1] - 2023-01-08
|
|
865
681
|
|
|
@@ -872,9 +688,6 @@
|
|
|
872
688
|
### Add Features
|
|
873
689
|
|
|
874
690
|
- add new layer class Server
|
|
875
|
-
### Changes
|
|
876
|
-
|
|
877
|
-
- remove unused code
|
|
878
691
|
|
|
879
692
|
## [v3.3.0] - 2023-01-07
|
|
880
693
|
|
|
@@ -885,9 +698,6 @@
|
|
|
885
698
|
- new Class
|
|
886
699
|
- new Webconnect and Message
|
|
887
700
|
- new Webconnect and Message
|
|
888
|
-
### Changes
|
|
889
|
-
|
|
890
|
-
- doc
|
|
891
701
|
|
|
892
702
|
## [v3.2.0] - 2023-01-06
|
|
893
703
|
|
|
@@ -917,20 +727,9 @@
|
|
|
917
727
|
|
|
918
728
|
- return error in test
|
|
919
729
|
- missing callbacks
|
|
920
|
-
### Changes
|
|
921
|
-
|
|
922
|
-
- tests
|
|
923
|
-
- administration changes
|
|
924
|
-
- doc
|
|
925
|
-
- remove unused import
|
|
926
|
-
- doc + tidy
|
|
927
730
|
|
|
928
731
|
## [v3.0.0] - 2023-01-04
|
|
929
732
|
|
|
930
|
-
### Changes
|
|
931
|
-
|
|
932
|
-
- update web tests
|
|
933
|
-
|
|
934
733
|
## [v2.2.1] - 2023-01-03
|
|
935
734
|
|
|
936
735
|
### Bug Fixes
|
|
@@ -943,10 +742,6 @@
|
|
|
943
742
|
### Add Features
|
|
944
743
|
|
|
945
744
|
- internalDataSymbol is now global symbol
|
|
946
|
-
### Changes
|
|
947
|
-
|
|
948
|
-
- update npm packages
|
|
949
|
-
- add doc
|
|
950
745
|
|
|
951
746
|
## [v2.1.1] - 2022-12-30
|
|
952
747
|
|
|
@@ -960,81 +755,7 @@
|
|
|
960
755
|
|
|
961
756
|
- implement instanceof for multi realm
|
|
962
757
|
|
|
963
|
-
## [v2.0.16] - 2022-10-31
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
## [v2.0.15] - 2022-10-31
|
|
967
|
-
|
|
968
|
-
### Changes
|
|
969
|
-
|
|
970
|
-
- commit save point
|
|
971
|
-
- commit save point
|
|
972
|
-
- commit save point
|
|
973
|
-
- commit save point
|
|
974
|
-
- commit save point
|
|
975
|
-
- commit save point
|
|
976
|
-
- commit save point
|
|
977
|
-
- commit save point
|
|
978
|
-
- commit save point
|
|
979
|
-
- commit save point
|
|
980
|
-
- commit save point
|
|
981
|
-
- commit save point
|
|
982
|
-
- commit save point
|
|
983
|
-
- commit save point
|
|
984
|
-
- commit save point
|
|
985
|
-
- commit save point
|
|
986
|
-
- commit save point
|
|
987
|
-
- commit save point
|
|
988
|
-
- commit save point
|
|
989
|
-
- commit save point
|
|
990
|
-
- commit save point
|
|
991
|
-
- commit save point
|
|
992
|
-
- commit save point
|
|
993
|
-
- commit save point
|
|
994
|
-
- commit save point
|
|
995
|
-
- commit save point
|
|
996
|
-
- commit save point
|
|
997
|
-
- commit save point
|
|
998
|
-
- commit save point
|
|
999
|
-
- commit save point
|
|
1000
|
-
- commit save point
|
|
1001
|
-
- commit save point
|
|
1002
|
-
- commit save point
|
|
1003
|
-
- commit save point
|
|
1004
|
-
- commit save point
|
|
1005
|
-
- commit save point
|
|
1006
|
-
- commit save point
|
|
1007
|
-
- commit save point
|
|
1008
|
-
- commit save point
|
|
1009
|
-
- commit save point
|
|
1010
|
-
- commit save point
|
|
1011
|
-
- commit save point
|
|
1012
|
-
- commit save point
|
|
1013
|
-
- commit save point
|
|
1014
|
-
- commit save point
|
|
1015
|
-
- commit save point
|
|
1016
|
-
- commit save point
|
|
1017
|
-
- commit save point
|
|
1018
|
-
- commit save point
|
|
1019
|
-
- commit save point
|
|
1020
|
-
- commit save point
|
|
1021
|
-
- commit save point
|
|
1022
|
-
- commit save point
|
|
1023
|
-
- commit save point
|
|
1024
|
-
- commit save point
|
|
1025
|
-
- commit save point
|
|
1026
|
-
|
|
1027
|
-
## [1.30.1] - 2022-02-06
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
## [1.31.0] - 2022-02-05
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
## [1.10.0] - 2021-08-29
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
## [1.9.0] - 2021-08-17
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
758
|
## 1.8.0 - 2021-08-15
|
|
1040
759
|
|
|
760
|
+
- Initial release
|
|
761
|
+
|