docusaurus-theme-openapi-docs 0.0.0-720 → 0.0.0-722

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.
@@ -74,16 +74,29 @@ function DocItemLayout({ children }) {
74
74
  react_1.default.createElement(Content_1.default, null, children),
75
75
  react_1.default.createElement(
76
76
  "div",
77
- {
78
- className: (0, clsx_1.default)("col", api ? "col--7" : "col--12"),
79
- },
80
- react_1.default.createElement(Footer_1.default, null)
77
+ { className: "row" },
78
+ react_1.default.createElement(
79
+ "div",
80
+ {
81
+ className: (0, clsx_1.default)(
82
+ "col",
83
+ api ? "col--7" : "col--12"
84
+ ),
85
+ },
86
+ react_1.default.createElement(Footer_1.default, null)
87
+ )
81
88
  )
82
89
  ),
83
90
  react_1.default.createElement(
84
91
  "div",
85
- { className: (0, clsx_1.default)("col", api ? "col--7" : "col--12") },
86
- react_1.default.createElement(Paginator_1.default, null)
92
+ { className: "row" },
93
+ react_1.default.createElement(
94
+ "div",
95
+ {
96
+ className: (0, clsx_1.default)("col", api ? "col--7" : "col--12"),
97
+ },
98
+ react_1.default.createElement(Paginator_1.default, null)
99
+ )
87
100
  )
88
101
  )
89
102
  ),
@@ -206,7 +206,7 @@ function ApiItem(props) {
206
206
  { className: "row" },
207
207
  react_1.default.createElement(
208
208
  "div",
209
- { className: "col col--12" },
209
+ { className: "col col--12 markdown" },
210
210
  react_1.default.createElement(MDXComponent, null)
211
211
  )
212
212
  )
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-720",
4
+ "version": "0.0.0-722",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -43,7 +43,7 @@
43
43
  "clsx": "^1.1.1",
44
44
  "copy-text-to-clipboard": "^3.1.0",
45
45
  "crypto-js": "^4.1.1",
46
- "docusaurus-plugin-openapi-docs": "0.0.0-720",
46
+ "docusaurus-plugin-openapi-docs": "0.0.0-722",
47
47
  "docusaurus-plugin-sass": "^0.2.3",
48
48
  "file-saver": "^2.0.5",
49
49
  "lodash": "^4.17.20",
@@ -68,5 +68,5 @@
68
68
  "engines": {
69
69
  "node": ">=14"
70
70
  },
71
- "gitHead": "1d416d461bde0425166d15b21f200b1aeb7f71b5"
71
+ "gitHead": "d580c447cf347d6917d449590e25c25bb5936c6e"
72
72
  }
@@ -62,12 +62,16 @@ export default function DocItemLayout({ children }: Props): JSX.Element {
62
62
  <DocVersionBadge />
63
63
  {docTOC.mobile}
64
64
  <DocItemContent>{children}</DocItemContent>
65
- <div className={clsx("col", api ? "col--7" : "col--12")}>
66
- <DocItemFooter />
65
+ <div className="row">
66
+ <div className={clsx("col", api ? "col--7" : "col--12")}>
67
+ <DocItemFooter />
68
+ </div>
67
69
  </div>
68
70
  </article>
69
- <div className={clsx("col", api ? "col--7" : "col--12")}>
70
- <DocItemPaginator />
71
+ <div className="row">
72
+ <div className={clsx("col", api ? "col--7" : "col--12")}>
73
+ <DocItemPaginator />
74
+ </div>
71
75
  </div>
72
76
  </div>
73
77
  </div>
@@ -189,7 +189,7 @@ export default function ApiItem(props: Props): JSX.Element {
189
189
  <DocItemMetadata />
190
190
  <DocItemLayout>
191
191
  <div className="row">
192
- <div className="col col--12">
192
+ <div className="col col--12 markdown">
193
193
  <MDXComponent />
194
194
  </div>
195
195
  </div>