@cicada/render
Advanced tools
Comparing version 1.0.12-alpha2 to 1.0.12-alpha3
@@ -135,3 +135,4 @@ 'use strict'; | ||
return {}; | ||
} | ||
}, | ||
any: function any() {} | ||
}; | ||
@@ -151,3 +152,4 @@ | ||
didMount = fragment.didMount, | ||
config = fragment.config; | ||
config = fragment.config, | ||
willReceive = fragment.willReceive; | ||
@@ -164,3 +166,4 @@ var createMockId = (0, _util.createUniqueIdGenerator)('mock'); | ||
var getDefaultValue = _ref6.getDefaultValue, | ||
stateType = _ref6.stateType; | ||
_ref6$stateType = _ref6.stateType, | ||
stateType = _ref6$stateType === undefined ? 'any' : _ref6$stateType; | ||
@@ -229,2 +232,5 @@ /* eslint-disable no-prototype-builtins */ | ||
computeTo(linkState, state, instance.background.instances); | ||
if (willReceive) { | ||
willReceive(instance.background.instances); | ||
} | ||
}; | ||
@@ -258,2 +264,6 @@ | ||
instance.backgroundVersion = instance.background.getVersion(); | ||
if (willReceive) { | ||
willReceive(instance.background.instances); | ||
} | ||
}; | ||
@@ -260,0 +270,0 @@ |
{ | ||
"name": "@cicada/render", | ||
"version": "1.0.12-alpha2", | ||
"version": "1.0.12-alpha3", | ||
"main": "./lib/index.js", | ||
@@ -5,0 +5,0 @@ "scripts": { |
327254
7893