docusaurus-theme-openapi-docs 0.0.0-1110 → 0.0.0-1151

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.
Files changed (70) hide show
  1. package/lib/index.js +2 -0
  2. package/lib/theme/ApiExplorer/Accept/index.js +2 -1
  3. package/lib/theme/ApiExplorer/Authorization/index.js +12 -18
  4. package/lib/theme/ApiExplorer/Body/FormBodyItem/index.d.ts +3 -1
  5. package/lib/theme/ApiExplorer/Body/FormBodyItem/index.js +61 -29
  6. package/lib/theme/ApiExplorer/Body/index.js +4 -6
  7. package/lib/theme/ApiExplorer/Body/slice.d.ts +136 -544
  8. package/lib/theme/ApiExplorer/ContentType/index.js +2 -1
  9. package/lib/theme/ApiExplorer/FormItem/_FormItem.scss +0 -5
  10. package/lib/theme/ApiExplorer/FormItem/index.d.ts +1 -4
  11. package/lib/theme/ApiExplorer/FormItem/index.js +2 -26
  12. package/lib/theme/ApiExplorer/FormLabel/_FormLabel.scss +4 -0
  13. package/lib/theme/ApiExplorer/FormLabel/index.d.ts +9 -0
  14. package/lib/theme/ApiExplorer/FormLabel/index.js +50 -0
  15. package/lib/theme/ApiExplorer/FormMultiSelect/index.d.ts +4 -1
  16. package/lib/theme/ApiExplorer/FormMultiSelect/index.js +97 -19
  17. package/lib/theme/ApiExplorer/FormSelect/index.d.ts +6 -1
  18. package/lib/theme/ApiExplorer/FormSelect/index.js +96 -15
  19. package/lib/theme/ApiExplorer/FormTextInput/index.d.ts +4 -1
  20. package/lib/theme/ApiExplorer/FormTextInput/index.js +71 -1
  21. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.d.ts +4 -1
  22. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.js +11 -3
  23. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.d.ts +4 -1
  24. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.js +4 -1
  25. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.d.ts +4 -1
  26. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.js +4 -1
  27. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.d.ts +4 -1
  28. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.js +4 -1
  29. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.d.ts +4 -1
  30. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.js +4 -1
  31. package/lib/theme/ApiExplorer/ParamOptions/_ParamOptions.scss +0 -9
  32. package/lib/theme/ApiExplorer/ParamOptions/index.d.ts +5 -0
  33. package/lib/theme/ApiExplorer/ParamOptions/index.js +27 -3
  34. package/lib/theme/ApiExplorer/Request/_Request.scss +11 -0
  35. package/lib/theme/ApiExplorer/Request/index.js +10 -4
  36. package/lib/theme/ApiExplorer/Response/_Response.scss +11 -0
  37. package/lib/theme/ApiExplorer/Response/index.js +2 -1
  38. package/lib/theme/ApiExplorer/Server/index.d.ts +4 -1
  39. package/lib/theme/ApiExplorer/Server/index.js +6 -3
  40. package/lib/theme/ApiItem/index.js +1 -1
  41. package/lib/theme/styles.scss +1 -0
  42. package/package.json +4 -3
  43. package/src/index.ts +2 -0
  44. package/src/theme/ApiExplorer/Accept/index.tsx +2 -1
  45. package/src/theme/ApiExplorer/Authorization/index.tsx +27 -33
  46. package/src/theme/ApiExplorer/Body/FormBodyItem/index.tsx +44 -26
  47. package/src/theme/ApiExplorer/Body/index.tsx +7 -8
  48. package/src/theme/ApiExplorer/ContentType/index.tsx +2 -1
  49. package/src/theme/ApiExplorer/FormItem/_FormItem.scss +0 -5
  50. package/src/theme/ApiExplorer/FormItem/index.tsx +2 -16
  51. package/src/theme/ApiExplorer/FormLabel/_FormLabel.scss +4 -0
  52. package/src/theme/ApiExplorer/FormLabel/index.tsx +43 -0
  53. package/src/theme/ApiExplorer/FormMultiSelect/index.tsx +40 -20
  54. package/src/theme/ApiExplorer/FormSelect/index.tsx +41 -15
  55. package/src/theme/ApiExplorer/FormTextInput/index.tsx +15 -1
  56. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.tsx +13 -2
  57. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.tsx +12 -1
  58. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.tsx +12 -1
  59. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.tsx +12 -1
  60. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.tsx +12 -1
  61. package/src/theme/ApiExplorer/ParamOptions/_ParamOptions.scss +0 -9
  62. package/src/theme/ApiExplorer/ParamOptions/index.tsx +65 -9
  63. package/src/theme/ApiExplorer/Request/_Request.scss +11 -0
  64. package/src/theme/ApiExplorer/Request/index.tsx +12 -7
  65. package/src/theme/ApiExplorer/Response/_Response.scss +11 -0
  66. package/src/theme/ApiExplorer/Response/index.tsx +3 -2
  67. package/src/theme/ApiExplorer/Server/index.tsx +10 -3
  68. package/src/theme/ApiItem/index.tsx +1 -1
  69. package/src/theme/styles.scss +1 -0
  70. package/tsconfig.tsbuildinfo +1 -1
