@schukai/monster 3.89.1 → 3.90.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.90.0] - 2024-12-13
6
+
7
+ ### Add Features
8
+
9
+ - **select:** send standard event changed
10
+ ### Bug Fixes
11
+
12
+ - **field-set:** wrong label
13
+ ### Changes
14
+
15
+ - update npm and flake
16
+
17
+
18
+
5
19
  ## [3.89.1] - 2024-12-11
6
20
 
7
21
  ### Bug Fixes
package/package.json CHANGED
@@ -1 +1 @@
1
- {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.12","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.89.1"}
1
+ {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.12","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.90.0"}
@@ -338,7 +338,7 @@ function getTemplate() {
338
338
  <div data-monster-role="header">
339
339
  <div data-monster-replace="path:labels.title" data-monster-role="title"></div>
340
340
  <div data-monster-role="extended-switch">
341
- <label data-monster-replace="path:labels.toggle-switch-label"></label>
341
+ <label data-monster-replace="path:labels.toggleSwitchLabel"></label>
342
342
  <monster-toggle-switch></monster-toggle-switch>
343
343
  </div>
344
344
  </div>
@@ -2100,6 +2100,8 @@ function setSelection(selection) {
2100
2100
  selection,
2101
2101
  });
2102
2102
 
2103
+ fireEvent(this, "change");
2104
+
2103
2105
  return new Processing(() => {
2104
2106
  const CLASSNAME = "selected";
2105
2107