resolver-egretimp-plus 0.0.139 → 0.0.140

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.139",
3
+ "version": "0.0.140",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -144,6 +144,9 @@ export default {
144
144
  }
145
145
  return ret
146
146
  }, {})
147
+ if (config.showOverflowTooltip == '1' || config['show-overflow-tooltip'] == '1') {
148
+ props['show-overflow-tooltip'] = true
149
+ }
147
150
  if (!props.prop) {
148
151
  props.prop = config.metaCode
149
152
  }
@@ -162,8 +165,8 @@ export default {
162
165
  }
163
166
  if (
164
167
  isPlainColumn({...config, isColumn: true}, calcDisable(config, props.mode)) &&
165
- config.showOverflowTooltip !== false &&
166
- config['show-overflow-tooltip'] !== false
168
+ config.showOverflowTooltip == '0' &&
169
+ config['show-overflow-tooltip'] == '0'
167
170
  ) {
168
171
  props['show-overflow-tooltip'] = true
169
172
  }
@@ -7,6 +7,7 @@
7
7
  // 表单label中使用弹性居中
8
8
  display: flex;
9
9
  align-items: center;
10
+ box-sizing: content-box;
10
11
 
11
12
  // 不需要自带的必填*提示符合
12
13
  &::before {