Socket
Socket
Sign inDemoInstall

@types/rc-tooltip

Package Overview
Dependencies
3
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/rc-tooltip

TypeScript definitions for rc-tooltip


Version published
Weekly downloads
71K
increased by0.91%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Installation

npm install --save @types/rc-tooltip

Summary

This package contains type definitions for rc-tooltip (https://github.com/react-component/tooltip).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rc-tooltip.

index.d.ts

import * as React from "react";

export as namespace RCTooltip;

declare namespace RCTooltip {
    export type Trigger = "hover" | "click" | "focus";
    export type Placement =
        | "left"
        | "right"
        | "top"
        | "bottom"
        | "topLeft"
        | "topRight"
        | "bottomLeft"
        | "bottomRight"
        | "rightTop"
        | "rightBottom"
        | "leftTop"
        | "leftBottom";

    export interface Props extends React.RefAttributes<any> {
        children?: React.ReactNode;
        overlayClassName?: string | undefined;
        trigger?: Trigger[] | undefined;
        mouseEnterDelay?: number | undefined;
        mouseLeaveDelay?: number | undefined;
        overlayStyle?: React.CSSProperties | undefined;
        prefixCls?: string | undefined;
        transitionName?: string | undefined;
        onVisibleChange?: ((visible?: boolean) => void) | undefined;
        afterVisibleChange?: ((visible?: boolean) => void) | undefined;
        visible?: boolean | undefined;
        defaultVisible?: boolean | undefined;
        placement?: Placement | Object | undefined;
        align?: Object | undefined;
        onPopupAlign?: ((popupDomNode: Element, align: Object) => void) | undefined;
        overlay:
            | (() => React.ReactElement | number | string)
            | React.ReactElement
            | number
            | string
            | Iterable<React.ReactNode>
            | React.ReactPortal;
        arrowContent?: React.ReactNode | undefined;
        getTooltipContainer?: (() => Element) | undefined;
        destroyTooltipOnHide?: boolean | undefined;
        id?: string | undefined;
    }
}

export default class Tooltip extends React.Component<RCTooltip.Props> {}

Additional Details

  • Last updated: Fri, 01 Mar 2024 01:31:11 GMT
  • Dependencies: @types/react

Credits

These definitions were written by rhysd, ahstro, vsaarinen, and aigoncharov.

FAQs

Last updated on 01 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc