From 986d95ff8edb52d0dcae7fa3a7a142873d5a41e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 20 Jul 2024 15:38:40 +0000 Subject: [PATCH] Version Packages (alpha) --- .changeset/pre.json | 2 ++ packages/nextra-theme-blog/CHANGELOG.md | 16 +++++++--- packages/nextra-theme-blog/package.json | 2 +- packages/nextra-theme-docs/CHANGELOG.md | 40 ++++++++++++++++--------- packages/nextra-theme-docs/package.json | 2 +- packages/nextra/CHANGELOG.md | 16 ++++++---- packages/nextra/package.json | 2 +- 7 files changed, 54 insertions(+), 26 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 078640a80eb..70ac85639e3 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -69,6 +69,7 @@ "red-bees-rush", "red-experts-press", "red-glasses-travel", + "red-lions-greet", "red-moles-clap", "rich-apricots-bake", "rich-bananas-burn", @@ -91,6 +92,7 @@ "tough-years-sell", "twenty-geese-return", "two-scissors-prove", + "warm-cameras-vanish", "warm-llamas-refuse", "wet-years-serve", "wild-waves-invite" diff --git a/packages/nextra-theme-blog/CHANGELOG.md b/packages/nextra-theme-blog/CHANGELOG.md index 436bc84878c..5b831b30cf3 100644 --- a/packages/nextra-theme-blog/CHANGELOG.md +++ b/packages/nextra-theme-blog/CHANGELOG.md @@ -1,5 +1,13 @@ # nextra-theme-blog +## 3.0.0-alpha.27 + +### Patch Changes + +- 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 [a95e7454] + - nextra@3.0.0-alpha.27 + ## 3.0.0-alpha.26 ### Patch Changes @@ -418,19 +426,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 diff --git a/packages/nextra-theme-blog/package.json b/packages/nextra-theme-blog/package.json index 8514682975d..3acbf47a849 100644 --- a/packages/nextra-theme-blog/package.json +++ b/packages/nextra-theme-blog/package.json @@ -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 ", diff --git a/packages/nextra-theme-docs/CHANGELOG.md b/packages/nextra-theme-docs/CHANGELOG.md index 3aaeaa75d96..5de95e78488 100644 --- a/packages/nextra-theme-docs/CHANGELOG.md +++ b/packages/nextra-theme-docs/CHANGELOG.md @@ -1,5 +1,17 @@ # nextra-theme-docs +## 3.0.0-alpha.27 + +### Patch Changes + +- e95faa16: - fixed `` lost whitespaces when there is some HTML element inside + + - fixed hydration errors and `` was not rendered when `
` text content follows directly after `` 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 [a95e7454] + - nextra@3.0.0-alpha.27 + ## 3.0.0-alpha.26 ### Patch Changes @@ -570,19 +582,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 +1170,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 +1497,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 diff --git a/packages/nextra-theme-docs/package.json b/packages/nextra-theme-docs/package.json index 3adf8c1c737..5747ca1eaa7 100644 --- a/packages/nextra-theme-docs/package.json +++ b/packages/nextra-theme-docs/package.json @@ -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 ", diff --git a/packages/nextra/CHANGELOG.md b/packages/nextra/CHANGELOG.md index 04c9aad4fb3..249368999cb 100644 --- a/packages/nextra/CHANGELOG.md +++ b/packages/nextra/CHANGELOG.md @@ -1,5 +1,11 @@ # nextra +## 3.0.0-alpha.27 + +### Patch Changes + +- 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. + ## 3.0.0-alpha.26 ## 3.0.0-alpha.25 @@ -366,7 +372,7 @@ while importing ```js - import filterRouteLocale from 'nextra/filter-route-locale' + import filterRouteLocale from "nextra/filter-route-locale"; ``` - 4dd720ad: remove `font-weight: 500;` from styles of code blocks since it gives @@ -412,19 +418,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 diff --git a/packages/nextra/package.json b/packages/nextra/package.json index 563d9912dea..b583a920435 100644 --- a/packages/nextra/package.json +++ b/packages/nextra/package.json @@ -1,6 +1,6 @@ { "name": "nextra", - "version": "3.0.0-alpha.26", + "version": "3.0.0-alpha.27", "type": "module", "description": "Next.js and MDX based site generator.", "repository": "https://github.com/shuding/nextra",