1 | export declare const top: "top";
|
2 | export declare const bottom: "bottom";
|
3 | export declare const right: "right";
|
4 | export declare const left: "left";
|
5 | export declare const auto: "auto";
|
6 | export declare type BasePlacement = typeof top | typeof bottom | typeof right | typeof left;
|
7 | export declare const basePlacements: Array<BasePlacement>;
|
8 | export declare const start: "start";
|
9 | export declare const end: "end";
|
10 | export declare type Variation = typeof start | typeof end;
|
11 | export declare const clippingParents: "clippingParents";
|
12 | export declare const viewport: "viewport";
|
13 | export declare type Boundary = Element | Array<Element> | typeof clippingParents;
|
14 | export declare type RootBoundary = typeof viewport | "document";
|
15 | export declare const popper: "popper";
|
16 | export declare const reference: "reference";
|
17 | export declare type Context = typeof popper | typeof reference;
|
18 | export declare type VariationPlacement = "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end";
|
19 | export declare type AutoPlacement = "auto" | "auto-start" | "auto-end";
|
20 | export declare type ComputedPlacement = VariationPlacement | BasePlacement;
|
21 | export declare type Placement = AutoPlacement | BasePlacement | VariationPlacement;
|
22 | export declare const variationPlacements: Array<VariationPlacement>;
|
23 | export declare const placements: Array<Placement>;
|
24 | export declare const beforeRead: "beforeRead";
|
25 | export declare const read: "read";
|
26 | export declare const afterRead: "afterRead";
|
27 | export declare const beforeMain: "beforeMain";
|
28 | export declare const main: "main";
|
29 | export declare const afterMain: "afterMain";
|
30 | export declare const beforeWrite: "beforeWrite";
|
31 | export declare const write: "write";
|
32 | export declare const afterWrite: "afterWrite";
|
33 | export declare const modifierPhases: Array<ModifierPhases>;
|
34 | export declare type ModifierPhases = typeof beforeRead | typeof read | typeof afterRead | typeof beforeMain | typeof main | typeof afterMain | typeof beforeWrite | typeof write | typeof afterWrite;
|