@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 +19 -0
- package/package.json +1 -1
- package/source/components/datatable/columnbar.mjs +19 -20
- package/source/components/datatable/datatable.mjs +1140 -1139
- package/source/components/datatable/filter/date-range.mjs +19 -20
- package/source/components/datatable/filter/input.mjs +19 -20
- package/source/components/datatable/filter/range.mjs +19 -19
- package/source/components/datatable/filter-button.mjs +19 -20
- package/source/components/datatable/filter.mjs +48 -31
- package/source/components/datatable/pagination.mjs +19 -20
- package/source/components/datatable/save-button.mjs +19 -20
- package/source/components/datatable/stylesheet/datatable.mjs +13 -6
- package/source/components/form/field-set.mjs +20 -21
- package/source/components/form/select.mjs +56 -34
- package/source/components/layout/details.mjs +19 -20
- package/source/components/layout/tabs.mjs +19 -20
- package/source/components/notify/monitor-attribute-errors.mjs +180 -179
- package/source/data/buildtree.mjs +1 -1
- package/source/monster.mjs +1 -0
- package/source/types/version.mjs +1 -1
- package/test/cases/monster.mjs +1 -1
- package/test/web/test.html +2 -2
- package/test/web/tests.js +250 -42
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.
|
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
|
136
|
+
case "de":
|
137
137
|
return {
|
138
|
-
settings: "Einstellungen"
|
138
|
+
settings: "Einstellungen",
|
139
139
|
};
|
140
|
-
case
|
140
|
+
case "fr":
|
141
141
|
return {
|
142
|
-
settings: "Paramètres"
|
142
|
+
settings: "Paramètres",
|
143
143
|
};
|
144
|
-
case
|
144
|
+
case "sp":
|
145
145
|
return {
|
146
|
-
settings: "Configuración"
|
146
|
+
settings: "Configuración",
|
147
147
|
};
|
148
|
-
case
|
148
|
+
case "it":
|
149
149
|
return {
|
150
|
-
settings: "Impostazioni"
|
150
|
+
settings: "Impostazioni",
|
151
151
|
};
|
152
|
-
case
|
152
|
+
case "pl":
|
153
153
|
return {
|
154
|
-
settings: "Ustawienia"
|
154
|
+
settings: "Ustawienia",
|
155
155
|
};
|
156
|
-
case
|
156
|
+
case "no":
|
157
157
|
return {
|
158
|
-
settings: "Innstillinger"
|
158
|
+
settings: "Innstillinger",
|
159
159
|
};
|
160
|
-
case
|
160
|
+
case "dk":
|
161
161
|
return {
|
162
|
-
settings: "Indstillinger"
|
162
|
+
settings: "Indstillinger",
|
163
163
|
};
|
164
|
-
case
|
164
|
+
case "sw":
|
165
165
|
return {
|
166
|
-
settings: "Inställningar"
|
166
|
+
settings: "Inställningar",
|
167
167
|
};
|
168
168
|
default:
|
169
|
-
case
|
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}
|