easy3wui 1.4.241 → 1.4.245
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 +5 -2
- package/assets/index.css +5 -2
- package/lib/Easy3wFormPage/index.js +6 -6
- package/package.json +1 -1
package/assets/formPage.css
CHANGED
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
margin: 12px;
|
|
14
14
|
}
|
|
15
15
|
.e3wFormPageNoBorder > div > .ant-row {
|
|
16
|
-
|
|
16
|
+
padding: 3px;
|
|
17
|
+
}
|
|
18
|
+
.e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
19
|
+
height: 24px;
|
|
17
20
|
}
|
|
18
21
|
.e3wFormPage {
|
|
19
22
|
border-top: 1px solid #e8e8e8;
|
|
@@ -22,7 +25,7 @@
|
|
|
22
25
|
margin: 12px;
|
|
23
26
|
}
|
|
24
27
|
.e3wFormPage > div > .ant-row {
|
|
25
|
-
|
|
28
|
+
padding: 3px;
|
|
26
29
|
border-bottom: 1px solid #e8e8e8;
|
|
27
30
|
}
|
|
28
31
|
.e3wFormPage > div > .ant-row .ant-btn {
|
package/assets/index.css
CHANGED
|
@@ -1546,7 +1546,10 @@ s {
|
|
|
1546
1546
|
margin: 12px;
|
|
1547
1547
|
}
|
|
1548
1548
|
.e3wFormPageNoBorder > div > .ant-row {
|
|
1549
|
-
|
|
1549
|
+
padding: 3px;
|
|
1550
|
+
}
|
|
1551
|
+
.e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
1552
|
+
height: 24px;
|
|
1550
1553
|
}
|
|
1551
1554
|
.e3wFormPage {
|
|
1552
1555
|
border-top: 1px solid #e8e8e8;
|
|
@@ -1555,7 +1558,7 @@ s {
|
|
|
1555
1558
|
margin: 12px;
|
|
1556
1559
|
}
|
|
1557
1560
|
.e3wFormPage > div > .ant-row {
|
|
1558
|
-
|
|
1561
|
+
padding: 3px;
|
|
1559
1562
|
border-bottom: 1px solid #e8e8e8;
|
|
1560
1563
|
}
|
|
1561
1564
|
.e3wFormPage > div > .ant-row .ant-btn {
|
|
@@ -223,7 +223,7 @@ var singleItem = {
|
|
|
223
223
|
};
|
|
224
224
|
var mixSingle = {
|
|
225
225
|
labelCol: { span: 4 },
|
|
226
|
-
wrapperCol: { span:
|
|
226
|
+
wrapperCol: { span: 20 }
|
|
227
227
|
};
|
|
228
228
|
var mixSingleWithBtn = {
|
|
229
229
|
labelCol: { span: 4 },
|
|
@@ -563,7 +563,7 @@ var Easy3wFormPage = function (_Component) {
|
|
|
563
563
|
})(_react2['default'].createElement(_input2['default'], { type: 'hidden', size: 'small' })),
|
|
564
564
|
_react2['default'].createElement(
|
|
565
565
|
'pre',
|
|
566
|
-
{ style: { marginBottom: '0px' } },
|
|
566
|
+
{ style: { marginBottom: '0px', 'white-space': 'break-spaces' } },
|
|
567
567
|
itemValue
|
|
568
568
|
),
|
|
569
569
|
afterBtns
|
|
@@ -830,9 +830,9 @@ var Easy3wFormPage = function (_Component) {
|
|
|
830
830
|
}
|
|
831
831
|
if (mixColFlag) {
|
|
832
832
|
if (colsLength === 1) {
|
|
833
|
-
col1Layout =
|
|
833
|
+
col1Layout = mixSingle;
|
|
834
834
|
if (rowAftBtnFlag) {
|
|
835
|
-
col1Layout =
|
|
835
|
+
col1Layout = mixSingleWithBtn;
|
|
836
836
|
}
|
|
837
837
|
}
|
|
838
838
|
if (colsLength === 2) {
|
|
@@ -1291,12 +1291,12 @@ var Easy3wFormPage = function (_Component) {
|
|
|
1291
1291
|
return _react2['default'].createElement(
|
|
1292
1292
|
'div',
|
|
1293
1293
|
{ className: (0, _classnames2['default'])(['countContent']), 'data-count': _this.state.leftCount + '/' + maxCount },
|
|
1294
|
-
_react2['default'].createElement(TextArea, (0, _extends3['default'])({ style: {
|
|
1294
|
+
_react2['default'].createElement(TextArea, (0, _extends3['default'])({ style: { padding: '0 11px', lineHeight: '24px' }, onChange: function onChange(e) {
|
|
1295
1295
|
return _this.textAreaOnchange(e, maxlength);
|
|
1296
1296
|
} }, cmptPros))
|
|
1297
1297
|
);
|
|
1298
1298
|
} else {
|
|
1299
|
-
return _react2['default'].createElement(TextArea, (0, _extends3['default'])({ style: {
|
|
1299
|
+
return _react2['default'].createElement(TextArea, (0, _extends3['default'])({ style: { padding: '0 11px', lineHeight: '24px' }, onChange: function onChange(e) {
|
|
1300
1300
|
return _this.textAreaOnchange(e, maxlength);
|
|
1301
1301
|
} }, cmptPros));
|
|
1302
1302
|
}
|