@schukai/monster 3.60.0 → 3.62.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 (68) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +1 -1
  3. package/source/components/datatable/datatable.mjs +723 -599
  4. package/source/components/datatable/stylesheet/change-button.mjs +1 -1
  5. package/source/components/datatable/stylesheet/column-bar.mjs +1 -1
  6. package/source/components/datatable/stylesheet/dataset.mjs +1 -1
  7. package/source/components/datatable/stylesheet/datatable.mjs +1 -1
  8. package/source/components/datatable/stylesheet/embedded-pagination.mjs +1 -1
  9. package/source/components/datatable/stylesheet/filter.mjs +1 -1
  10. package/source/components/datatable/stylesheet/pagination.mjs +1 -1
  11. package/source/components/datatable/stylesheet/save-button.mjs +1 -1
  12. package/source/components/datatable/stylesheet/select-filter.mjs +1 -1
  13. package/source/components/datatable/stylesheet/status.mjs +1 -1
  14. package/source/components/datatable/util.mjs +10 -7
  15. package/source/components/events.mjs +17 -0
  16. package/source/components/form/api-button.mjs +4 -0
  17. package/source/components/form/button-bar.mjs +1 -1
  18. package/source/components/form/button.mjs +1 -3
  19. package/source/components/form/events.mjs +28 -4
  20. package/source/components/form/form-field.mjs +341 -0
  21. package/source/components/form/reload.mjs +4 -4
  22. package/source/components/form/shadow-reload.mjs +1 -1
  23. package/source/components/form/style/form-field.pcss +4 -0
  24. package/source/components/form/stylesheet/action-button.mjs +1 -1
  25. package/source/components/form/stylesheet/button-bar.mjs +1 -1
  26. package/source/components/form/stylesheet/button.mjs +1 -1
  27. package/source/components/form/stylesheet/confirm-button.mjs +1 -1
  28. package/source/components/form/stylesheet/form-field.mjs +27 -0
  29. package/source/components/form/stylesheet/form.mjs +1 -1
  30. package/source/components/form/stylesheet/popper-button.mjs +1 -1
  31. package/source/components/form/stylesheet/select.mjs +1 -1
  32. package/source/components/form/stylesheet/state-button.mjs +1 -1
  33. package/source/components/form/stylesheet/toggle-switch.mjs +1 -1
  34. package/source/components/form/tabs.mjs +1 -1
  35. package/source/components/form/template.mjs +4 -4
  36. package/source/components/host/stylesheet/call-button.mjs +1 -1
  37. package/source/components/host/stylesheet/collapse.mjs +1 -1
  38. package/source/components/host/stylesheet/details.mjs +1 -1
  39. package/source/components/host/stylesheet/host.mjs +1 -1
  40. package/source/components/host/stylesheet/overlay.mjs +1 -1
  41. package/source/components/host/stylesheet/toggle-button.mjs +1 -1
  42. package/source/components/host/stylesheet/viewer.mjs +1 -1
  43. package/source/components/layout/events.mjs +30 -0
  44. package/source/components/layout/split-screen.mjs +28 -2
  45. package/source/components/layout/style/tabs.pcss +16 -13
  46. package/source/components/layout/stylesheet/tabs.mjs +1 -1
  47. package/source/components/layout/tabs.mjs +58 -3
  48. package/source/components/notify/stylesheet/message.mjs +1 -1
  49. package/source/components/notify/stylesheet/notify.mjs +1 -1
  50. package/source/components/state/stylesheet/log.mjs +1 -1
  51. package/source/components/state/stylesheet/state.mjs +1 -1
  52. package/source/components/style/border.pcss +0 -4
  53. package/source/components/style/link.pcss +19 -34
  54. package/source/components/style/mixin/button.pcss +3 -0
  55. package/source/components/style/mixin/form.pcss +8 -12
  56. package/source/components/style/mixin/property.pcss +10 -12
  57. package/source/components/style/mixin/typography.pcss +10 -9
  58. package/source/components/stylesheet/border.mjs +1 -1
  59. package/source/components/stylesheet/button.mjs +1 -1
  60. package/source/components/stylesheet/data-grid.mjs +1 -1
  61. package/source/components/stylesheet/form.mjs +1 -1
  62. package/source/components/stylesheet/link.mjs +1 -1
  63. package/source/components/stylesheet/property.mjs +1 -1
  64. package/source/components/stylesheet/typography.mjs +1 -1
  65. package/source/types/version.mjs +1 -1
  66. package/test/cases/monster.mjs +1 -1
  67. package/test/web/test.html +2 -2
  68. package/test/web/tests.js +181 -88
package/CHANGELOG.md CHANGED
@@ -1,9 +1,29 @@
1
1
 
2
+ ## [3.62.0] - 2024-03-25
3
+
4
+ ### Add Features
5
+
6
+ - 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)
7
+
8
+ ## [3.61.0] - 2024-03-24
9
+
10
+ ### Add Features
11
+
12
+ - 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)
13
+ ### Changes
14
+
15
+ - release and publish to npm new version 3.61.0
16
+ - update tests and doc
17
+ - events
18
+
2
19
  ## [3.60.0] - 2024-03-24
3
20
 
4
21
  ### Add Features
5
22
 
6
23
  - min/max for split screen [#172](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/172)
24
+ ### Changes
25
+
26
+ - release and publish to npm new version 3.60.0
7
27
 
8
28
  ## [3.59.1] - 2024-03-23
9
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schukai/monster",
3
- "version": "3.60.0",
3
+ "version": "3.62.0",
4
4
  "description": "Monster is a simple library for creating fast, robust and lightweight websites.",
5
5
  "keywords": [
6
6
  "framework",