props.js 576 B

1234567891011121314151617181920212223242526272829303132
  1. const props = {
  2. current: {
  3. type: String,
  4. optionalTypes: [Number],
  5. value: null,
  6. },
  7. defaultCurrent: {
  8. type: String,
  9. optionalTypes: [Number],
  10. value: 0,
  11. },
  12. currentStatus: {
  13. type: String,
  14. value: 'process',
  15. },
  16. externalClasses: {
  17. type: Array,
  18. },
  19. layout: {
  20. type: String,
  21. value: 'horizontal',
  22. },
  23. readonly: {
  24. type: Boolean,
  25. value: false,
  26. },
  27. theme: {
  28. type: String,
  29. value: 'default',
  30. },
  31. };
  32. export default props;