resolver-egretimp-plus 0.0.141 → 0.0.143

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.143",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -146,6 +146,10 @@ export default {
146
146
  }, {})
147
147
  if (config.showOverflowTooltip == '1' || config['show-overflow-tooltip'] == '1') {
148
148
  props['show-overflow-tooltip'] = true
149
+ props.showOverflowTooltip = true
150
+ } else {
151
+ props['show-overflow-tooltip'] = false
152
+ props.showOverflowTooltip = false
149
153
  }
150
154
  if (!props.prop) {
151
155
  props.prop = config.metaCode
@@ -169,6 +173,7 @@ export default {
169
173
  config['show-overflow-tooltip'] != '0'
170
174
  ) {
171
175
  props['show-overflow-tooltip'] = true
176
+ props.showOverflowTooltip = true
172
177
  }
173
178
  if (config.type === 'selection') {
174
179
  const orginSelectable = props.selectable
@@ -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))