@schukai/monster 3.50.0 → 3.51.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schukai/monster",
3
- "version": "3.50.0",
3
+ "version": "3.51.0",
4
4
  "description": "Monster is a simple library for creating fast, robust and lightweight websites.",
5
5
  "keywords": [
6
6
  "framework",
@@ -18,7 +18,7 @@ import {
18
18
  ATTRIBUTE_UPDATER_REMOVE,
19
19
  ATTRIBUTE_UPDATER_REPLACE,
20
20
  ATTRIBUTE_UPDATER_SELECT_THIS,
21
- } from "../dom/constants.mjs";
21
+ } from "./constants.mjs";
22
22
 
23
23
  import { Base } from "../types/base.mjs";
24
24
  import { isArray, isInstance, isIterable } from "../types/is.mjs";
@@ -59,10 +59,6 @@ class ProxyObserver extends Base {
59
59
  }
60
60
 
61
61
  /**
62
- * Get the real object
63
- *
64
- * Changes to this object are not noticed by the observers, so you can make a large number of changes and inform the observers later.
65
- *
66
62
  * @returns {object}
67
63
  */
68
64
  getSubject() {
@@ -86,8 +82,10 @@ class ProxyObserver extends Base {
86
82
  }
87
83
 
88
84
  /**
89
- * get the proxied object
85
+ * Get the real object
90
86
  *
87
+ * Changes to this object are not noticed by the observers, so you can make a large number of changes and inform the observers later.
88
+ *
91
89
  * @returns {object}
92
90
  */
93
91
  getRealSubject() {
@@ -142,7 +142,7 @@ function getMonsterVersion() {
142
142
  }
143
143
 
144
144
  /** don't touch, replaced by make with package.json version */
145
- monsterVersion = new Version("3.50.0");
145
+ monsterVersion = new Version("3.51.0");
146
146
 
147
147
  return monsterVersion;
148
148
  }
@@ -7,7 +7,7 @@ describe('Monster', function () {
7
7
  let monsterVersion
8
8
 
9
9
  /** don´t touch, replaced by make with package.json version */
10
- monsterVersion = new Version("3.50.0")
10
+ monsterVersion = new Version("3.51.0")
11
11
 
12
12
  let m = getMonsterVersion();
13
13