12345678910111213141516171819202122232425262728293031323334 |
- import { buildProps } from '../../../utils/vue/props/runtime.mjs';
- import { iconPropType } from '../../../utils/vue/icon.mjs';
- const dialogContentProps = buildProps({
- center: Boolean,
- alignCenter: Boolean,
- closeIcon: {
- type: iconPropType
- },
- draggable: Boolean,
- overflow: Boolean,
- fullscreen: Boolean,
- headerClass: String,
- bodyClass: String,
- footerClass: String,
- showClose: {
- type: Boolean,
- default: true
- },
- title: {
- type: String,
- default: ""
- },
- ariaLevel: {
- type: String,
- default: "2"
- }
- });
- const dialogContentEmits = {
- close: () => true
- };
- export { dialogContentEmits, dialogContentProps };
- //# sourceMappingURL=dialog-content.mjs.map
|