easy3wui 1.5.76 → 1.5.77-beta.2
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/assets/formPage.css +1 -3
- package/assets/index.css +1 -3
- package/lib/Easy3wGridPage/index.js +4 -10
- package/package.json +1 -1
package/assets/formPage.css
CHANGED
|
@@ -37,11 +37,9 @@
|
|
|
37
37
|
.e3wFormPageWrap .inputDigit .inputNumberBtns .e3wFootBtn {
|
|
38
38
|
margin: 0;
|
|
39
39
|
}
|
|
40
|
-
.ant-input-number:hover input.ant-input-number-input {
|
|
41
|
-
padding-right: 33px;
|
|
42
|
-
}
|
|
43
40
|
input.ant-input-number-input {
|
|
44
41
|
text-align: right;
|
|
42
|
+
padding-right: 21px;
|
|
45
43
|
}
|
|
46
44
|
.rightText {
|
|
47
45
|
text-align: right;
|
package/assets/index.css
CHANGED
|
@@ -2425,11 +2425,9 @@ s {
|
|
|
2425
2425
|
.e3wFormPageWrap .inputDigit .inputNumberBtns .e3wFootBtn {
|
|
2426
2426
|
margin: 0;
|
|
2427
2427
|
}
|
|
2428
|
-
.ant-input-number:hover input.ant-input-number-input {
|
|
2429
|
-
padding-right: 33px;
|
|
2430
|
-
}
|
|
2431
2428
|
input.ant-input-number-input {
|
|
2432
2429
|
text-align: right;
|
|
2430
|
+
padding-right: 21px;
|
|
2433
2431
|
}
|
|
2434
2432
|
.rightText {
|
|
2435
2433
|
text-align: right;
|
|
@@ -152,16 +152,10 @@ var Easy3wGridPage = function (_Component) {
|
|
|
152
152
|
var recursion = function recursion(arr) {
|
|
153
153
|
arr.forEach(function (item) {
|
|
154
154
|
var columnsType = item.type;
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
_tooltip2['default'],
|
|
160
|
-
{ placement: 'topLeft', title: title },
|
|
161
|
-
title.substring(0, 6),
|
|
162
|
-
'...'
|
|
163
|
-
);
|
|
164
|
-
}
|
|
155
|
+
// const { title } = item;
|
|
156
|
+
// if (!(printFlag || hasFormParentClass) && title && typeof title === 'string' && title.length > 6) {
|
|
157
|
+
// item.title = <Tooltip placement="topLeft" title={title}>{title.substring(0, 6)}...</Tooltip>;
|
|
158
|
+
// }
|
|
165
159
|
switch (columnsType) {
|
|
166
160
|
case 'shortText':
|
|
167
161
|
item.className = 'e3wGridShortText';break;
|