@schukai/monster 3.98.1 → 3.98.3

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,25 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.98.3] - 2025-01-07
6
+
7
+ ### Bug Fixes
8
+
9
+ - update doc
10
+
11
+
12
+
13
+ ## [3.98.2] - 2025-01-07
14
+
15
+ ### Bug Fixes
16
+
17
+ - **datatable:** update example
18
+ ### Changes
19
+
20
+ - update test
21
+
22
+
23
+
5
24
  ## [3.98.1] - 2025-01-06
6
25
 
7
26
  ### 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.98.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.98.3"}
@@ -22,7 +22,7 @@ import { findTargetElementFromEvent } from "../../dom/events.mjs";
22
22
  import { clone } from "../../util/clone.mjs";
23
23
  import { ColumnBarStyleSheet } from "./stylesheet/column-bar.mjs";
24
24
  import { createPopper } from "@popperjs/core";
25
- import {getLocaleOfDocument} from "../../dom/locale.mjs";
25
+ import { getLocaleOfDocument } from "../../dom/locale.mjs";
26
26
 
27
27
  export { ColumnBar };
28
28
 
@@ -133,47 +133,46 @@ class ColumnBar extends CustomElement {
133
133
  function getTranslations() {
134
134
  const locale = getLocaleOfDocument();
135
135
  switch (locale.language) {
136
- case 'de':
136
+ case "de":
137
137
  return {
138
- settings: "Einstellungen"
138
+ settings: "Einstellungen",
139
139
  };
140
- case 'fr':
140
+ case "fr":
141
141
  return {
142
- settings: "Paramètres"
142
+ settings: "Paramètres",
143
143
  };
144
- case 'sp':
144
+ case "sp":
145
145
  return {
146
- settings: "Configuración"
146
+ settings: "Configuración",
147
147
  };
148
- case 'it':
148
+ case "it":
149
149
  return {
150
- settings: "Impostazioni"
150
+ settings: "Impostazioni",
151
151
  };
152
- case 'pl':
152
+ case "pl":
153
153
  return {
154
- settings: "Ustawienia"
154
+ settings: "Ustawienia",
155
155
  };
156
- case 'no':
156
+ case "no":
157
157
  return {
158
- settings: "Innstillinger"
158
+ settings: "Innstillinger",
159
159
  };
160
- case 'dk':
160
+ case "dk":
161
161
  return {
162
- settings: "Indstillinger"
162
+ settings: "Indstillinger",
163
163
  };
164
- case 'sw':
164
+ case "sw":
165
165
  return {
166
- settings: "Inställningar"
166
+ settings: "Inställningar",
167
167
  };
168
168
  default:
169
- case 'en':
169
+ case "en":
170
170
  return {
171
- settings: "Settings"
171
+ settings: "Settings",
172
172
  };
173
173
  }
174
174
  }
175
175
 
176
-
177
176
  /**
178
177
  * @private
179
178
  * @return {ColumnBar}