Skip to content

Commit 6e90c3f

Browse files
Version Packages (app-router) (#3766)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent dd2e216 commit 6e90c3f

File tree

7 files changed

+54
-33
lines changed

7 files changed

+54
-33
lines changed

.changeset/pre.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
"warm-maps-smash",
106106
"wet-dodos-move",
107107
"wild-crews-film",
108-
"wild-plums-brake"
108+
"wild-plums-brake",
109+
"wise-bikes-run"
109110
]
110111
}

packages/nextra-theme-blog/CHANGELOG.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# nextra-theme-blog
22

3+
## 4.0.0-app-router.33
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [dd2e216]
8+
9+
310
## 4.0.0-app-router.32
411

512
### Patch Changes
@@ -342,8 +349,8 @@
342349
by
343350

344351
```js
345-
import 'nextra-theme-docs/style.css' // for docs theme
346-
import 'nextra-theme-blog/style.css' // for blog theme
352+
import "nextra-theme-docs/style.css"; // for docs theme
353+
import "nextra-theme-blog/style.css"; // for blog theme
347354
```
348355

349356
- Updated dependencies [2c8a8ab]
@@ -1395,19 +1402,19 @@
13951402
and `nextra-theme-docs`
13961403

13971404
```js
1398-
import { Card, Cards } from 'nextra/components'
1405+
import { Card, Cards } from "nextra/components";
13991406
```
14001407

14011408
```js
1402-
import { Tab, Tabs } from 'nextra/components'
1409+
import { Tab, Tabs } from "nextra/components";
14031410
```
14041411

14051412
```js
1406-
import { Steps } from 'nextra/components'
1413+
import { Steps } from "nextra/components";
14071414
```
14081415

14091416
```js
1410-
import { FileTree } from 'nextra/components'
1417+
import { FileTree } from "nextra/components";
14111418
```
14121419

14131420
### Patch Changes

packages/nextra-theme-blog/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextra-theme-blog",
3-
"version": "4.0.0-app-router.32",
3+
"version": "4.0.0-app-router.33",
44
"description": "A Nextra theme for blogs.",
55
"repository": "https://github.com/shuding/nextra",
66
"author": "Shu Ding <[email protected]>",

packages/nextra-theme-docs/CHANGELOG.md

+23-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# nextra-theme-docs
22

3+
## 4.0.0-app-router.33
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [dd2e216]
8+
9+
310
## 4.0.0-app-router.32
411

512
### Minor Changes
@@ -378,8 +385,8 @@
378385
by
379386

380387
```js
381-
import 'nextra-theme-docs/style.css' // for docs theme
382-
import 'nextra-theme-blog/style.css' // for blog theme
388+
import "nextra-theme-docs/style.css"; // for docs theme
389+
import "nextra-theme-blog/style.css"; // for blog theme
383390
```
384391

385392
- Updated dependencies [2c8a8ab]
@@ -1878,19 +1885,19 @@
18781885
and `nextra-theme-docs`
18791886

18801887
```js
1881-
import { Card, Cards } from 'nextra/components'
1888+
import { Card, Cards } from "nextra/components";
18821889
```
18831890

18841891
```js
1885-
import { Tab, Tabs } from 'nextra/components'
1892+
import { Tab, Tabs } from "nextra/components";
18861893
```
18871894

18881895
```js
1889-
import { Steps } from 'nextra/components'
1896+
import { Steps } from "nextra/components";
18901897
```
18911898

18921899
```js
1893-
import { FileTree } from 'nextra/components'
1900+
import { FileTree } from "nextra/components";
18941901
```
18951902

