Merge pull request #56 from LucidKobold/upgrades

Upgrades
This commit is contained in:
Lucid Kobold
2022-05-21 21:12:48 -05:00
committed by GitHub
11 changed files with 1740 additions and 1758 deletions

File diff suppressed because one or more lines are too long

786
.yarn/releases/yarn-3.2.1.cjs vendored Executable file

File diff suppressed because one or more lines are too long

View File

@@ -4,4 +4,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools" spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-3.1.0.cjs yarnPath: .yarn/releases/yarn-3.2.1.cjs

View File

@@ -16,33 +16,33 @@
"pretty": "prettier --write ." "pretty": "prettier --write ."
}, },
"dependencies": { "dependencies": {
"@chakra-ui/react": "^1.8.8", "@chakra-ui/react": "^2.0.2",
"@emotion/react": "^11.9.0", "@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1", "@emotion/styled": "^11.8.1",
"@iconify/react": "^3.2.1", "@iconify/react": "^3.2.1",
"date-fns": "^2.28.0", "date-fns": "^2.28.0",
"formik": "^2.2.9", "formik": "^2.2.9",
"framer-motion": "^6.3.3", "framer-motion": "^6.3.3",
"next": "12.1.5", "next": "12.1.6",
"react": "<=17.0.2", "react": "^18.1.0",
"react-dom": "<=17.0.2", "react-dom": "^18.1.0",
"sharp": "^0.30.4" "sharp": "^0.30.4"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^17.0.30", "@types/node": "^17.0.35",
"@types/react": "<18.0.0", "@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.21.0", "@typescript-eslint/eslint-plugin": "^5.25.0",
"eslint": "^8.14.0", "eslint": "^8.16.0",
"eslint-config-next": "^12.1.5", "eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4", "eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "<=4.3.0", "eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2", "prettier": "^2.6.2",
"typescript": "<4.6.0" "typescript": "^4.6.4"
}, },
"resolutions": { "resolutions": {
"@types/react": "^17.0.38" "@types/react": "^17.0.38"
}, },
"packageManager": "yarn@3.1.0" "packageManager": "yarn@3.2.1"
} }

View File

@@ -58,7 +58,7 @@ const Calender = (newDate?: UpdateCalendarProps): JSX.Element => {
{weekdays.map((weekDay) => { {weekdays.map((weekDay) => {
return ( return (
<Box <Box
d="flex" display="flex"
alignContent="center" alignContent="center"
alignItems="center" alignItems="center"
bg="transparent" bg="transparent"

View File

@@ -11,7 +11,7 @@ const BackToTopButton: FC<BackToTopButtonProps> = ({
}: BackToTopButtonProps) => { }: BackToTopButtonProps) => {
return ( return (
<Flex <Flex
d={show ? "flex" : "none"} display={show ? "flex" : "none"}
pos="fixed" pos="fixed"
top="85vh" top="85vh"
right={{ right={{

View File

@@ -6,7 +6,7 @@ const DesktopNav = (): JSX.Element => {
return ( return (
<HStack <HStack
as="nav" as="nav"
d={{ base: "none", lg: "flex" }} display={{ base: "none", lg: "flex" }}
h="auto" h="auto"
w="auto" w="auto"
spacing={4} spacing={4}

View File

@@ -109,7 +109,7 @@ const Header = (): JSX.Element => {
top={0} top={0}
position="absolute" position="absolute"
ml={4} ml={4}
d={{ base: "flex", lg: "none" }} display={{ base: "flex", lg: "none" }}
spacing="5px" spacing="5px"
_hover={{ _hover={{
cursor: "default" cursor: "default"
@@ -139,8 +139,8 @@ const Header = (): JSX.Element => {
alignItems="center" alignItems="center"
justifyContent="space-between" justifyContent="space-between"
> >
<Box w="auto" d={{ base: "flex", lg: "none " }}></Box> <Box w="auto" display={{ base: "flex", lg: "none " }}></Box>
<Box w="100%" d={{ base: "none", lg: "flex" }} m="auto"> <Box w="100%" display={{ base: "none", lg: "flex" }} m="auto">
<HStack <HStack
width="100%" width="100%"
alignItems="center" alignItems="center"
@@ -169,7 +169,7 @@ const Header = (): JSX.Element => {
onClick={() => setOpen(!open)} onClick={() => setOpen(!open)}
onMouseEnter={() => setHover(true)} onMouseEnter={() => setHover(true)}
onMouseLeave={() => setHover(false)} onMouseLeave={() => setHover(false)}
d={{ display={{
base: "inline-flex", base: "inline-flex",
lg: "none" lg: "none"
}} }}

View File

@@ -16,7 +16,7 @@ const MobileNav: FC<MobileNavProps> = ({ updateOpen }: MobileNavProps) => {
return ( return (
<MenuList <MenuList
as="nav" as="nav"
d={{ base: "block", lg: "none" }} display={{ base: "block", lg: "none" }}
bg="brand.main" bg="brand.main"
h="auto" h="auto"
w="100%" w="100%"

1898
yarn.lock

File diff suppressed because it is too large Load Diff