pawajs 1.4.41 → 1.4.42

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 CHANGED
@@ -16,4 +16,5 @@ CHANGELOG.md
16
16
  + version 1.4.28 - fixed pawaElement checkStaticsContext
17
17
  + version 1.4.30 - removed console warn from useContext
18
18
  + version 1.4.31- 1.4.32 - tried updating key to add element when server key is different
19
- + version 1.4.33 - added registerComponent.lazy
19
+ + version 1.4.33 - added registerComponent.lazy
20
+ + version 1.4.33 -1.4.42 fixing lazy registration component
package/index.js CHANGED
@@ -1012,7 +1012,7 @@ const mainAttribute = (el, exp) => {
1012
1012
  }
1013
1013
 
1014
1014
  if (boolValue) {
1015
- el.setAttribute(exp.name, '');
1015
+ el.setAttribute(exp.name, 'true');
1016
1016
  } else {
1017
1017
  el.removeAttribute(exp.name);
1018
1018
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pawajs",
3
- "version": "1.4.41",
3
+ "version": "1.4.42",
4
4
  "type":"module",
5
5
  "description": "pawajs library (reactive web runtime) for easily building web ui, enhancing html element, micro frontend etc ",
6
6
  "main": "index.js",