|
1 | 1 | # nextra-theme-docs
|
2 | 2 |
|
| 3 | +## 4.0.0-app-router.33 |
| 4 | + |
| 5 | +### Patch Changes |
| 6 | + |
| 7 | +- Updated dependencies [dd2e216] |
| 8 | + |
| 9 | + |
3 | 10 | ## 4.0.0-app-router.32
|
4 | 11 |
|
5 | 12 | ### Minor Changes
|
|
378 | 385 | by
|
379 | 386 |
|
380 | 387 | ```js
|
381 |
| - import 'nextra-theme-docs/style.css' // for docs theme |
382 |
| - import 'nextra-theme-blog/style.css' // for blog theme |
| 388 | + import "nextra-theme-docs/style.css"; // for docs theme |
| 389 | + import "nextra-theme-blog/style.css"; // for blog theme |
383 | 390 | ```
|
384 | 391 |
|
385 | 392 | - Updated dependencies [2c8a8ab]
|
|
1878 | 1885 | and `nextra-theme-docs`
|
1879 | 1886 |
|
1880 | 1887 | ```js
|
1881 |
| - import { Card, Cards } from 'nextra/components' |
| 1888 | + import { Card, Cards } from "nextra/components"; |
1882 | 1889 | ```
|
1883 | 1890 |
|
1884 | 1891 | ```js
|
1885 |
| - import { Tab, Tabs } from 'nextra/components' |
| 1892 | + import { Tab, Tabs } from "nextra/components"; |
1886 | 1893 | ```
|
1887 | 1894 |
|
1888 | 1895 | ```js
|
1889 |
| - import { Steps } from 'nextra/components' |
| 1896 | + import { Steps } from "nextra/components"; |
1890 | 1897 | ```
|
1891 | 1898 |
|
1892 | 1899 | ```js
|
1893 |
| - import { FileTree } from 'nextra/components' |
| 1900 | + import { FileTree } from "nextra/components"; |
1894 | 1901 | ```
|
1895 | 1902 |
|
1896 | 1903 | ### Patch Changes
|
|
2466 | 2473 | - 582ad96: feat: bump `rehype-pretty-code` version, support `showLineNumbers`
|
2467 | 2474 | - da998e6: move react components to `components` folder and replace exports:
|
2468 | 2475 | ```ts
|
2469 |
| - import Bleed from 'nextra-theme-docs/bleed' |
2470 |
| - import Callout from 'nextra-theme-docs/callout' |
2471 |
| - import Collapse from 'nextra-theme-docs/collapse' |
2472 |
| - import { Tab, Tabs } from 'nextra-theme-docs/tabs' |
| 2476 | + import Bleed from "nextra-theme-docs/bleed"; |
| 2477 | + import Callout from "nextra-theme-docs/callout"; |
| 2478 | + import Collapse from "nextra-theme-docs/collapse"; |
| 2479 | + import { Tab, Tabs } from "nextra-theme-docs/tabs"; |
2473 | 2480 | ```
|
2474 | 2481 | by
|
2475 | 2482 | ```ts
|
2476 |
| - import { Bleed, Callout, Collapse, Tab, Tabs } from 'nextra-theme-docs' |
| 2483 | + import { Bleed, Callout, Collapse, Tab, Tabs } from "nextra-theme-docs"; |
2477 | 2484 | ```
|
2478 | 2485 | - e6771ca: move `withLayout` logic directly in nextra loader
|
2479 | 2486 | - 8ad9507: fix unable expanding folder items in sidebar
|
|
2793 | 2800 | - 48e0ac2: export `useConfig` and `useTheme`
|
2794 | 2801 | - da998e6: move react components to `components` folder and replace exports:
|
2795 | 2802 | ```ts
|
2796 |
| - import Bleed from 'nextra-theme-docs/bleed' |
2797 |
| - import Callout from 'nextra-theme-docs/callout' |
2798 |
| - import Collapse from 'nextra-theme-docs/collapse' |
2799 |
| - import { Tab, Tabs } from 'nextra-theme-docs/tabs' |
| 2803 | + import Bleed from "nextra-theme-docs/bleed"; |
| 2804 | + import Callout from "nextra-theme-docs/callout"; |
| 2805 | + import Collapse from "nextra-theme-docs/collapse"; |
| 2806 | + import { Tab, Tabs } from "nextra-theme-docs/tabs"; |
2800 | 2807 | ```
|
2801 | 2808 | by
|
2802 | 2809 | ```ts
|
2803 |
| - import { Bleed, Callout, Collapse, Tab, Tabs } from 'nextra-theme-docs' |
| 2810 | + import { Bleed, Callout, Collapse, Tab, Tabs } from "nextra-theme-docs"; |
2804 | 2811 | ```
|
2805 | 2812 | - 43409ad: fix: mdx theme is missing
|
2806 | 2813 |
|
|
0 commit comments