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.
10 lines
411 B
10 lines
411 B
import type { ComputePosition } from './types';
|
|
/**
|
|
* Computes the `x` and `y` coordinates that will place the floating element
|
|
* next to a reference element when it is given a certain positioning strategy.
|
|
*
|
|
* This export does not have any `platform` interface logic. You will need to
|
|
* write one for the platform you are using Floating UI with.
|
|
*/
|
|
export declare const computePosition: ComputePosition;
|