fumadocs-ui 14.2.0 → 14.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-PZTQPB4U.js → chunk-AFMXKA2S.js} +1 -1
- package/dist/{chunk-45REPLUI.js → chunk-CLF6ZVYS.js} +3 -3
- package/dist/{chunk-CPGKWLLV.js → chunk-F534DZID.js} +1 -1
- package/dist/{chunk-WRBUXI2A.js → chunk-IL64LMKR.js} +1 -1
- package/dist/{chunk-IHIFNFRB.js → chunk-ILBYBJ5C.js} +1 -1
- package/dist/{chunk-JUOW3DZK.js → chunk-J6XGK6ZG.js} +3 -3
- package/dist/{chunk-ET4TW6M5.js → chunk-UUGCW3UP.js} +16 -2
- package/dist/{chunk-5QPVK7QM.js → chunk-VPJMNIJX.js} +65 -65
- package/dist/{chunk-V6RONFCQ.js → chunk-W36BQGMB.js} +2 -2
- package/dist/{chunk-5KVEK5A7.js → chunk-ZBOI25UW.js} +1 -1
- package/dist/components/accordion.js +1 -1
- package/dist/components/banner.js +1 -1
- package/dist/components/callout.d.ts +1 -1
- package/dist/components/callout.js +2 -2
- package/dist/components/codeblock.js +2 -2
- package/dist/components/dialog/search-algolia.js +3 -3
- package/dist/components/dialog/search-default.js +3 -3
- package/dist/components/dialog/search-orama.js +3 -3
- package/dist/components/dialog/search.js +3 -3
- package/dist/components/files.js +1 -1
- package/dist/components/heading.js +2 -2
- package/dist/components/inline-toc.js +1 -1
- package/dist/components/layout/root-toggle.js +2 -2
- package/dist/components/type-table.js +1 -1
- package/dist/{dynamic-sidebar-MEINO4E2.js → dynamic-sidebar-SYEETGZL.js} +4 -4
- package/dist/{edit-on-github-PCTRDRD6.js → edit-on-github-FIYOWWPQ.js} +1 -1
- package/dist/layouts/docs.client.js +6 -6
- package/dist/layouts/docs.js +3 -3
- package/dist/layouts/home.client.js +4 -4
- package/dist/mdx.client.js +2 -2
- package/dist/mdx.d.ts +1 -1
- package/dist/mdx.js +3 -3
- package/dist/page.client.js +1 -1
- package/dist/page.js +1 -1
- package/dist/provider.d.ts +3 -3
- package/dist/provider.js +1 -1
- package/package.json +4 -4
|
@@ -7,13 +7,13 @@ import {
|
|
|
7
7
|
LoaderCircle,
|
|
8
8
|
Search,
|
|
9
9
|
Text
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-VPJMNIJX.js";
|
|
11
11
|
import {
|
|
12
12
|
twMerge
|
|
13
13
|
} from "./chunk-TK3TM3MR.js";
|
|
14
14
|
import {
|
|
15
15
|
useSearchContext
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-UUGCW3UP.js";
|
|
17
17
|
import {
|
|
18
18
|
useSidebar
|
|
19
19
|
} from "./chunk-27HFSL7N.js";
|
|
@@ -58,7 +58,7 @@ function SearchDialog({
|
|
|
58
58
|
/* @__PURE__ */ jsxs(
|
|
59
59
|
DialogContent,
|
|
60
60
|
{
|
|
61
|
-
"aria-describedby":
|
|
61
|
+
"aria-describedby": void 0,
|
|
62
62
|
className: "fixed left-1/2 top-[10vh] z-50 w-[98vw] max-w-screen-sm origin-left -translate-x-1/2 rounded-lg border bg-fd-popover text-fd-popover-foreground shadow-lg data-[state=closed]:animate-fd-dialog-out data-[state=open]:animate-fd-dialog-in",
|
|
63
63
|
children: [
|
|
64
64
|
/* @__PURE__ */ jsx(DialogTitle, { className: "hidden", children: text.search }),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
LargeSearchToggle
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-W36BQGMB.js";
|
|
4
4
|
import {
|
|
5
5
|
isActive
|
|
6
6
|
} from "./chunk-CDPVENXR.js";
|
|
@@ -16,13 +16,13 @@ import {
|
|
|
16
16
|
import {
|
|
17
17
|
ChevronDown,
|
|
18
18
|
ExternalLink
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-VPJMNIJX.js";
|
|
20
20
|
import {
|
|
21
21
|
twMerge
|
|
22
22
|
} from "./chunk-TK3TM3MR.js";
|
|
23
23
|
import {
|
|
24
24
|
useSearchContext
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-UUGCW3UP.js";
|
|
26
26
|
import {
|
|
27
27
|
useTreeContext
|
|
28
28
|
} from "./chunk-YL3MZH7N.js";
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
// src/contexts/search.tsx
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
createContext,
|
|
4
|
+
useContext,
|
|
5
|
+
useEffect,
|
|
6
|
+
useMemo,
|
|
7
|
+
useState
|
|
8
|
+
} from "react";
|
|
3
9
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
10
|
var SearchContext = createContext({
|
|
5
11
|
enabled: false,
|
|
@@ -9,6 +15,14 @@ var SearchContext = createContext({
|
|
|
9
15
|
function useSearchContext() {
|
|
10
16
|
return useContext(SearchContext);
|
|
11
17
|
}
|
|
18
|
+
function MetaOrControl() {
|
|
19
|
+
const [key, setKey] = useState("\u2318");
|
|
20
|
+
useEffect(() => {
|
|
21
|
+
const isWindows = window.navigator.userAgent.includes("Windows");
|
|
22
|
+
if (isWindows) setKey("Ctrl");
|
|
23
|
+
}, []);
|
|
24
|
+
return key;
|
|
25
|
+
}
|
|
12
26
|
function SearchProvider({
|
|
13
27
|
SearchDialog,
|
|
14
28
|
children,
|
|
@@ -17,7 +31,7 @@ function SearchProvider({
|
|
|
17
31
|
hotKey = [
|
|
18
32
|
{
|
|
19
33
|
key: (e) => e.metaKey || e.ctrlKey,
|
|
20
|
-
display:
|
|
34
|
+
display: /* @__PURE__ */ jsx(MetaOrControl, {})
|
|
21
35
|
},
|
|
22
36
|
{
|
|
23
37
|
key: "k",
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
1
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
2
2
|
import { forwardRef as forwardRef2, createElement as createElement2 } from "react";
|
|
3
3
|
|
|
4
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
4
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/shared/src/utils.js
|
|
5
5
|
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
6
6
|
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
7
|
-
return Boolean(className) && array.indexOf(className) === index;
|
|
8
|
-
}).join(" ");
|
|
7
|
+
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
|
8
|
+
}).join(" ").trim();
|
|
9
9
|
|
|
10
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
10
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
|
11
11
|
import { forwardRef, createElement } from "react";
|
|
12
12
|
|
|
13
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
13
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/defaultAttributes.js
|
|
14
14
|
var defaultAttributes = {
|
|
15
15
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16
16
|
width: 24,
|
|
@@ -23,7 +23,7 @@ var defaultAttributes = {
|
|
|
23
23
|
strokeLinejoin: "round"
|
|
24
24
|
};
|
|
25
25
|
|
|
26
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
26
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
|
27
27
|
var Icon = forwardRef(
|
|
28
28
|
({
|
|
29
29
|
color = "currentColor",
|
|
@@ -55,7 +55,7 @@ var Icon = forwardRef(
|
|
|
55
55
|
}
|
|
56
56
|
);
|
|
57
57
|
|
|
58
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
58
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
59
59
|
var createLucideIcon = (iconName, iconNode) => {
|
|
60
60
|
const Component = forwardRef2(
|
|
61
61
|
({ className, ...props }, ref) => createElement2(Icon, {
|
|
@@ -69,45 +69,45 @@ var createLucideIcon = (iconName, iconNode) => {
|
|
|
69
69
|
return Component;
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
72
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/check.js
|
|
73
73
|
var Check = createLucideIcon("Check", [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]]);
|
|
74
74
|
|
|
75
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
75
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-down.js
|
|
76
76
|
var ChevronDown = createLucideIcon("ChevronDown", [
|
|
77
77
|
["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]
|
|
78
78
|
]);
|
|
79
79
|
|
|
80
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
80
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-left.js
|
|
81
81
|
var ChevronLeft = createLucideIcon("ChevronLeft", [
|
|
82
82
|
["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]
|
|
83
83
|
]);
|
|
84
84
|
|
|
85
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
85
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-right.js
|
|
86
86
|
var ChevronRight = createLucideIcon("ChevronRight", [
|
|
87
87
|
["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]
|
|
88
88
|
]);
|
|
89
89
|
|
|
90
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
90
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/circle-x.js
|
|
91
91
|
var CircleX = createLucideIcon("CircleX", [
|
|
92
92
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
93
93
|
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
|
|
94
94
|
["path", { d: "m9 9 6 6", key: "z0biqf" }]
|
|
95
95
|
]);
|
|
96
96
|
|
|
97
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
97
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/copy.js
|
|
98
98
|
var Copy = createLucideIcon("Copy", [
|
|
99
99
|
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
|
|
100
100
|
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
|
|
101
101
|
]);
|
|
102
102
|
|
|
103
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
103
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/ellipsis.js
|
|
104
104
|
var Ellipsis = createLucideIcon("Ellipsis", [
|
|
105
105
|
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
|
|
106
106
|
["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
|
|
107
107
|
["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
|
|
108
108
|
]);
|
|
109
109
|
|
|
110
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
110
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/file-text.js
|
|
111
111
|
var FileText = createLucideIcon("FileText", [
|
|
112
112
|
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
|
|
113
113
|
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
|
|
@@ -116,13 +116,13 @@ var FileText = createLucideIcon("FileText", [
|
|
|
116
116
|
["path", { d: "M16 17H8", key: "z1uh3a" }]
|
|
117
117
|
]);
|
|
118
118
|
|
|
119
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
119
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/file.js
|
|
120
120
|
var File = createLucideIcon("File", [
|
|
121
121
|
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
|
|
122
122
|
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }]
|
|
123
123
|
]);
|
|
124
124
|
|
|
125
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
125
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/folder-open.js
|
|
126
126
|
var FolderOpen = createLucideIcon("FolderOpen", [
|
|
127
127
|
[
|
|
128
128
|
"path",
|
|
@@ -133,7 +133,7 @@ var FolderOpen = createLucideIcon("FolderOpen", [
|
|
|
133
133
|
]
|
|
134
134
|
]);
|
|
135
135
|
|
|
136
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
136
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/folder.js
|
|
137
137
|
var Folder = createLucideIcon("Folder", [
|
|
138
138
|
[
|
|
139
139
|
"path",
|
|
@@ -144,7 +144,7 @@ var Folder = createLucideIcon("Folder", [
|
|
|
144
144
|
]
|
|
145
145
|
]);
|
|
146
146
|
|
|
147
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
147
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/hash.js
|
|
148
148
|
var Hash = createLucideIcon("Hash", [
|
|
149
149
|
["line", { x1: "4", x2: "20", y1: "9", y2: "9", key: "4lhtct" }],
|
|
150
150
|
["line", { x1: "4", x2: "20", y1: "15", y2: "15", key: "vyu0kd" }],
|
|
@@ -152,14 +152,14 @@ var Hash = createLucideIcon("Hash", [
|
|
|
152
152
|
["line", { x1: "16", x2: "14", y1: "3", y2: "21", key: "weycgp" }]
|
|
153
153
|
]);
|
|
154
154
|
|
|
155
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
155
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/info.js
|
|
156
156
|
var Info = createLucideIcon("Info", [
|
|
157
157
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
158
158
|
["path", { d: "M12 16v-4", key: "1dtifu" }],
|
|
159
159
|
["path", { d: "M12 8h.01", key: "e9boi3" }]
|
|
160
160
|
]);
|
|
161
161
|
|
|
162
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
162
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/languages.js
|
|
163
163
|
var Languages = createLucideIcon("Languages", [
|
|
164
164
|
["path", { d: "m5 8 6 6", key: "1wu5hv" }],
|
|
165
165
|
["path", { d: "m4 14 6-6 2-3", key: "1k1g8d" }],
|
|
@@ -169,37 +169,37 @@ var Languages = createLucideIcon("Languages", [
|
|
|
169
169
|
["path", { d: "M14 18h6", key: "1m8k6r" }]
|
|
170
170
|
]);
|
|
171
171
|
|
|
172
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
172
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/link.js
|
|
173
173
|
var Link = createLucideIcon("Link", [
|
|
174
174
|
["path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71", key: "1cjeqo" }],
|
|
175
175
|
["path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71", key: "19qd67" }]
|
|
176
176
|
]);
|
|
177
177
|
|
|
178
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
178
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/loader-circle.js
|
|
179
179
|
var LoaderCircle = createLucideIcon("LoaderCircle", [
|
|
180
180
|
["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]
|
|
181
181
|
]);
|
|
182
182
|
|
|
183
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
183
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/menu.js
|
|
184
184
|
var Menu = createLucideIcon("Menu", [
|
|
185
185
|
["line", { x1: "4", x2: "20", y1: "12", y2: "12", key: "1e0a9i" }],
|
|
186
186
|
["line", { x1: "4", x2: "20", y1: "6", y2: "6", key: "1owob3" }],
|
|
187
187
|
["line", { x1: "4", x2: "20", y1: "18", y2: "18", key: "yk5zj1" }]
|
|
188
188
|
]);
|
|
189
189
|
|
|
190
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
190
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/panel-left.js
|
|
191
191
|
var PanelLeft = createLucideIcon("PanelLeft", [
|
|
192
192
|
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
193
193
|
["path", { d: "M9 3v18", key: "fh3hqa" }]
|
|
194
194
|
]);
|
|
195
195
|
|
|
196
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
196
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/search.js
|
|
197
197
|
var Search = createLucideIcon("Search", [
|
|
198
198
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
199
199
|
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
|
|
200
200
|
]);
|
|
201
201
|
|
|
202
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
202
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/square-pen.js
|
|
203
203
|
var SquarePen = createLucideIcon("SquarePen", [
|
|
204
204
|
["path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7", key: "1m0v6g" }],
|
|
205
205
|
[
|
|
@@ -211,14 +211,14 @@ var SquarePen = createLucideIcon("SquarePen", [
|
|
|
211
211
|
]
|
|
212
212
|
]);
|
|
213
213
|
|
|
214
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
214
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/text.js
|
|
215
215
|
var Text = createLucideIcon("Text", [
|
|
216
216
|
["path", { d: "M17 6.1H3", key: "wptmhv" }],
|
|
217
217
|
["path", { d: "M21 12.1H3", key: "1j38uz" }],
|
|
218
218
|
["path", { d: "M15.1 18H3", key: "1nb16a" }]
|
|
219
219
|
]);
|
|
220
220
|
|
|
221
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
221
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/triangle-alert.js
|
|
222
222
|
var TriangleAlert = createLucideIcon("TriangleAlert", [
|
|
223
223
|
[
|
|
224
224
|
"path",
|
|
@@ -231,25 +231,25 @@ var TriangleAlert = createLucideIcon("TriangleAlert", [
|
|
|
231
231
|
["path", { d: "M12 17h.01", key: "p32p05" }]
|
|
232
232
|
]);
|
|
233
233
|
|
|
234
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
234
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/x.js
|
|
235
235
|
var X = createLucideIcon("X", [
|
|
236
236
|
["path", { d: "M18 6 6 18", key: "1bl5f8" }],
|
|
237
237
|
["path", { d: "m6 6 12 12", key: "d8bk6v" }]
|
|
238
238
|
]);
|
|
239
239
|
|
|
240
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
240
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/external-link.js
|
|
241
241
|
var ExternalLink = createLucideIcon("ExternalLink", [
|
|
242
242
|
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
|
|
243
243
|
["path", { d: "M10 14 21 3", key: "gplh6r" }],
|
|
244
244
|
["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }]
|
|
245
245
|
]);
|
|
246
246
|
|
|
247
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
247
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/moon.js
|
|
248
248
|
var Moon = createLucideIcon("Moon", [
|
|
249
249
|
["path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z", key: "a7tn18" }]
|
|
250
250
|
]);
|
|
251
251
|
|
|
252
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
|
252
|
+
// ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/sun.js
|
|
253
253
|
var Sun = createLucideIcon("Sun", [
|
|
254
254
|
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
|
|
255
255
|
["path", { d: "M12 2v2", key: "tus03m" }],
|
|
@@ -294,7 +294,7 @@ export {
|
|
|
294
294
|
|
|
295
295
|
lucide-react/dist/esm/shared/src/utils.js:
|
|
296
296
|
(**
|
|
297
|
-
* @license lucide-react v0.
|
|
297
|
+
* @license lucide-react v0.454.0 - ISC
|
|
298
298
|
*
|
|
299
299
|
* This source code is licensed under the ISC license.
|
|
300
300
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -302,7 +302,7 @@ lucide-react/dist/esm/shared/src/utils.js:
|
|
|
302
302
|
|
|
303
303
|
lucide-react/dist/esm/defaultAttributes.js:
|
|
304
304
|
(**
|
|
305
|
-
* @license lucide-react v0.
|
|
305
|
+
* @license lucide-react v0.454.0 - ISC
|
|
306
306
|
*
|
|
307
307
|
* This source code is licensed under the ISC license.
|
|
308
308
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -310,7 +310,7 @@ lucide-react/dist/esm/defaultAttributes.js:
|
|
|
310
310
|
|
|
311
311
|
lucide-react/dist/esm/Icon.js:
|
|
312
312
|
(**
|
|
313
|
-
* @license lucide-react v0.
|
|
313
|
+
* @license lucide-react v0.454.0 - ISC
|
|
314
314
|
*
|
|
315
315
|
* This source code is licensed under the ISC license.
|
|
316
316
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -318,7 +318,7 @@ lucide-react/dist/esm/Icon.js:
|
|
|
318
318
|
|
|
319
319
|
lucide-react/dist/esm/createLucideIcon.js:
|
|
320
320
|
(**
|
|
321
|
-
* @license lucide-react v0.
|
|
321
|
+
* @license lucide-react v0.454.0 - ISC
|
|
322
322
|
*
|
|
323
323
|
* This source code is licensed under the ISC license.
|
|
324
324
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -326,7 +326,7 @@ lucide-react/dist/esm/createLucideIcon.js:
|
|
|
326
326
|
|
|
327
327
|
lucide-react/dist/esm/icons/check.js:
|
|
328
328
|
(**
|
|
329
|
-
* @license lucide-react v0.
|
|
329
|
+
* @license lucide-react v0.454.0 - ISC
|
|
330
330
|
*
|
|
331
331
|
* This source code is licensed under the ISC license.
|
|
332
332
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -334,7 +334,7 @@ lucide-react/dist/esm/icons/check.js:
|
|
|
334
334
|
|
|
335
335
|
lucide-react/dist/esm/icons/chevron-down.js:
|
|
336
336
|
(**
|
|
337
|
-
* @license lucide-react v0.
|
|
337
|
+
* @license lucide-react v0.454.0 - ISC
|
|
338
338
|
*
|
|
339
339
|
* This source code is licensed under the ISC license.
|
|
340
340
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -342,7 +342,7 @@ lucide-react/dist/esm/icons/chevron-down.js:
|
|
|
342
342
|
|
|
343
343
|
lucide-react/dist/esm/icons/chevron-left.js:
|
|
344
344
|
(**
|
|
345
|
-
* @license lucide-react v0.
|
|
345
|
+
* @license lucide-react v0.454.0 - ISC
|
|
346
346
|
*
|
|
347
347
|
* This source code is licensed under the ISC license.
|
|
348
348
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -350,7 +350,7 @@ lucide-react/dist/esm/icons/chevron-left.js:
|
|
|
350
350
|
|
|
351
351
|
lucide-react/dist/esm/icons/chevron-right.js:
|
|
352
352
|
(**
|
|
353
|
-
* @license lucide-react v0.
|
|
353
|
+
* @license lucide-react v0.454.0 - ISC
|
|
354
354
|
*
|
|
355
355
|
* This source code is licensed under the ISC license.
|
|
356
356
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -358,7 +358,7 @@ lucide-react/dist/esm/icons/chevron-right.js:
|
|
|
358
358
|
|
|
359
359
|
lucide-react/dist/esm/icons/circle-x.js:
|
|
360
360
|
(**
|
|
361
|
-
* @license lucide-react v0.
|
|
361
|
+
* @license lucide-react v0.454.0 - ISC
|
|
362
362
|
*
|
|
363
363
|
* This source code is licensed under the ISC license.
|
|
364
364
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -366,7 +366,7 @@ lucide-react/dist/esm/icons/circle-x.js:
|
|
|
366
366
|
|
|
367
367
|
lucide-react/dist/esm/icons/copy.js:
|
|
368
368
|
(**
|
|
369
|
-
* @license lucide-react v0.
|
|
369
|
+
* @license lucide-react v0.454.0 - ISC
|
|
370
370
|
*
|
|
371
371
|
* This source code is licensed under the ISC license.
|
|
372
372
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -374,7 +374,7 @@ lucide-react/dist/esm/icons/copy.js:
|
|
|
374
374
|
|
|
375
375
|
lucide-react/dist/esm/icons/ellipsis.js:
|
|
376
376
|
(**
|
|
377
|
-
* @license lucide-react v0.
|
|
377
|
+
* @license lucide-react v0.454.0 - ISC
|
|
378
378
|
*
|
|
379
379
|
* This source code is licensed under the ISC license.
|
|
380
380
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -382,7 +382,7 @@ lucide-react/dist/esm/icons/ellipsis.js:
|
|
|
382
382
|
|
|
383
383
|
lucide-react/dist/esm/icons/file-text.js:
|
|
384
384
|
(**
|
|
385
|
-
* @license lucide-react v0.
|
|
385
|
+
* @license lucide-react v0.454.0 - ISC
|
|
386
386
|
*
|
|
387
387
|
* This source code is licensed under the ISC license.
|
|
388
388
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -390,7 +390,7 @@ lucide-react/dist/esm/icons/file-text.js:
|
|
|
390
390
|
|
|
391
391
|
lucide-react/dist/esm/icons/file.js:
|
|
392
392
|
(**
|
|
393
|
-
* @license lucide-react v0.
|
|
393
|
+
* @license lucide-react v0.454.0 - ISC
|
|
394
394
|
*
|
|
395
395
|
* This source code is licensed under the ISC license.
|
|
396
396
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -398,7 +398,7 @@ lucide-react/dist/esm/icons/file.js:
|
|
|
398
398
|
|
|
399
399
|
lucide-react/dist/esm/icons/folder-open.js:
|
|
400
400
|
(**
|
|
401
|
-
* @license lucide-react v0.
|
|
401
|
+
* @license lucide-react v0.454.0 - ISC
|
|
402
402
|
*
|
|
403
403
|
* This source code is licensed under the ISC license.
|
|
404
404
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -406,7 +406,7 @@ lucide-react/dist/esm/icons/folder-open.js:
|
|
|
406
406
|
|
|
407
407
|
lucide-react/dist/esm/icons/folder.js:
|
|
408
408
|
(**
|
|
409
|
-
* @license lucide-react v0.
|
|
409
|
+
* @license lucide-react v0.454.0 - ISC
|
|
410
410
|
*
|
|
411
411
|
* This source code is licensed under the ISC license.
|
|
412
412
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -414,7 +414,7 @@ lucide-react/dist/esm/icons/folder.js:
|
|
|
414
414
|
|
|
415
415
|
lucide-react/dist/esm/icons/hash.js:
|
|
416
416
|
(**
|
|
417
|
-
* @license lucide-react v0.
|
|
417
|
+
* @license lucide-react v0.454.0 - ISC
|
|
418
418
|
*
|
|
419
419
|
* This source code is licensed under the ISC license.
|
|
420
420
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -422,7 +422,7 @@ lucide-react/dist/esm/icons/hash.js:
|
|
|
422
422
|
|
|
423
423
|
lucide-react/dist/esm/icons/info.js:
|
|
424
424
|
(**
|
|
425
|
-
* @license lucide-react v0.
|
|
425
|
+
* @license lucide-react v0.454.0 - ISC
|
|
426
426
|
*
|
|
427
427
|
* This source code is licensed under the ISC license.
|
|
428
428
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -430,7 +430,7 @@ lucide-react/dist/esm/icons/info.js:
|
|
|
430
430
|
|
|
431
431
|
lucide-react/dist/esm/icons/languages.js:
|
|
432
432
|
(**
|
|
433
|
-
* @license lucide-react v0.
|
|
433
|
+
* @license lucide-react v0.454.0 - ISC
|
|
434
434
|
*
|
|
435
435
|
* This source code is licensed under the ISC license.
|
|
436
436
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -438,7 +438,7 @@ lucide-react/dist/esm/icons/languages.js:
|
|
|
438
438
|
|
|
439
439
|
lucide-react/dist/esm/icons/link.js:
|
|
440
440
|
(**
|
|
441
|
-
* @license lucide-react v0.
|
|
441
|
+
* @license lucide-react v0.454.0 - ISC
|
|
442
442
|
*
|
|
443
443
|
* This source code is licensed under the ISC license.
|
|
444
444
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -446,7 +446,7 @@ lucide-react/dist/esm/icons/link.js:
|
|
|
446
446
|
|
|
447
447
|
lucide-react/dist/esm/icons/loader-circle.js:
|
|
448
448
|
(**
|
|
449
|
-
* @license lucide-react v0.
|
|
449
|
+
* @license lucide-react v0.454.0 - ISC
|
|
450
450
|
*
|
|
451
451
|
* This source code is licensed under the ISC license.
|
|
452
452
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -454,7 +454,7 @@ lucide-react/dist/esm/icons/loader-circle.js:
|
|
|
454
454
|
|
|
455
455
|
lucide-react/dist/esm/icons/menu.js:
|
|
456
456
|
(**
|
|
457
|
-
* @license lucide-react v0.
|
|
457
|
+
* @license lucide-react v0.454.0 - ISC
|
|
458
458
|
*
|
|
459
459
|
* This source code is licensed under the ISC license.
|
|
460
460
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -462,7 +462,7 @@ lucide-react/dist/esm/icons/menu.js:
|
|
|
462
462
|
|
|
463
463
|
lucide-react/dist/esm/icons/panel-left.js:
|
|
464
464
|
(**
|
|
465
|
-
* @license lucide-react v0.
|
|
465
|
+
* @license lucide-react v0.454.0 - ISC
|
|
466
466
|
*
|
|
467
467
|
* This source code is licensed under the ISC license.
|
|
468
468
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -470,7 +470,7 @@ lucide-react/dist/esm/icons/panel-left.js:
|
|
|
470
470
|
|
|
471
471
|
lucide-react/dist/esm/icons/search.js:
|
|
472
472
|
(**
|
|
473
|
-
* @license lucide-react v0.
|
|
473
|
+
* @license lucide-react v0.454.0 - ISC
|
|
474
474
|
*
|
|
475
475
|
* This source code is licensed under the ISC license.
|
|
476
476
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -478,7 +478,7 @@ lucide-react/dist/esm/icons/search.js:
|
|
|
478
478
|
|
|
479
479
|
lucide-react/dist/esm/icons/square-pen.js:
|
|
480
480
|
(**
|
|
481
|
-
* @license lucide-react v0.
|
|
481
|
+
* @license lucide-react v0.454.0 - ISC
|
|
482
482
|
*
|
|
483
483
|
* This source code is licensed under the ISC license.
|
|
484
484
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -486,7 +486,7 @@ lucide-react/dist/esm/icons/square-pen.js:
|
|
|
486
486
|
|
|
487
487
|
lucide-react/dist/esm/icons/text.js:
|
|
488
488
|
(**
|
|
489
|
-
* @license lucide-react v0.
|
|
489
|
+
* @license lucide-react v0.454.0 - ISC
|
|
490
490
|
*
|
|
491
491
|
* This source code is licensed under the ISC license.
|
|
492
492
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -494,7 +494,7 @@ lucide-react/dist/esm/icons/text.js:
|
|
|
494
494
|
|
|
495
495
|
lucide-react/dist/esm/icons/triangle-alert.js:
|
|
496
496
|
(**
|
|
497
|
-
* @license lucide-react v0.
|
|
497
|
+
* @license lucide-react v0.454.0 - ISC
|
|
498
498
|
*
|
|
499
499
|
* This source code is licensed under the ISC license.
|
|
500
500
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -502,7 +502,7 @@ lucide-react/dist/esm/icons/triangle-alert.js:
|
|
|
502
502
|
|
|
503
503
|
lucide-react/dist/esm/icons/x.js:
|
|
504
504
|
(**
|
|
505
|
-
* @license lucide-react v0.
|
|
505
|
+
* @license lucide-react v0.454.0 - ISC
|
|
506
506
|
*
|
|
507
507
|
* This source code is licensed under the ISC license.
|
|
508
508
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -510,7 +510,7 @@ lucide-react/dist/esm/icons/x.js:
|
|
|
510
510
|
|
|
511
511
|
lucide-react/dist/esm/icons/external-link.js:
|
|
512
512
|
(**
|
|
513
|
-
* @license lucide-react v0.
|
|
513
|
+
* @license lucide-react v0.454.0 - ISC
|
|
514
514
|
*
|
|
515
515
|
* This source code is licensed under the ISC license.
|
|
516
516
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -518,7 +518,7 @@ lucide-react/dist/esm/icons/external-link.js:
|
|
|
518
518
|
|
|
519
519
|
lucide-react/dist/esm/icons/moon.js:
|
|
520
520
|
(**
|
|
521
|
-
* @license lucide-react v0.
|
|
521
|
+
* @license lucide-react v0.454.0 - ISC
|
|
522
522
|
*
|
|
523
523
|
* This source code is licensed under the ISC license.
|
|
524
524
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -526,7 +526,7 @@ lucide-react/dist/esm/icons/moon.js:
|
|
|
526
526
|
|
|
527
527
|
lucide-react/dist/esm/icons/sun.js:
|
|
528
528
|
(**
|
|
529
|
-
* @license lucide-react v0.
|
|
529
|
+
* @license lucide-react v0.454.0 - ISC
|
|
530
530
|
*
|
|
531
531
|
* This source code is licensed under the ISC license.
|
|
532
532
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -534,7 +534,7 @@ lucide-react/dist/esm/icons/sun.js:
|
|
|
534
534
|
|
|
535
535
|
lucide-react/dist/esm/lucide-react.js:
|
|
536
536
|
(**
|
|
537
|
-
* @license lucide-react v0.
|
|
537
|
+
* @license lucide-react v0.454.0 - ISC
|
|
538
538
|
*
|
|
539
539
|
* This source code is licensed under the ISC license.
|
|
540
540
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -3,13 +3,13 @@ import {
|
|
|
3
3
|
} from "./chunk-QKOA6KEZ.js";
|
|
4
4
|
import {
|
|
5
5
|
Search
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-VPJMNIJX.js";
|
|
7
7
|
import {
|
|
8
8
|
twMerge
|
|
9
9
|
} from "./chunk-TK3TM3MR.js";
|
|
10
10
|
import {
|
|
11
11
|
useSearchContext
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-UUGCW3UP.js";
|
|
13
13
|
import {
|
|
14
14
|
useI18n
|
|
15
15
|
} from "./chunk-EFMHXXHW.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const Callout: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title" | "
|
|
4
|
+
declare const Callout: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title" | "icon" | "type"> & {
|
|
5
5
|
title?: ReactNode;
|
|
6
6
|
/**
|
|
7
7
|
* @defaultValue info
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
import {
|
|
3
3
|
CodeBlock,
|
|
4
4
|
Pre
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-ZBOI25UW.js";
|
|
6
6
|
import "../chunk-2KMKNVSN.js";
|
|
7
7
|
import "../chunk-QKOA6KEZ.js";
|
|
8
8
|
import "../chunk-2FLZOPQN.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-VPJMNIJX.js";
|
|
10
10
|
import "../chunk-TK3TM3MR.js";
|
|
11
11
|
import "../chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
|
@@ -4,11 +4,11 @@ import {
|
|
|
4
4
|
} from "../../chunk-DGKCMOIC.js";
|
|
5
5
|
import {
|
|
6
6
|
SearchDialog
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-CLF6ZVYS.js";
|
|
8
8
|
import "../../chunk-QKOA6KEZ.js";
|
|
9
|
-
import "../../chunk-
|
|
9
|
+
import "../../chunk-VPJMNIJX.js";
|
|
10
10
|
import "../../chunk-TK3TM3MR.js";
|
|
11
|
-
import "../../chunk-
|
|
11
|
+
import "../../chunk-UUGCW3UP.js";
|
|
12
12
|
import "../../chunk-27HFSL7N.js";
|
|
13
13
|
import "../../chunk-EFMHXXHW.js";
|
|
14
14
|
import "../../chunk-MLKGABMK.js";
|
|
@@ -4,11 +4,11 @@ import {
|
|
|
4
4
|
} from "../../chunk-DGKCMOIC.js";
|
|
5
5
|
import {
|
|
6
6
|
SearchDialog
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-CLF6ZVYS.js";
|
|
8
8
|
import "../../chunk-QKOA6KEZ.js";
|
|
9
|
-
import "../../chunk-
|
|
9
|
+
import "../../chunk-VPJMNIJX.js";
|
|
10
10
|
import "../../chunk-TK3TM3MR.js";
|
|
11
|
-
import "../../chunk-
|
|
11
|
+
import "../../chunk-UUGCW3UP.js";
|
|
12
12
|
import "../../chunk-27HFSL7N.js";
|
|
13
13
|
import {
|
|
14
14
|
useI18n
|
|
@@ -4,11 +4,11 @@ import {
|
|
|
4
4
|
} from "../../chunk-DGKCMOIC.js";
|
|
5
5
|
import {
|
|
6
6
|
SearchDialog
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-CLF6ZVYS.js";
|
|
8
8
|
import "../../chunk-QKOA6KEZ.js";
|
|
9
|
-
import "../../chunk-
|
|
9
|
+
import "../../chunk-VPJMNIJX.js";
|
|
10
10
|
import "../../chunk-TK3TM3MR.js";
|
|
11
|
-
import "../../chunk-
|
|
11
|
+
import "../../chunk-UUGCW3UP.js";
|
|
12
12
|
import "../../chunk-27HFSL7N.js";
|
|
13
13
|
import "../../chunk-EFMHXXHW.js";
|
|
14
14
|
import "../../chunk-MLKGABMK.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
SearchDialog
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-CLF6ZVYS.js";
|
|
5
5
|
import "../../chunk-QKOA6KEZ.js";
|
|
6
|
-
import "../../chunk-
|
|
6
|
+
import "../../chunk-VPJMNIJX.js";
|
|
7
7
|
import "../../chunk-TK3TM3MR.js";
|
|
8
|
-
import "../../chunk-
|
|
8
|
+
import "../../chunk-UUGCW3UP.js";
|
|
9
9
|
import "../../chunk-27HFSL7N.js";
|
|
10
10
|
import "../../chunk-EFMHXXHW.js";
|
|
11
11
|
import "../../chunk-MLKGABMK.js";
|
package/dist/components/files.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
RootToggle
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-IL64LMKR.js";
|
|
5
5
|
import "../../chunk-CDPVENXR.js";
|
|
6
6
|
import "../../chunk-IVBHRX3O.js";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-VPJMNIJX.js";
|
|
8
8
|
import "../../chunk-TK3TM3MR.js";
|
|
9
9
|
import "../../chunk-27HFSL7N.js";
|
|
10
10
|
import "../../chunk-MLKGABMK.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
Sidebar
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-J6XGK6ZG.js";
|
|
5
|
+
import "./chunk-W36BQGMB.js";
|
|
6
6
|
import "./chunk-CDPVENXR.js";
|
|
7
7
|
import "./chunk-TQJ6YPJ3.js";
|
|
8
8
|
import {
|
|
@@ -11,11 +11,11 @@ import {
|
|
|
11
11
|
import "./chunk-2FLZOPQN.js";
|
|
12
12
|
import {
|
|
13
13
|
PanelLeft
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-VPJMNIJX.js";
|
|
15
15
|
import {
|
|
16
16
|
twMerge
|
|
17
17
|
} from "./chunk-TK3TM3MR.js";
|
|
18
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-UUGCW3UP.js";
|
|
19
19
|
import "./chunk-YL3MZH7N.js";
|
|
20
20
|
import {
|
|
21
21
|
useSidebar
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
RootToggle
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-IL64LMKR.js";
|
|
5
5
|
import {
|
|
6
6
|
Sidebar,
|
|
7
7
|
itemVariants
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-J6XGK6ZG.js";
|
|
9
9
|
import {
|
|
10
10
|
BaseLinkItem,
|
|
11
11
|
ButtonItem,
|
|
12
12
|
IconItem,
|
|
13
13
|
ThemeToggle
|
|
14
|
-
} from "../chunk-
|
|
14
|
+
} from "../chunk-AFMXKA2S.js";
|
|
15
15
|
import {
|
|
16
16
|
SearchToggle
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-W36BQGMB.js";
|
|
18
18
|
import "../chunk-CDPVENXR.js";
|
|
19
19
|
import {
|
|
20
20
|
LanguageToggle,
|
|
@@ -44,13 +44,13 @@ import {
|
|
|
44
44
|
Menu,
|
|
45
45
|
PanelLeft,
|
|
46
46
|
X
|
|
47
|
-
} from "../chunk-
|
|
47
|
+
} from "../chunk-VPJMNIJX.js";
|
|
48
48
|
import {
|
|
49
49
|
twMerge
|
|
50
50
|
} from "../chunk-TK3TM3MR.js";
|
|
51
51
|
import {
|
|
52
52
|
useSearchContext
|
|
53
|
-
} from "../chunk-
|
|
53
|
+
} from "../chunk-UUGCW3UP.js";
|
|
54
54
|
import {
|
|
55
55
|
TreeContextProvider
|
|
56
56
|
} from "../chunk-YL3MZH7N.js";
|
package/dist/layouts/docs.js
CHANGED
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
import {
|
|
19
19
|
Ellipsis,
|
|
20
20
|
Languages
|
|
21
|
-
} from "../chunk-
|
|
21
|
+
} from "../chunk-VPJMNIJX.js";
|
|
22
22
|
import {
|
|
23
23
|
getLinks,
|
|
24
24
|
replaceOrDefault
|
|
@@ -56,7 +56,7 @@ function getSidebarTabs(pageTree, { transform } = {}) {
|
|
|
56
56
|
// src/layouts/docs.tsx
|
|
57
57
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
58
58
|
var DynamicSidebar = dynamic(
|
|
59
|
-
() => import("../dynamic-sidebar-
|
|
59
|
+
() => import("../dynamic-sidebar-SYEETGZL.js")
|
|
60
60
|
);
|
|
61
61
|
function DocsLayout({
|
|
62
62
|
nav: {
|
|
@@ -92,7 +92,7 @@ function DocsLayout({
|
|
|
92
92
|
sidebar.banner
|
|
93
93
|
] });
|
|
94
94
|
const footer = /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
95
|
-
/* @__PURE__ */ jsx("div", { className: "flex flex-row items-center border-t py-
|
|
95
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-row items-center border-t py-2 empty:hidden max-md:gap-1.5 max-md:px-3 md:mx-3", children: /* @__PURE__ */ jsx(
|
|
96
96
|
SidebarFooter,
|
|
97
97
|
{
|
|
98
98
|
sidebarCollapsible: collapsible,
|
|
@@ -4,11 +4,11 @@ import {
|
|
|
4
4
|
ButtonItem,
|
|
5
5
|
IconItem,
|
|
6
6
|
ThemeToggle
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-AFMXKA2S.js";
|
|
8
8
|
import {
|
|
9
9
|
LargeSearchToggle,
|
|
10
10
|
SearchToggle
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-W36BQGMB.js";
|
|
12
12
|
import "../chunk-CDPVENXR.js";
|
|
13
13
|
import {
|
|
14
14
|
LanguageToggle,
|
|
@@ -26,13 +26,13 @@ import "../chunk-IVBHRX3O.js";
|
|
|
26
26
|
import {
|
|
27
27
|
ChevronDown,
|
|
28
28
|
Languages
|
|
29
|
-
} from "../chunk-
|
|
29
|
+
} from "../chunk-VPJMNIJX.js";
|
|
30
30
|
import {
|
|
31
31
|
twMerge
|
|
32
32
|
} from "../chunk-TK3TM3MR.js";
|
|
33
33
|
import {
|
|
34
34
|
useSearchContext
|
|
35
|
-
} from "../chunk-
|
|
35
|
+
} from "../chunk-UUGCW3UP.js";
|
|
36
36
|
import "../chunk-EFMHXXHW.js";
|
|
37
37
|
import "../chunk-MLKGABMK.js";
|
|
38
38
|
|
package/dist/mdx.client.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
import {
|
|
3
3
|
CodeBlock,
|
|
4
4
|
Pre
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-ZBOI25UW.js";
|
|
6
6
|
import "./chunk-2KMKNVSN.js";
|
|
7
7
|
import "./chunk-QKOA6KEZ.js";
|
|
8
8
|
import "./chunk-2FLZOPQN.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-VPJMNIJX.js";
|
|
10
10
|
import "./chunk-TK3TM3MR.js";
|
|
11
11
|
import "./chunk-MLKGABMK.js";
|
|
12
12
|
|
package/dist/mdx.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare const defaultMdxComponents: {
|
|
|
18
18
|
h5: (props: React.HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime.JSX.Element;
|
|
19
19
|
h6: (props: React.HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime.JSX.Element;
|
|
20
20
|
table: typeof Table;
|
|
21
|
-
Callout: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title" | "
|
|
21
|
+
Callout: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title" | "icon" | "type"> & {
|
|
22
22
|
title?: react.ReactNode;
|
|
23
23
|
type?: "info" | "warn" | "error";
|
|
24
24
|
icon?: react.ReactNode;
|
package/dist/mdx.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Pre } from "./mdx.client"
|
|
2
2
|
import {
|
|
3
3
|
Heading
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-ILBYBJ5C.js";
|
|
5
5
|
import {
|
|
6
6
|
Callout
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-F534DZID.js";
|
|
8
|
+
import "./chunk-VPJMNIJX.js";
|
|
9
9
|
import {
|
|
10
10
|
Card,
|
|
11
11
|
Cards
|
package/dist/page.client.js
CHANGED
package/dist/page.js
CHANGED
|
@@ -25,7 +25,7 @@ import { AnchorProvider } from "fumadocs-core/toc";
|
|
|
25
25
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
26
26
|
var ClerkTOCItems = dynamic(() => import("./toc-clerk-SKE4LBT7.js"));
|
|
27
27
|
var EditOnGitHub = dynamic(
|
|
28
|
-
() => import("./edit-on-github-
|
|
28
|
+
() => import("./edit-on-github-FIYOWWPQ.js")
|
|
29
29
|
);
|
|
30
30
|
function DocsPage({
|
|
31
31
|
toc = [],
|
package/dist/provider.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ReactNode, MutableRefObject } from 'react';
|
|
3
3
|
import { ThemeProviderProps } from 'next-themes/dist/types';
|
|
4
4
|
import { DefaultSearchDialogProps } from './components/dialog/search-default.js';
|
|
5
5
|
import { SearchLink, SharedProps } from './components/dialog/search.js';
|
|
@@ -10,7 +10,7 @@ import 'react/jsx-runtime';
|
|
|
10
10
|
import 'fumadocs-core/server';
|
|
11
11
|
|
|
12
12
|
interface HotKey {
|
|
13
|
-
display:
|
|
13
|
+
display: ReactNode;
|
|
14
14
|
/**
|
|
15
15
|
* Key code or a function determining whether the key is pressed.
|
|
16
16
|
*/
|
|
@@ -43,7 +43,7 @@ interface SearchProviderProps {
|
|
|
43
43
|
* Additional props to the dialog
|
|
44
44
|
*/
|
|
45
45
|
options?: Partial<SharedProps>;
|
|
46
|
-
children?:
|
|
46
|
+
children?: ReactNode;
|
|
47
47
|
}
|
|
48
48
|
interface SearchContextType {
|
|
49
49
|
enabled: boolean;
|
package/dist/provider.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fumadocs-ui",
|
|
3
|
-
"version": "14.2.
|
|
3
|
+
"version": "14.2.1",
|
|
4
4
|
"description": "The framework for building a documentation website in Next.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NextJs",
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
"next-themes": "^0.3.0",
|
|
67
67
|
"react-medium-image-zoom": "^5.2.10",
|
|
68
68
|
"tailwind-merge": "^2.5.4",
|
|
69
|
-
"fumadocs-core": "14.2.
|
|
69
|
+
"fumadocs-core": "14.2.1"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@next/eslint-plugin-next": "^15.0.
|
|
72
|
+
"@next/eslint-plugin-next": "^15.0.2",
|
|
73
73
|
"@types/react": "^18.3.12",
|
|
74
74
|
"@types/react-dom": "^18.3.1",
|
|
75
|
-
"lucide-react": "^0.
|
|
75
|
+
"lucide-react": "^0.454.0",
|
|
76
76
|
"next": "15.0.2",
|
|
77
77
|
"postcss": "^8.4.47",
|
|
78
78
|
"postcss-cli": "^11.0.0",
|