props.js 921 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. const props = {
  2. actions: {
  3. type: Array,
  4. },
  5. buttonLayout: {
  6. type: String,
  7. value: 'horizontal',
  8. },
  9. cancelBtn: {
  10. type: String,
  11. optionalTypes: [Object],
  12. value: '',
  13. },
  14. closeOnOverlayClick: {
  15. type: Boolean,
  16. value: true,
  17. },
  18. confirmBtn: {
  19. type: null,
  20. optionalTypes: [Object],
  21. value: '',
  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. value: false,
  47. },
  48. zIndex: {
  49. type: Number,
  50. value: 11500,
  51. },
  52. };
  53. export default props;