From d76a27e854484e7a05a785d37456e4aa7878b2b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 09:19:05 -0800 Subject: [PATCH] Bump next from 12.1.0 to 13.5.1 (#897) * Bump next from 12.1.0 to 13.5.1 Bumps [next](https://github.com/vercel/next.js) from 12.1.0 to 13.5.1. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v12.1.0...v13.5.1) --- updated-dependencies: - dependency-name: next dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Empty commit. Trigger redeploy after node version upgrade * Update nvmrc file * Update react * Fix deprecation error on components --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Juan Martin Garcia --- .nvmrc | 2 +- components/blocks/button.js | 4 +- components/blocks/dataSourcesCard.js | 4 +- components/blocks/inlineCallout.js | 28 +- components/blocks/refCard.js | 46 +- components/blocks/tile.js | 20 +- components/navigation/arrowLink.js | 82 +- components/navigation/footer.js | 34 +- components/navigation/header.js | 8 +- components/navigation/navChild.js | 55 +- components/navigation/navItem.js | 4 +- components/utilities/breadCrumbs.js | 13 +- package-lock.json | 13597 ++++++++++++++++++++++++- package.json | 6 +- pages/style-guide.js | 47 +- yarn.lock | 11693 +++++++++++---------- 16 files changed, 20011 insertions(+), 5632 deletions(-) diff --git a/.nvmrc b/.nvmrc index 3b0ca9db6..bf79505bb 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v15.14.0 +v16.14.0 diff --git a/components/blocks/button.js b/components/blocks/button.js index 91378db37..e89a3dbe3 100644 --- a/components/blocks/button.js +++ b/components/blocks/button.js @@ -13,8 +13,8 @@ const Button = ({ children, link, target }) => { {children} ) : ( - - {children} + + {children} ); }; diff --git a/components/blocks/dataSourcesCard.js b/components/blocks/dataSourcesCard.js index f41e0443c..37f245ed4 100644 --- a/components/blocks/dataSourcesCard.js +++ b/components/blocks/dataSourcesCard.js @@ -16,8 +16,8 @@ const DataSourcesCard = ({ children, size, href }) => { : styles.Fourth; return ( - - {children} + + {children} ); }; diff --git a/components/blocks/inlineCallout.js b/components/blocks/inlineCallout.js index 15e35fd85..841c98dc6 100644 --- a/components/blocks/inlineCallout.js +++ b/components/blocks/inlineCallout.js @@ -18,23 +18,23 @@ const InlineCallout = ({ children, icon, color, bold, href }) => { : styles.KBText; return (
- - - {icon} - + + {icon}

- - - {bold} - + + {bold} {" "} {children}

diff --git a/components/blocks/refCard.js b/components/blocks/refCard.js index 712e414b4..94c67a769 100644 --- a/components/blocks/refCard.js +++ b/components/blocks/refCard.js @@ -16,30 +16,28 @@ const RefCard = ({ children, size, href, deprecated }) => { : styles.Third; return ( - - - {deprecated === true ? ( -
- - - {"delete"} - -
- ) : ( - "" - )} - {children} -
+ + {deprecated === true ? ( +
+ + + {"delete"} + +
+ ) : ( + "" + )} + {children} ); }; diff --git a/components/blocks/tile.js b/components/blocks/tile.js index f4c6f0059..d062b16bb 100644 --- a/components/blocks/tile.js +++ b/components/blocks/tile.js @@ -70,17 +70,15 @@ const Tile = ({ backgroundColor )} > - - - {image} -
-

{title || "Install Streamlit"}

-

- {text || - "Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia."} -

-
-
+ + {image} +
+

{title || "Install Streamlit"}

+

+ {text || + "Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia."} +

+
); diff --git a/components/navigation/arrowLink.js b/components/navigation/arrowLink.js index 9db0c588f..e16156571 100644 --- a/components/navigation/arrowLink.js +++ b/components/navigation/arrowLink.js @@ -7,61 +7,59 @@ const ArrowLink = ({ children, link, type, content, target }) => { const href = link || "#"; if (type == "back") { return ( - - + - - - - Previous: - {content} - + + + Previous: + {content} ); } else if (type == "next") { return ( - - + Next: + {content} + - Next: - {content} - - - - + + ); } diff --git a/components/navigation/footer.js b/components/navigation/footer.js index eaef45416..4046c9bfc 100644 --- a/components/navigation/footer.js +++ b/components/navigation/footer.js @@ -8,25 +8,23 @@ const Footer = ({ setIsTelemetryModalVisible }) => {