index.axml 894 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <picker
  2. className="ant-date-picker"
  3. popClassName="ant-date-picker-popup {{popClassName || ''}}"
  4. style="{{style}}"
  5. popStyle="{{popStyle}}"
  6. animationType="{{ animationType }}"
  7. options="{{columns}}"
  8. value="{{currentValue}}"
  9. disabled="{{disabled}}"
  10. title="{{title}}"
  11. placeholder="{{placeholder}}"
  12. okText="{{okText}}"
  13. cancelText="{{cancelText}}"
  14. maskStyle="{{maskStyle}}"
  15. maskClassName="{{maskClassName}}"
  16. indicatorStyle="{{indicatorStyle}}"
  17. indicatorClassName="{{indicatorClassName}}"
  18. onChange="onChange"
  19. onCancel="onCancel"
  20. onOk="onOk"
  21. onVisibleChange="onVisibleChange"
  22. maskClosable="{{maskClosable}}"
  23. forceUpdate="{{forceUpdate}}"
  24. onFormat="onFormat">
  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. </picker>