@@ -48,6 +48,17 @@
48
48
  }
49
49
 
50
50
  .openapi-explorer__expand-details-btn {
51
+ -webkit-appearance: none;
52
+ -moz-appearance: none;
53
+ appearance: none;
54
+ padding: 0;
55
+ cursor: pointer;
56
+ border: 0px solid transparent;
57
+ background-color: transparent;
58
+ text-transform: inherit;
59
+ font-weight: inherit;
60
+ font-size: inherit;
61
+
51
62
  &:hover {
52
63
  cursor: pointer;
53
64
  }
@@ -6,7 +6,7 @@
6
6
  * ========================================================================== */
7
7
 
8
8
  // @ts-nocheck
9
- import React, { useState } from "react";
9
+ import React, { useState, useId } from "react";
10
10
 
11
11
  import { useDoc } from "@docusaurus/plugin-content-docs/client";
12
12
  import { translate } from "@docusaurus/Translate";
@@ -67,6 +67,8 @@ function Request({ item }: { item: ApiItem }) {
67
67
  const [expandParams, setExpandParams] = useState(true);
68
68
  const [expandServer, setExpandServer] = useState(true);
69
69
 
70
+ const serverLabelId = useId();
71
+
70
72
  const allParams = [
71
73
  ...pathParams,
72
74
  ...queryParams,
@@ -100,7 +102,7 @@ function Request({ item }: { item: ApiItem }) {
100
102
  (param: { in: "path" | "query" | "header" | "cookie" }) => {
101
103
  const paramType = param.in;
102
104
  const paramsArray: ParameterObject[] = paramsObject[paramType];
103
- paramsArray.push(param as ParameterObject);
105
+ paramsArray?.push(param as ParameterObject);
104
106
  }
105
107
  );
106
108
 
@@ -251,7 +253,8 @@ function Request({ item }: { item: ApiItem }) {
251
253
  })}
252
254
  </span>
253
255
  {allDetailsExpanded ? (
254
- <span
256
+ <button
257
+ type="button"
255
258
  className="openapi-explorer__expand-details-btn"
256
259
  onClick={collapseAllDetails}
257
260
  >
@@ -259,9 +262,10 @@ function Request({ item }: { item: ApiItem }) {
259
262
  id: OPENAPI_REQUEST.COLLAPSE_ALL,
260
263
  message: "Collapse all",
261
264
  })}
262
- </span>
265
+ </button>
263
266
  ) : (
264
- <span
267
+ <button
268
+ type="button"
265
269
  className="openapi-explorer__expand-details-btn"
266
270
  onClick={expandAllDetails}
267
271
  >
@@ -269,7 +273,7 @@ function Request({ item }: { item: ApiItem }) {
269
273
  id: OPENAPI_REQUEST.EXPAND_ALL,
270
274
  message: "Expand all",
271
275
  })}
272
- </span>
276
+ </button>
273
277
  )}
274
278
  </div>
275
279
  <div className="openapi-explorer__details-outer-container">
@@ -279,6 +283,7 @@ function Request({ item }: { item: ApiItem }) {
279
283
  className="openapi-explorer__details-container"
280
284
  >
281
285
  <summary
286
+ id={serverLabelId}
282
287
  className="openapi-explorer__details-summary"
283
288
  onClick={(e) => {
284
289
  e.preventDefault();
@@ -290,7 +295,7 @@ function Request({ item }: { item: ApiItem }) {
290
295
  message: "Base URL",
291
296
  })}
292
297
  </summary>
293
- <Server />
298
+ <Server labelId={serverLabelId} />
294
299
  </details>
295
300
  )}
