easy3wui 1.4.261 → 1.4.265
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 +8 -2
- package/assets/index.css +8 -2
- package/lib/Easy3wFormPage/index.js +7 -7
- package/package.json +2 -1
package/assets/formPage.css
CHANGED
|
@@ -17,7 +17,10 @@
|
|
|
17
17
|
}
|
|
18
18
|
.e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
19
19
|
height: 24px;
|
|
20
|
-
color:
|
|
20
|
+
color: #5468b2;
|
|
21
|
+
}
|
|
22
|
+
.e3wFormPageNoBorder .hasAfterBtns :global .ant-calendar-picker {
|
|
23
|
+
min-width: 100% !important;
|
|
21
24
|
}
|
|
22
25
|
.e3wFormPage {
|
|
23
26
|
border-top: 1px solid #e8e8e8;
|
|
@@ -31,7 +34,10 @@
|
|
|
31
34
|
}
|
|
32
35
|
.e3wFormPage > div > .ant-row .ant-btn {
|
|
33
36
|
height: 24px;
|
|
34
|
-
color:
|
|
37
|
+
color: #5468b2;
|
|
38
|
+
}
|
|
39
|
+
.e3wFormPage .hasAfterBtns :global .ant-calendar-picker {
|
|
40
|
+
min-width: 100% !important;
|
|
35
41
|
}
|
|
36
42
|
.e3wFormItem .ant-form-item {
|
|
37
43
|
margin-bottom: 8px;
|
package/assets/index.css
CHANGED
|
@@ -1617,7 +1617,10 @@ s {
|
|
|
1617
1617
|
}
|
|
1618
1618
|
.e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
1619
1619
|
height: 24px;
|
|
1620
|
-
color:
|
|
1620
|
+
color: #5468b2;
|
|
1621
|
+
}
|
|
1622
|
+
.e3wFormPageNoBorder .hasAfterBtns :global .ant-calendar-picker {
|
|
1623
|
+
min-width: 100% !important;
|
|
1621
1624
|
}
|
|
1622
1625
|
.e3wFormPage {
|
|
1623
1626
|
border-top: 1px solid #e8e8e8;
|
|
@@ -1631,7 +1634,10 @@ s {
|
|
|
1631
1634
|
}
|
|
1632
1635
|
.e3wFormPage > div > .ant-row .ant-btn {
|
|
1633
1636
|
height: 24px;
|
|
1634
|
-
color:
|
|
1637
|
+
color: #5468b2;
|
|
1638
|
+
}
|
|
1639
|
+
.e3wFormPage .hasAfterBtns :global .ant-calendar-picker {
|
|
1640
|
+
min-width: 100% !important;
|
|
1635
1641
|
}
|
|
1636
1642
|
.e3wFormItem .ant-form-item {
|
|
1637
1643
|
margin-bottom: 8px;
|
|
@@ -450,13 +450,13 @@ var Easy3wFormPage = function (_Component) {
|
|
|
450
450
|
if (afterBtn) {
|
|
451
451
|
var allBtn = afterBtn.map(function (btn) {
|
|
452
452
|
if (btn.objType === 'btn') {
|
|
453
|
-
return _this.btnHandler(btn,
|
|
453
|
+
return _this.btnHandler(btn, 'afterBtn');
|
|
454
454
|
}
|
|
455
455
|
if (btn.objType === 'a') {
|
|
456
|
-
return _this.aHandler(btn,
|
|
456
|
+
return _this.aHandler(btn, 'afterBtn');
|
|
457
457
|
}
|
|
458
458
|
if (btn.objType === 'string') {
|
|
459
|
-
return _this.strHandler(btn,
|
|
459
|
+
return _this.strHandler(btn, 'afterBtn');
|
|
460
460
|
}
|
|
461
461
|
return {};
|
|
462
462
|
});
|
|
@@ -604,7 +604,7 @@ var Easy3wFormPage = function (_Component) {
|
|
|
604
604
|
}),
|
|
605
605
|
_react2['default'].createElement(
|
|
606
606
|
'div',
|
|
607
|
-
{ style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
607
|
+
{ className: (0, _classnames2['default'])(['hasAfterBtns']), style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
608
608
|
_react2['default'].createElement(
|
|
609
609
|
'span',
|
|
610
610
|
{ style: { wordBreak: 'break-all' } },
|
|
@@ -661,7 +661,7 @@ var Easy3wFormPage = function (_Component) {
|
|
|
661
661
|
}),
|
|
662
662
|
_react2['default'].createElement(
|
|
663
663
|
'div',
|
|
664
|
-
{ style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
664
|
+
{ className: (0, _classnames2['default'])(['hasAfterBtns']), style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
665
665
|
_react2['default'].createElement(
|
|
666
666
|
'span',
|
|
667
667
|
{ style: { wordBreak: 'break-all' } },
|
|
@@ -1376,7 +1376,7 @@ var Easy3wFormPage = function (_Component) {
|
|
|
1376
1376
|
}),
|
|
1377
1377
|
_react2['default'].createElement(
|
|
1378
1378
|
'div',
|
|
1379
|
-
{ style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
1379
|
+
{ className: (0, _classnames2['default'])(['hasAfterBtns']), style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
1380
1380
|
_react2['default'].createElement(
|
|
1381
1381
|
_row2['default'],
|
|
1382
1382
|
{ style: { flexGrow: 1 } },
|
|
@@ -1497,7 +1497,7 @@ var Easy3wFormPage = function (_Component) {
|
|
|
1497
1497
|
}),
|
|
1498
1498
|
_react2['default'].createElement(
|
|
1499
1499
|
'div',
|
|
1500
|
-
{ style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
1500
|
+
{ className: (0, _classnames2['default'])(['hasAfterBtns']), style: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap' } },
|
|
1501
1501
|
_react2['default'].createElement(
|
|
1502
1502
|
'span',
|
|
1503
1503
|
{ style: { flexGrow: 1 } },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy3wui",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.265",
|
|
4
4
|
"description": "easy3wui components for react",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -105,6 +105,7 @@
|
|
|
105
105
|
"antd": "3.24.2",
|
|
106
106
|
"braft-editor": "^2.3.8",
|
|
107
107
|
"lodash": "4.17.11",
|
|
108
|
+
"node-red": "^2.1.4",
|
|
108
109
|
"react-images": "^1.0.0",
|
|
109
110
|
"react-number-format": "^4.3.1",
|
|
110
111
|
"react-number-input": "^15.5.1",
|