18961903
### Patch Changes
@@ -2466,14 +2473,14 @@
24662473
- 582ad96: feat: bump `rehype-pretty-code` version, support `showLineNumbers`
24672474
- da998e6: move react components to `components` folder and replace exports:
24682475
```ts
2469-
import Bleed from 'nextra-theme-docs/bleed'
2470-
import Callout from 'nextra-theme-docs/callout'
2471-
import Collapse from 'nextra-theme-docs/collapse'
2472-
import { Tab, Tabs } from 'nextra-theme-docs/tabs'
2476+
import Bleed from "nextra-theme-docs/bleed";
2477+
import Callout from "nextra-theme-docs/callout";
2478+
import Collapse from "nextra-theme-docs/collapse";
2479+
import { Tab, Tabs } from "nextra-theme-docs/tabs";
24732480
```
24742481
by
24752482
```ts
2476-
import { Bleed, Callout, Collapse, Tab, Tabs } from 'nextra-theme-docs'
2483+
import { Bleed, Callout, Collapse, Tab, Tabs } from "nextra-theme-docs";
24772484
```
24782485
- e6771ca: move `withLayout` logic directly in nextra loader
24792486
- 8ad9507: fix unable expanding folder items in sidebar
@@ -2793,14 +2800,14 @@
27932800
- 48e0ac2: export `useConfig` and `useTheme`
27942801
- da998e6: move react components to `components` folder and replace exports:
27952802
```ts
2796-
import Bleed from 'nextra-theme-docs/bleed'
2797-
import Callout from 'nextra-theme-docs/callout'
2798-
import Collapse from 'nextra-theme-docs/collapse'
2799-
import { Tab, Tabs } from 'nextra-theme-docs/tabs'
2803+
import Bleed from "nextra-theme-docs/bleed";
2804+
import Callout from "nextra-theme-docs/callout";
2805+
import Collapse from "nextra-theme-docs/collapse";
2806+
import { Tab, Tabs } from "nextra-theme-docs/tabs";
28002807
```
28012808
by
28022809
```ts
2803-
import { Bleed, Callout, Collapse, Tab, Tabs } from 'nextra-theme-docs'
2810+
import { Bleed, Callout, Collapse, Tab, Tabs } from "nextra-theme-docs";
28042811
```
28052812
- 43409ad: fix: mdx theme is missing
28062813

packages/nextra-theme-docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextra-theme-docs",
3-
"version": "4.0.0-app-router.32",
3+
"version": "4.0.0-app-router.33",
44
"description": "A Nextra theme for documentation sites.",
55
"repository": "https://github.com/shuding/nextra",
66
"author": "Shu Ding <[email protected]>",

packages/nextra/CHANGELOG.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# nextra
22

3+
## 4.0.0-app-router.33
4+
5+
### Patch Changes
6+
7+
- dd2e216: Allow `type: 'separator'` item as `items` for `type: 'menu'`
8+
39
## 4.0.0-app-router.32
410

511
### Patch Changes
@@ -286,8 +292,8 @@
286292
by
287293

288294
```js
289-
import 'nextra-theme-docs/style.css' // for docs theme
290-
import 'nextra-theme-blog/style.css' // for blog theme
295+
import "nextra-theme-docs/style.css"; // for docs theme
296+
import "nextra-theme-blog/style.css"; // for blog theme
291297
```
292298

293299
## 4.0.0-app-router.8
@@ -1224,7 +1230,7 @@
12241230
while importing
12251231

12261232
```js
1227-
import filterRouteLocale from 'nextra/filter-route-locale'
1233+
import filterRouteLocale from "nextra/filter-route-locale";
12281234
```
12291235

12301236
- 4dd720ad: remove `font-weight: 500;` from styles of code blocks since it gives
@@ -1270,19 +1276,19 @@
12701276
and `nextra-theme-docs`
12711277

12721278
```js
1273-
import { Card, Cards } from 'nextra/components'
1279+
import { Card, Cards } from "nextra/components";
12741280
```
12751281

12761282
```js
1277-
import { Tab, Tabs } from 'nextra/components'
1283+
import { Tab, Tabs } from "nextra/components";
12781284
```
12791285

12801286
```js
1281-
import { Steps } from 'nextra/components'
1287+
import { Steps } from "nextra/components";
12821288
```
12831289

12841290
```js
1285-
import { FileTree } from 'nextra/components'
1291+
import { FileTree } from "nextra/components";
12861292
```
12871293

12881294
### Patch Changes

packages/nextra/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextra",
3-
"version": "4.0.0-app-router.32",
3+
"version": "4.0.0-app-router.33",
44
"type": "module",
55
"description": "Next.js and MDX based site generator.",
66
"repository": "https://github.com/shuding/nextra",

0 commit comments

Comments
 (0)