296
301
  {showAuth && (
@@ -43,6 +43,17 @@
43
43
  }
44
44
 
45
45
  .openapi-explorer__response-clear-btn {
46
+ -webkit-appearance: none;
47
+ -moz-appearance: none;
48
+ appearance: none;
49
+ padding: 0;
50
+ cursor: pointer;
51
+ border: 0px solid transparent;
52
+ background-color: transparent;
53
+ text-transform: inherit;
54
+ font-weight: inherit;
55
+ font-size: inherit;
56
+
46
57
  &:hover {
47
58
  cursor: pointer;
48
59
  }
@@ -84,7 +84,8 @@ function Response({ item }: { item: ApiItem }) {
84
84
  <span className="openapi-explorer__response-title">
85
85
  {translate({ id: OPENAPI_RESPONSE.TITLE, message: "Response" })}
86
86
  </span>
87
- <span
87
+ <button
88
+ type="button"
88
89
  className="openapi-explorer__response-clear-btn"
89
90
  onClick={() => {
90
91
  dispatch(clearResponse());
@@ -93,7 +94,7 @@ function Response({ item }: { item: ApiItem }) {
93
94
  }}
94
95
  >
95
96
  {translate({ id: OPENAPI_RESPONSE.CLEAR, message: "Clear" })}
96
- </span>
97
+ </button>
97
98
  </div>
98
99
  <div
99
100
  style={{
@@ -17,7 +17,11 @@ import { OPENAPI_SERVER } from "@theme/translationIds";
17
17
 
18
18
  import { setServer, setServerVariable } from "./slice";
19
19
 
20
- function Server() {
20
+ interface ServerProps {
21
+ labelId?: string;
22
+ }
23
+
24
+ function Server({ labelId }: ServerProps) {
21
25
  const [isEditing, setIsEditing] = useState(false);
22
26
  const value = useTypedSelector((state: any) => state.server.value);
23
27
  const options = useTypedSelector((state: any) => state.server.options);
@@ -79,6 +83,7 @@ function Server() {
79
83
  >
80
84
  <FormItem>
81
85
  <FormSelect
86
+ ariaLabelledBy={labelId}
82
87
  options={options.map((s: any) => s.url)}
83
88
  onChange={(e: React.ChangeEvent<HTMLSelectElement>) => {
84
89
  dispatch(
@@ -99,8 +104,9 @@ function Server() {
99
104
  Object.keys(value.variables).map((key) => {
100
105
  if (value.variables?.[key].enum !== undefined) {
101
106
  return (
102
- <FormItem label={key}>
107
+ <FormItem>
103
108
  <FormSelect
109
+ label={key}
104
110
  options={value.variables[key].enum}
105
111
  onChange={(e: React.ChangeEvent<HTMLSelectElement>) => {
106
112
  dispatch(
@@ -115,8 +121,9 @@ function Server() {
115
121
  );
116
122
  }
117
123
  return (
118
- <FormItem label={key}>
124
+ <FormItem>
119
125
  <FormTextInput
126
+ label={key}
120
127
  placeholder={value.variables?.[key].default}
121
128
  onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
122
129
  dispatch(
@@ -122,7 +122,7 @@ export default function ApiItem(props: Props): JSX.Element {
122
122
  (param: { in: "path" | "query" | "header" | "cookie" }) => {
123
123
  const paramType = param.in;
124
124
  const paramsArray: ParameterObject[] = params[paramType];
125
- paramsArray.push(param as ParameterObject);
125
+ paramsArray?.push(param as ParameterObject);
126
126
  }
127
127
  );
128
128
  const auth = createAuth({
@@ -9,6 +9,7 @@
9
9
  @use "./ApiExplorer/FloatingButton/FloatingButton";
10
10
  @use "./ApiExplorer/FormFileUpload/FormFileUpload";
11
11
  @use "./ApiExplorer/FormItem/FormItem";
12
+ @use "./ApiExplorer/FormLabel/FormLabel";
12
13
  @use "./ApiExplorer/FormMultiSelect/FormMultiSelect";
13
14
  @use "./ApiExplorer/FormSelect/FormSelect";
14
15
  @use "./ApiExplorer/FormTextInput/FormTextInput";
@@ -1 +1 @@
1
- {"root":["./src/index.ts","./src/plugin-content-docs.d.ts","./src/postman-code-generators.d.ts","./src/react-magic-dropzone.d.ts","./src/theme-classic.d.ts","./src/theme-openapi.d.ts","./src/types.d.ts","./src/markdown/createDescription.ts","./src/markdown/schema.ts","./src/markdown/utils.test.ts","./src/markdown/utils.ts","./src/theme/translationIds.ts","./src/theme/ApiExplorer/buildPostmanRequest.ts","./src/theme/ApiExplorer/index.tsx","./src/theme/ApiExplorer/persistenceMiddleware.ts","./src/theme/ApiExplorer/storage-utils.ts","./src/theme/ApiExplorer/Accept/index.tsx","./src/theme/ApiExplorer/Accept/slice.ts","./src/theme/ApiExplorer/ApiCodeBlock/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Container/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/Element.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/String.tsx","./src/theme/ApiExplorer/ApiCodeBlock/CopyButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExitButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExpandButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Line/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/index.tsx","./src/theme/ApiExplorer/Authorization/auth-types.ts","./src/theme/ApiExplorer/Authorization/index.tsx","./src/theme/ApiExplorer/Authorization/slice.ts","./src/theme/ApiExplorer/Body/index.tsx","./src/theme/ApiExplorer/Body/json2xml.d.ts","./src/theme/ApiExplorer/Body/resolveSchemaWithSelections.ts","./src/theme/ApiExplorer/Body/slice.ts","./src/theme/ApiExplorer/Body/FileArrayFormBodyItem/index.tsx","./src/theme/ApiExplorer/Body/FormBodyItem/index.tsx","./src/theme/ApiExplorer/CodeSnippets/code-snippets-types.ts","./src/theme/ApiExplorer/CodeSnippets/index.tsx","./src/theme/ApiExplorer/CodeSnippets/languages.ts","./src/theme/ApiExplorer/CodeTabs/index.tsx","./src/theme/ApiExplorer/ContentType/index.tsx","./src/theme/ApiExplorer/ContentType/slice.ts","./src/theme/ApiExplorer/Export/index.tsx","./src/theme/ApiExplorer/FloatingButton/index.tsx","./src/theme/ApiExplorer/FormFileUpload/index.tsx","./src/theme/ApiExplorer/FormItem/index.tsx","./src/theme/ApiExplorer/FormMultiSelect/index.tsx","./src/theme/ApiExplorer/FormSelect/index.tsx","./src/theme/ApiExplorer/FormTextInput/index.tsx","./src/theme/ApiExplorer/LiveEditor/index.tsx","./src/theme/ApiExplorer/MethodEndpoint/index.tsx","./src/theme/ApiExplorer/ParamOptions/index.tsx","./src/theme/ApiExplorer/ParamOptions/slice.ts","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.tsx","./src/theme/ApiExplorer/Request/index.tsx","./src/theme/ApiExplorer/Request/makeRequest.ts","./src/theme/ApiExplorer/Response/index.tsx","./src/theme/ApiExplorer/Response/slice.ts","./src/theme/ApiExplorer/SchemaSelection/index.ts","./src/theme/ApiExplorer/SchemaSelection/slice.ts","./src/theme/ApiExplorer/SecuritySchemes/index.tsx","./src/theme/ApiExplorer/Server/index.tsx","./src/theme/ApiExplorer/Server/slice.ts","./src/theme/ApiItem/hooks.ts","./src/theme/ApiItem/index.tsx","./src/theme/ApiItem/store.ts","./src/theme/ApiItem/Layout/index.tsx","./src/theme/ApiLogo/index.tsx","./src/theme/ApiTabs/index.tsx","./src/theme/ArrayBrackets/index.tsx","./src/theme/CodeSamples/index.tsx","./src/theme/DiscriminatorTabs/index.tsx","./src/theme/Example/index.tsx","./src/theme/Markdown/index.d.ts","./src/theme/MimeTabs/index.tsx","./src/theme/OperationTabs/index.tsx","./src/theme/ParamsDetails/index.tsx","./src/theme/ParamsItem/index.tsx","./src/theme/RequestSchema/index.tsx","./src/theme/ResponseExamples/index.tsx","./src/theme/ResponseHeaders/index.tsx","./src/theme/ResponseSchema/index.tsx","./src/theme/Schema/index.tsx","./src/theme/SchemaItem/index.tsx","./src/theme/SchemaTabs/index.tsx","./src/theme/SkeletonLoader/index.tsx","./src/theme/StatusCodes/index.tsx"],"version":"5.9.3"}
1
+ {"root":["./src/index.ts","./src/plugin-content-docs.d.ts","./src/postman-code-generators.d.ts","./src/react-magic-dropzone.d.ts","./src/theme-classic.d.ts","./src/theme-openapi.d.ts","./src/types.d.ts","./src/markdown/createDescription.ts","./src/markdown/schema.ts","./src/markdown/utils.test.ts","./src/markdown/utils.ts","./src/theme/translationIds.ts","./src/theme/ApiExplorer/buildPostmanRequest.ts","./src/theme/ApiExplorer/index.tsx","./src/theme/ApiExplorer/persistenceMiddleware.ts","./src/theme/ApiExplorer/storage-utils.ts","./src/theme/ApiExplorer/Accept/index.tsx","./src/theme/ApiExplorer/Accept/slice.ts","./src/theme/ApiExplorer/ApiCodeBlock/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Container/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/Element.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/String.tsx","./src/theme/ApiExplorer/ApiCodeBlock/CopyButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExitButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExpandButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Line/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/index.tsx","./src/theme/ApiExplorer/Authorization/auth-types.ts","./src/theme/ApiExplorer/Authorization/index.tsx","./src/theme/ApiExplorer/Authorization/slice.ts","./src/theme/ApiExplorer/Body/index.tsx","./src/theme/ApiExplorer/Body/json2xml.d.ts","./src/theme/ApiExplorer/Body/resolveSchemaWithSelections.ts","./src/theme/ApiExplorer/Body/slice.ts","./src/theme/ApiExplorer/Body/FileArrayFormBodyItem/index.tsx","./src/theme/ApiExplorer/Body/FormBodyItem/index.tsx","./src/theme/ApiExplorer/CodeSnippets/code-snippets-types.ts","./src/theme/ApiExplorer/CodeSnippets/index.tsx","./src/theme/ApiExplorer/CodeSnippets/languages.ts","./src/theme/ApiExplorer/CodeTabs/index.tsx","./src/theme/ApiExplorer/ContentType/index.tsx","./src/theme/ApiExplorer/ContentType/slice.ts","./src/theme/ApiExplorer/Export/index.tsx","./src/theme/ApiExplorer/FloatingButton/index.tsx","./src/theme/ApiExplorer/FormFileUpload/index.tsx","./src/theme/ApiExplorer/FormItem/index.tsx","./src/theme/ApiExplorer/FormLabel/index.tsx","./src/theme/ApiExplorer/FormMultiSelect/index.tsx","./src/theme/ApiExplorer/FormSelect/index.tsx","./src/theme/ApiExplorer/FormTextInput/index.tsx","./src/theme/ApiExplorer/LiveEditor/index.tsx","./src/theme/ApiExplorer/MethodEndpoint/index.tsx","./src/theme/ApiExplorer/ParamOptions/index.tsx","./src/theme/ApiExplorer/ParamOptions/slice.ts","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.tsx","./src/theme/ApiExplorer/Request/index.tsx","./src/theme/ApiExplorer/Request/makeRequest.ts","./src/theme/ApiExplorer/Response/index.tsx","./src/theme/ApiExplorer/Response/slice.ts","./src/theme/ApiExplorer/SchemaSelection/index.ts","./src/theme/ApiExplorer/SchemaSelection/slice.ts","./src/theme/ApiExplorer/SecuritySchemes/index.tsx","./src/theme/ApiExplorer/Server/index.tsx","./src/theme/ApiExplorer/Server/slice.ts","./src/theme/ApiItem/hooks.ts","./src/theme/ApiItem/index.tsx","./src/theme/ApiItem/store.ts","./src/theme/ApiItem/Layout/index.tsx","./src/theme/ApiLogo/index.tsx","./src/theme/ApiTabs/index.tsx","./src/theme/ArrayBrackets/index.tsx","./src/theme/CodeSamples/index.tsx","./src/theme/DiscriminatorTabs/index.tsx","./src/theme/Example/index.tsx","./src/theme/Markdown/index.d.ts","./src/theme/MimeTabs/index.tsx","./src/theme/OperationTabs/index.tsx","./src/theme/ParamsDetails/index.tsx","./src/theme/ParamsItem/index.tsx","./src/theme/RequestSchema/index.tsx","./src/theme/ResponseExamples/index.tsx","./src/theme/ResponseHeaders/index.tsx","./src/theme/ResponseSchema/index.tsx","./src/theme/Schema/index.tsx","./src/theme/SchemaItem/index.tsx","./src/theme/SchemaTabs/index.tsx","./src/theme/SkeletonLoader/index.tsx","./src/theme/StatusCodes/index.tsx"],"version":"5.9.3"}