pawajs 1.4.15 → 1.4.16

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.
Files changed (2) hide show
  1. package/index.js +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1226,6 +1226,9 @@ export const render = (el, contexts = {}, notRender, isName) => {
1226
1226
  const number = { notRender: null, index: null }
1227
1227
  let isIndex=0
1228
1228
  Array.from(el.children).forEach((child, index) => {
1229
+ if (child.hasAttribute('p:store')) {
1230
+ return
1231
+ }
1229
1232
  number.index = isIndex
1230
1233
  isIndex++
1231
1234
  if (number.notRender !== null && isIndex <= number.notRender) return
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pawajs",
3
- "version": "1.4.15",
3
+ "version": "1.4.16",
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",