props.js 611 B

12345678910111213141516171819202122232425262728
  1. export var InputDefaultProps = {
  2. type: null,
  3. value: null,
  4. defaultValue: null,
  5. placeholder: null,
  6. placeholderClassName: null,
  7. placeholderStyle: null,
  8. allowClear: null,
  9. enableNative: null,
  10. confirmType: null,
  11. confirmHold: null,
  12. controlled: null,
  13. alwaysSystem: null,
  14. selectionStart: null,
  15. selectionEnd: null,
  16. cursor: null,
  17. inputClassName: null,
  18. inputStyle: null,
  19. password: null,
  20. prefix: null,
  21. disabled: null,
  22. focusClassName: null,
  23. suffix: null,
  24. focus: null,
  25. name: null,
  26. focusStyle: null,
  27. randomNumber: null,
  28. };