resolver-egretimp-plus 0.0.140 → 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.140",
3
+ "version": "0.0.142",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -165,8 +165,8 @@ export default {
165
165
  }
166
166
  if (
167
167
  isPlainColumn({...config, isColumn: true}, calcDisable(config, props.mode)) &&
168
- config.showOverflowTooltip == '0' &&
169
- config['show-overflow-tooltip'] == '0'
168
+ config.showOverflowTooltip != '0' &&
169
+ config['show-overflow-tooltip'] != '0'
170
170
  ) {
171
171
  props['show-overflow-tooltip'] = true
172
172
  }
@@ -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))