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.
39 lines
942 B
39 lines
942 B
7 years ago
|
export default {
|
||
|
prefixCls: {
|
||
|
default: 'ant-input',
|
||
|
type: String,
|
||
|
},
|
||
|
defaultValue: [String, Number],
|
||
|
value: [String, Number],
|
||
|
placeholder: [String, Number],
|
||
|
type: {
|
||
|
default: 'text',
|
||
|
type: String,
|
||
|
},
|
||
|
id: [String, Number],
|
||
|
name: String,
|
||
|
size: {
|
||
|
validator (value) {
|
||
|
return ['small', 'large', 'default'].includes(value)
|
||
|
},
|
||
|
},
|
||
|
disabled: {
|
||
|
default: false,
|
||
|
type: Boolean,
|
||
|
},
|
||
|
readOnly: Boolean,
|
||
|
// addonBefore: React.ReactNode,
|
||
|
// addonAfter: React.ReactNode,
|
||
|
// onPressEnter?: React.FormEventHandler<any>;
|
||
|
// onKeyDown?: React.FormEventHandler<any>;
|
||
|
// onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
||
|
// onClick?: React.FormEventHandler<any>;
|
||
|
// onFocus?: React.FormEventHandler<any>;
|
||
|
// onBlur?: React.FormEventHandler<any>;
|
||
|
// autoComplete: String;
|
||
|
// prefix: React.ReactNode,
|
||
|
// suffix: React.ReactNode,
|
||
|
spellCheck: Boolean,
|
||
|
autoFocus: Boolean,
|
||
|
}
|