pawajs 1.4.18 → 1.4.19

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
@@ -6,4 +6,4 @@ CHANGELOG.md
6
6
  + version 1.4.11 - added more event modifiers
7
7
  + version 1.4.12 - fixed pluginsMap pawaAttribute to pawa-ssr 1.3.3
8
8
  + version 1.4.13 - 1.4.16 fixed issues for resuming component
9
- + version 1.4.18 fixed issue with component inside template and added event modifiers
9
+ + version 1.4.18 - 1.4.19 fixed issue with component inside template and added event modifiers
@@ -178,7 +178,7 @@ export const normal_component=(el,stateContext,setStateContext,mapsPlugin,former
178
178
 
179
179
  if (child !== null ) {
180
180
  if (child) {
181
- endComment.parentElement.insertBefore(child, endComment)
181
+ endComment.parentElement?.insertBefore(child, endComment)
182
182
 
183
183
  stateContexts?._error?.forEach((error) => {
184
184
  throw Error(error)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pawajs",
3
- "version": "1.4.18",
3
+ "version": "1.4.19",
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",