resolver-egretimp-plus 0.0.141 → 0.0.142

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resolver-egretimp-plus",
3
- "version": "0.0.141",
3
+ "version": "0.0.142",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -220,8 +220,8 @@ export function modelValueDeepMerge(
220
220
  if (isArray(sourceValue) && isArray(targetValue)) {
221
221
  const ret = []
222
222
  let idx = 0
223
- for(;idx < sourceValue.length && idx < targetValue.length; i ++) {
224
- ret.push(modelValueDeepMerge[sourceValue[idx], targetValue[idx]])
223
+ for(;idx < sourceValue.length && idx < targetValue.length; idx ++) {
224
+ ret.push(modelValueDeepMerge(sourceValue[idx], targetValue[idx]))
225
225
  }
226
226
  if (idx < sourceValue.length) {
227
227
  ret.push(...sourceValue.slice(idx))