update to latest deps

This commit is contained in:
Jeff Escalante 2021-01-07 14:00:43 -05:00 committed by Luke Kysow
parent eeb544cc2d
commit ddbd372649
7 changed files with 998 additions and 477 deletions

1443
website/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,37 +5,37 @@
"author": "HashiCorp",
"dependencies": {
"@hashicorp/mktg-global-styles": "2.1.0",
"@hashicorp/nextjs-scripts": "13.0.0-canary.1",
"@hashicorp/nextjs-scripts": "14.0.2",
"@hashicorp/react-alert-banner": "5.0.0",
"@hashicorp/react-button": "4.0.0",
"@hashicorp/react-call-to-action": "1.0.3",
"@hashicorp/react-docs-page": "10.3.2",
"@hashicorp/react-docs-page": "10.4.0",
"@hashicorp/react-featured-slider": "1.1.10",
"@hashicorp/react-hashi-stack-menu": "^1.1.0",
"@hashicorp/react-head": "1.1.6",
"@hashicorp/react-image": "3.0.3",
"@hashicorp/react-inline-svg": "5.0.0",
"@hashicorp/react-markdown-page": "^0.1.0",
"@hashicorp/react-markdown-page": "^0.2.0",
"@hashicorp/react-product-downloader": "4.1.5",
"@hashicorp/react-product-features-list": "3.0.0",
"@hashicorp/react-section-header": "3.0.1",
"@hashicorp/react-subnav": "7.1.0",
"@hashicorp/react-text-split": "1.2.0",
"@hashicorp/react-text-split-with-code": "2.0.2",
"@hashicorp/react-text-split-with-code": "2.0.4",
"@hashicorp/react-text-split-with-image": "3.0.0",
"@hashicorp/react-use-cases": "2.0.1",
"@hashicorp/react-vertical-text-block-list": "3.0.1",
"next": "9.5.5",
"next-mdx-remote": "1.0.1",
"next-mdx-remote": "2.1.0",
"next-remote-watch": "0.3.0",
"nuka-carousel": "4.7.4",
"nuka-carousel": "4.7.5",
"react": "16.13.1",
"react-device-detect": "1.14.0",
"react-device-detect": "1.15.0",
"react-dom": "16.13.1"
},
"devDependencies": {
"dart-linkcheck": "2.0.15",
"husky": "4.3.5",
"husky": "4.3.7",
"prettier": "2.2.1"
},
"husky": {

View File

@ -14,6 +14,7 @@ export default function ApiDocsLayout(props) {
product={{ name: productName, slug: productSlug }}
subpath={subpath}
order={order}
mainBranch="master"
staticProps={props}
/>
)

View File

@ -14,6 +14,7 @@ export default function CommandsLayout(props) {
product={{ name: productName, slug: productSlug }}
subpath={subpath}
order={order}
mainBranch="master"
staticProps={props}
/>
)

View File

@ -8,7 +8,7 @@ import {
import ConfigEntryReference from 'components/config-entry-reference'
const subpath = 'docs'
const additionalComponents = {ConfigEntryReference}
const additionalComponents = { ConfigEntryReference }
export default function DocsLayout(props) {
return (
@ -17,6 +17,7 @@ export default function DocsLayout(props) {
subpath={subpath}
order={order}
staticProps={props}
mainBranch="master"
additionalComponents={additionalComponents}
/>
)
@ -31,6 +32,6 @@ export async function getStaticProps({ params }) {
subpath,
productName,
params,
additionalComponents
additionalComponents,
})
}

View File

@ -14,6 +14,7 @@ export default function IntroLayout(props) {
product={{ name: productName, slug: productSlug }}
subpath={subpath}
order={order}
mainBranch="master"
staticProps={props}
/>
)

View File

@ -12,20 +12,20 @@
@import '~@hashicorp/react-button/styles/index.css';
@import '~@hashicorp/react-call-to-action/style.css';
@import '~@hashicorp/react-code-block/style.css';
@import '~@hashicorp/react-consent-manager/dist/style.css';
@import '~@hashicorp/react-consent-manager/style.css';
@import '~@hashicorp/react-content/style.css';
@import '~@hashicorp/react-docs-page/style.css';
@import '~@hashicorp/react-docs-sidenav/style.css';
@import '~@hashicorp/react-enterprise-alert/dist/style.css';
@import '~@hashicorp/react-enterprise-alert/style.css';
@import '~@hashicorp/react-featured-slider/style.css';
@import '~@hashicorp/react-product-downloader/dist/style.css';
@import '~@hashicorp/react-product-features-list/style.css';
@import '~@hashicorp/react-search/style.css';
@import '~@hashicorp/react-section-header/style.css';
@import '~@hashicorp/react-subnav/style.css';
@import '~@hashicorp/react-tabs/dist/style.css';
@import '~@hashicorp/react-tabs/style.css';
@import '~@hashicorp/react-text-split/style.css';
@import '~@hashicorp/react-toggle/dist/style.css';
@import '~@hashicorp/react-toggle/style.css';
@import '~@hashicorp/react-use-cases/dist/style.css';
@import '~@hashicorp/react-vertical-text-block-list/style.css';