From ccbd12e286f14d5e55d37b3bfcd5cc4270a1ed40 Mon Sep 17 00:00:00 2001 From: Flosch Date: Fri, 11 May 2018 18:08:10 +0200 Subject: [PATCH] [reactstrap] Add borderless type to Table --- types/reactstrap/lib/Table.d.ts | 1 + types/reactstrap/reactstrap-tests.tsx | 39 ++++++++++++++++++++++++++- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/types/reactstrap/lib/Table.d.ts b/types/reactstrap/lib/Table.d.ts index 394a1f3f40..8e59b6a13e 100644 --- a/types/reactstrap/lib/Table.d.ts +++ b/types/reactstrap/lib/Table.d.ts @@ -6,6 +6,7 @@ export type TableProps = React.HTMLAttributes & { cssModule?: CSSModule; size?: string; bordered?: boolean; + borderless?: boolean; striped?: boolean; inverse?: boolean; hover?: boolean; diff --git a/types/reactstrap/reactstrap-tests.tsx b/types/reactstrap/reactstrap-tests.tsx index 290e2657e1..61bee46edc 100644 --- a/types/reactstrap/reactstrap-tests.tsx +++ b/types/reactstrap/reactstrap-tests.tsx @@ -4053,7 +4053,7 @@ function GenericPropExample() { ); } -class Example118 extends React.Component { +class Example119 extends React.Component { render() { return (
@@ -4140,3 +4140,40 @@ class Example118 extends React.Component { ); } } + +class Example120 extends React.Component { + render() { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#First NameLast NameUsername
1MarkOtto@mdo
2JacobThornton@fat
3Larrythe Bird@twitter
+ ); + } +}