File tree 2 files changed +9
-17
lines changed 2 files changed +9
-17
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,7 @@ exports[`stepper event : input 1`] = `
12
12
class = " t-stepper__minus t-stepper__minus--normal t-stepper__icon--medium t-class-minus"
13
13
catch:tap="minusValue"
14
14
>
15
- <t-icon
16
- class = " t-stepper__minus-icon"
17
- >
15
+ <t-icon >
18
16
<wx-view
19
17
ariaHidden = " {{false}}"
20
18
ariaLabel = " "
@@ -47,12 +45,10 @@ exports[`stepper event : input 1`] = `
47
45
ariaDisabled = " {{false}}"
48
46
ariaLabel = " 增加2"
49
47
ariaRole = " button"
50
- class = " t-stepper__plus t-stepper__plus--normal t-stepper__icon--medium t-class-plus"
48
+ class = " t-stepper__plus t-stepper__plus--normal t-stepper__icon--medium t-class-plus"
51
49
catch:tap="plusValue"
52
50
>
53
- <t-icon
54
- class = " t-stepper__plus-icon"
55
- >
51
+ <t-icon >
56
52
<wx-view
57
53
ariaHidden = " {{false}}"
58
54
ariaLabel = " "
@@ -82,9 +78,7 @@ exports[`stepper event : input 2`] = `
82
78
class = " t-stepper__minus t-stepper__minus--normal t-stepper__icon--medium t-class-minus"
83
79
catch:tap="minusValue"
84
80
>
85
- <t-icon
86
- class = " t-stepper__minus-icon"
87
- >
81
+ <t-icon >
88
82
<wx-view
89
83
ariaHidden = " {{false}}"
90
84
ariaLabel = " "
@@ -117,12 +111,10 @@ exports[`stepper event : input 2`] = `
117
111
ariaDisabled = " {{false}}"
118
112
ariaLabel = " 增加2"
119
113
ariaRole = " button"
120
- class = " t-stepper__plus t-stepper__plus--normal t-stepper__icon--medium t-class-plus"
114
+ class = " t-stepper__plus t-stepper__plus--normal t-stepper__icon--medium t-class-plus"
121
115
catch:tap="plusValue"
122
116
>
123
- <t-icon
124
- class = " t-stepper__plus-icon"
125
- >
117
+ <t-icon >
126
118
<wx-view
127
119
ariaHidden = " {{false}}"
128
120
ariaLabel = " "
Original file line number Diff line number Diff line change 11
11
aria-role="button"
12
12
aria-disabled="{{disabled || disableMinus || currentValue <= min}}"
13
13
>
14
- <t-icon name="remove" class="{{classPrefix}}__minus-icon" />
14
+ <t-icon name="remove" />
15
15
</view>
16
16
<view
17
17
class="{{classPrefix}}__input--{{theme}} {{ disabled || disableInput ? classPrefix + '--' + theme + '-disabled': ''}}"
28
28
/>
29
29
</view>
30
30
<view
31
- class="{{classPrefix}}__plus {{classPrefix}}__plus--{{theme}} {{classPrefix}}__icon--{{size}} {{ disabled || disablePlus|| currentValue >= max ? classPrefix + '--' + theme + '-disabled': ''}} {{prefix}}-class-plus"
31
+ class="{{classPrefix}}__plus {{classPrefix}}__plus--{{theme}} {{classPrefix}}__icon--{{size}} {{ disabled || disablePlus|| currentValue >= max ? classPrefix + '--' + theme + '-disabled': ''}} {{prefix}}-class-plus"
32
32
catchtap="plusValue"
33
33
aria-label="{{'增加' + step}}"
34
34
aria-role="button"
35
35
aria-disabled="{{disabled || disablePlus|| currentValue >= max}}"
36
36
>
37
- <t-icon name="add" class="{{classPrefix}}__plus-icon" />
37
+ <t-icon name="add" />
38
38
</view>
39
39
</view>
You can’t perform that action at this time.
0 commit comments