diff --git a/react-bootstrap/react-bootstrap-tests.tsx b/react-bootstrap/react-bootstrap-tests.tsx index c6976d8a05..e8646d79ea 100644 --- a/react-bootstrap/react-bootstrap-tests.tsx +++ b/react-bootstrap/react-bootstrap-tests.tsx @@ -14,7 +14,7 @@ import { OverlayTrigger, Popover, ProgressBar, Nav, NavItem, Navbar, NavDropdown, Tabs, Tab, Pager, PageItem, - Pagination, Alert, Carousel, + Pagination, Alert, Carousel, SafeAnchor, Grid, Row, Col, Thumbnail, Image, Label, Badge, Jumbotron, PageHeader, Glyphicon, Table, Form, FormGroup, @@ -634,6 +634,14 @@ export class ReactBootstrapTest extends Component { +
+ + + } + maxButtons={10}/> +
+
Holy guacamole! Best check yo self, you're not looking too good. diff --git a/react-bootstrap/react-bootstrap.d.ts b/react-bootstrap/react-bootstrap.d.ts index 8c9d50a304..c39efed388 100644 --- a/react-bootstrap/react-bootstrap.d.ts +++ b/react-bootstrap/react-bootstrap.d.ts @@ -110,6 +110,18 @@ declare namespace ReactBootstrap { var ButtonGroup: React.ClassicComponentClass; + // + interface SafeAnchorProps extends React.HTMLProps { + href?: string; + onClick?: React.MouseEventHandler; + disabled?: boolean; + role?: string; + componentClass?: React.ReactType; + } + type SafeAnchor = React.ClassicComponent; + const SafeAnchor: React.ClassicComponentClass; + + // interface CheckboxProps extends React.HTMLProps { bsClass?: string;