@types/react-svg-map
TypeScript icon, indicating that this package has built-in type declarations

2.1.4 • Public • Published

Installation

npm install --save @types/react-svg-map

Summary

This package contains type definitions for react-svg-map (https://github.com/VictorCazanave/react-svg-map).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-svg-map.

index.d.ts

import * as React from "react";

export interface Location {
    path: string;
    id: string;
    name?: string | undefined;
}

export interface Map {
    viewBox: string;
    locations: Location[];
    label?: string | undefined;
}

export interface BaseMapProps {
    map: Map;
    className?: string | undefined;
    locationClassName?: string | ((...args: any[]) => any) | undefined;
    onLocationMouseOver?: ((...args: any[]) => any) | undefined;
    onLocationMouseOut?: ((...args: any[]) => any) | undefined;
    onLocationMouseMove?: ((...args: any[]) => any) | undefined;
    onLocationFocus?: ((...args: any[]) => any) | undefined;
    onLocationBlur?: ((...args: any[]) => any) | undefined;
    childrenBefore?: React.ReactElement | undefined;
    childrenAfter?: React.ReactElement | undefined;
}

export interface SVGMapProps extends BaseMapProps {
    role?: string | undefined;
    locationTabIndex?: string | ((...args: any[]) => any) | undefined;
    locationRole?: string | undefined;
    onLocationClick?: ((...args: any[]) => any) | undefined;
    onLocationKeyDown?: ((...args: any[]) => any) | undefined;
    isLocationSelected?: ((...args: any[]) => any) | undefined;
}

export interface OnChangeMapProps extends BaseMapProps {
    onChange?: ((...args: any[]) => any) | undefined;
}

export class CheckboxSVGMap extends React.Component<OnChangeMapProps> {}
export class RadioSVGMap extends React.Component<OnChangeMapProps> {}
export const SVGMap: React.FC<SVGMapProps>;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: @types/react

Credits

These definitions were written by Nick Glazer.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/react-svg-map

Weekly Downloads

621

Version

2.1.4

License

MIT

Unpacked Size

5.66 kB

Total Files

5

Last publish

Collaborators

  • types