@player-ui/player 0.9.1-next.0 → 0.9.1-next.2
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/dist/Player.native.js +1 -8
- package/dist/Player.native.js.map +1 -1
- package/dist/cjs/index.cjs +1 -7
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/index.legacy-esm.js +1 -7
- package/dist/index.mjs +1 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/view/resolver/index.ts +2 -15
package/dist/Player.native.js
CHANGED
|
@@ -4948,14 +4948,7 @@ var Player = function() {
|
|
|
4948
4948
|
var newValues = resolvedAST.values.map(function(mValue) {
|
|
4949
4949
|
var mTree = _this.computeTree(mValue, rawParentToPassIn, dataChanges, cacheUpdate, resolveOptions, resolvedAST, prevASTMap);
|
|
4950
4950
|
if (mTree.value !== void 0 && mTree.value !== null) {
|
|
4951
|
-
|
|
4952
|
-
if (((_mTree_node_parent = mTree.node.parent) === null || _mTree_node_parent === void 0 ? void 0 : _mTree_node_parent.type) === "multi-node" /* MultiNode */ && Array.isArray(mTree.value)) {
|
|
4953
|
-
mTree.value.forEach(function(v) {
|
|
4954
|
-
unpackAndPush(v, childValue);
|
|
4955
|
-
});
|
|
4956
|
-
} else {
|
|
4957
|
-
childValue.push(mTree.value);
|
|
4958
|
-
}
|
|
4951
|
+
childValue.push(mTree.value);
|
|
4959
4952
|
}
|
|
4960
4953
|
mTree.dependencies.forEach(function(bindingDep) {
|
|
4961
4954
|
return childDependencies.add(bindingDep);
|