-
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.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
4f0f6b2
commit dc2e63b
Showing
7 changed files
with
60 additions
and
26 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,15 @@ | ||
# nextra-theme-blog | ||
|
||
## 3.0.0-alpha.27 | ||
|
||
### Patch Changes | ||
|
||
- 4f0f6b27: Omit `...{:type}` inline code annotations from search index #2922 | ||
- a95e7454: Fix the line highlighting background-color does not extend to the full width of the code block when a scrollbar appears with line numbers. | ||
- Updated dependencies [4f0f6b27] | ||
- Updated dependencies [a95e7454] | ||
- [email protected] | ||
|
||
## 3.0.0-alpha.26 | ||
|
||
### Patch Changes | ||
|
@@ -418,19 +428,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": "3.0.0-alpha.26", | ||
"version": "3.0.0-alpha.27", | ||
"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,19 @@ | ||
# nextra-theme-docs | ||
|
||
## 3.0.0-alpha.27 | ||
|
||
### Patch Changes | ||
|
||
- 4f0f6b27: Omit `...{:type}` inline code annotations from search index #2922 | ||
- e95faa16: - fixed `<summary />` lost whitespaces when there is some HTML element inside | ||
|
||
- fixed hydration errors and `<summary />` was not rendered when `<details />` text content follows directly after `<summary />` element | ||
|
||
- a95e7454: Fix the line highlighting background-color does not extend to the full width of the code block when a scrollbar appears with line numbers. | ||
- Updated dependencies [4f0f6b27] | ||
- Updated dependencies [a95e7454] | ||
- [email protected] | ||
|
||
## 3.0.0-alpha.26 | ||
|
||
### Patch Changes | ||
|
@@ -570,19 +584,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 | ||
|
@@ -1158,14 +1172,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 | ||
|
@@ -1485,14 +1499,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": "3.0.0-alpha.26", | ||
"version": "3.0.0-alpha.27", | ||
"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