props.js 863 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. const props = {
  2. actions: {
  3. type: Array,
  4. },
  5. buttonLayout: {
  6. type: String,
  7. value: 'horizontal',
  8. },
  9. cancelBtn: {
  10. type: null,
  11. },
  12. closeBtn: {
  13. type: null,
  14. value: false,
  15. },
  16. closeOnOverlayClick: {
  17. type: Boolean,
  18. value: undefined,
  19. },
  20. confirmBtn: {
  21. type: null,
  22. },
  23. content: {
  24. type: String,
  25. },
  26. externalClasses: {
  27. type: Array,
  28. },
  29. overlayProps: {
  30. type: Object,
  31. value: {},
  32. },
  33. preventScrollThrough: {
  34. type: Boolean,
  35. value: true,
  36. },
  37. showOverlay: {
  38. type: Boolean,
  39. value: true,
  40. },
  41. title: {
  42. type: String,
  43. },
  44. visible: {
  45. type: Boolean,
  46. },
  47. zIndex: {
  48. type: Number,
  49. value: 11500,
  50. },
  51. };
  52. export default props;