File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
api-generator/src/locale/en
vuetify/src/components/VSlideGroup Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"props" : {
3
3
"centerActive" : " Forces the selected component to be centered." ,
4
+ "contentClass" : " Adds classes to the slide group item." ,
4
5
"direction" : " Switch between horizontal and vertical modes." ,
5
6
"mobileBreakpoint" : " Sets the designated mobile breakpoint for the component." ,
6
7
"nextIcon" : " The appended slot when arrows are shown." ,
Original file line number Diff line number Diff line change 124
124
"end" : " 3.2.0"
125
125
}
126
126
},
127
+ "VSlideGroup" : {
128
+ "props" : {
129
+ "contentClass" : " 3.9.0"
130
+ }
131
+ },
127
132
"VSnackbar" : {
128
133
"props" : {
129
134
"timer" : " 3.4.0" ,
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ type VSlideGroupSlots = {
50
50
51
51
export const makeVSlideGroupProps = propsFactory ( {
52
52
centerActive : Boolean ,
53
+ contentClass : null ,
53
54
direction : {
54
55
type : String as PropType < 'horizontal' | 'vertical' > ,
55
56
default : 'horizontal' ,
@@ -425,7 +426,10 @@ export const VSlideGroup = genericComponent<new <T>(
425
426
< div
426
427
key = "container"
427
428
ref = { containerRef }
428
- class = "v-slide-group__container"
429
+ class = { [
430
+ 'v-slide-group__container' ,
431
+ props . contentClass ,
432
+ ] }
429
433
onScroll = { onScroll }
430
434
>
431
435
< div
You can’t perform that action at this time.
0 commit comments