pawajs 1.4.11 → 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
@@ -3,4 +3,6 @@ CHANGELOG.md
3
3
  + version 1.4.0 for-key bug fixing
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
- + version 1.4.11 - added more event modifiers
6
+ + version 1.4.11 - added more event modifiers
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
@@ -178,7 +178,8 @@ const mapsPlugins = {
178
178
  fullNamePlugin,
179
179
  externalPlugin,
180
180
  externalPluginMap,
181
- primaryDirective
181
+ primaryDirective,
182
+ pawaAttributes,
182
183
  }
183
184
  export const pluginsMap = () => mapsPlugins
184
185
  export const escapePawaAttribute = new Set()
@@ -885,7 +886,9 @@ const component = (el, resume = false, attr, notRender, stopResume) => {
885
886
  getEndComment(isComment)
886
887
  }
887
888
  } else if (isComment.nodeType === 1) {
888
- children.push(isComment)
889
+ if( !isComment.hasAttribute('p:store')){
890
+ children.push(isComment)
891
+ }
889
892
  getEndComment(isComment)
890
893
  } else {
891
894
  getEndComment(isComment)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pawajs",
3
- "version": "1.4.11",
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",