@types/react-bootstrap
Advanced tools
Comparing version 0.32.11 to 0.32.12
@@ -16,2 +16,3 @@ // Type definitions for react-bootstrap 0.32 | ||
// Andrew Makarov <https://github.com/r3nya> | ||
// Duong Tran <https://github.com/t49tran> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -18,0 +19,0 @@ // TypeScript Version: 2.8 |
import * as React from 'react'; | ||
import { Omit } from 'react-bootstrap'; | ||
import { DropdownBaseProps } from './Dropdown'; | ||
@@ -9,7 +10,8 @@ | ||
eventKey?: any; | ||
title: React.ReactNode; | ||
} | ||
export type NavDropdownProps = NavDropdownBaseProps & React.HTMLProps<NavDropdown>; | ||
export type NavDropdownProps = NavDropdownBaseProps & Omit<React.HTMLProps<NavDropdown>, 'title'>; | ||
} | ||
declare class NavDropdown extends React.Component<NavDropdown.NavDropdownProps> { } | ||
export = NavDropdown; |
{ | ||
"name": "@types/react-bootstrap", | ||
"version": "0.32.11", | ||
"version": "0.32.12", | ||
"description": "TypeScript definitions for react-bootstrap", | ||
@@ -71,2 +71,7 @@ "license": "MIT", | ||
"githubUsername": "r3nya" | ||
}, | ||
{ | ||
"name": "Duong Tran", | ||
"url": "https://github.com/t49tran", | ||
"githubUsername": "t49tran" | ||
} | ||
@@ -83,4 +88,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "980454f912fe1359aefe907984995549e7d5f336456e7d58110f433e75cfbbb2", | ||
"typesPublisherContentHash": "114f32c9ec2daabf5e6936caec62479598e2a2a8b6f0281e123535500fba4429", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Sat, 14 Jul 2018 01:02:01 GMT | ||
* Last updated: Sun, 26 Aug 2018 03:30:33 GMT | ||
* Dependencies: react | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Walker Burgin <https://github.com/walkerburgin>, Vincent Siao <https://github.com/vsiao>, Danilo Barros <https://github.com/danilojrr>, Batbold Gansukh <https://github.com/Batbold-Gansukh>, Raymond May Jr. <https://github.com/octatone>, Cheng Sieu Ly <https://github.com/chengsieuly>, Mercedes Retolaza <https://github.com/mretolaza>, Kat Busch <https://github.com/katbusch>, Vito Samson <https://github.com/vitosamson>, Karol Janyst <https://github.com/LKay>, Aaron Beall <https://github.com/aaronbeall>, Johann Rakotoharisoa <https://github.com/jrakotoharisoa>, Andrew Makarov <https://github.com/r3nya>. | ||
These definitions were written by Walker Burgin <https://github.com/walkerburgin>, Vincent Siao <https://github.com/vsiao>, Danilo Barros <https://github.com/danilojrr>, Batbold Gansukh <https://github.com/Batbold-Gansukh>, Raymond May Jr. <https://github.com/octatone>, Cheng Sieu Ly <https://github.com/chengsieuly>, Mercedes Retolaza <https://github.com/mretolaza>, Kat Busch <https://github.com/katbusch>, Vito Samson <https://github.com/vitosamson>, Karol Janyst <https://github.com/LKay>, Aaron Beall <https://github.com/aaronbeall>, Johann Rakotoharisoa <https://github.com/jrakotoharisoa>, Andrew Makarov <https://github.com/r3nya>, Duong Tran <https://github.com/t49tran>. |
68176
1809