easy3wui 1.5.80 → 1.5.81
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/gridPage.css
CHANGED
|
@@ -91,6 +91,11 @@
|
|
|
91
91
|
cursor: pointer;
|
|
92
92
|
}
|
|
93
93
|
@media (max-width: 768px) {
|
|
94
|
+
.gridBox :global .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
95
|
+
text-align: left;
|
|
96
|
+
white-space: wrap;
|
|
97
|
+
word-break: normal;
|
|
98
|
+
}
|
|
94
99
|
.gridBox td a:not([href]) {
|
|
95
100
|
pointer-events: none;
|
|
96
101
|
color: #000000;
|
package/assets/index.css
CHANGED
|
@@ -2401,6 +2401,11 @@ s {
|
|
|
2401
2401
|
cursor: pointer;
|
|
2402
2402
|
}
|
|
2403
2403
|
@media (max-width: 768px) {
|
|
2404
|
+
.gridBox :global .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
2405
|
+
text-align: left;
|
|
2406
|
+
white-space: wrap;
|
|
2407
|
+
word-break: normal;
|
|
2408
|
+
}
|
|
2404
2409
|
.gridBox td a:not([href]) {
|
|
2405
2410
|
pointer-events: none;
|
|
2406
2411
|
color: #000000;
|
|
@@ -895,7 +895,7 @@ var Easy3wFormPageM = exports.Easy3wFormPageM = function (_Component) {
|
|
|
895
895
|
rules: [{ required: boolCrRequired, message: requiredMessage || '\u8BF7' + strRMsg + label }]
|
|
896
896
|
})(itemArea)
|
|
897
897
|
);
|
|
898
|
-
} else if (fieldType === 'textarea' && typeof
|
|
898
|
+
} else if (fieldType === 'textarea' && typeof itemValue === 'string') {
|
|
899
899
|
return _react2['default'].createElement(
|
|
900
900
|
FormItem,
|
|
901
901
|
(0, _extends3['default'])({
|
|
@@ -783,7 +783,7 @@ var Easy3wFormPagePC = exports.Easy3wFormPagePC = function (_Component) {
|
|
|
783
783
|
rules: [{ required: boolCrRequired, message: requiredMessage || '\u8BF7' + strRMsg + label }]
|
|
784
784
|
})(itemArea)
|
|
785
785
|
);
|
|
786
|
-
} else if (fieldType === 'textarea' && typeof
|
|
786
|
+
} else if (fieldType === 'textarea' && typeof itemValue === 'string') {
|
|
787
787
|
return _react2['default'].createElement(
|
|
788
788
|
FormItem,
|
|
789
789
|
(0, _extends3['default'])({
|