Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit a6f60a8

Browse files
committed
build(deps): bump react bootstrap to v1.3.0
1 parent a012aef commit a6f60a8

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"peerDependencies": {
3838
"bootstrap": "~4.5.0",
3939
"react": "~16.13.0",
40-
"react-bootstrap": "~1.0.1"
40+
"react-bootstrap": "~1.3.0"
4141
},
4242
"husky": {
4343
"hooks": {
@@ -81,7 +81,7 @@
8181
"@types/jest": "~26.0.0",
8282
"@types/lodash": "^4.14.149",
8383
"@types/node": "~14.6.0",
84-
"@types/react": "~16.9.17",
84+
"@types/react": "~16.9.35",
8585
"@types/react-dom": "~16.9.1",
8686
"@types/react-table": "~7.0.4",
8787
"@types/sinon": "~9.0.0",
@@ -115,7 +115,7 @@
115115
"node-sass": "~4.14.1",
116116
"prettier": "~2.1.0",
117117
"react": "~16.13.0",
118-
"react-bootstrap": "~1.0.0-beta.16",
118+
"react-bootstrap": "~1.3.0",
119119
"react-docgen": "~5.3.0",
120120
"react-docgen-typescript-loader": "~3.7.0",
121121
"react-dom": "~16.13.0",
@@ -130,7 +130,7 @@
130130
},
131131
"dependencies": {
132132
"@fortawesome/fontawesome-common-types": "~0.2.28",
133-
"@fortawesome/fontawesome-svg-core": "~1.2.25",
133+
"@fortawesome/fontawesome-svg-core": "~1.2.30",
134134
"@fortawesome/free-regular-svg-icons": "~5.14.0",
135135
"@fortawesome/free-solid-svg-icons": "~5.14.0",
136136
"@fortawesome/react-fontawesome": "~0.1.9",

src/components/Dropdown/Dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface Props {
1717
/** Determines the horizontal alignment of the dropdown items */
1818
alignRight?: boolean
1919
/** Determines the dropdown toggle button size */
20-
size?: 'sm' | 'md' | 'lg'
20+
size?: 'sm' | 'lg'
2121
/** Determines the dropdown's direction */
2222
direction?: 'down' | 'up' | 'left' | 'right'
2323
/** Determines the dropdown's custom style */

src/components/Navbar/Navbar.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ const Navbar = (props: Props) => {
8989

9090
const getNavLinkList = (list: NavLinkList, index: number) => (
9191
<NavDropdown
92-
alignRight={list.alignRight}
9392
className={list.className}
9493
title={list.label}
9594
id="collasible-nav-dropdown"
@@ -101,7 +100,6 @@ const Navbar = (props: Props) => {
101100

102101
const getNavLinkListIcon = (list: NavLinkListIcon, index: number) => (
103102
<NavDropdown
104-
alignRight={list.alignRight}
105103
className={list.className}
106104
title={
107105
<Icon

0 commit comments

Comments
 (0)