resolver-egretimp-plus 0.1.12 → 0.1.13
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
|
@@ -173,6 +173,9 @@ function formatValue(value) {
|
|
|
173
173
|
</script>
|
|
174
174
|
<style lang="scss" scoped>
|
|
175
175
|
.custom-component-plain {
|
|
176
|
+
white-space: nowrap;
|
|
177
|
+
text-overflow: ellipsis;
|
|
178
|
+
overflow: hidden;
|
|
176
179
|
}
|
|
177
180
|
.custom-component-plain--primary {
|
|
178
181
|
color: var(--el-color-primary);
|
package/src/utils/render.jsx
CHANGED
|
@@ -573,9 +573,9 @@ export function generateLayoutPolyfill(config, disabled, isH5) {
|
|
|
573
573
|
}
|
|
574
574
|
return node => {
|
|
575
575
|
// 表格中中的列,是否需要转换为普通形式
|
|
576
|
-
if (isPlainColumn(config, disabled)) {
|
|
577
|
-
|
|
578
|
-
}
|
|
576
|
+
// if (isPlainColumn(config, disabled)) {
|
|
577
|
+
// return node
|
|
578
|
+
// }
|
|
579
579
|
|
|
580
580
|
if (config.removeCol) {
|
|
581
581
|
return node
|
|
@@ -688,9 +688,9 @@ function generateFormItemPc (config, lang, compProps, params,) {
|
|
|
688
688
|
)
|
|
689
689
|
}
|
|
690
690
|
// 表格中中的列,是否需要转换为普通形式
|
|
691
|
-
if (isPlainColumn(config, compProps.disabled)) {
|
|
692
|
-
|
|
693
|
-
}
|
|
691
|
+
// if (isPlainColumn(config, compProps.disabled)) {
|
|
692
|
+
// return node
|
|
693
|
+
// }
|
|
694
694
|
|
|
695
695
|
let showFormItem = null
|
|
696
696
|
if (hasOwn(config, 'showFormItem')) {
|