props.js 788 B

1234567891011121314151617181920212223242526272829303132333435
  1. export var InputDefaultProps = {};
  2. export var InputFunctionalProps = {
  3. type: null,
  4. value: null,
  5. defaultValue: null,
  6. placeholder: null,
  7. placeholderClassName: null,
  8. placeholderStyle: null,
  9. allowClear: null,
  10. enableNative: null,
  11. confirmType: null,
  12. confirmHold: null,
  13. controlled: null,
  14. alwaysSystem: null,
  15. selectionStart: null,
  16. selectionEnd: null,
  17. cursor: null,
  18. maxLength: -1,
  19. alwaysEmbed: false,
  20. cursorSpacing: 0,
  21. cursorColor: null,
  22. adjustPosition: true,
  23. holdKeyboard: false,
  24. inputClassName: null,
  25. inputStyle: null,
  26. password: null,
  27. prefix: null,
  28. disabled: null,
  29. focusClassName: null,
  30. suffix: null,
  31. focus: null,
  32. name: null,
  33. focusStyle: null,
  34. randomNumber: null,
  35. };