Skip to content

Commit 87beba6

Browse files
benfacesaihaj
andauthored
Update Supported Networks table following upgrade Indexer release (graphprotocol#561)
* Update Supported Networks table following upgrade Indexer release * Address Adam’s feedback * fix: table hydration error (graphprotocol#562) --------- Co-authored-by: Saihajpreet Singh <[email protected]>
1 parent b798f9d commit 87beba6

File tree

83 files changed

+41236
-1908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+41236
-1908
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ out/
44
pnpm-lock.yaml
55
dist/
66
website/remote-files/*.json
7+
website/.graphclient/

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
88
"check:fix": "pnpm typecheck; pnpm lint:fix",
99
"dev": "turbo run dev --parallel",
10-
"docker:build": "source .env.local && DOCKER_BUILDKIT=1 docker build . -t docs --no-cache --build-arg ENVIRONMENT=$ENVIRONMENT",
10+
"docker:build": "source ./website/.env.local && DOCKER_BUILDKIT=1 docker build . -t docs --no-cache --build-arg ENVIRONMENT=$ENVIRONMENT",
1111
"docker:clean": "docker builder prune",
1212
"docker:up": "docker run --rm -it -p 3000:80 -v \"$(pwd)/nginx.conf:/etc/nginx/nginx.conf\" docs",
1313
"lint": "eslint . --cache --ignore-path .gitignore --max-warnings 0",

packages/nextra-theme/src/index.tsx

+23-1
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,17 @@ const mdxComponents = {
4747
ul: ListUnordered,
4848
p: Paragraph,
4949
table: Table,
50+
Callout,
51+
CodeBlock,
5052
CodeInline,
5153
Difficulty,
54+
Heading,
55+
Image,
56+
LinkInline,
57+
ListItem,
58+
ListOrdered,
5259
ListUnordered,
60+
Paragraph,
5361
Table,
5462
VideoEmbed,
5563
}
@@ -63,7 +71,21 @@ const mdxStyles: ThemeUICSSObject = {
6371
},
6472
}
6573

66-
export { Heading, Image, LinkInline, Paragraph }
74+
export {
75+
Callout,
76+
CodeBlock,
77+
CodeInline,
78+
Difficulty,
79+
Heading,
80+
Image,
81+
LinkInline,
82+
ListItem,
83+
ListOrdered,
84+
ListUnordered,
85+
Paragraph,
86+
Table,
87+
VideoEmbed,
88+
}
6789

6890
export default function NextraLayout({ children, pageOpts, pageProps }: NextraThemeLayoutProps): ReactElement {
6991
const { frontMatter, filePath, pageMap, headings, title } = pageOpts

0 commit comments

Comments
 (0)