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.
28 lines
607 B
28 lines
607 B
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.pickerProps = exports.DEFAULT_ITEM_HEIGHT = void 0;
|
|
var DEFAULT_ITEM_HEIGHT = 44;
|
|
exports.DEFAULT_ITEM_HEIGHT = DEFAULT_ITEM_HEIGHT;
|
|
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
|
|
}
|
|
};
|
|
exports.pickerProps = pickerProps; |