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.
36 lines
622 B
36 lines
622 B
const props = {
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
loadingBarHeight: {
|
|
type: String,
|
|
optionalTypes: [Number],
|
|
value: 50,
|
|
},
|
|
loadingProps: {
|
|
type: Object,
|
|
},
|
|
loadingTexts: {
|
|
type: Array,
|
|
value: [],
|
|
},
|
|
maxBarHeight: {
|
|
type: String,
|
|
optionalTypes: [Number],
|
|
value: 80,
|
|
},
|
|
refreshTimeout: {
|
|
type: Number,
|
|
value: 3000,
|
|
},
|
|
value: {
|
|
type: Boolean,
|
|
value: null,
|
|
},
|
|
defaultValue: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
};
|
|
export default props;
|