@schukai/monster 3.57.0 → 3.58.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,19 @@
1
1
 
2
+ ## [3.58.0] - 2024-03-17
3
+
4
+ ### Add Features
5
+
6
+ - new select feature emptyValueIfNoOptions [#142](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/142)
7
+ ### Changes
8
+
9
+ - update deploy script
10
+ - lint code
11
+ - build-webtest
12
+ - lint code
13
+ - code format
14
+ - release and publish to npm new version 3.57.0
15
+ - tests and more
16
+
2
17
  ## [3.57.0] - 2024-03-06
3
18
 
4
19
  ### Add Features
@@ -14,7 +29,6 @@
14
29
  - 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
30
  ### Changes
16
31
 
17
- - tests and more
18
32
  - tests and more
19
33
  - fix tests
20
34
  - 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.0",
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) {