@schukai/monster 3.99.2 → 3.99.4
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 +16 -0
- package/package.json +1 -1
- package/source/components/datatable/datatable.mjs +2 -2
- package/source/components/datatable/filter.mjs +1101 -1088
- package/source/components/layout/slider.mjs +507 -437
- package/source/components/layout/style/slider.pcss +6 -2
- package/source/components/layout/stylesheet/slider.mjs +7 -14
- package/source/components/style/form.css +8 -0
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
+
## [3.99.4] - 2025-01-11
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- slider with more slides [#239](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/239)
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
## [3.99.3] - 2025-01-11
|
14
|
+
|
15
|
+
### Bug Fixes
|
16
|
+
|
17
|
+
- filter init, form readonly
|
18
|
+
|
19
|
+
|
20
|
+
|
5
21
|
## [3.99.2] - 2025-01-10
|
6
22
|
|
7
23
|
### 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.99.
|
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.99.4"}
|
@@ -136,7 +136,7 @@ const resizeObserverSymbol = Symbol("resizeObserver");
|
|
136
136
|
* @example /examples/components/datatable/datasource Use a datasource
|
137
137
|
* @example /examples/components/datatable/pagination Use pagination
|
138
138
|
* @example /examples/components/datatable/filter Filer the data
|
139
|
-
* @example /examples/components/datatable/order-by
|
139
|
+
* @example /examples/components/datatable/order-by Sort data
|
140
140
|
* @example /examples/components/datatable/select-rows Select rows
|
141
141
|
*
|
142
142
|
* @copyright schukai GmbH
|
@@ -1348,7 +1348,7 @@ function initControlReferences() {
|
|
1348
1348
|
* @throws {Error} the datasource could not be initialized
|
1349
1349
|
*/
|
1350
1350
|
function initOptionsFromArguments() {
|
1351
|
-
const options = {};
|
1351
|
+
const options = {datasource:{}};
|
1352
1352
|
const selector = this.getAttribute(ATTRIBUTE_DATASOURCE_SELECTOR);
|
1353
1353
|
|
1354
1354
|
if (selector) {
|