@schukai/monster 3.102.4 → 3.102.6

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,32 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.102.6] - 2025-02-01
6
+
7
+ ### Bug Fixes
8
+
9
+ - update updater bind values and select logic [#291](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/291)
10
+ ### Changes
11
+
12
+ - update nix flake
13
+ - update nix flake
14
+ - update nix flake
15
+ - debug gitlab
16
+ - debug gitlab
17
+ - update flake
18
+ - debug gitlab
19
+ - update nix
20
+
21
+
22
+
23
+ ## [3.102.5] - 2025-01-30
24
+
25
+ ### Bug Fixes
26
+
27
+ - **select:** remove fireEvent [#291](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/291)
28
+
29
+
30
+
5
31
  ## [3.102.4] - 2025-01-29
6
32
 
7
33
  ### Bug Fixes
package/package.json CHANGED
@@ -1 +1 @@
1
- {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@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.102.4"}
1
+ {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@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.102.6"}
@@ -278,7 +278,7 @@ class DataSet extends CustomElement {
278
278
  }
279
279
 
280
280
  initEventHandler.call(this);
281
- },10);
281
+ }, 10);
282
282
  }
283
283
 
284
284
  /**
@@ -199,6 +199,7 @@ class SaveButton extends CustomElement {
199
199
  const ignoreChanges = self.getOption("ignoreChanges");
200
200
 
201
201
  const result = diff(self[originValuesSymbol], currentValues);
202
+
202
203
  if (isArray(ignoreChanges) && ignoreChanges.length > 0) {
203
204
  const itemsToRemove = [];
204
205
  for (const item of result) {