1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| import '../../../utils/index.mjs';
| import '../../dialog/index.mjs';
| import { buildProps } from '../../../utils/vue/props/runtime.mjs';
| import { dialogProps, dialogEmits } from '../../dialog/src/dialog.mjs';
|
| const drawerProps = buildProps({
| ...dialogProps,
| direction: {
| type: String,
| default: "rtl",
| values: ["ltr", "rtl", "ttb", "btt"]
| },
| size: {
| type: [String, Number],
| default: "30%"
| },
| withHeader: {
| type: Boolean,
| default: true
| },
| modalFade: {
| type: Boolean,
| default: true
| }
| });
| const drawerEmits = dialogEmits;
|
| export { drawerEmits, drawerProps };
| //# sourceMappingURL=drawer.mjs.map
|
|