File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
src/components/form-spinbutton Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,10 @@ export const BFormSpinbutton = /*#__PURE__*/ Vue.extend({
96
96
type : Boolean ,
97
97
default : false
98
98
} ,
99
+ buttonVariant : {
100
+ type : String ,
101
+ default : 'outline-secondary'
102
+ } ,
99
103
labelIncrement : {
100
104
type : String ,
101
105
default : 'Increment'
@@ -226,12 +230,11 @@ export const BFormSpinbutton = /*#__PURE__*/ Vue.extend({
226
230
BButton ,
227
231
{
228
232
key : key || null ,
229
- staticClass : 'btn btn-sm border-0' ,
233
+ staticClass : 'btn btn-sm border-0 rounded-0 ' ,
230
234
class : { 'py-0' : ! isVertical } ,
231
235
props : {
232
- variant : this . variant ,
233
- disabled : isDisabled || isReadonly ,
234
- block : isVertical
236
+ variant : this . buttonVariant ,
237
+ disabled : isDisabled || isReadonly
235
238
} ,
236
239
attrs : {
237
240
tabindex : '-1' ,
You can’t perform that action at this time.
0 commit comments