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.
37 lines
807 B
37 lines
807 B
|
2 years ago
|
import '../../../utils/index.mjs';
|
||
|
|
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
||
|
|
|
||
|
|
const popperTriggerProps = buildProps({
|
||
|
|
virtualRef: {
|
||
|
|
type: definePropType(Object)
|
||
|
|
},
|
||
|
|
virtualTriggering: Boolean,
|
||
|
|
onMouseenter: {
|
||
|
|
type: definePropType(Function)
|
||
|
|
},
|
||
|
|
onMouseleave: {
|
||
|
|
type: definePropType(Function)
|
||
|
|
},
|
||
|
|
onClick: {
|
||
|
|
type: definePropType(Function)
|
||
|
|
},
|
||
|
|
onKeydown: {
|
||
|
|
type: definePropType(Function)
|
||
|
|
},
|
||
|
|
onFocus: {
|
||
|
|
type: definePropType(Function)
|
||
|
|
},
|
||
|
|
onBlur: {
|
||
|
|
type: definePropType(Function)
|
||
|
|
},
|
||
|
|
onContextmenu: {
|
||
|
|
type: definePropType(Function)
|
||
|
|
},
|
||
|
|
id: String,
|
||
|
|
open: Boolean
|
||
|
|
});
|
||
|
|
const usePopperTriggerProps = popperTriggerProps;
|
||
|
|
|
||
|
|
export { popperTriggerProps, usePopperTriggerProps };
|
||
|
|
//# sourceMappingURL=trigger.mjs.map
|