easy3wui 1.5.88-beta3 → 1.5.88-beta5
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/btn.css +4 -1
- package/assets/index.css +4 -1
- package/lib/Easy3wButton/index.js +4 -2
- package/package.json +1 -1
package/assets/btn.css
CHANGED
|
@@ -5,13 +5,16 @@
|
|
|
5
5
|
.e3wFootBtn {
|
|
6
6
|
margin: 0px 8px;
|
|
7
7
|
}
|
|
8
|
+
.e3wFootBtn.e3wFootBtnThird {
|
|
9
|
+
border: none;
|
|
10
|
+
}
|
|
8
11
|
.e3wFormBtn {
|
|
9
12
|
margin-right: 8px;
|
|
10
13
|
}
|
|
11
14
|
.positionDiv {
|
|
12
15
|
position: absolute;
|
|
13
16
|
right: 32px;
|
|
14
|
-
top: 16px;
|
|
17
|
+
top: var(--card-head-padding, 16px);
|
|
15
18
|
}
|
|
16
19
|
.e3wPositionA {
|
|
17
20
|
font-size: 15px;
|
package/assets/index.css
CHANGED
|
@@ -2625,13 +2625,16 @@ input.ant-input-number-input {
|
|
|
2625
2625
|
.e3wFootBtn {
|
|
2626
2626
|
margin: 0px 8px;
|
|
2627
2627
|
}
|
|
2628
|
+
.e3wFootBtn.e3wFootBtnThird {
|
|
2629
|
+
border: none;
|
|
2630
|
+
}
|
|
2628
2631
|
.e3wFormBtn {
|
|
2629
2632
|
margin-right: 8px;
|
|
2630
2633
|
}
|
|
2631
2634
|
.positionDiv {
|
|
2632
2635
|
position: absolute;
|
|
2633
2636
|
right: 32px;
|
|
2634
|
-
top: 16px;
|
|
2637
|
+
top: var(--card-head-padding, 16px);
|
|
2635
2638
|
}
|
|
2636
2639
|
.e3wPositionA {
|
|
2637
2640
|
font-size: 15px;
|
|
@@ -141,6 +141,8 @@ var Easy3wButton = function (_Component) {
|
|
|
141
141
|
// 传入btnType
|
|
142
142
|
if (btnType === 'secondary') {
|
|
143
143
|
typeProps = {};
|
|
144
|
+
} else if (btnType === 'third') {
|
|
145
|
+
typeProps = { classname: (0, _classnames2['default'])(['e3wFootBtn', 'e3wFootBtnThird']) };
|
|
144
146
|
} else {
|
|
145
147
|
typeProps = { type: btnType };
|
|
146
148
|
}
|
|
@@ -156,9 +158,9 @@ var Easy3wButton = function (_Component) {
|
|
|
156
158
|
onClick: function onClick(e) {
|
|
157
159
|
return _this.onClickFunc(e, obj.func);
|
|
158
160
|
},
|
|
159
|
-
loading: obj.loading
|
|
161
|
+
loading: obj.loading,
|
|
162
|
+
className: (0, _classnames2['default'])(['e3wFootBtn'])
|
|
160
163
|
}, typeProps, {
|
|
161
|
-
className: (0, _classnames2['default'])(['e3wFootBtn']),
|
|
162
164
|
key: index
|
|
163
165
|
}),
|
|
164
166
|
obj.cName
|