@schukai/monster 3.57.0 → 3.58.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,26 @@
1
1
 
2
+ ## [3.58.1] - 2024-03-17
3
+
4
+ ### Bug Fixes
5
+
6
+ - toggle-switch layout and text [#170](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/170)
7
+
8
+ ## [3.58.0] - 2024-03-17
9
+
10
+ ### Add Features
11
+
12
+ - new select feature emptyValueIfNoOptions [#142](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/142)
13
+ ### Changes
14
+
15
+ - release and publish to npm new version 3.58.0
16
+ - update deploy script
17
+ - lint code
18
+ - build-webtest
19
+ - lint code
20
+ - code format
21
+ - release and publish to npm new version 3.57.0
22
+ - tests and more
23
+
2
24
  ## [3.57.0] - 2024-03-06
3
25
 
4
26
  ### Add Features
@@ -14,7 +36,6 @@
14
36
  - add arrowdown handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160) [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
15
37
  ### Changes
16
38
 
17
- - tests and more
18
39
  - tests and more
19
40
  - fix tests
20
41
  - updates [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schukai/monster",
3
- "version": "3.57.0",
3
+ "version": "3.58.1",
4
4
  "description": "Monster is a simple library for creating fast, robust and lightweight websites.",
5
5
  "keywords": [
6
6
  "framework",
@@ -5,8 +5,8 @@
5
5
 
6
6
  import { instanceSymbol } from "../../constants.mjs";
7
7
  import { diff } from "../../data/diff.mjs";
8
- import {addAttributeToken} from "../../dom/attributes.mjs";
9
- import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs";
8
+ import { addAttributeToken } from "../../dom/attributes.mjs";
9
+ import { ATTRIBUTE_ERRORMESSAGE } from "../../dom/constants.mjs";
10
10
  import {
11
11
  assembleMethodSymbol,
12
12
  CustomElement,
@@ -116,7 +116,7 @@ class ChangeButton extends CustomElement {
116
116
  * This method is responsible for assembling the component.
117
117
  */
118
118
  [assembleMethodSymbol]() {
119
- super[assembleMethodSymbol]();;
119
+ super[assembleMethodSymbol]();
120
120
 
121
121
  initControlReferences.call(this);
122
122
  initEventHandler.call(this);
@@ -213,7 +213,11 @@ function getIndex() {
213
213
 
214
214
  const ref = row.getAttribute("data-monster-insert-reference");
215
215
  if (!ref) {
216
- addAttributeToken(this, ATTRIBUTE_ERRORMESSAGE, "reference is missing or empty");
216
+ addAttributeToken(
217
+ this,
218
+ ATTRIBUTE_ERRORMESSAGE,
219
+ "reference is missing or empty",
220
+ );
217
221
  return;
218
222
  }
219
223
 
@@ -136,7 +136,7 @@ class DataSet extends CustomElement {
136
136
  return "monster-dataset";
137
137
  }
138
138
 
139
- write() {;
139
+ write() {
140
140
 
141
141
  return new Promise((resolve, reject) => {
142
142
  if (!this[datasourceLinkedElementSymbol]) {
@@ -815,7 +815,6 @@ function updateFilterTabs() {
815
815
  * @returns {Promise<*>}
816
816
  */
817
817
  function doSearch({ showEffect } = { showEffect: true }) {
818
-
819
818
  this.resetFailureMessage();
820
819
 
821
820
  if (showEffect) {