props.js 431 B

12345678910111213141516171819
  1. export var PickerDefaultProps = {
  2. formattedValueText: null,
  3. visible: null,
  4. defaultVisible: null,
  5. animationType: 'transform',
  6. value: null,
  7. defaultValue: null,
  8. disabled: false,
  9. title: '',
  10. okText: '确定',
  11. cancelText: '取消',
  12. placeholder: '请选择',
  13. options: [],
  14. popClassName: '',
  15. popStyle: '',
  16. maskClosable: true,
  17. onFormat: null,
  18. emptyText: '暂无数据',
  19. };