1 | export declare const PopoverPosition: {
|
2 | AUTO: "auto";
|
3 | AUTO_END: "auto-end";
|
4 | AUTO_START: "auto-start";
|
5 | BOTTOM: "bottom";
|
6 | BOTTOM_LEFT: "bottom-left";
|
7 | BOTTOM_RIGHT: "bottom-right";
|
8 | LEFT: "left";
|
9 | LEFT_BOTTOM: "left-bottom";
|
10 | LEFT_TOP: "left-top";
|
11 | RIGHT: "right";
|
12 | RIGHT_BOTTOM: "right-bottom";
|
13 | RIGHT_TOP: "right-top";
|
14 | TOP: "top";
|
15 | TOP_LEFT: "top-left";
|
16 | TOP_RIGHT: "top-right";
|
17 | };
|
18 | export type PopoverPosition = (typeof PopoverPosition)[keyof typeof PopoverPosition];
|