malinajs 0.7.15 → 0.7.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.
- package/malina.js +2 -2
- package/package.json +1 -1
- package/runtime.js +1 -1
package/malina.js
CHANGED
|
@@ -5807,7 +5807,7 @@
|
|
|
5807
5807
|
let n = xNode('bindAttribute', {
|
|
5808
5808
|
$wait: ['apply'],
|
|
5809
5809
|
name,
|
|
5810
|
-
exp: propList[name] && parsed.binding ? parsed.binding : exp,
|
|
5810
|
+
exp: (propList[name] || isExpression(prop.raw)) && parsed.binding ? parsed.binding : exp,
|
|
5811
5811
|
hasElement,
|
|
5812
5812
|
el: element.bindName()
|
|
5813
5813
|
}, (ctx, data) => {
|
|
@@ -6887,7 +6887,7 @@
|
|
|
6887
6887
|
});
|
|
6888
6888
|
}
|
|
6889
6889
|
|
|
6890
|
-
const version = '0.7.
|
|
6890
|
+
const version = '0.7.16';
|
|
6891
6891
|
|
|
6892
6892
|
|
|
6893
6893
|
async function compile(source, config = {}) {
|
package/package.json
CHANGED
package/runtime.js
CHANGED
|
@@ -126,7 +126,7 @@ const _compareDeep = (a, b, lvl) => {
|
|
|
126
126
|
if(_compareDeep(a[i], b[i], lvl - 1)) return true;
|
|
127
127
|
}
|
|
128
128
|
} else if (a instanceof Date) {
|
|
129
|
-
if(b instanceof Date) return a
|
|
129
|
+
if(b instanceof Date) return +a !== +b;
|
|
130
130
|
} else {
|
|
131
131
|
let set = {};
|
|
132
132
|
for(let k in a) {
|