Skip to content

Commit

Permalink
Version Packages (alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 20, 2024
1 parent 8240ec7 commit b868782
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 26 deletions.
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"gentle-monkeys-smash",
"giant-bees-fail",
"giant-gifts-care",
"grumpy-apples-repair",
"happy-steaks-suffer",
"hot-geese-hear",
"hot-readers-sell",
Expand Down
16 changes: 12 additions & 4 deletions packages/nextra-theme-blog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# nextra-theme-blog

## 3.0.0-alpha.28

### Patch Changes

- a8c21969: use dynamic import for loading `mermaid`
- Updated dependencies [a8c21969]
- nextra@3.0.0-alpha.28

## 3.0.0-alpha.27

### Patch Changes
Expand Down Expand Up @@ -429,19 +437,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": "3.0.0-alpha.27",
"version": "3.0.0-alpha.28",
"description": "A Nextra theme for blogs.",
"repository": "https://github.com/shuding/nextra",
"author": "Shu Ding <g@shud.in>",
Expand Down
36 changes: 22 additions & 14 deletions packages/nextra-theme-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# nextra-theme-docs

## 3.0.0-alpha.28

### Patch Changes

- a8c21969: use dynamic import for loading `mermaid`
- Updated dependencies [a8c21969]
- nextra@3.0.0-alpha.28

## 3.0.0-alpha.27

### Patch Changes
Expand Down Expand Up @@ -587,19 +595,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 @@ -1175,14 +1183,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 @@ -1502,14 +1510,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": "3.0.0-alpha.27",
"version": "3.0.0-alpha.28",
"description": "A Nextra theme for documentation sites.",
"repository": "https://github.com/shuding/nextra",
"author": "Shu Ding <g@shud.in>",
Expand Down
16 changes: 11 additions & 5 deletions packages/nextra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nextra

## 3.0.0-alpha.28

### Patch Changes

- a8c21969: use dynamic import for loading `mermaid`

## 3.0.0-alpha.27

### Patch Changes
Expand Down Expand Up @@ -374,7 +380,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 @@ -420,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
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": "3.0.0-alpha.27",
"version": "3.0.0-alpha.28",
"type": "module",
"description": "Next.js and MDX based site generator.",
"repository": "https://github.com/shuding/nextra",
Expand Down

0 comments on commit b868782

Please sign in to comment.