123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- export default {
- props: {
-
- mode: {
- type: String,
- default: uni.$u.props.keyboard.mode
- },
-
- dotDisabled: {
- type: Boolean,
- default: uni.$u.props.keyboard.dotDisabled
- },
-
- tooltip: {
- type: Boolean,
- default: uni.$u.props.keyboard.tooltip
- },
-
- showTips: {
- type: Boolean,
- default: uni.$u.props.keyboard.showTips
- },
-
- tips: {
- type: String,
- default: uni.$u.props.keyboard.tips
- },
-
- showCancel: {
- type: Boolean,
- default: uni.$u.props.keyboard.showCancel
- },
-
- showConfirm: {
- type: Boolean,
- default: uni.$u.props.keyboard.showConfirm
- },
-
- random: {
- type: Boolean,
- default: uni.$u.props.keyboard.random
- },
-
- safeAreaInsetBottom: {
- type: Boolean,
- default: uni.$u.props.keyboard.safeAreaInsetBottom
- },
-
- closeOnClickOverlay: {
- type: Boolean,
- default: uni.$u.props.keyboard.closeOnClickOverlay
- },
-
- show: {
- type: Boolean,
- default: uni.$u.props.keyboard.show
- },
-
- overlay: {
- type: Boolean,
- default: uni.$u.props.keyboard.overlay
- },
-
- zIndex: {
- type: [String, Number],
- default: uni.$u.props.keyboard.zIndex
- },
-
- cancelText: {
- type: String,
- default: uni.$u.props.keyboard.cancelText
- },
-
- confirmText: {
- type: String,
- default: uni.$u.props.keyboard.confirmText
- },
-
- autoChange: {
- type: Boolean,
- default: uni.$u.props.keyboard.autoChange
- }
- }
- }
|