easy3wui 1.4.233 → 1.4.237
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/README.md +7 -1
- package/assets/formPage.css +12 -2
- package/assets/index.css +12 -2
- package/lib/Easy3wFormPage/easy3wFormPage.less +13 -5
- package/lib/Easy3wFormPage/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/assets/formPage.css
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
.ant-upload-list-item {
|
|
2
|
-
width: -webkit-max-content;
|
|
3
2
|
width: -moz-max-content;
|
|
4
3
|
width: max-content;
|
|
5
4
|
}
|
|
6
5
|
.ant-upload-list-item .ant-upload-list-item-info {
|
|
7
|
-
width: -webkit-max-content;
|
|
8
6
|
width: -moz-max-content;
|
|
9
7
|
width: max-content;
|
|
10
8
|
}
|
|
@@ -41,6 +39,12 @@
|
|
|
41
39
|
.formContent :global .ant-form-item-control {
|
|
42
40
|
line-height: 24px;
|
|
43
41
|
}
|
|
42
|
+
.formContent :global .ant-form-item-required::before {
|
|
43
|
+
margin-left: -10px;
|
|
44
|
+
}
|
|
45
|
+
.formContent :global .ant-form-item-label {
|
|
46
|
+
padding-left: 12px;
|
|
47
|
+
}
|
|
44
48
|
.formContentAlone :global .ant-input-group-wrapper {
|
|
45
49
|
vertical-align: middle;
|
|
46
50
|
}
|
|
@@ -50,6 +54,12 @@
|
|
|
50
54
|
.formContentAlone :global .ant-form-item-control {
|
|
51
55
|
line-height: 24px;
|
|
52
56
|
}
|
|
57
|
+
.formContentAlone :global .ant-form-item-required::before {
|
|
58
|
+
margin-left: -10px;
|
|
59
|
+
}
|
|
60
|
+
.formContentAlone :global .ant-form-item-label {
|
|
61
|
+
padding-left: 12px;
|
|
62
|
+
}
|
|
53
63
|
.formContentAlone :global .ant-input-number {
|
|
54
64
|
border-radius: 4px 0 0 4px;
|
|
55
65
|
}
|
package/assets/index.css
CHANGED
|
@@ -1532,12 +1532,10 @@ s {
|
|
|
1532
1532
|
cursor: pointer;
|
|
1533
1533
|
}
|
|
1534
1534
|
.ant-upload-list-item {
|
|
1535
|
-
width: -webkit-max-content;
|
|
1536
1535
|
width: -moz-max-content;
|
|
1537
1536
|
width: max-content;
|
|
1538
1537
|
}
|
|
1539
1538
|
.ant-upload-list-item .ant-upload-list-item-info {
|
|
1540
|
-
width: -webkit-max-content;
|
|
1541
1539
|
width: -moz-max-content;
|
|
1542
1540
|
width: max-content;
|
|
1543
1541
|
}
|
|
@@ -1574,6 +1572,12 @@ s {
|
|
|
1574
1572
|
.formContent :global .ant-form-item-control {
|
|
1575
1573
|
line-height: 24px;
|
|
1576
1574
|
}
|
|
1575
|
+
.formContent :global .ant-form-item-required::before {
|
|
1576
|
+
margin-left: -10px;
|
|
1577
|
+
}
|
|
1578
|
+
.formContent :global .ant-form-item-label {
|
|
1579
|
+
padding-left: 12px;
|
|
1580
|
+
}
|
|
1577
1581
|
.formContentAlone :global .ant-input-group-wrapper {
|
|
1578
1582
|
vertical-align: middle;
|
|
1579
1583
|
}
|
|
@@ -1583,6 +1587,12 @@ s {
|
|
|
1583
1587
|
.formContentAlone :global .ant-form-item-control {
|
|
1584
1588
|
line-height: 24px;
|
|
1585
1589
|
}
|
|
1590
|
+
.formContentAlone :global .ant-form-item-required::before {
|
|
1591
|
+
margin-left: -10px;
|
|
1592
|
+
}
|
|
1593
|
+
.formContentAlone :global .ant-form-item-label {
|
|
1594
|
+
padding-left: 12px;
|
|
1595
|
+
}
|
|
1586
1596
|
.formContentAlone :global .ant-input-number {
|
|
1587
1597
|
border-radius: 4px 0 0 4px;
|
|
1588
1598
|
}
|
|
@@ -11,13 +11,21 @@
|
|
|
11
11
|
.ant-form-item-control {
|
|
12
12
|
line-height: 24px;
|
|
13
13
|
}
|
|
14
|
-
.ant-form-item label { // * 号突出, 文字对齐
|
|
14
|
+
// .ant-form-item-label label { // * 号突出, 文字对齐
|
|
15
|
+
// padding-left: 12px;
|
|
16
|
+
// .ant-form-item-required::before {
|
|
17
|
+
// margin-left: -10px;
|
|
18
|
+
// }
|
|
19
|
+
// }
|
|
20
|
+
.ant-form-item-required::before {
|
|
21
|
+
// color: @formRequiredColor; // * 号颜色
|
|
22
|
+
margin-left: -10px;
|
|
23
|
+
}
|
|
24
|
+
.ant-form-item-label {
|
|
25
|
+
// text-align: @formItemLabelTextAlign; // label标题对齐方式
|
|
15
26
|
padding-left: 12px;
|
|
16
|
-
.ant-form-item-required::before {
|
|
17
|
-
margin-left: -10px;
|
|
18
|
-
}
|
|
19
27
|
}
|
|
20
|
-
|
|
28
|
+
}
|
|
21
29
|
}
|
|
22
30
|
|
|
23
31
|
.countContent::after{
|
|
@@ -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
|
-
|
|
566
|
+
{ style: { marginBottom: '0px' } },
|
|
567
567
|
itemValue
|
|
568
568
|
),
|
|
569
569
|
afterBtns
|