36 lines
569 B
JavaScript
36 lines
569 B
JavaScript
|
const props = {
|
||
|
animation: {
|
||
|
type: Object,
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
placement: {
|
||
|
type: String,
|
||
|
value: 'top',
|
||
|
},
|
||
|
showBottomLine: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
sticky: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
stickyProps: {
|
||
|
type: Object,
|
||
|
},
|
||
|
swipeable: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
value: {
|
||
|
type: null,
|
||
|
value: null,
|
||
|
},
|
||
|
defaultValue: {
|
||
|
type: null,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|