From fe2dca7edd1d0a3eed7ee5acc3882ec62c95ebff Mon Sep 17 00:00:00 2001 From: devjedi Date: Thu, 3 May 2018 18:54:57 +0200 Subject: [PATCH] Added missing "order" attribute to ColumnProps (#25336) reactstrap supports the order attribute in the props of the component. This was still missing from the types. See: https://reactstrap.github.io/components/layout/ --- types/reactstrap/lib/Col.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/reactstrap/lib/Col.d.ts b/types/reactstrap/lib/Col.d.ts index fb3fee9c8e..57829ac931 100644 --- a/types/reactstrap/lib/Col.d.ts +++ b/types/reactstrap/lib/Col.d.ts @@ -7,6 +7,7 @@ export type ColumnProps push?: string | number pull?: string | number offset?: string | number + order?: string | number }; export interface ColProps extends React.HTMLProps {