props.js 558 B

123456789101112131415161718192021222324
  1. export var DateRangePickerDefaultProps = {
  2. visible: null,
  3. defaultVisible: null,
  4. animationType: 'transform',
  5. format: 'YYYY/MM/DD',
  6. min: null,
  7. max: null,
  8. value: null,
  9. defaultValue: null,
  10. title: '',
  11. okText: '确定',
  12. cancelText: '取消',
  13. placeholder: '请选择',
  14. precision: 'day',
  15. splitCharacter: '-',
  16. startPlaceholder: '未选择',
  17. endPlaceholder: '未选择',
  18. maskClosable: true,
  19. popClassName: '',
  20. popStyle: '',
  21. disabled: false,
  22. onFormatLabel: null,
  23. onFormat: null,
  24. };