Skip to content

Commit

Permalink
Version Packages (app-router) (#3770)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 5, 2024
1 parent 6d22c8f commit f60a4a4
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 32 deletions.
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"forty-jeans-roll",
"four-fans-reply",
"funny-files-double",
"gorgeous-forks-hunt",
"green-crews-add",
"grumpy-coats-kneel",
"happy-students-invent",
Expand Down
18 changes: 12 additions & 6 deletions packages/nextra-theme-blog/CHANGELOG.md
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
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/nextra-theme-blog/package.json
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]>",
Expand Down
45 changes: 29 additions & 16 deletions packages/nextra-theme-docs/CHANGELOG.md
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
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/nextra-theme-docs/package.json
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]>",
Expand Down
16 changes: 9 additions & 7 deletions packages/nextra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# nextra

## 4.0.0-app-router.34

## 4.0.0-app-router.33

### Patch Changes
Expand Down Expand Up @@ -292,8 +294,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
```

## 4.0.0-app-router.8
Expand Down Expand Up @@ -1230,7 +1232,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
Expand Down Expand Up @@ -1276,19 +1278,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
Expand Down
2 changes: 1 addition & 1 deletion packages/nextra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextra",
"version": "4.0.0-app-router.33",
"version": "4.0.0-app-router.34",
"type": "module",
"description": "Next.js and MDX based site generator.",
"repository": "https://github.com/shuding/nextra",
Expand Down

0 comments on commit f60a4a4

Please sign in to comment.