fumadocs-ui 16.13.0 → 16.14.0

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.
@@ -12,7 +12,7 @@ function DefaultSearchDialog({ type, defaultTag, tags = [], api, delayMs, allowC
12
12
  const { locale } = useI18n();
13
13
  const [tag, setTag] = useState(defaultTag);
14
14
  let client;
15
- if (type === "static") client = use(STATIC ??= import("fumadocs-core/search/client/orama-static")).oramaStaticClient({
15
+ if (type === "static") client = use(STATIC ??= import("fumadocs-core/search/client/orama-static")).staticClient({
16
16
  from: api,
17
17
  locale,
18
18
  tag
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fumadocs-ui",
3
- "version": "16.13.0",
3
+ "version": "16.14.0",
4
4
  "description": "The Radix UI version of Fumadocs UI",
5
5
  "keywords": [
6
6
  "Docs",
@@ -135,20 +135,20 @@
135
135
  },
136
136
  "dependencies": {
137
137
  "@fuma-translate/react": "^1.0.2",
138
- "@radix-ui/react-accordion": "^1.2.17",
139
- "@radix-ui/react-collapsible": "^1.1.17",
140
- "@radix-ui/react-dialog": "^1.1.20",
141
- "@radix-ui/react-direction": "^1.1.2",
142
- "@radix-ui/react-navigation-menu": "^1.2.19",
143
- "@radix-ui/react-popover": "^1.1.20",
144
- "@radix-ui/react-presence": "^1.1.8",
145
- "@radix-ui/react-scroll-area": "^1.2.15",
146
- "@radix-ui/react-slot": "^1.3.0",
147
- "@radix-ui/react-tabs": "^1.1.18",
138
+ "@radix-ui/react-accordion": "^1.2.20",
139
+ "@radix-ui/react-collapsible": "^1.1.20",
140
+ "@radix-ui/react-dialog": "^1.1.23",
141
+ "@radix-ui/react-direction": "^1.1.4",
142
+ "@radix-ui/react-navigation-menu": "^1.2.22",
143
+ "@radix-ui/react-popover": "^1.1.23",
144
+ "@radix-ui/react-presence": "^1.1.10",
145
+ "@radix-ui/react-scroll-area": "^1.2.18",
146
+ "@radix-ui/react-slot": "^1.3.3",
147
+ "@radix-ui/react-tabs": "^1.1.21",
148
148
  "class-variance-authority": "^0.7.1",
149
- "cnfast": "^0.0.8",
150
- "lucide-react": "^1.25.0",
151
- "motion": "^12.42.2",
149
+ "cnfast": "^0.1.0",
150
+ "lucide-react": "^1.27.0",
151
+ "motion": "^12.43.0",
152
152
  "next-themes": "^0.4.6",
153
153
  "react-remove-scroll": "^2.7.2",
154
154
  "rehype-raw": "^7.0.0",
@@ -160,20 +160,20 @@
160
160
  "devDependencies": {
161
161
  "@tailwindcss/cli": "^4.3.3",
162
162
  "@tailwindcss/oxide": "^4.3.3",
163
- "@tsdown/css": "^0.22.13",
163
+ "@tsdown/css": "^0.22.14",
164
164
  "@types/hast": "^3.0.5",
165
165
  "@types/mdx": "^2.0.14",
166
- "@types/node": "^26.1.1",
166
+ "@types/node": "^26.1.2",
167
167
  "@types/react": "^19.2.17",
168
168
  "@types/react-dom": "^19.2.3",
169
169
  "fuma-cli": "^0.1.1",
170
170
  "react-medium-image-zoom": "^5.4.8",
171
171
  "tailwindcss": "^4.3.3",
172
- "tsdown": "0.22.13",
172
+ "tsdown": "0.22.14",
173
173
  "unified": "^11.0.5",
174
174
  "@fumadocs/cli": "1.4.1",
175
175
  "tsconfig": "0.0.0",
176
- "fumadocs-core": "16.13.0"
176
+ "fumadocs-core": "16.14.0"
177
177
  },
178
178
  "peerDependencies": {
179
179
  "@types/mdx": "*",
@@ -182,7 +182,7 @@
182
182
  "react": "^19.2.0",
183
183
  "react-dom": "^19.2.0",
184
184
  "takumi-js": "*",
185
- "fumadocs-core": "16.13.0"
185
+ "fumadocs-core": "16.14.0"
186
186
  },
187
187
  "peerDependenciesMeta": {
188
188
  "next": {
@@ -202,11 +202,9 @@
202
202
  "react-medium-image-zoom": "5.4.8"
203
203
  },
204
204
  "scripts": {
205
- "build": "pnpm build:layout && pnpm build:tailwind",
206
- "build:layout": "tsdown",
207
- "build:tailwind": "tailwindcss -i css/style.css -o ./dist/style.css",
205
+ "build": "tsdown",
208
206
  "clean": "rimraf dist",
209
- "dev": "concurrently \"tsdown --watch --clean false\" \"tailwindcss -i css/style.css -o ./dist/style.css -w\"",
207
+ "dev": "tsdown --watch --clean false",
210
208
  "lint": "oxlint .",
211
209
  "types:check": "tsc --noEmit"
212
210
  }