docusaurus-theme-openapi-docs 0.0.0-351 → 0.0.0-354
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/lib/theme/ApiItem/index.js +2 -2
- package/lib/theme/ApiItem/styles.module.css +2 -2
- package/lib-next/theme/ApiItem/index.js +2 -12
- package/lib-next/theme/ApiItem/styles.module.css +2 -2
- package/package.json +3 -3
- package/src/theme/ApiItem/index.tsx +2 -12
- package/src/theme/ApiItem/styles.module.css +2 -2
|
@@ -136,11 +136,11 @@ function DocItemContent(props) {
|
|
|
136
136
|
</div>
|
|
137
137
|
</_MDXContent.default>
|
|
138
138
|
</div>
|
|
139
|
-
<div className={(0, _clsx.default)("col", api ? "col--7" :
|
|
139
|
+
<div className={(0, _clsx.default)("col", api ? "col--7" : "col--12")}>
|
|
140
140
|
<_DocItemFooter.default {...props} />
|
|
141
141
|
</div>
|
|
142
142
|
</article>
|
|
143
|
-
<div className={(0, _clsx.default)("col", api ? "col--7" :
|
|
143
|
+
<div className={(0, _clsx.default)("col", api ? "col--7" : "col--12")}>
|
|
144
144
|
<_DocPaginator.default previous={metadata.previous} next={metadata.next} />
|
|
145
145
|
</div>
|
|
146
146
|
</div>
|
|
@@ -127,21 +127,11 @@ function DocItemContent(props) {
|
|
|
127
127
|
</div>
|
|
128
128
|
</MDXContent>
|
|
129
129
|
</div>
|
|
130
|
-
<div
|
|
131
|
-
className={clsx(
|
|
132
|
-
"col",
|
|
133
|
-
api ? "col--7" : !canRenderTOC ? "col--9" : "col--12"
|
|
134
|
-
)}
|
|
135
|
-
>
|
|
130
|
+
<div className={clsx("col", api ? "col--7" : "col--12")}>
|
|
136
131
|
<DocItemFooter {...props} />
|
|
137
132
|
</div>
|
|
138
133
|
</article>
|
|
139
|
-
<div
|
|
140
|
-
className={clsx(
|
|
141
|
-
"col",
|
|
142
|
-
api ? "col--7" : !canRenderTOC ? "col--9" : "col--12"
|
|
143
|
-
)}
|
|
144
|
-
>
|
|
134
|
+
<div className={clsx("col", api ? "col--7" : "col--12")}>
|
|
145
135
|
<DocPaginator previous={metadata.previous} next={metadata.next} />
|
|
146
136
|
</div>
|
|
147
137
|
</div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docusaurus-theme-openapi-docs",
|
|
3
3
|
"description": "OpenAPI theme for Docusaurus.",
|
|
4
|
-
"version": "0.0.0-
|
|
4
|
+
"version": "0.0.0-354",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"openapi",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"buffer": "^6.0.3",
|
|
52
52
|
"clsx": "^1.1.1",
|
|
53
53
|
"crypto-js": "^4.1.1",
|
|
54
|
-
"docusaurus-plugin-openapi-docs": "0.0.0-
|
|
54
|
+
"docusaurus-plugin-openapi-docs": "0.0.0-354",
|
|
55
55
|
"immer": "^9.0.7",
|
|
56
56
|
"lodash": "^4.17.20",
|
|
57
57
|
"monaco-editor": "^0.31.1",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": ">=14"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "14f792796067d499c5d244976da0f3adcdbbb383"
|
|
74
74
|
}
|
|
@@ -127,21 +127,11 @@ function DocItemContent(props: Props): JSX.Element {
|
|
|
127
127
|
</div>
|
|
128
128
|
</MDXContent>
|
|
129
129
|
</div>
|
|
130
|
-
<div
|
|
131
|
-
className={clsx(
|
|
132
|
-
"col",
|
|
133
|
-
api ? "col--7" : !canRenderTOC ? "col--9" : "col--12"
|
|
134
|
-
)}
|
|
135
|
-
>
|
|
130
|
+
<div className={clsx("col", api ? "col--7" : "col--12")}>
|
|
136
131
|
<DocItemFooter {...props} />
|
|
137
132
|
</div>
|
|
138
133
|
</article>
|
|
139
|
-
<div
|
|
140
|
-
className={clsx(
|
|
141
|
-
"col",
|
|
142
|
-
api ? "col--7" : !canRenderTOC ? "col--9" : "col--12"
|
|
143
|
-
)}
|
|
144
|
-
>
|
|
134
|
+
<div className={clsx("col", api ? "col--7" : "col--12")}>
|
|
145
135
|
<DocPaginator previous={metadata.previous} next={metadata.next} />
|
|
146
136
|
</div>
|
|
147
137
|
</div>
|