docusaurus-theme-openapi-docs 0.0.0-beta.729 → 0.0.0-beta.732

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