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.
22 lines
433 B
22 lines
433 B
export var DEFAULT_ITEM_HEIGHT = 44;
|
|
export var pickerProps = {
|
|
title: String,
|
|
loading: Boolean,
|
|
readonly: Boolean,
|
|
itemHeight: [Number, String],
|
|
showToolbar: Boolean,
|
|
cancelButtonText: String,
|
|
confirmButtonText: String,
|
|
allowHtml: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
visibleItemCount: {
|
|
type: [Number, String],
|
|
default: 6
|
|
},
|
|
swipeDuration: {
|
|
type: [Number, String],
|
|
default: 1000
|
|
}
|
|
}; |