index.axml 952 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <ant-picker
  2. className="ant-date-picker"
  3. popClassName="ant-date-picker-popup {{ popClassName || '' }}"
  4. visible="{{ visible }}"
  5. style="{{ style }}"
  6. popStyle="{{ popStyle }}"
  7. animationType="{{ animationType }}"
  8. options="{{ columns }}"
  9. value="{{ currentValue }}"
  10. disabled="{{ disabled }}"
  11. title="{{ title }}"
  12. placeholder="{{ placeholder }}"
  13. okText="{{ okText }}"
  14. cancelText="{{ cancelText }}"
  15. maskStyle="{{ maskStyle }}"
  16. maskClassName="{{ maskClassName }}"
  17. indicatorStyle="{{ indicatorStyle }}"
  18. indicatorClassName="{{ indicatorClassName }}"
  19. onChange="onChange"
  20. onCancel="onCancel"
  21. onOk="onOk"
  22. formattedValueText="{{ formattedValueText }}"
  23. onVisibleChange="onVisibleChange"
  24. maskClosable="{{ maskClosable }}">
  25. <slot
  26. name="content"
  27. slot="content" />
  28. <slot
  29. name="title"
  30. slot="title" />
  31. <slot
  32. name="prefix"
  33. slot="prefix" />
  34. <slot
  35. name="suffix"
  36. slot="suffix" />
  37. </ant-picker>