aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/react-popper/index.d.ts
blob: d7dbca17fabb3c500b7d1de0a7200451ecd444bc (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Type definitions for react-popper 1.0.0-beta.6
// Project: https://github.com/gilbarbara/react-joyride

declare module 'react-popper' {
    import * as React from 'react';
    import * as PopperJS from 'popper.js';

    interface ManagerProps {
        children: React.ReactNode;
    }
    export class Manager extends React.Component<ManagerProps, {}> {}

    type RefHandler = (ref: HTMLElement | null) => void;

    export interface ReferenceChildrenProps {
        ref: RefHandler;
    }

    export interface ReferenceProps {
        children: (props: ReferenceChildrenProps) => React.ReactNode;
    }
    export class Reference extends React.Component<ReferenceProps, {}> {}

    export interface PopperArrowProps {
        ref: RefHandler;
        style: React.CSSProperties;
    }

    export type Placement = PopperJS.Placement;

    export interface PopperChildrenProps {
        arrowProps: PopperArrowProps;
        outOfBoundaries: boolean | null;
        placement: PopperJS.Placement;
        ref: RefHandler;
        scheduleUpdate: () => void;
        style: React.CSSProperties;
    }

    export interface PopperProps {
        children: (props: PopperChildrenProps) => React.ReactNode;
        eventsEnabled?: boolean;
        modifiers?: PopperJS.Modifiers;
        placement?: PopperJS.Placement;
        positionFixed?: boolean;
        referenceElement?: Element;
    }
    export class Popper extends React.Component<PopperProps, {}> {}
}