pawajs 2.0.4 → 2.0.5
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 +2 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -21,4 +21,5 @@ CHANGELOG.md
|
|
|
21
21
|
+ version 1.5.1 stable
|
|
22
22
|
+ version 1.5.2 - added function dependencies
|
|
23
23
|
+ version 2.0.1 -2.0.2 made runEffect to be global or component capability
|
|
24
|
-
+ version 2.0.3 integrating HMR system
|
|
24
|
+
+ version 2.0.3 integrating HMR system
|
|
25
|
+
+ version 2.0.4 experimental of hmr
|
package/index.js
CHANGED
|
@@ -1241,7 +1241,7 @@ export const render = (el, contexts = {}, notRender, isName) => {
|
|
|
1241
1241
|
States(el, attr, getCurrentContext())
|
|
1242
1242
|
} else if (attrName.startsWith('out-') && !isAcomponent) {
|
|
1243
1243
|
documentEvent(el, attr)
|
|
1244
|
-
} else if (
|
|
1244
|
+
} else if (attrName.startsWith('after-[') && attrName.endsWith(']') && !isAcomponent) {
|
|
1245
1245
|
After(el, attr)
|
|
1246
1246
|
}
|
|
1247
1247
|
else if (attrName.startsWith('every-[') && attrName.endsWith(']') && !isAcomponent) {
|
package/package.json
CHANGED