1
This commit is contained in:
79
admin/node_modules/element-plus/es/components/dialog/src/dialog.mjs
generated
vendored
Normal file
79
admin/node_modules/element-plus/es/components/dialog/src/dialog.mjs
generated
vendored
Normal file
@@ -0,0 +1,79 @@
|
||||
import { dialogContentProps } from './dialog-content.mjs';
|
||||
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
||||
import { teleportProps } from '../../teleport/src/teleport.mjs';
|
||||
import { UPDATE_MODEL_EVENT } from '../../../constants/event.mjs';
|
||||
import { isBoolean } from '../../../utils/types.mjs';
|
||||
|
||||
const dialogProps = buildProps({
|
||||
...dialogContentProps,
|
||||
appendToBody: Boolean,
|
||||
appendTo: {
|
||||
type: teleportProps.to.type,
|
||||
default: "body"
|
||||
},
|
||||
beforeClose: {
|
||||
type: definePropType(Function)
|
||||
},
|
||||
destroyOnClose: Boolean,
|
||||
closeOnClickModal: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
closeOnPressEscape: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
lockScroll: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
modal: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
modalPenetrable: Boolean,
|
||||
openDelay: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
closeDelay: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
top: {
|
||||
type: String
|
||||
},
|
||||
modelValue: Boolean,
|
||||
modalClass: String,
|
||||
headerClass: String,
|
||||
bodyClass: String,
|
||||
footerClass: String,
|
||||
width: {
|
||||
type: [String, Number]
|
||||
},
|
||||
zIndex: {
|
||||
type: Number
|
||||
},
|
||||
trapFocus: Boolean,
|
||||
headerAriaLevel: {
|
||||
type: String,
|
||||
default: "2"
|
||||
},
|
||||
transition: {
|
||||
type: definePropType([String, Object]),
|
||||
default: void 0
|
||||
}
|
||||
});
|
||||
const dialogEmits = {
|
||||
open: () => true,
|
||||
opened: () => true,
|
||||
close: () => true,
|
||||
closed: () => true,
|
||||
[UPDATE_MODEL_EVENT]: (value) => isBoolean(value),
|
||||
openAutoFocus: () => true,
|
||||
closeAutoFocus: () => true
|
||||
};
|
||||
const dialogContextKey = Symbol("dialogContextKey");
|
||||
|
||||
export { dialogContextKey, dialogEmits, dialogProps };
|
||||
//# sourceMappingURL=dialog.mjs.map
|
||||
Reference in New Issue
Block a user