props.js 648 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. const props = {
  2. direction: {
  3. type: String,
  4. value: 'row',
  5. },
  6. duration: {
  7. type: Number,
  8. value: 2000,
  9. },
  10. icon: {
  11. type: null,
  12. },
  13. message: {
  14. type: String,
  15. },
  16. overlayProps: {
  17. type: Object,
  18. },
  19. placement: {
  20. type: String,
  21. value: 'middle',
  22. },
  23. preventScrollThrough: {
  24. type: Boolean,
  25. value: false,
  26. },
  27. showOverlay: {
  28. type: Boolean,
  29. value: false,
  30. },
  31. theme: {
  32. type: String,
  33. },
  34. usingCustomNavbar: {
  35. type: Boolean,
  36. value: false,
  37. },
  38. };
  39. export default props;