Skip to content

Commit e2c1fa0

Browse files
committed
Merge remote-tracking branch 'origin/source' into landing--try-it-now
2 parents fe79931 + 105c6e9 commit e2c1fa0

Some content is hidden

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

44 files changed

+4383
-3154
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@
1212
"tailwindCSS.classFunctions": ["clsx"],
1313
"editor.quickSuggestions": {
1414
"strings": "on"
15-
}
15+
},
16+
"typescript.preferences.autoImportFileExcludePatterns": [
17+
"**/node_modules/lucide-react"
18+
]
1619
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
"react-use-measure": "^2.1.7",
7474
"rehype-mermaid": "^3.0.0",
7575
"rss": "1.2.2",
76+
"scroll-into-view-if-needed": "^3.1.0",
7677
"server-only": "0.0.1",
7778
"string-similarity": "^4.0.4",
7879
"string-strip-html": "^13.4.8",
@@ -103,7 +104,7 @@
103104
"eslint-plugin-mdx": "^3.1.5",
104105
"eslint-plugin-react": "^7.37.5",
105106
"eslint-plugin-react-hooks": "^5.2.0",
106-
"eslint-plugin-tailwindcss": "3.17.5",
107+
"eslint-plugin-tailwindcss": "3.18.2",
107108
"prettier": "3.5.3",
108109
"prettier-plugin-pkg": "^0.20.0",
109110
"prettier-plugin-tailwindcss": "^0.6.12",

patches/nextra-theme-docs.patch

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
diff --git a/dist/index.d.mts b/dist/index.d.mts
2-
index 71f87bcd1dde49d7c19ad49fc098e715a76c5c10..6671e29326be99861058895916185910452ced17 100644
2+
index 71f87bcd1dde49d7c19ad49fc098e715a76c5c10..aadd6228910ee3ebafccfae8672cb9ae1b0bca3c 100644
33
--- a/dist/index.d.mts
44
+++ b/dist/index.d.mts
5-
@@ -1421,3 +1421,19 @@ declare function ThemeSwitch({ lite, className }: ThemeSwitchProps): ReactElemen
5+
@@ -1421,3 +1421,25 @@ declare function ThemeSwitch({ lite, className }: ThemeSwitchProps): ReactElemen
66
declare function Layout({ children, themeConfig, pageOpts }: NextraThemeLayoutProps): ReactElement;
77

88
export { Bleed, Collapse, type PartialDocsThemeConfig as DocsThemeConfig, Link, LocaleSwitch, Navbar, NotFoundPage, SkipNavContent, SkipNavLink, ThemeSwitch, Layout as default, getComponents, useConfig, useMenu, useThemeConfig };
@@ -22,8 +22,14 @@ index 71f87bcd1dde49d7c19ad49fc098e715a76c5c10..6671e29326be99861058895916185910
2222
+export declare const useIntersectionObserver: () => IntersectionObserver | null
2323
+export declare const useSlugs: () => WeakMap<any, any>
2424
+
25+
+export declare const Breadcrumb: (props: { activePath: Item[] }) => ReactElement | null
26+
+export declare const NavLinks: (props: NavLinkProps) => ReactElement | null
27+
+export interface NavLinkProps {
28+
+ currentIndex: number
29+
+ flatDocsDirectories: Item[]
30+
+}
2531
diff --git a/dist/index.js b/dist/index.js
26-
index 56201641fd965dcc5ab7c5df53e444c41293c00e..860b8cfd297e82da041c4d8287ed266691d75a0e 100644
32+
index 56201641fd965dcc5ab7c5df53e444c41293c00e..07147c688ae75c4c7daf082833acc71de16b36ee 100644
2733
--- a/dist/index.js
2834
+++ b/dist/index.js
2935
@@ -100,10 +100,10 @@ IntersectionObserverContext.displayName = "IntersectionObserver";
@@ -41,3 +47,21 @@ index 56201641fd965dcc5ab7c5df53e444c41293c00e..860b8cfd297e82da041c4d8287ed2666
4147
var ActiveAnchorProvider = ({
4248
children
4349
}) => {
50+
@@ -526,7 +526,7 @@ import NextLink2 from "next/link";
51+
import { ArrowRightIcon } from "nextra/icons";
52+
import { Fragment as Fragment3 } from "react";
53+
import { jsx as jsx9, jsxs as jsxs3 } from "react/jsx-runtime";
54+
-function Breadcrumb({
55+
+export function Breadcrumb({
56+
activePath
57+
}) {
58+
return /* @__PURE__ */ jsx9("div", { className: "nextra-breadcrumb _mt-1.5 _flex _items-center _gap-1 _overflow-hidden _text-sm _text-gray-500 dark:_text-gray-400 contrast-more:_text-current", children: activePath.map((item, index, arr) => {
59+
@@ -1255,7 +1255,7 @@ var classes = {
60+
),
61+
icon: cn10("_inline _h-5 _shrink-0")
62+
};
63+
-function NavLinks({
64+
+export function NavLinks({
65+
flatDocsDirectories,
66+
currentIndex
67+
}) {

pnpm-lock.yaml

Lines changed: 2929 additions & 2728 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/sync-sched/schedule-2025.json

Lines changed: 209 additions & 221 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)