@schukai/monster 3.55.1 → 3.55.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/source/components/datatable/datasource/rest.mjs +358 -314
- package/source/components/datatable/filter.mjs +7 -3
- package/source/components/datatable/stylesheet/column-bar.mjs +7 -13
- package/source/components/datatable/stylesheet/dataset.mjs +7 -13
- package/source/components/datatable/stylesheet/datasource.mjs +7 -13
- package/source/components/datatable/stylesheet/datatable.mjs +7 -13
- package/source/components/datatable/stylesheet/embedded-pagination.mjs +7 -13
- package/source/components/datatable/stylesheet/filter-button.mjs +7 -13
- package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +7 -13
- package/source/components/datatable/stylesheet/filter-date-range.mjs +7 -13
- package/source/components/datatable/stylesheet/filter-range.mjs +7 -13
- package/source/components/datatable/stylesheet/filter.mjs +7 -13
- package/source/components/datatable/stylesheet/pagination.mjs +7 -13
- package/source/components/datatable/stylesheet/select-filter.mjs +7 -13
- package/source/components/datatable/stylesheet/status.mjs +7 -13
- package/source/components/form/select.mjs +1812 -1638
- package/source/components/form/stylesheet/action-button.mjs +7 -13
- package/source/components/form/stylesheet/api-button.mjs +7 -13
- package/source/components/form/stylesheet/button-bar.mjs +7 -13
- package/source/components/form/stylesheet/button.mjs +7 -13
- package/source/components/form/stylesheet/confirm-button.mjs +7 -13
- package/source/components/form/stylesheet/context-error.mjs +7 -13
- package/source/components/form/stylesheet/context-help.mjs +7 -13
- package/source/components/form/stylesheet/form.mjs +7 -13
- package/source/components/form/stylesheet/message-state-button.mjs +7 -13
- package/source/components/form/stylesheet/popper-button.mjs +7 -13
- package/source/components/form/stylesheet/popper.mjs +7 -13
- package/source/components/form/stylesheet/select.mjs +7 -13
- package/source/components/form/stylesheet/state-button.mjs +7 -13
- package/source/components/form/stylesheet/tabs.mjs +7 -13
- package/source/components/form/stylesheet/tree-select.mjs +7 -13
- package/source/components/form/tree-select.mjs +12 -3
- package/source/components/host/stylesheet/call-button.mjs +7 -13
- package/source/components/host/stylesheet/collapse.mjs +7 -13
- package/source/components/host/stylesheet/config-manager.mjs +7 -13
- package/source/components/host/stylesheet/details.mjs +7 -13
- package/source/components/host/stylesheet/host.mjs +7 -13
- package/source/components/host/stylesheet/overlay.mjs +7 -13
- package/source/components/host/stylesheet/toggle-button.mjs +7 -13
- package/source/components/host/stylesheet/viewer.mjs +7 -13
- package/source/components/notify/stylesheet/message.mjs +7 -13
- package/source/components/notify/stylesheet/notify.mjs +7 -13
- package/source/components/state/stylesheet/log.mjs +7 -13
- package/source/components/state/stylesheet/state.mjs +7 -13
- package/source/components/stylesheet/badge.mjs +7 -13
- package/source/components/stylesheet/border.mjs +7 -13
- package/source/components/stylesheet/button.mjs +7 -13
- package/source/components/stylesheet/card.mjs +7 -13
- package/source/components/stylesheet/color.mjs +7 -13
- package/source/components/stylesheet/common.mjs +7 -13
- package/source/components/stylesheet/control.mjs +7 -13
- package/source/components/stylesheet/data-grid.mjs +7 -13
- package/source/components/stylesheet/display.mjs +7 -13
- package/source/components/stylesheet/floating-ui.mjs +7 -13
- package/source/components/stylesheet/form.mjs +7 -13
- package/source/components/stylesheet/host.mjs +7 -13
- package/source/components/stylesheet/icons.mjs +7 -13
- package/source/components/stylesheet/link.mjs +7 -13
- package/source/components/stylesheet/normalize.mjs +7 -13
- package/source/components/stylesheet/popper.mjs +7 -13
- package/source/components/stylesheet/property.mjs +7 -13
- package/source/components/stylesheet/ripple.mjs +7 -13
- package/source/components/stylesheet/skeleton.mjs +7 -13
- package/source/components/stylesheet/space.mjs +7 -13
- package/source/components/stylesheet/spinner.mjs +7 -13
- package/source/components/stylesheet/table.mjs +7 -13
- package/source/components/stylesheet/theme.mjs +7 -13
- package/source/components/stylesheet/typography.mjs +7 -13
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +7 -13
- package/source/data/datasource/server/restapi.mjs +1 -0
- package/source/data/extend.mjs +56 -47
- package/source/dom/customelement.mjs +9 -4
- package/source/dom/util/init-options-from-attributes.mjs +0 -1
- package/source/monster.mjs +1 -0
- package/source/types/version.mjs +1 -1
- package/test/cases/components/form/button.mjs +1 -1
- package/test/cases/components/form/confirm-button.mjs +1 -1
- package/test/cases/components/form/reload.mjs +1 -1
- package/test/cases/components/form/select.mjs +25 -29
- package/test/cases/components/form/state-button.mjs +1 -1
- package/test/cases/components/form/tabs.mjs +1 -1
- package/test/cases/components/form/template.mjs +1 -1
- package/test/cases/components/form/tree-select.mjs +26 -18
- package/test/cases/data/extend.mjs +43 -2
- package/test/cases/monster.mjs +1 -1
- package/test/web/test.html +2 -2
- package/test/web/tests.js +5 -0
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,21 @@
|
|
1
1
|
|
2
|
+
## [3.55.3] - 2024-01-23
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
- fix loading select [#135](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/135)
|
7
|
+
- reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
|
8
|
+
- reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
|
9
|
+
|
10
|
+
## [3.55.2] - 2024-01-22
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
- double fetch [#134](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/134)
|
15
|
+
### Changes
|
16
|
+
|
17
|
+
- release and publish to npm new version 3.55.2
|
18
|
+
|
2
19
|
## [3.55.1] - 2024-01-22
|
3
20
|
|
4
21
|
### Bug Fixes
|
@@ -8,6 +25,7 @@
|
|
8
25
|
- check parameter [#132](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/132)
|
9
26
|
### Changes
|
10
27
|
|
28
|
+
- release and publish to npm new version 3.55.1
|
11
29
|
- doc
|
12
30
|
- lint + formatt
|
13
31
|
- update nixos to 23-11
|