Skip to content

Commit 8170945

Browse files
authored
Turn Supported Networks into a table (#405)
* Turn Supported Networks into a table * Address Adam’s feedback * Don’t list networks that are not supported in any of the 3 services * Update dependencies
1 parent 5bf0d98 commit 8170945

File tree

7 files changed

+2086
-1711
lines changed

7 files changed

+2086
-1711
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"devDependencies": {
2525
"@edgeandnode/eslint-config": "^1.3.5",
26-
"eslint": "^8.41.0",
26+
"eslint": "^8.42.0",
2727
"eslint-plugin-mdx": "^2.1.0",
2828
"husky": "^8.0.3",
2929
"lint-staged": "^13.2.2",
@@ -34,7 +34,7 @@
3434
"remark-lint-heading-increment": "^3.1.2",
3535
"remark-lint-no-heading-punctuation": "^3.1.2",
3636
"remark-lint-restrict-elements": "workspace:*",
37-
"typescript": "5.0.4"
37+
"typescript": "~5.0.4"
3838
},
3939
"lint-staged": {
4040
"**/*.{js,jsx,ts,tsx,mjs,cjs}": "eslint --fix",

packages/nextra-theme/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@
3333
"theme-ui": "^0.15.5"
3434
},
3535
"dependencies": {
36-
"@docsearch/react": "^3.4.0",
37-
"@radix-ui/react-collapsible": "1.0.2",
38-
"@radix-ui/react-visually-hidden": "^1.0.2",
36+
"@docsearch/react": "^3.5.0",
37+
"@radix-ui/react-collapsible": "1.0.3",
38+
"@radix-ui/react-visually-hidden": "^1.0.3",
3939
"lodash": "^4.17.21",
4040
"prism-react-renderer": "^1.3.5",
41-
"react-intersection-observer": "^9.4.3",
41+
"react-intersection-observer": "^9.4.4",
4242
"react-use": "^17.4.0"
4343
},
4444
"devDependencies": {
45-
"@edgeandnode/gds": "^2.3.0",
46-
"@emotion/react": "^11.11.0",
45+
"@edgeandnode/gds": "^2.6.0",
46+
"@emotion/react": "^11.11.1",
4747
"@types/lodash": "^4.14.195",
48-
"@types/react": "^18.2.7",
48+
"@types/react": "18.2.7",
4949
"@types/react-dom": "^18.2.4",
5050
"next": "^13.4.4",
5151
"next-seo": "^6.0.0",

packages/nextra-theme/src/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ const mdxComponents = {
4747
table: Table,
4848
VideoEmbed,
4949
Difficulty,
50-
ListUnordered,
5150
CodeInline,
51+
ListUnordered,
52+
Table,
5253
}
5354

5455
const mdxStyles: ThemeUIStyleObject = {

0 commit comments

Comments
 (0)