index.axml 811 B

12345678910111213141516171819202122232425
  1. <input
  2. enableNative="{{ enableNative }}"
  3. name="{{ name }}"
  4. class="{{ className }}"
  5. style="{{ style }}"
  6. disabled="{{ disabled }}"
  7. value="{{ state.value }}"
  8. type="{{ type }}"
  9. password="{{ password }}"
  10. placeholder="{{ placeholder }}"
  11. placeholder-class="ant-input-item-placeholder-base {{ placeholderClassName ? placeholderClassName : '' }}"
  12. placeholder-style="{{ placeholderStyle ? placeholderStyle : '' }}"
  13. maxlength="{{ maxLength }}"
  14. focus="{{ focus }}"
  15. confirm-type="{{ confirmType }}"
  16. confirm-hold="{{ confirmHold }}"
  17. always-system="{{ alwaysSystem }}"
  18. cursor="{{ cursor }}"
  19. selection-start="{{ selectionStart }}"
  20. selection-end="{{ selectionEnd }}"
  21. random-number="{{ randomNumber }}"
  22. onInput="onChange"
  23. onConfirm="onConfirm"
  24. onFocus="onFocus"
  25. onBlur="onBlur" />