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 all commits
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"peerDependencies": {
"bootstrap": "~5.1.0",
"react": "~16.14.0",
"react-bootstrap": "~1.0.1"
"react-bootstrap": "~1.3.0"
},
"husky": {
"hooks": {
Expand Down Expand Up @@ -116,7 +116,7 @@
"node-sass": "~4.14.1",
"prettier": "~2.2.0",
"react": "~16.14.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.14.0",
Expand All @@ -131,7 +131,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