props.js 920 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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: false,
  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. style: {
  42. type: String,
  43. value: '',
  44. },
  45. title: {
  46. type: String,
  47. },
  48. visible: {
  49. type: Boolean,
  50. },
  51. zIndex: {
  52. type: Number,
  53. value: 11500,
  54. },
  55. };
  56. export default props;