@schukai/monster 3.59.1 → 3.61.0

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +1 -1
  3. package/source/components/datatable/stylesheet/change-button.mjs +1 -1
  4. package/source/components/datatable/stylesheet/column-bar.mjs +1 -1
  5. package/source/components/datatable/stylesheet/dataset.mjs +1 -1
  6. package/source/components/datatable/stylesheet/datatable.mjs +1 -1
  7. package/source/components/datatable/stylesheet/embedded-pagination.mjs +1 -1
  8. package/source/components/datatable/stylesheet/filter.mjs +1 -1
  9. package/source/components/datatable/stylesheet/pagination.mjs +1 -1
  10. package/source/components/datatable/stylesheet/save-button.mjs +1 -1
  11. package/source/components/datatable/stylesheet/select-filter.mjs +1 -1
  12. package/source/components/datatable/stylesheet/status.mjs +1 -1
  13. package/source/components/events.mjs +17 -0
  14. package/source/components/form/api-button.mjs +4 -0
  15. package/source/components/form/button-bar.mjs +1 -1
  16. package/source/components/form/events.mjs +28 -4
  17. package/source/components/form/reload.mjs +4 -4
  18. package/source/components/form/shadow-reload.mjs +1 -1
  19. package/source/components/form/stylesheet/action-button.mjs +1 -1
  20. package/source/components/form/tabs.mjs +1 -1
  21. package/source/components/form/template.mjs +4 -4
  22. package/source/components/host/stylesheet/call-button.mjs +1 -1
  23. package/source/components/host/stylesheet/collapse.mjs +1 -1
  24. package/source/components/host/stylesheet/details.mjs +1 -1
  25. package/source/components/host/stylesheet/host.mjs +1 -1
  26. package/source/components/host/stylesheet/overlay.mjs +1 -1
  27. package/source/components/host/stylesheet/toggle-button.mjs +1 -1
  28. package/source/components/host/stylesheet/viewer.mjs +1 -1
  29. package/source/components/layout/events.mjs +30 -0
  30. package/source/components/layout/split-screen.mjs +136 -51
  31. package/source/components/layout/style/split-screen.pcss +6 -6
  32. package/source/components/layout/style/tabs.pcss +6 -2
  33. package/source/components/layout/stylesheet/split-screen.mjs +1 -1
  34. package/source/components/layout/stylesheet/tabs.mjs +1 -1
  35. package/source/components/layout/tabs.mjs +55 -1
  36. package/source/components/style/mixin/property.pcss +6 -0
  37. package/source/components/style/property.pcss +1 -0
  38. package/source/components/stylesheet/property.mjs +1 -1
  39. package/source/types/version.mjs +1 -1
  40. package/test/cases/monster.mjs +1 -1
  41. package/test/web/test.html +2 -2
  42. package/test/web/tests.js +181 -88
@@ -152,7 +152,7 @@ function getMonsterVersion() {
152
152
  }
153
153
 
154
154
  /** don't touch, replaced by make with package.json version */
155
- monsterVersion = new Version("3.59.1");
155
+ monsterVersion = new Version("3.61.0");
156
156
 
157
157
  return monsterVersion;
158
158
  }
@@ -7,7 +7,7 @@ describe('Monster', function () {
7
7
  let monsterVersion
8
8
 
9
9
  /** don´t touch, replaced by make with package.json version */
10
- monsterVersion = new Version("3.59.1")
10
+ monsterVersion = new Version("3.61.0")
11
11
 
12
12
  let m = getMonsterVersion();
13
13
 
@@ -15,8 +15,8 @@
15
15
  </head>
16
16
  <body>
17
17
  <div id="headline" style="display: flex;align-items: center;justify-content: center;flex-direction: column;">
18
- <h1 style='margin-bottom: 0.1em;'>Monster 3.59.0</h1>
19
- <div id="lastupdate" style='font-size:0.7em'>last update Sa 23. Mär 22:14:15 CET 2024</div>
18
+ <h1 style='margin-bottom: 0.1em;'>Monster 3.60.0</h1>
19
+ <div id="lastupdate" style='font-size:0.7em'>last update So 24. Mär 19:58:09 CET 2024</div>
20
20
  </div>
21
21
  <div id="mocha-errors"
22
22
  style="color: red;font-weight: bold;display: flex;align-items: center;justify-content: center;flex-direction: column;margin:20px;"></div>