@types/react-bootstrap
Advanced tools
Comparing version 0.31.5 to 0.31.6
@@ -13,2 +13,3 @@ // Type definitions for react-bootstrap 0.31 | ||
// Karol Janyst <https://github.com/LKay> | ||
// Aaron Beall <https://github.com/aaronbeall> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -15,0 +16,0 @@ // TypeScript Version: 2.3 |
@@ -13,2 +13,3 @@ import * as React from 'react'; | ||
pullRight?: boolean; | ||
title: React.ReactNode; | ||
} | ||
@@ -15,0 +16,0 @@ |
import * as React from 'react'; | ||
import { Sizes } from 'react-bootstrap'; | ||
import { Sizes, Omit } from 'react-bootstrap'; | ||
declare namespace Popover { | ||
export interface PopoverProps extends React.HTMLProps<Popover> { | ||
export interface PopoverProps extends Omit<React.HTMLProps<Popover>, "title"> { | ||
// Optional | ||
@@ -14,2 +14,3 @@ arrowOffsetLeft?: number | string; | ||
positionTop?: number | string; // String support added since v0.30.0 | ||
title?: React.ReactNode; | ||
} | ||
@@ -16,0 +17,0 @@ } |
import * as React from 'react'; | ||
import { Sizes } from 'react-bootstrap'; | ||
import { Sizes, Omit } from 'react-bootstrap'; | ||
declare namespace ProgressBar { | ||
export interface ProgressBarProps extends React.HTMLProps<ProgressBar> { | ||
export interface ProgressBarProps extends Omit<React.HTMLProps<ProgressBar>, "label"> { | ||
// Optional | ||
@@ -16,2 +16,3 @@ active?: boolean; | ||
striped?: boolean; | ||
label?: React.ReactNode; | ||
} | ||
@@ -18,0 +19,0 @@ } |
import * as React from 'react'; | ||
import { Sizes } from 'react-bootstrap'; | ||
import { Sizes, Omit } from 'react-bootstrap'; | ||
declare namespace SplitButton { | ||
export interface SplitButtonProps extends React.HTMLProps<SplitButton> { | ||
export interface SplitButtonProps extends Omit<React.HTMLProps<SplitButton>, "title"> { | ||
bsStyle?: string; | ||
@@ -11,2 +11,4 @@ bsSize?: Sizes; | ||
pullRight?: boolean; | ||
title: React.ReactNode; | ||
id: string; | ||
} | ||
@@ -13,0 +15,0 @@ } |
import * as React from 'react'; | ||
import { TransitionCallbacks } from 'react-bootstrap'; | ||
import { TransitionCallbacks, Omit } from 'react-bootstrap'; | ||
import * as TabContainer from './TabContainer'; | ||
@@ -8,3 +8,3 @@ import * as TabPane from './TabPane'; | ||
declare namespace Tab { | ||
export interface TabProps extends TransitionCallbacks, React.HTMLProps<Tab> { | ||
export interface TabProps extends TransitionCallbacks, Omit<React.HTMLProps<Tab>, "title"> { | ||
animation?: boolean; | ||
@@ -16,2 +16,3 @@ 'aria-labelledby'?: string; | ||
tabClassName?: string; | ||
title?: React.ReactNode; // Override HTMLProps.title to allow nodes not just strings | ||
} | ||
@@ -18,0 +19,0 @@ } |
{ | ||
"name": "@types/react-bootstrap", | ||
"version": "0.31.5", | ||
"version": "0.31.6", | ||
"description": "TypeScript definitions for react-bootstrap", | ||
@@ -56,2 +56,7 @@ "license": "MIT", | ||
"githubUsername": "LKay" | ||
}, | ||
{ | ||
"name": "Aaron Beall", | ||
"url": "https://github.com/aaronbeall", | ||
"githubUsername": "aaronbeall" | ||
} | ||
@@ -68,4 +73,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "bbea9d3ea122533cf2d38677f9e6b206bceefc7987a488ac6326f4944c7c62ed", | ||
"typesPublisherContentHash": "9976bb2b8f70783b2396817d92081050a7e3073d85cddc6bccb1da19481ca689", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Mon, 16 Oct 2017 18:09:53 GMT | ||
* Last updated: Mon, 16 Oct 2017 18:19: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>. | ||
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>. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
63223
1655