You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
512 B
33 lines
512 B
const props = {
|
|
animation: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
delta: {
|
|
type: Number,
|
|
value: 1,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
fixed: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
leftArrow: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
title: {
|
|
type: String,
|
|
},
|
|
titleMaxLength: {
|
|
type: Number,
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
};
|
|
export default props;
|