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
30
| import '../../../utils/index.mjs';
| import { buildProps } from '../../../utils/vue/props/runtime.mjs';
|
| const effects = ["light", "dark"];
| const triggers = ["click", "contextmenu", "hover", "focus"];
| const Effect = {
| LIGHT: "light",
| DARK: "dark"
| };
| const roleTypes = [
| "dialog",
| "grid",
| "group",
| "listbox",
| "menu",
| "navigation",
| "tooltip",
| "tree"
| ];
| const popperProps = buildProps({
| role: {
| type: String,
| values: roleTypes,
| default: "tooltip"
| }
| });
| const usePopperProps = popperProps;
|
| export { Effect, popperProps, roleTypes, usePopperProps };
| //# sourceMappingURL=popper.mjs.map
|
|