@camunda8/docusaurus-theme-openapi-docs 4.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.
Files changed (312) hide show
  1. package/babel.config.js +35 -0
  2. package/lib/index.d.ts +2 -0
  3. package/lib/index.js +81 -0
  4. package/lib/markdown/createDescription.d.ts +1 -0
  5. package/lib/markdown/createDescription.js +15 -0
  6. package/lib/markdown/schema.d.ts +3 -0
  7. package/lib/markdown/schema.js +154 -0
  8. package/lib/markdown/utils.d.ts +10 -0
  9. package/lib/markdown/utils.js +49 -0
  10. package/lib/markdown/utils.test.d.ts +1 -0
  11. package/lib/markdown/utils.test.js +43 -0
  12. package/lib/theme/ApiExplorer/Accept/index.d.ts +3 -0
  13. package/lib/theme/ApiExplorer/Accept/index.js +38 -0
  14. package/lib/theme/ApiExplorer/Accept/slice.d.ts +11 -0
  15. package/lib/theme/ApiExplorer/Accept/slice.js +22 -0
  16. package/lib/theme/ApiExplorer/ApiCodeBlock/Container/_Container.scss +7 -0
  17. package/lib/theme/ApiExplorer/ApiCodeBlock/Container/index.d.ts +4 -0
  18. package/lib/theme/ApiExplorer/ApiCodeBlock/Container/index.js +35 -0
  19. package/lib/theme/ApiExplorer/ApiCodeBlock/Content/Element.d.ts +3 -0
  20. package/lib/theme/ApiExplorer/ApiCodeBlock/Content/Element.js +41 -0
  21. package/lib/theme/ApiExplorer/ApiCodeBlock/Content/String.d.ts +3 -0
  22. package/lib/theme/ApiExplorer/ApiCodeBlock/Content/String.js +153 -0
  23. package/lib/theme/ApiExplorer/ApiCodeBlock/Content/_Content.scss +91 -0
  24. package/lib/theme/ApiExplorer/ApiCodeBlock/CopyButton/_CopyButton.scss +44 -0
  25. package/lib/theme/ApiExplorer/ApiCodeBlock/CopyButton/index.d.ts +7 -0
  26. package/lib/theme/ApiExplorer/ApiCodeBlock/CopyButton/index.js +147 -0
  27. package/lib/theme/ApiExplorer/ApiCodeBlock/ExitButton/_ExitButton.scss +16 -0
  28. package/lib/theme/ApiExplorer/ApiCodeBlock/ExitButton/index.d.ts +6 -0
  29. package/lib/theme/ApiExplorer/ApiCodeBlock/ExitButton/index.js +58 -0
  30. package/lib/theme/ApiExplorer/ApiCodeBlock/ExpandButton/_ExpandButton.scss +62 -0
  31. package/lib/theme/ApiExplorer/ApiCodeBlock/ExpandButton/index.d.ts +14 -0
  32. package/lib/theme/ApiExplorer/ApiCodeBlock/ExpandButton/index.js +248 -0
  33. package/lib/theme/ApiExplorer/ApiCodeBlock/Line/_Line.scss +34 -0
  34. package/lib/theme/ApiExplorer/ApiCodeBlock/Line/index.d.ts +3 -0
  35. package/lib/theme/ApiExplorer/ApiCodeBlock/Line/index.js +59 -0
  36. package/lib/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/_WordWrapButton.scss +10 -0
  37. package/lib/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/index.d.ts +7 -0
  38. package/lib/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/index.js +51 -0
  39. package/lib/theme/ApiExplorer/ApiCodeBlock/index.d.ts +3 -0
  40. package/lib/theme/ApiExplorer/ApiCodeBlock/index.js +110 -0
  41. package/lib/theme/ApiExplorer/Authorization/auth-types.d.ts +3 -0
  42. package/lib/theme/ApiExplorer/Authorization/auth-types.js +28 -0
  43. package/lib/theme/ApiExplorer/Authorization/index.d.ts +3 -0
  44. package/lib/theme/ApiExplorer/Authorization/index.js +201 -0
  45. package/lib/theme/ApiExplorer/Authorization/slice.d.ts +40 -0
  46. package/lib/theme/ApiExplorer/Authorization/slice.js +102 -0
  47. package/lib/theme/ApiExplorer/Body/index.d.ts +10 -0
  48. package/lib/theme/ApiExplorer/Body/index.js +394 -0
  49. package/lib/theme/ApiExplorer/Body/json2xml.js +43 -0
  50. package/lib/theme/ApiExplorer/Body/slice.d.ts +82 -0
  51. package/lib/theme/ApiExplorer/Body/slice.js +97 -0
  52. package/lib/theme/ApiExplorer/CodeSnippets/code-snippets-types.d.ts +21 -0
  53. package/lib/theme/ApiExplorer/CodeSnippets/code-snippets-types.js +8 -0
  54. package/lib/theme/ApiExplorer/CodeSnippets/index.d.ts +11 -0
  55. package/lib/theme/ApiExplorer/CodeSnippets/index.js +435 -0
  56. package/lib/theme/ApiExplorer/CodeSnippets/languages.d.ts +5 -0
  57. package/lib/theme/ApiExplorer/CodeSnippets/languages.js +133 -0
  58. package/lib/theme/ApiExplorer/CodeSnippets/languages.json +1290 -0
  59. package/lib/theme/ApiExplorer/CodeTabs/_CodeTabs.scss +505 -0
  60. package/lib/theme/ApiExplorer/CodeTabs/index.d.ts +15 -0
  61. package/lib/theme/ApiExplorer/CodeTabs/index.js +283 -0
  62. package/lib/theme/ApiExplorer/ContentType/index.d.ts +3 -0
  63. package/lib/theme/ApiExplorer/ContentType/index.js +40 -0
  64. package/lib/theme/ApiExplorer/ContentType/slice.d.ts +11 -0
  65. package/lib/theme/ApiExplorer/ContentType/slice.js +22 -0
  66. package/lib/theme/ApiExplorer/Export/index.d.ts +3 -0
  67. package/lib/theme/ApiExplorer/Export/index.js +57 -0
  68. package/lib/theme/ApiExplorer/FloatingButton/_FloatingButton.scss +27 -0
  69. package/lib/theme/ApiExplorer/FloatingButton/index.d.ts +8 -0
  70. package/lib/theme/ApiExplorer/FloatingButton/index.js +28 -0
  71. package/lib/theme/ApiExplorer/FormFileUpload/_FormFileUpload.scss +74 -0
  72. package/lib/theme/ApiExplorer/FormFileUpload/index.d.ts +7 -0
  73. package/lib/theme/ApiExplorer/FormFileUpload/index.js +178 -0
  74. package/lib/theme/ApiExplorer/FormItem/_FormItem.scss +21 -0
  75. package/lib/theme/ApiExplorer/FormItem/index.d.ts +10 -0
  76. package/lib/theme/ApiExplorer/FormItem/index.js +49 -0
  77. package/lib/theme/ApiExplorer/FormMultiSelect/_FormMultiSelect.scss +30 -0
  78. package/lib/theme/ApiExplorer/FormMultiSelect/index.d.ts +9 -0
  79. package/lib/theme/ApiExplorer/FormMultiSelect/index.js +51 -0
  80. package/lib/theme/ApiExplorer/FormSelect/_FormSelect.scss +43 -0
  81. package/lib/theme/ApiExplorer/FormSelect/index.d.ts +8 -0
  82. package/lib/theme/ApiExplorer/FormSelect/index.js +35 -0
  83. package/lib/theme/ApiExplorer/FormTextInput/_FormTextInput.scss +34 -0
  84. package/lib/theme/ApiExplorer/FormTextInput/index.d.ts +11 -0
  85. package/lib/theme/ApiExplorer/FormTextInput/index.js +80 -0
  86. package/lib/theme/ApiExplorer/LiveEditor/_LiveEditor.scss +15 -0
  87. package/lib/theme/ApiExplorer/LiveEditor/index.d.ts +6 -0
  88. package/lib/theme/ApiExplorer/LiveEditor/index.js +176 -0
  89. package/lib/theme/ApiExplorer/MethodEndpoint/_MethodEndpoint.scss +22 -0
  90. package/lib/theme/ApiExplorer/MethodEndpoint/index.d.ts +8 -0
  91. package/lib/theme/ApiExplorer/MethodEndpoint/index.js +86 -0
  92. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.d.ts +6 -0
  93. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.js +230 -0
  94. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.d.ts +6 -0
  95. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.js +71 -0
  96. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.d.ts +6 -0
  97. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.js +97 -0
  98. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.d.ts +6 -0
  99. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.js +72 -0
  100. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.d.ts +6 -0
  101. package/lib/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.js +38 -0
  102. package/lib/theme/ApiExplorer/ParamOptions/_ParamOptions.scss +123 -0
  103. package/lib/theme/ApiExplorer/ParamOptions/index.d.ts +7 -0
  104. package/lib/theme/ApiExplorer/ParamOptions/index.js +233 -0
  105. package/lib/theme/ApiExplorer/ParamOptions/slice.d.ts +17 -0
  106. package/lib/theme/ApiExplorer/ParamOptions/slice.js +25 -0
  107. package/lib/theme/ApiExplorer/Request/_Request.scss +129 -0
  108. package/lib/theme/ApiExplorer/Request/index.d.ts +6 -0
  109. package/lib/theme/ApiExplorer/Request/index.js +443 -0
  110. package/lib/theme/ApiExplorer/Request/makeRequest.d.ts +4 -0
  111. package/lib/theme/ApiExplorer/Request/makeRequest.js +223 -0
  112. package/lib/theme/ApiExplorer/Response/_Response.scss +121 -0
  113. package/lib/theme/ApiExplorer/Response/index.d.ts +6 -0
  114. package/lib/theme/ApiExplorer/Response/index.js +207 -0
  115. package/lib/theme/ApiExplorer/Response/slice.d.ts +17 -0
  116. package/lib/theme/ApiExplorer/Response/slice.js +51 -0
  117. package/lib/theme/ApiExplorer/SecuritySchemes/index.d.ts +3 -0
  118. package/lib/theme/ApiExplorer/SecuritySchemes/index.js +519 -0
  119. package/lib/theme/ApiExplorer/Server/_Server.scss +26 -0
  120. package/lib/theme/ApiExplorer/Server/index.d.ts +3 -0
  121. package/lib/theme/ApiExplorer/Server/index.js +213 -0
  122. package/lib/theme/ApiExplorer/Server/slice.d.ts +13 -0
  123. package/lib/theme/ApiExplorer/Server/slice.js +33 -0
  124. package/lib/theme/ApiExplorer/buildPostmanRequest.d.ts +20 -0
  125. package/lib/theme/ApiExplorer/buildPostmanRequest.js +511 -0
  126. package/lib/theme/ApiExplorer/index.d.ts +7 -0
  127. package/lib/theme/ApiExplorer/index.js +107 -0
  128. package/lib/theme/ApiExplorer/persistanceMiddleware.d.ts +19 -0
  129. package/lib/theme/ApiExplorer/persistanceMiddleware.js +54 -0
  130. package/lib/theme/ApiExplorer/storage-utils.d.ts +4 -0
  131. package/lib/theme/ApiExplorer/storage-utils.js +41 -0
  132. package/lib/theme/ApiItem/Layout/index.d.ts +3 -0
  133. package/lib/theme/ApiItem/Layout/index.js +121 -0
  134. package/lib/theme/ApiItem/Layout/styles.module.css +17 -0
  135. package/lib/theme/ApiItem/hooks.d.ts +12 -0
  136. package/lib/theme/ApiItem/hooks.js +13 -0
  137. package/lib/theme/ApiItem/index.d.ts +2 -0
  138. package/lib/theme/ApiItem/index.js +238 -0
  139. package/lib/theme/ApiItem/store.d.ts +58 -0
  140. package/lib/theme/ApiItem/store.js +53 -0
  141. package/lib/theme/ApiLogo/index.d.ts +2 -0
  142. package/lib/theme/ApiLogo/index.js +51 -0
  143. package/lib/theme/ApiTabs/_ApiTabs.scss +142 -0
  144. package/lib/theme/ApiTabs/index.d.ts +7 -0
  145. package/lib/theme/ApiTabs/index.js +275 -0
  146. package/lib/theme/ArrayBrackets/index.d.ts +3 -0
  147. package/lib/theme/ArrayBrackets/index.js +50 -0
  148. package/lib/theme/CodeSamples/_CodeSamples.scss +3 -0
  149. package/lib/theme/CodeSamples/index.d.ts +8 -0
  150. package/lib/theme/CodeSamples/index.js +27 -0
  151. package/lib/theme/DiscriminatorTabs/_DiscriminatorTabs.scss +98 -0
  152. package/lib/theme/DiscriminatorTabs/index.d.ts +3 -0
  153. package/lib/theme/DiscriminatorTabs/index.js +258 -0
  154. package/lib/theme/Markdown/Details/_Details.scss +122 -0
  155. package/lib/theme/Markdown/index.js +179 -0
  156. package/lib/theme/MimeTabs/_MimeTabs.scss +70 -0
  157. package/lib/theme/MimeTabs/index.d.ts +6 -0
  158. package/lib/theme/MimeTabs/index.js +286 -0
  159. package/lib/theme/OperationTabs/_OperationTabs.scss +72 -0
  160. package/lib/theme/OperationTabs/index.d.ts +3 -0
  161. package/lib/theme/OperationTabs/index.js +248 -0
  162. package/lib/theme/ParamsDetails/index.d.ts +6 -0
  163. package/lib/theme/ParamsDetails/index.js +93 -0
  164. package/lib/theme/ParamsItem/_ParamsItem.scss +54 -0
  165. package/lib/theme/ParamsItem/index.d.ts +22 -0
  166. package/lib/theme/ParamsItem/index.js +281 -0
  167. package/lib/theme/RequestSchema/index.d.ts +15 -0
  168. package/lib/theme/RequestSchema/index.js +208 -0
  169. package/lib/theme/ResponseExamples/index.d.ts +18 -0
  170. package/lib/theme/ResponseExamples/index.js +213 -0
  171. package/lib/theme/ResponseHeaders/index.d.ts +13 -0
  172. package/lib/theme/ResponseHeaders/index.js +39 -0
  173. package/lib/theme/ResponseSchema/index.d.ts +15 -0
  174. package/lib/theme/ResponseSchema/index.js +165 -0
  175. package/lib/theme/Schema/index.d.ts +8 -0
  176. package/lib/theme/Schema/index.js +853 -0
  177. package/lib/theme/SchemaItem/_SchemaItem.scss +89 -0
  178. package/lib/theme/SchemaItem/index.d.ts +12 -0
  179. package/lib/theme/SchemaItem/index.js +314 -0
  180. package/lib/theme/SchemaTabs/_SchemaTabs.scss +61 -0
  181. package/lib/theme/SchemaTabs/index.d.ts +3 -0
  182. package/lib/theme/SchemaTabs/index.js +255 -0
  183. package/lib/theme/SkeletonLoader/index.d.ts +6 -0
  184. package/lib/theme/SkeletonLoader/index.js +20 -0
  185. package/lib/theme/StatusCodes/index.d.ts +9 -0
  186. package/lib/theme/StatusCodes/index.js +90 -0
  187. package/lib/theme/styles.scss +215 -0
  188. package/lib/theme/translationIds.d.ts +83 -0
  189. package/lib/theme/translationIds.js +106 -0
  190. package/lib/types.d.ts +46 -0
  191. package/lib/types.js +8 -0
  192. package/package.json +85 -0
  193. package/src/index.ts +85 -0
  194. package/src/markdown/createDescription.ts +13 -0
  195. package/src/markdown/schema.ts +186 -0
  196. package/src/markdown/utils.test.ts +49 -0
  197. package/src/markdown/utils.ts +59 -0
  198. package/src/plugin-content-docs.d.ts +20 -0
  199. package/src/postman-code-generators.d.ts +9 -0
  200. package/src/react-magic-dropzone.d.ts +9 -0
  201. package/src/theme/ApiExplorer/Accept/index.tsx +36 -0
  202. package/src/theme/ApiExplorer/Accept/slice.ts +29 -0
  203. package/src/theme/ApiExplorer/ApiCodeBlock/Container/_Container.scss +7 -0
  204. package/src/theme/ApiExplorer/ApiCodeBlock/Container/index.tsx +32 -0
  205. package/src/theme/ApiExplorer/ApiCodeBlock/Content/Element.tsx +34 -0
  206. package/src/theme/ApiExplorer/ApiCodeBlock/Content/String.tsx +134 -0
  207. package/src/theme/ApiExplorer/ApiCodeBlock/Content/_Content.scss +91 -0
  208. package/src/theme/ApiExplorer/ApiCodeBlock/CopyButton/_CopyButton.scss +44 -0
  209. package/src/theme/ApiExplorer/ApiCodeBlock/CopyButton/index.tsx +83 -0
  210. package/src/theme/ApiExplorer/ApiCodeBlock/ExitButton/_ExitButton.scss +16 -0
  211. package/src/theme/ApiExplorer/ApiCodeBlock/ExitButton/index.tsx +55 -0
  212. package/src/theme/ApiExplorer/ApiCodeBlock/ExpandButton/_ExpandButton.scss +62 -0
  213. package/src/theme/ApiExplorer/ApiCodeBlock/ExpandButton/index.tsx +166 -0
  214. package/src/theme/ApiExplorer/ApiCodeBlock/Line/_Line.scss +34 -0
  215. package/src/theme/ApiExplorer/ApiCodeBlock/Line/index.tsx +48 -0
  216. package/src/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/_WordWrapButton.scss +10 -0
  217. package/src/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/index.tsx +54 -0
  218. package/src/theme/ApiExplorer/ApiCodeBlock/index.tsx +45 -0
  219. package/src/theme/ApiExplorer/Authorization/auth-types.ts +30 -0
  220. package/src/theme/ApiExplorer/Authorization/index.tsx +199 -0
  221. package/src/theme/ApiExplorer/Authorization/slice.ts +146 -0
  222. package/src/theme/ApiExplorer/Body/index.tsx +388 -0
  223. package/src/theme/ApiExplorer/Body/json2xml.d.ts +8 -0
  224. package/src/theme/ApiExplorer/Body/json2xml.js +43 -0
  225. package/src/theme/ApiExplorer/Body/slice.ts +133 -0
  226. package/src/theme/ApiExplorer/CodeSnippets/code-snippets-types.ts +57 -0
  227. package/src/theme/ApiExplorer/CodeSnippets/index.tsx +383 -0
  228. package/src/theme/ApiExplorer/CodeSnippets/languages.json +1290 -0
  229. package/src/theme/ApiExplorer/CodeSnippets/languages.ts +139 -0
  230. package/src/theme/ApiExplorer/CodeTabs/_CodeTabs.scss +505 -0
  231. package/src/theme/ApiExplorer/CodeTabs/index.tsx +261 -0
  232. package/src/theme/ApiExplorer/ContentType/index.tsx +38 -0
  233. package/src/theme/ApiExplorer/ContentType/slice.ts +29 -0
  234. package/src/theme/ApiExplorer/Export/index.tsx +47 -0
  235. package/src/theme/ApiExplorer/FloatingButton/_FloatingButton.scss +27 -0
  236. package/src/theme/ApiExplorer/FloatingButton/index.tsx +29 -0
  237. package/src/theme/ApiExplorer/FormFileUpload/_FormFileUpload.scss +74 -0
  238. package/src/theme/ApiExplorer/FormFileUpload/index.tsx +124 -0
  239. package/src/theme/ApiExplorer/FormItem/_FormItem.scss +21 -0
  240. package/src/theme/ApiExplorer/FormItem/index.tsx +40 -0
  241. package/src/theme/ApiExplorer/FormMultiSelect/_FormMultiSelect.scss +30 -0
  242. package/src/theme/ApiExplorer/FormMultiSelect/index.tsx +57 -0
  243. package/src/theme/ApiExplorer/FormSelect/_FormSelect.scss +43 -0
  244. package/src/theme/ApiExplorer/FormSelect/index.tsx +38 -0
  245. package/src/theme/ApiExplorer/FormTextInput/_FormTextInput.scss +34 -0
  246. package/src/theme/ApiExplorer/FormTextInput/index.tsx +89 -0
  247. package/src/theme/ApiExplorer/LiveEditor/_LiveEditor.scss +15 -0
  248. package/src/theme/ApiExplorer/LiveEditor/index.tsx +122 -0
  249. package/src/theme/ApiExplorer/MethodEndpoint/_MethodEndpoint.scss +22 -0
  250. package/src/theme/ApiExplorer/MethodEndpoint/index.tsx +91 -0
  251. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.tsx +185 -0
  252. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.tsx +72 -0
  253. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.tsx +94 -0
  254. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.tsx +74 -0
  255. package/src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.tsx +38 -0
  256. package/src/theme/ApiExplorer/ParamOptions/_ParamOptions.scss +123 -0
  257. package/src/theme/ApiExplorer/ParamOptions/index.tsx +154 -0
  258. package/src/theme/ApiExplorer/ParamOptions/slice.ts +37 -0
  259. package/src/theme/ApiExplorer/Request/_Request.scss +129 -0
  260. package/src/theme/ApiExplorer/Request/index.tsx +352 -0
  261. package/src/theme/ApiExplorer/Request/makeRequest.ts +255 -0
  262. package/src/theme/ApiExplorer/Response/_Response.scss +121 -0
  263. package/src/theme/ApiExplorer/Response/index.tsx +173 -0
  264. package/src/theme/ApiExplorer/Response/slice.ts +52 -0
  265. package/src/theme/ApiExplorer/SecuritySchemes/index.tsx +375 -0
  266. package/src/theme/ApiExplorer/Server/_Server.scss +26 -0
  267. package/src/theme/ApiExplorer/Server/index.tsx +138 -0
  268. package/src/theme/ApiExplorer/Server/slice.ts +39 -0
  269. package/src/theme/ApiExplorer/buildPostmanRequest.ts +524 -0
  270. package/src/theme/ApiExplorer/index.tsx +52 -0
  271. package/src/theme/ApiExplorer/persistanceMiddleware.ts +73 -0
  272. package/src/theme/ApiExplorer/storage-utils.ts +39 -0
  273. package/src/theme/ApiItem/Layout/index.tsx +85 -0
  274. package/src/theme/ApiItem/Layout/styles.module.css +17 -0
  275. package/src/theme/ApiItem/hooks.ts +13 -0
  276. package/src/theme/ApiItem/index.tsx +222 -0
  277. package/src/theme/ApiItem/store.ts +51 -0
  278. package/src/theme/ApiLogo/index.tsx +52 -0
  279. package/src/theme/ApiTabs/_ApiTabs.scss +142 -0
  280. package/src/theme/ApiTabs/index.tsx +243 -0
  281. package/src/theme/ArrayBrackets/index.tsx +37 -0
  282. package/src/theme/CodeSamples/_CodeSamples.scss +3 -0
  283. package/src/theme/CodeSamples/index.tsx +26 -0
  284. package/src/theme/DiscriminatorTabs/_DiscriminatorTabs.scss +98 -0
  285. package/src/theme/DiscriminatorTabs/index.tsx +229 -0
  286. package/src/theme/Markdown/Details/_Details.scss +122 -0
  287. package/src/theme/Markdown/index.d.ts +8 -0
  288. package/src/theme/Markdown/index.js +179 -0
  289. package/src/theme/MimeTabs/_MimeTabs.scss +70 -0
  290. package/src/theme/MimeTabs/index.tsx +257 -0
  291. package/src/theme/OperationTabs/_OperationTabs.scss +72 -0
  292. package/src/theme/OperationTabs/index.tsx +220 -0
  293. package/src/theme/ParamsDetails/index.tsx +90 -0
  294. package/src/theme/ParamsItem/_ParamsItem.scss +54 -0
  295. package/src/theme/ParamsItem/index.tsx +246 -0
  296. package/src/theme/RequestSchema/index.tsx +172 -0
  297. package/src/theme/ResponseExamples/index.tsx +209 -0
  298. package/src/theme/ResponseHeaders/index.tsx +49 -0
  299. package/src/theme/ResponseSchema/index.tsx +150 -0
  300. package/src/theme/Schema/index.tsx +938 -0
  301. package/src/theme/SchemaItem/_SchemaItem.scss +89 -0
  302. package/src/theme/SchemaItem/index.tsx +273 -0
  303. package/src/theme/SchemaTabs/_SchemaTabs.scss +61 -0
  304. package/src/theme/SchemaTabs/index.tsx +224 -0
  305. package/src/theme/SkeletonLoader/index.tsx +18 -0
  306. package/src/theme/StatusCodes/index.tsx +83 -0
  307. package/src/theme/styles.scss +215 -0
  308. package/src/theme/translationIds.ts +103 -0
  309. package/src/theme-classic.d.ts +80 -0
  310. package/src/theme-openapi.d.ts +20 -0
  311. package/src/types.ts +72 -0
  312. package/tsconfig.json +16 -0
