dialog-content.mjs 700 B

12345678910111213141516171819202122232425262728293031323334
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. import { iconPropType } from '../../../utils/vue/icon.mjs';
  3. const dialogContentProps = buildProps({
  4. center: Boolean,
  5. alignCenter: Boolean,
  6. closeIcon: {
  7. type: iconPropType
  8. },
  9. draggable: Boolean,
  10. overflow: Boolean,
  11. fullscreen: Boolean,
  12. headerClass: String,
  13. bodyClass: String,
  14. footerClass: String,
  15. showClose: {
  16. type: Boolean,
  17. default: true
  18. },
  19. title: {
  20. type: String,
  21. default: ""
  22. },
  23. ariaLevel: {
  24. type: String,
  25. default: "2"
  26. }
  27. });
  28. const dialogContentEmits = {
  29. close: () => true
  30. };
  31. export { dialogContentEmits, dialogContentProps };
  32. //# sourceMappingURL=dialog-content.mjs.map