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

build(deps): bump react bootstrap to v1.3.0 #585

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"peerDependencies": {
"bootstrap": "~4.5.0",
"react": "~16.13.0",
"react-bootstrap": "~1.0.1"
"react-bootstrap": "~1.3.0"
},
"husky": {
"hooks": {
Expand Down Expand Up @@ -81,7 +81,7 @@
"@types/jest": "~26.0.0",
"@types/lodash": "^4.14.149",
"@types/node": "~14.6.0",
"@types/react": "~16.9.17",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.1",
"@types/react-table": "~7.0.4",
"@types/sinon": "~9.0.0",
Expand Down Expand Up @@ -115,7 +115,7 @@
"node-sass": "~4.14.1",
"prettier": "~2.1.0",
"react": "~16.13.0",
"react-bootstrap": "~1.0.0-beta.16",
"react-bootstrap": "~1.3.0",
"react-docgen": "~5.3.0",
"react-docgen-typescript-loader": "~3.7.0",
"react-dom": "~16.13.0",
Expand All @@ -130,7 +130,7 @@
},
"dependencies": {
"@fortawesome/fontawesome-common-types": "~0.2.28",
"@fortawesome/fontawesome-svg-core": "~1.2.25",
"@fortawesome/fontawesome-svg-core": "~1.2.30",
"@fortawesome/free-regular-svg-icons": "~5.14.0",
"@fortawesome/free-solid-svg-icons": "~5.14.0",
"@fortawesome/react-fontawesome": "~0.1.9",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface Props {
/** Determines the horizontal alignment of the dropdown items */
alignRight?: boolean
/** Determines the dropdown toggle button size */
size?: 'sm' | 'md' | 'lg'
size?: 'sm' | 'lg'
/** Determines the dropdown's direction */
direction?: 'down' | 'up' | 'left' | 'right'
/** Determines the dropdown's custom style */
Expand Down
2 changes: 0 additions & 2 deletions src/components/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ const Navbar = (props: Props) => {

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

const getNavLinkListIcon = (list: NavLinkListIcon, index: number) => (
<NavDropdown
alignRight={list.alignRight}
className={list.className}
title={
<Icon
Expand Down