@@ -0,0 +1,36 @@
1
+ /* ============================================================================
2
+ * Copyright (c) Palo Alto Networks
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ * ========================================================================== */
7
+
8
+ import React from "react";
9
+
10
+ import FormItem from "@theme/ApiExplorer/FormItem";
11
+ import FormSelect from "@theme/ApiExplorer/FormSelect";
12
+ import { useTypedDispatch, useTypedSelector } from "@theme/ApiItem/hooks";
13
+
14
+ import { setAccept } from "./slice";
15
+
16
+ function Accept() {
17
+ const value = useTypedSelector((state: any) => state.accept.value);
18
+ const options = useTypedSelector((state: any) => state.accept.options);
19
+ const dispatch = useTypedDispatch();
20
+
21
+ if (options.length <= 1) {
22
+ return null;
23
+ }
24
+
25
+ return (
26
+ <FormItem label="Accept">
27
+ <FormSelect
28
+ value={value}
29
+ options={options}
30
+ onChange={(e: any) => dispatch(setAccept(e.target.value))}
31
+ />
32
+ </FormItem>
33
+ );
34
+ }
35
+
36
+ export default Accept;
@@ -0,0 +1,29 @@
1
+ /* ============================================================================
2
+ * Copyright (c) Palo Alto Networks
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ * ========================================================================== */
7
+
8
+ import { createSlice, PayloadAction } from "@reduxjs/toolkit";
9
+
10
+ export interface State {
11
+ value: string;
12
+ options: string[];
13
+ }
14
+
15
+ const initialState: State = {} as any;
16
+
17
+ export const slice = createSlice({
18
+ name: "accept",
19
+ initialState,
20
+ reducers: {
21
+ setAccept: (state, action: PayloadAction<string>) => {
22
+ state.value = action.payload;
23
+ },
24
+ },
25
+ });
26
+
27
+ export const { setAccept } = slice.actions;
28
+
29
+ export default slice.reducer;
@@ -0,0 +1,7 @@
1
+ .openapi-explorer__code-block-container {
2
+ height: 100%;
3
+ background: var(--prism-background-color);
4
+ color: var(--prism-color);
5
+ margin-bottom: unset;
6
+ box-shadow: var(--ifm-global-shadow-lw);
7
+ }
@@ -0,0 +1,32 @@
1
+ /* ============================================================================
2
+ * Copyright (c) Palo Alto Networks
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ * ========================================================================== */
7
+
8
+ import React, { ComponentProps } from "react";
9
+
10
+ import { ThemeClassNames, usePrismTheme } from "@docusaurus/theme-common";
11
+ import { getPrismCssVariables } from "@docusaurus/theme-common/internal";
12
+ import clsx from "clsx";
13
+
14
+ export default function CodeBlockContainer<T extends "div" | "pre">({
15
+ as: As,
16
+ ...props
17
+ }: { as: T } & ComponentProps<T>): React.JSX.Element {
18
+ const prismTheme = usePrismTheme();
19
+ const prismCssVariables = getPrismCssVariables(prismTheme);
20
+ return (
21
+ <As
22
+ // Polymorphic components are hard to type, without `oneOf` generics
23
+ {...(props as any)}
24
+ style={prismCssVariables}
25
+ className={clsx(
26
+ "openapi-explorer__code-block-container",
27
+ props.className,
28
+ ThemeClassNames.common.codeBlock
29
+ )}
30
+ />
31
+ );
32
+ }
@@ -0,0 +1,34 @@
1
+ /* ============================================================================
2
+ * Copyright (c) Palo Alto Networks
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ * ========================================================================== */
7
+
8
+ import React from "react";
9
+
10
+ import Container from "@theme/ApiExplorer/ApiCodeBlock/Container";
11
+ import type { Props } from "@theme/CodeBlock/Content/Element";
12
+ import clsx from "clsx";
13
+
14
+ // <pre> tags in markdown map to CodeBlocks. They may contain JSX children. When
15
+ // the children is not a simple string, we just return a styled block without
16
+ // actually highlighting.
17
+ export default function CodeBlockJSX({
18
+ children,
19
+ className,
20
+ }: Props): React.JSX.Element {
21
+ return (
22
+ <Container
23
+ as="pre"
24
+ tabIndex={0}
25
+ className={clsx(
26
+ "openapi-explorer__code-block-standalone",
27
+ "thin-scrollbar",
28
+ className
29
+ )}
30
+ >
31
+ <code className="openapi-explorer__code-block-lines">{children}</code>
32
+ </Container>
33
+ );
34
+ }
@@ -0,0 +1,134 @@
1
+ /* ============================================================================
2
+ * Copyright (c) Palo Alto Networks
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ * ========================================================================== */
7
+
8
+ import React from "react";
9
+
10
+ import { useThemeConfig, usePrismTheme } from "@docusaurus/theme-common";
11
+ import {
12
+ parseCodeBlockTitle,
13
+ parseLanguage,
14
+ parseLines,
15
+ containsLineNumbers,
16
+ useCodeWordWrap,
17
+ } from "@docusaurus/theme-common/internal";
18
+ import Container from "@theme/ApiExplorer/ApiCodeBlock/Container";
19
+ import CopyButton from "@theme/ApiExplorer/ApiCodeBlock/CopyButton";
20
+ import ExpandButton from "@theme/ApiExplorer/ApiCodeBlock/ExpandButton";
21
+ import Line from "@theme/ApiExplorer/ApiCodeBlock/Line";
22
+ import WordWrapButton from "@theme/ApiExplorer/ApiCodeBlock/WordWrapButton";
23
+ import type { Props } from "@theme/CodeBlock/Content/String";
24
+ import clsx from "clsx";
25
+ import { Highlight, Language } from "prism-react-renderer";
26
+
27
+ export default function CodeBlockString({
28
+ children,
29
+ className: blockClassName = "",
30
+ metastring,
31
+ title: titleProp,
32
+ showLineNumbers: showLineNumbersProp,
33
+ language: languageProp,
34
+ }: Props): React.JSX.Element {
35
+ const {
36
+ prism: { defaultLanguage, magicComments },
37
+ } = useThemeConfig();
38
+ const language =
39
+ languageProp ?? parseLanguage(blockClassName) ?? defaultLanguage;
40
+ const prismTheme = usePrismTheme();
41
+ const wordWrap = useCodeWordWrap();
42
+ // We still parse the metastring in case we want to support more syntax in the
43
+ // future. Note that MDX doesn't strip quotes when parsing metastring:
44
+ // "title=\"xyz\"" => title: "\"xyz\""
45
+ const title = parseCodeBlockTitle(metastring) || titleProp;
46
+ const { lineClassNames, code } = parseLines(children, {
47
+ metastring,
48
+ language,
49
+ magicComments,
50
+ });
51
+ const showLineNumbers =
52
+ showLineNumbersProp ?? containsLineNumbers(metastring);
53
+
54
+ return (
55
+ <Container
56
+ as="div"
57
+ className={clsx(
58
+ blockClassName,
59
+ language &&
60
+ !blockClassName.includes(`language-${language}`) &&
61
+ `language-${language}`
62
+ )}
63
+ >
64
+ {title && (
65
+ <div className="openapi-explorer__code-block-title">{title}</div>
66
+ )}
67
+ <div className="openapi-explorer__code-block-content">
68
+ <Highlight
69
+ // {...defaultProps}
70
+ theme={prismTheme}
71
+ code={code}
72
+ language={language ?? "text"}
73
+ >
74
+ {({ className, tokens, getLineProps, getTokenProps }) => (
75
+ <pre
76
+ /* eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex */
77
+ tabIndex={0}
78
+ ref={wordWrap.codeBlockRef}
79
+ className={clsx(
80
+ className,
81
+ "openapi-explorer__code-block",
82
+ "thin-scrollbar"
83
+ )}
84
+ >
85
+ <code
86
+ className={clsx(
87
+ "openapi-explorer__code-block-lines",
88
+ showLineNumbers &&
89
+ "openapi-explorer__code-block-lines-numbering"
90
+ )}
91
+ >
92
+ {tokens.map((line, i) => (
93
+ <Line
94
+ key={i}
95
+ line={line}
96
+ getLineProps={getLineProps}
97
+ getTokenProps={getTokenProps}
98
+ classNames={lineClassNames[i]}
99
+ showLineNumbers={!!showLineNumbers}
100
+ />
101
+ ))}
102
+ </code>
103
+ </pre>
104
+ )}
105
+ </Highlight>
106
+ <div className="openapi-explorer__code-block-btn-group">
107
+ {(wordWrap.isEnabled || wordWrap.isCodeScrollable) && (
108
+ <WordWrapButton
109
+ className="openapi-explorer__code-block-code-btn"
110
+ onClick={() => wordWrap.toggle()}
111
+ isEnabled={wordWrap.isEnabled}
112
+ />
113
+ )}
114
+ <CopyButton
115
+ className="openapi-explorer__code-block-code-btn"
116
+ code={code}
117
+ />
118
+ <ExpandButton
119
+ className={clsx(
120
+ "openapi-explorer__code-block-code-btn",
121
+ "openapi-explorer__expand-btn"
122
+ )}
123
+ code={code}
124
+ language={(language ?? "text") as Language}
125
+ showLineNumbers={!!showLineNumbers}
126
+ blockClassName={blockClassName}
127
+ title={typeof title === "string" ? title : undefined}
128
+ lineClassNames={lineClassNames}
129
+ />
130
+ </div>
131
+ </div>
132
+ </Container>
133
+ );
134
+ }
@@ -0,0 +1,91 @@
1
+ .openapi-explorer__code-block-content {
2
+ height: 100%;
3
+ position: relative;
4
+ /* rtl:ignore */
5
+ direction: ltr;
6
+ border-radius: inherit;
7
+ }
8
+
9
+ .openapi-explorer__code-block-title {
10
+ border-bottom: 1px solid var(--ifm-color-emphasis-300);
11
+ font-size: var(--ifm-code-font-size);
12
+ font-weight: 500;
13
+ padding: 0.75rem var(--ifm-pre-padding);
14
+ border-top-left-radius: inherit;
15
+ border-top-right-radius: inherit;
16
+ }
17
+
18
+ .openapi-explorer__code-block {
19
+ height: 100%;
20
+ border-radius: var(--ifm-global-radius);
21
+ --ifm-pre-background: var(--prism-background-color);
22
+ margin: 0;
23
+ padding: 0;
24
+ }
25
+
26
+ .openapi-explorer__code-block-title
27
+ + .openapi-explorer__code-block-content
28
+ .openapi-explorer__code-block {
29
+ border-top-left-radius: 0;
30
+ border-top-right-radius: 0;
31
+ }
32
+
33
+ .openapi-explorer__code-block-standalone {
34
+ padding: 0;
35
+ }
36
+
37
+ .openapi-explorer__code-block-lines {
38
+ font: inherit;
39
+ /* rtl:ignore */
40
+ float: left;
41
+ min-width: 100%;
42
+ padding: var(--ifm-pre-padding);
43
+ }
44
+
45
+ .openapi-explorer__code-block-lines-numbering {
46
+ // This causes max-height to unset
47
+ // display: table;
48
+ padding: var(--ifm-pre-padding) 0;
49
+ }
50
+
51
+ @media print {
52
+ .openapi-explorer__code-block-lines {
53
+ white-space: pre-wrap;
54
+ }
55
+ }
56
+
57
+ .openapi-explorer__code-block-btn-group {
58
+ display: flex;
59
+ column-gap: 0.2rem;
60
+ position: absolute;
61
+ right: calc(var(--ifm-pre-padding) / 2);
62
+ top: calc(var(--ifm-pre-padding) / 2);
63
+ }
64
+
65
+ .openapi-explorer__code-block-btn-group button {
66
+ display: flex;
67
+ align-items: center;
68
+ background: var(--prism-background-color);
69
+ color: var(--prism-color);
70
+ border: 1px solid var(--ifm-color-emphasis-300);
71
+ border-radius: var(--ifm-global-radius);
72
+ padding: 0.4rem;
73
+ line-height: 0;
74
+ transition: opacity 200ms ease-in-out;
75
+ opacity: 0;
76
+ }
77
+
78
+ .openapi-explorer__code-block-btn-group button:focus-visible,
79
+ .openapi-explorer__code-block-btn-group button:hover {
80
+ opacity: 1 !important;
81
+ }
82
+
83
+ .theme-code-block:hover .openapi-explorer__code-block-btn-group button {
84
+ opacity: 0.4;
85
+ }
86
+
87
+ @media screen and (max-width: 996px) {
88
+ .openapi-explorer__expand-btn {
89
+ display: none !important;
90
+ }
91
+ }
@@ -0,0 +1,44 @@
1
+ .theme-code-block:hover {
2
+ .openapi-explorer__code-block-copy-btn--copied {
3
+ opacity: 1 !important;
4
+ }
5
+ }
6
+
7
+ .openapi-explorer__code-block-copy-btn-icons {
8
+ position: relative;
9
+ width: 1.125rem;
10
+ height: 1.125rem;
11
+ }
12
+
13
+ .openapi-explorer__code-block-copy-btn-icon,
14
+ .openapi-explorer__code-block-copy-btn-icon--success {
15
+ position: absolute;
16
+ top: 0;
17
+ left: 0;
18
+ fill: currentColor;
19
+ opacity: inherit;
20
+ width: inherit;
21
+ height: inherit;
22
+ transition: all 0.15s ease;
23
+ }
24
+
25
+ .openapi-explorer__code-block-copy-btn-icon--success {
26
+ top: 50%;
27
+ left: 50%;
28
+ transform: translate(-50%, -50%) scale(0.33);
29
+ opacity: 0;
30
+ color: #00d600;
31
+ }
32
+
33
+ .openapi-explorer__code-block-copy-btn--copied {
34
+ .openapi-explorer__code-block-copy-btn-icon {
35
+ transform: scale(0.33);
36
+ opacity: 0;
37
+ }
38
+
39
+ .openapi-explorer__code-block-copy-btn-icon--success {
40
+ transform: translate(-50%, -50%) scale(1);
41
+ opacity: 1;
42
+ transition-delay: 0.075s;
43
+ }
44
+ }
@@ -0,0 +1,83 @@
1
+ /* ============================================================================
2
+ * Copyright (c) Palo Alto Networks
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ * ========================================================================== */
7
+
8
+ import React, { useCallback, useState, useRef, useEffect } from "react";
9
+
10
+ import { translate } from "@docusaurus/Translate";
11
+ import clsx from "clsx";
12
+ import copy from "copy-text-to-clipboard";
13
+
14
+ interface CopyButtonProps {
15
+ code: string;
16
+ className?: string;
17
+ }
18
+
19
+ export default function CopyButton({
20
+ code,
21
+ className,
22
+ }: CopyButtonProps): React.JSX.Element {
23
+ const [isCopied, setIsCopied] = useState(false);
24
+ const copyTimeout = useRef<number | undefined>(undefined);
25
+ const handleCopyCode = useCallback(() => {
26
+ copy(code);
27
+ setIsCopied(true);
28
+ copyTimeout.current = window.setTimeout(() => {
29
+ setIsCopied(false);
30
+ }, 1000);
31
+ }, [code]);
32
+
33
+ useEffect(() => () => window.clearTimeout(copyTimeout.current), []);
34
+
35
+ return (
36
+ <button
37
+ type="button"
38
+ aria-label={
39
+ isCopied
40
+ ? translate({
41
+ id: "theme.CodeBlock.copied",
42
+ message: "Copied",
43
+ description: "The copied button label on code blocks",
44
+ })
45
+ : translate({
46
+ id: "theme.CodeBlock.copyButtonAriaLabel",
47
+ message: "Copy code to clipboard",
48
+ description: "The ARIA label for copy code blocks button",
49
+ })
50
+ }
51
+ title={translate({
52
+ id: "theme.CodeBlock.copy",
53
+ message: "Copy",
54
+ description: "The copy button label on code blocks",
55
+ })}
56
+ className={clsx(
57
+ "clean-btn",
58
+ className,
59
+ "openapi-explorer__code-block-copy-btn",
60
+ isCopied && "openapi-explorer__code-block-copy-btn--copied"
61
+ )}
62
+ onClick={handleCopyCode}
63
+ >
64
+ <span
65
+ className="openapi-explorer__code-block-copy-btn-icons"
66
+ aria-hidden="true"
67
+ >
68
+ <svg
69
+ className="openapi-explorer__code-block-copy-btn-icon"
70
+ viewBox="0 0 24 24"
71
+ >
72
+ <path d="M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z" />
73
+ </svg>
74
+ <svg
75
+ className="openapi-explorer__code-block-copy-btn-icon--success"
76
+ viewBox="0 0 24 24"
77
+ >
78
+ <path d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z" />
79
+ </svg>
80
+ </span>
81
+ </button>
82
+ );
83
+ }
@@ -0,0 +1,16 @@
1
+ .openapi-explorer__code-block-exit-btn-icons {
2
+ position: relative;
3
+ width: 1.125rem;
4
+ height: 1.125rem;
5
+ }
6
+
7
+ .openapi-explorer__code-block-exit-btn-icon {
8
+ position: absolute;
9
+ top: 0;
10
+ left: 0;
11
+ fill: currentColor;
12
+ opacity: inherit;
13
+ width: inherit;
14
+ height: inherit;
15
+ transition: all 0.15s ease;
16
+ }
@@ -0,0 +1,55 @@
1
+ /* ============================================================================
2
+ * Copyright (c) Palo Alto Networks
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ * ========================================================================== */
7
+
8
+ import React from "react";
9
+
10
+ import { translate } from "@docusaurus/Translate";
11
+ import clsx from "clsx";
12
+
13
+ export interface Props {
14
+ readonly className: string;
15
+ readonly handler: () => void;
16
+ }
17
+
18
+ export default function ExitButton({
19
+ className,
20
+ handler,
21
+ }: Props): React.JSX.Element {
22
+ return (
23
+ <button
24
+ type="button"
25
+ aria-label={translate({
26
+ id: "theme.CodeBlock.exitButtonAriaLabel",
27
+ message: "Exit expanded view",
28
+ description: "The ARIA label for exit expanded view button",
29
+ })}
30
+ title={translate({
31
+ id: "theme.CodeBlock.copy",
32
+ message: "Copy",
33
+ description: "The exit button label on code blocks",
34
+ })}
35
+ className={clsx(
36
+ "clean-btn",
37
+ "openapi-explorer__code-block-exit-btn",
38
+ className
39
+ )}
40
+ onClick={handler}
41
+ >
42
+ <span
43
+ className="openapi-explorer__code-block-exit-btn-icons"
44
+ aria-hidden="true"
45
+ >
46
+ <svg
47
+ className="openapi-explorer__code-block-exit-btn-icon"
48
+ viewBox="0 0 384 512"
49
+ >
50
+ <path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z" />
51
+ </svg>
52
+ </span>
53
+ </button>
54
+ );
55
+ }
@@ -0,0 +1,62 @@
1
+ .openapi-explorer__expand-modal-content {
2
+ padding: none;
3
+ border: thin solid var(--ifm-toc-border-color);
4
+ border-radius: var(--ifm-global-radius);
5
+ max-width: 95%;
6
+ width: 65vw;
7
+ height: 65vh;
8
+ overflow: auto;
9
+ }
10
+
11
+ .openapi-explorer__expand-modal-overlay {
12
+ display: flex;
13
+ align-items: center;
14
+ justify-content: center;
15
+ position: fixed;
16
+ inset: 0px;
17
+ background-color: rgba(0, 0, 0, 0.9);
18
+ z-index: 201;
19
+ }
20
+
21
+ .theme-code-block:hover .openapi-explorer__code-block-expand-btn--copied {
22
+ opacity: 1 !important;
23
+ }
24
+
25
+ .openapi-explorer__code-block-expand-btn-icons {
26
+ position: relative;
27
+ width: 1.125rem;
28
+ height: 1.125rem;
29
+ }
30
+
31
+ .openapi-explorer__code-block-expand-btn-icon,
32
+ .openapi-explorer__code-block-expand-btn-icon--success {
33
+ position: absolute;
34
+ top: 0;
35
+ left: 0;
36
+ fill: currentColor;
37
+ opacity: inherit;
38
+ width: inherit;
39
+ height: inherit;
40
+ transition: all 0.15s ease;
41
+ }
42
+
43
+ .openapi-explorer__code-block-expand-btn-icon--success {
44
+ top: 50%;
45
+ left: 50%;
46
+ transform: translate(-50%, -50%) scale(0.33);
47
+ opacity: 0;
48
+ color: #00d600;
49
+ }
50
+
51
+ .openapi-explorer__code-block-expand-btn--copied
52
+ .openapi-explorer__code-block-expand-btn-icon {
53
+ transform: scale(0.33);
54
+ opacity: 0;
55
+ }
56
+
57
+ .openapi-explorer__code-block-expand-btn--copied
58
+ .openapi-explorer__code-block-expand-btn-icon--success {
59
+ transform: translate(-50%, -50%) scale(1);
60
+ opacity: 1;
61
+ transition-delay: 0.075s;
62
+ }