resolver-egretimp-plus 0.1.110 → 0.1.112
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/dist/h5/index.js +1 -1
- package/dist/theme/element/index.css +1 -1
- package/dist/theme/element/src/components/common.scss +7 -1
- package/dist/theme/element/src/components/table.scss +13 -0
- package/dist/web/index.js +13 -13
- package/package.json +1 -1
- package/src/components/helper/FormPolyfill.jsx +25 -0
- package/src/components/helper/table.jsx +54 -28
- package/src/components/packages-web/CustomComponentFormLayout.vue +6 -4
- package/src/components/packages-web/CustomComponentTable.jsx +18 -16
- package/src/theme/element/components/common.scss +7 -1
- package/src/theme/element/components/table.scss +13 -0
- package/src/utils/render.jsx +32 -29
|
@@ -154,6 +154,14 @@
|
|
|
154
154
|
.pagination-wrap {
|
|
155
155
|
display: flex;
|
|
156
156
|
}
|
|
157
|
+
.cell-col-ellipsis {
|
|
158
|
+
& > .cell > .el-col {
|
|
159
|
+
overflow: hidden;
|
|
160
|
+
text-overflow: ellipsis;
|
|
161
|
+
white-space: nowrap;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
157
165
|
// table-v2
|
|
158
166
|
.table-border {
|
|
159
167
|
--el-table-header-bg-color: #f5f6f7;
|
|
@@ -181,6 +189,11 @@
|
|
|
181
189
|
.table-v2-cell {
|
|
182
190
|
padding: 0 16px;
|
|
183
191
|
width: 100%;
|
|
192
|
+
& > .el-col {
|
|
193
|
+
overflow: hidden;
|
|
194
|
+
text-overflow: ellipsis;
|
|
195
|
+
white-space: nowrap;
|
|
196
|
+
}
|
|
184
197
|
}
|
|
185
198
|
.table-v2-common-row {
|
|
186
199
|
border-bottom: none;
|