pawajs 1.4.12 → 1.4.13

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
@@ -4,4 +4,5 @@ CHANGELOG.md
4
4
  + version 1.4.4 added onSuspense and fix out- (document event)
5
5
  + version 1.4.7 - 1.4.10 solving resuming issue when wrapping with template
6
6
  + version 1.4.11 - added more event modifiers
7
- + version 1.4.12 - fixed pluginsMap pawaAttribute to pawa-ssr 1.3.3
7
+ + version 1.4.12 - fixed pluginsMap pawaAttribute to pawa-ssr 1.3.3
8
+ + version 1.4.13 - fixed issues for resuming component
package/index.js CHANGED
@@ -886,7 +886,9 @@ const component = (el, resume = false, attr, notRender, stopResume) => {
886
886
  getEndComment(isComment)
887
887
  }
888
888
  } else if (isComment.nodeType === 1) {
889
- children.push(isComment)
889
+ if( !isComment.hasAttribute('p:store')){
890
+ children.push(isComment)
891
+ }
890
892
  getEndComment(isComment)
891
893
  } else {
892
894
  getEndComment(isComment)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pawajs",
3
- "version": "1.4.12",
3
+ "version": "1.4.13",
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",