You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
703 B
34 lines
703 B
11 months ago
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
||
|
var props = require('../../../utils/props.js');
|
||
|
require('../../dialog/index.js');
|
||
|
var dialog = require('../../dialog/src/dialog.js');
|
||
|
|
||
|
const drawerProps = props.buildProps({
|
||
|
...dialog.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 = dialog.dialogEmits;
|
||
|
|
||
|
exports.drawerEmits = drawerEmits;
|
||
|
exports.drawerProps = drawerProps;
|
||
|
//# sourceMappingURL=drawer.js.map
|