-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version Packages (app-router) (#3770)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
6d22c8f
commit f60a4a4
Showing
7 changed files
with
54 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# nextra-theme-blog | ||
|
||
## 4.0.0-app-router.34 | ||
|
||
### Patch Changes | ||
|
||
- [email protected] | ||
|
||
## 4.0.0-app-router.33 | ||
|
||
### Patch Changes | ||
|
@@ -349,8 +355,8 @@ | |
by | ||
|
||
```js | ||
import 'nextra-theme-docs/style.css' // for docs theme | ||
import 'nextra-theme-blog/style.css' // for blog theme | ||
import "nextra-theme-docs/style.css"; // for docs theme | ||
import "nextra-theme-blog/style.css"; // for blog theme | ||
``` | ||
|
||
- Updated dependencies [2c8a8ab] | ||
|
@@ -1402,19 +1408,19 @@ | |
and `nextra-theme-docs` | ||
|
||
```js | ||
import { Card, Cards } from 'nextra/components' | ||
import { Card, Cards } from "nextra/components"; | ||
``` | ||
|
||
```js | ||
import { Tab, Tabs } from 'nextra/components' | ||
import { Tab, Tabs } from "nextra/components"; | ||
``` | ||
|
||
```js | ||
import { Steps } from 'nextra/components' | ||
import { Steps } from "nextra/components"; | ||
``` | ||
|
||
```js | ||
import { FileTree } from 'nextra/components' | ||
import { FileTree } from "nextra/components"; | ||
``` | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "nextra-theme-blog", | ||
"version": "4.0.0-app-router.33", | ||
"version": "4.0.0-app-router.34", | ||
"description": "A Nextra theme for blogs.", | ||
"repository": "https://github.com/shuding/nextra", | ||
"author": "Shu Ding <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# nextra-theme-docs | ||
|
||
## 4.0.0-app-router.34 | ||
|
||
### Minor Changes | ||
|
||
- 6d22c8f: export a `style-prefixed.css` file with Tailwind CSS v4 prefixed layers for projects using Tailwind CSS v3 | ||
|
||
- `@layer utilities` -> `@layer v4-utilities` | ||
- `@layer base` -> `@layer v4-base` | ||
|
||
### Patch Changes | ||
|
||
- [email protected] | ||
|
||
## 4.0.0-app-router.33 | ||
|
||
### Patch Changes | ||
|
@@ -385,8 +398,8 @@ | |
by | ||
|
||
```js | ||
import 'nextra-theme-docs/style.css' // for docs theme | ||
import 'nextra-theme-blog/style.css' // for blog theme | ||
import "nextra-theme-docs/style.css"; // for docs theme | ||
import "nextra-theme-blog/style.css"; // for blog theme | ||
``` | ||
|
||
- Updated dependencies [2c8a8ab] | ||
|
@@ -1885,19 +1898,19 @@ | |
and `nextra-theme-docs` | ||
|
||
```js | ||
import { Card, Cards } from 'nextra/components' | ||
import { Card, Cards } from "nextra/components"; | ||
``` | ||
|
||
```js | ||
import { Tab, Tabs } from 'nextra/components' | ||
import { Tab, Tabs } from "nextra/components"; | ||
``` | ||
|
||
```js | ||
import { Steps } from 'nextra/components' | ||
import { Steps } from "nextra/components"; | ||
``` | ||
|
||
```js | ||
import { FileTree } from 'nextra/components' | ||
import { FileTree } from "nextra/components"; | ||
``` | ||
|
||
### Patch Changes | ||
|
@@ -2473,14 +2486,14 @@ | |
- 582ad96: feat: bump `rehype-pretty-code` version, support `showLineNumbers` | ||
- da998e6: move react components to `components` folder and replace exports: | ||
```ts | ||
import Bleed from 'nextra-theme-docs/bleed' | ||
import Callout from 'nextra-theme-docs/callout' | ||
import Collapse from 'nextra-theme-docs/collapse' | ||
import { Tab, Tabs } from 'nextra-theme-docs/tabs' | ||
import Bleed from "nextra-theme-docs/bleed"; | ||
import Callout from "nextra-theme-docs/callout"; | ||
import Collapse from "nextra-theme-docs/collapse"; | ||
import { Tab, Tabs } from "nextra-theme-docs/tabs"; | ||
``` | ||
by | ||
```ts | ||
import { Bleed, Callout, Collapse, Tab, Tabs } from 'nextra-theme-docs' | ||
import { Bleed, Callout, Collapse, Tab, Tabs } from "nextra-theme-docs"; | ||
``` | ||
- e6771ca: move `withLayout` logic directly in nextra loader | ||
- 8ad9507: fix unable expanding folder items in sidebar | ||
|
@@ -2800,14 +2813,14 @@ | |
- 48e0ac2: export `useConfig` and `useTheme` | ||
- da998e6: move react components to `components` folder and replace exports: | ||
```ts | ||
import Bleed from 'nextra-theme-docs/bleed' | ||
import Callout from 'nextra-theme-docs/callout' | ||
import Collapse from 'nextra-theme-docs/collapse' | ||
import { Tab, Tabs } from 'nextra-theme-docs/tabs' | ||
import Bleed from "nextra-theme-docs/bleed"; | ||
import Callout from "nextra-theme-docs/callout"; | ||
import Collapse from "nextra-theme-docs/collapse"; | ||
import { Tab, Tabs } from "nextra-theme-docs/tabs"; | ||
``` | ||
by | ||
```ts | ||
import { Bleed, Callout, Collapse, Tab, Tabs } from 'nextra-theme-docs' | ||
import { Bleed, Callout, Collapse, Tab, Tabs } from "nextra-theme-docs"; | ||
``` | ||
- 43409ad: fix: mdx theme is missing | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "nextra-theme-docs", | ||
"version": "4.0.0-app-router.33", | ||
"version": "4.0.0-app-router.34", | ||
"description": "A Nextra theme for documentation sites.", | ||
"repository": "https://github.com/shuding/nextra", | ||
"author": "Shu Ding <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters