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.

48 lines
785 B

const props = {
disableInput: {
type: Boolean,
value: false,
},
disabled: {
type: Boolean,
value: false,
},
externalClasses: {
type: Array,
},
inputWidth: {
type: Number,
},
max: {
type: Number,
value: 100,
},
min: {
type: Number,
value: 0,
},
step: {
type: Number,
value: 1,
},
size: {
type: String,
value: 'medium',
},
theme: {
type: String,
value: 'normal',
},
value: {
type: String,
optionalTypes: [Number],
value: null,
},
defaultValue: {
type: String,
optionalTypes: [Number],
value: 0,
},
};
export default props;