resolver-egretimp-plus 0.0.139 → 0.0.141
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
|
@@ -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
|
|
166
|
-
config['show-overflow-tooltip']
|
|
168
|
+
config.showOverflowTooltip != '0' &&
|
|
169
|
+
config['show-overflow-tooltip'] != '0'
|
|
167
170
|
) {
|
|
168
171
|
props['show-overflow-tooltip'] = true
|
|
169
172
|
}
|