@portosaur/theme 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/theme/MDXComponents.jsx +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@portosaur/theme",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Theme components for Portosaur - React components, static assets etc.",
|
|
5
5
|
"license": "GPL-3.0-only",
|
|
6
6
|
"author": "soymadip",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@easyops-cn/docusaurus-search-local": "^0.55.1",
|
|
35
35
|
"@fontsource-variable/lexend": "^5.2.11",
|
|
36
36
|
"@fontsource/alata": "^5.2.8",
|
|
37
|
-
"@portosaur/core": "^0.5.
|
|
37
|
+
"@portosaur/core": "^0.5.1",
|
|
38
38
|
"chalk": "^5.6.2",
|
|
39
39
|
"clsx": "^2.1.1",
|
|
40
40
|
"favicons": "^7.2.0",
|
package/theme/MDXComponents.jsx
CHANGED
|
@@ -2,8 +2,8 @@ import MDXComponents from "@theme-original/MDXComponents";
|
|
|
2
2
|
import Details from "@theme/Details";
|
|
3
3
|
import Tabs from "@theme/Tabs";
|
|
4
4
|
import TabItem from "@theme/TabItem";
|
|
5
|
-
import { Pv, SrcPv } from "./components/Preview/index.
|
|
6
|
-
import Tooltip from "./components/Tooltip/index.
|
|
5
|
+
import { Pv, SrcPv } from "./components/Preview/index.jsx";
|
|
6
|
+
import Tooltip from "./components/Tooltip/index.jsx";
|
|
7
7
|
import TopicList from "./components/TopicList/index.jsx";
|
|
8
8
|
import Indent from "./components/Indent/index.jsx";
|
|
9
9
|
|