props.js 569 B

1234567891011121314151617181920212223242526272829303132333435
  1. const props = {
  2. animation: {
  3. type: Object,
  4. },
  5. externalClasses: {
  6. type: Array,
  7. },
  8. placement: {
  9. type: String,
  10. value: 'top',
  11. },
  12. showBottomLine: {
  13. type: Boolean,
  14. value: true,
  15. },
  16. sticky: {
  17. type: Boolean,
  18. value: false,
  19. },
  20. stickyProps: {
  21. type: Object,
  22. },
  23. swipeable: {
  24. type: Boolean,
  25. value: true,
  26. },
  27. value: {
  28. type: null,
  29. value: null,
  30. },
  31. defaultValue: {
  32. type: null,
  33. },
  34. };
  35. export default props;