4e9226b6d443983051f04437773aef551a7270733ac82fe6f8fd4c714cb7b37984288feeb9db433dc13b8576f9ac23dc83d69bf3e79b1e310a5ea99ef989e2 811 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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: {
  6. type: Boolean,
  7. default: void 0
  8. },
  9. closeIcon: {
  10. type: iconPropType
  11. },
  12. draggable: {
  13. type: Boolean,
  14. default: void 0
  15. },
  16. overflow: {
  17. type: Boolean,
  18. default: void 0
  19. },
  20. fullscreen: Boolean,
  21. headerClass: String,
  22. bodyClass: String,
  23. footerClass: String,
  24. showClose: {
  25. type: Boolean,
  26. default: true
  27. },
  28. title: {
  29. type: String,
  30. default: ""
  31. },
  32. ariaLevel: {
  33. type: String,
  34. default: "2"
  35. }
  36. });
  37. const dialogContentEmits = {
  38. close: () => true
  39. };
  40. export { dialogContentEmits, dialogContentProps };
  41. //# sourceMappingURL=dialog-content.mjs.map