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.
37 lines
1.1 KiB
37 lines
1.1 KiB
import PropTypes from '../_util/vue-types';
|
|
export default {
|
|
prefixCls: PropTypes.string,
|
|
inputPrefixCls: PropTypes.string,
|
|
defaultValue: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
placeholder: [String, Number],
|
|
type: {
|
|
default: 'text',
|
|
type: String,
|
|
},
|
|
name: String,
|
|
size: PropTypes.oneOf(['small', 'large', 'default']),
|
|
disabled: PropTypes.bool,
|
|
readOnly: PropTypes.bool,
|
|
addonBefore: PropTypes.any,
|
|
addonAfter: PropTypes.any,
|
|
// onPressEnter?: React.FormEventHandler<any>;
|
|
// onKeyDown?: React.FormEventHandler<any>;
|
|
// onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
// onClick?: React.FormEventHandler<any>;
|
|
// onFocus?: React.FormEventHandler<any>;
|
|
// onBlur?: React.FormEventHandler<any>;
|
|
prefix: PropTypes.any,
|
|
suffix: PropTypes.any,
|
|
// spellCheck: Boolean,
|
|
autoFocus: Boolean,
|
|
allowClear: Boolean,
|
|
lazy: {
|
|
default: true,
|
|
type: Boolean,
|
|
},
|
|
maxLength: PropTypes.number,
|
|
loading: PropTypes.bool,
|
|
className: PropTypes.string,
|
|
};
|