zudoku 0.0.0-e4d0ea8 → 0.0.0-e5be921

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 (802) hide show
  1. package/README.md +121 -0
  2. package/client.d.ts +7 -0
  3. package/dist/app/demo.js +0 -2
  4. package/dist/app/demo.js.map +1 -1
  5. package/dist/app/entry.client.d.ts +1 -0
  6. package/dist/app/entry.client.js +27 -0
  7. package/dist/app/entry.client.js.map +1 -1
  8. package/dist/app/entry.server.d.ts +1 -0
  9. package/dist/app/entry.server.js +7 -6
  10. package/dist/app/entry.server.js.map +1 -1
  11. package/dist/app/main.d.ts +1 -1
  12. package/dist/app/main.js +7 -8
  13. package/dist/app/main.js.map +1 -1
  14. package/dist/app/sentry.d.ts +3 -0
  15. package/dist/app/sentry.js +19 -0
  16. package/dist/app/sentry.js.map +1 -0
  17. package/dist/app/standalone.js +0 -2
  18. package/dist/app/standalone.js.map +1 -1
  19. package/dist/app/tailwind.d.ts +2 -1
  20. package/dist/app/tailwind.js +64 -52
  21. package/dist/app/tailwind.js.map +1 -1
  22. package/dist/cli/cli.js +1 -4
  23. package/dist/cli/cli.js.map +1 -1
  24. package/dist/cli/common/logger.js +9 -0
  25. package/dist/cli/common/logger.js.map +1 -1
  26. package/dist/cli/common/outdated.js +2 -1
  27. package/dist/cli/common/outdated.js.map +1 -1
  28. package/dist/codegen.d.ts +3 -0
  29. package/dist/codegen.js +45 -0
  30. package/dist/codegen.js.map +1 -0
  31. package/dist/config/common.d.ts +8 -0
  32. package/dist/config/common.js +2 -0
  33. package/dist/config/common.js.map +1 -0
  34. package/dist/config/config.d.ts +3 -2
  35. package/dist/config/loader.d.ts +20 -0
  36. package/dist/config/loader.js +154 -0
  37. package/dist/config/loader.js.map +1 -0
  38. package/dist/config/validators/InputSidebarSchema.d.ts +33 -17
  39. package/dist/config/validators/InputSidebarSchema.js +7 -28
  40. package/dist/config/validators/InputSidebarSchema.js.map +1 -1
  41. package/dist/config/validators/SidebarSchema.d.ts +24 -1
  42. package/dist/config/validators/SidebarSchema.js +77 -37
  43. package/dist/config/validators/SidebarSchema.js.map +1 -1
  44. package/dist/config/validators/common.d.ts +4911 -0
  45. package/dist/config/validators/common.js +276 -0
  46. package/dist/config/validators/common.js.map +1 -0
  47. package/dist/config/validators/icon-types.d.ts +1 -0
  48. package/dist/config/validators/icon-types.js +2 -0
  49. package/dist/config/validators/icon-types.js.map +1 -0
  50. package/dist/config/validators/validate.d.ts +769 -415
  51. package/dist/config/validators/validate.js +12 -214
  52. package/dist/config/validators/validate.js.map +1 -1
  53. package/dist/index.d.ts +3 -3
  54. package/dist/index.js +1 -1
  55. package/dist/index.js.map +1 -1
  56. package/dist/lib/authentication/AuthenticationPlugin.d.ts +4 -2
  57. package/dist/lib/authentication/AuthenticationPlugin.js +3 -0
  58. package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
  59. package/dist/lib/authentication/authentication.d.ts +3 -3
  60. package/dist/lib/authentication/components/CallbackHandler.js +21 -31
  61. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  62. package/dist/lib/authentication/hook.d.ts +5 -4
  63. package/dist/lib/authentication/hook.js +1 -3
  64. package/dist/lib/authentication/hook.js.map +1 -1
  65. package/dist/lib/authentication/providers/auth0.js +12 -11
  66. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  67. package/dist/lib/authentication/providers/openid.d.ts +0 -1
  68. package/dist/lib/authentication/providers/openid.js +17 -27
  69. package/dist/lib/authentication/providers/openid.js.map +1 -1
  70. package/dist/lib/authentication/state.d.ts +25 -4
  71. package/dist/lib/authentication/state.js +28 -3
  72. package/dist/lib/authentication/state.js.map +1 -1
  73. package/dist/lib/authentication/use-broadcast/shared.d.ts +48 -0
  74. package/dist/lib/authentication/use-broadcast/shared.js +243 -0
  75. package/dist/lib/authentication/use-broadcast/shared.js.map +1 -0
  76. package/dist/lib/authentication/use-broadcast/useBroadcast.d.ts +24 -0
  77. package/dist/lib/authentication/use-broadcast/useBroadcast.js +106 -0
  78. package/dist/lib/authentication/use-broadcast/useBroadcast.js.map +1 -0
  79. package/dist/lib/components/Bootstrap.d.ts +3 -1
  80. package/dist/lib/components/Bootstrap.js +10 -4
  81. package/dist/lib/components/Bootstrap.js.map +1 -1
  82. package/dist/lib/components/ClientOnly.d.ts +4 -2
  83. package/dist/lib/components/ClientOnly.js +1 -1
  84. package/dist/lib/components/ClientOnly.js.map +1 -1
  85. package/dist/lib/components/DeveloperHint.js +2 -1
  86. package/dist/lib/components/DeveloperHint.js.map +1 -1
  87. package/dist/lib/components/Header.js +17 -10
  88. package/dist/lib/components/Header.js.map +1 -1
  89. package/dist/lib/components/Heading.d.ts +4 -4
  90. package/dist/lib/components/Heading.js +1 -1
  91. package/dist/lib/components/Heading.js.map +1 -1
  92. package/dist/lib/components/Layout.js +14 -5
  93. package/dist/lib/components/Layout.js.map +1 -1
  94. package/dist/lib/components/Markdown.js +1 -1
  95. package/dist/lib/components/Markdown.js.map +1 -1
  96. package/dist/lib/components/MobileTopNavigation.js +8 -6
  97. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  98. package/dist/lib/components/ReactMarkdown.d.ts +29 -0
  99. package/dist/lib/components/ReactMarkdown.js +182 -0
  100. package/dist/lib/components/ReactMarkdown.js.map +1 -0
  101. package/dist/lib/components/Search.d.ts +3 -1
  102. package/dist/lib/components/Search.js +3 -3
  103. package/dist/lib/components/Search.js.map +1 -1
  104. package/dist/lib/components/SlotletProvider.d.ts +7 -2
  105. package/dist/lib/components/SlotletProvider.js +3 -5
  106. package/dist/lib/components/SlotletProvider.js.map +1 -1
  107. package/dist/lib/components/SyntaxHighlight.js +19 -16
  108. package/dist/lib/components/SyntaxHighlight.js.map +1 -1
  109. package/dist/lib/components/ThemeSwitch.d.ts +1 -0
  110. package/dist/lib/components/ThemeSwitch.js +13 -0
  111. package/dist/lib/components/ThemeSwitch.js.map +1 -0
  112. package/dist/lib/components/TopNavigation.d.ts +5 -0
  113. package/dist/lib/components/TopNavigation.js +22 -8
  114. package/dist/lib/components/TopNavigation.js.map +1 -1
  115. package/dist/lib/components/{DevPortal.d.ts → Zudoku.d.ts} +3 -3
  116. package/dist/lib/components/{DevPortal.js → Zudoku.js} +13 -14
  117. package/dist/lib/components/Zudoku.js.map +1 -0
  118. package/dist/lib/components/context/ZudokuContext.d.ts +7 -6
  119. package/dist/lib/components/context/ZudokuContext.js +8 -13
  120. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  121. package/dist/lib/components/context/ZudokuProvider.d.ts +2 -2
  122. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  123. package/dist/lib/components/index.d.ts +30 -13
  124. package/dist/lib/components/index.js +11 -5
  125. package/dist/lib/components/index.js.map +1 -1
  126. package/dist/lib/components/navigation/Sidebar.d.ts +3 -1
  127. package/dist/lib/components/navigation/Sidebar.js +2 -2
  128. package/dist/lib/components/navigation/Sidebar.js.map +1 -1
  129. package/dist/lib/components/navigation/SidebarCategory.d.ts +2 -2
  130. package/dist/lib/components/navigation/SidebarCategory.js +18 -8
  131. package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
  132. package/dist/lib/components/navigation/SidebarItem.d.ts +2 -4
  133. package/dist/lib/components/navigation/SidebarItem.js +11 -9
  134. package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
  135. package/dist/lib/components/navigation/SidebarWrapper.js +1 -1
  136. package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
  137. package/dist/lib/components/navigation/utils.js +2 -2
  138. package/dist/lib/components/navigation/utils.js.map +1 -1
  139. package/dist/lib/core/{DevPortalContext.d.ts → ZudokuContext.d.ts} +4 -8
  140. package/dist/lib/core/{DevPortalContext.js → ZudokuContext.js} +2 -7
  141. package/dist/lib/core/ZudokuContext.js.map +1 -0
  142. package/dist/lib/core/plugins.d.ts +18 -12
  143. package/dist/lib/core/plugins.js.map +1 -1
  144. package/dist/lib/errors/ErrorAlert.d.ts +1 -1
  145. package/dist/lib/errors/ErrorAlert.js +8 -3
  146. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  147. package/dist/lib/oas/graphql/index.js +8 -5
  148. package/dist/lib/oas/graphql/index.js.map +1 -1
  149. package/dist/lib/oas/parser/upgrade/index.d.ts +2 -2
  150. package/dist/lib/oas/parser/upgrade/index.js +2 -17
  151. package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
  152. package/dist/lib/plugins/api-catalog/Catalog.d.ts +6 -0
  153. package/dist/lib/plugins/api-catalog/Catalog.js +29 -0
  154. package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -0
  155. package/dist/lib/plugins/api-catalog/index.d.ts +23 -0
  156. package/dist/lib/plugins/api-catalog/index.js +15 -0
  157. package/dist/lib/plugins/api-catalog/index.js.map +1 -0
  158. package/dist/lib/plugins/api-keys/CreateApiKey.js +1 -1
  159. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  160. package/dist/lib/plugins/api-keys/index.d.ts +9 -9
  161. package/dist/lib/plugins/api-keys/index.js +3 -0
  162. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  163. package/dist/lib/plugins/custom-pages/CustomPage.d.ts +2 -0
  164. package/dist/lib/plugins/custom-pages/CustomPage.js +11 -0
  165. package/dist/lib/plugins/custom-pages/CustomPage.js.map +1 -0
  166. package/dist/lib/plugins/custom-pages/index.d.ts +9 -7
  167. package/dist/lib/plugins/custom-pages/index.js +3 -4
  168. package/dist/lib/plugins/custom-pages/index.js.map +1 -1
  169. package/dist/lib/plugins/markdown/MdxPage.d.ts +9 -1
  170. package/dist/lib/plugins/markdown/MdxPage.js +15 -2
  171. package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
  172. package/dist/lib/plugins/markdown/index.d.ts +4 -3
  173. package/dist/lib/plugins/markdown/index.js +1 -1
  174. package/dist/lib/plugins/markdown/index.js.map +1 -1
  175. package/dist/lib/plugins/markdown/resolver.js.map +1 -1
  176. package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +5 -0
  177. package/dist/lib/plugins/openapi/CollapsibleCode.js +24 -0
  178. package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -0
  179. package/dist/lib/plugins/openapi/ColorizedParam.js +13 -9
  180. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  181. package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -1
  182. package/dist/lib/plugins/openapi/Endpoint.js +5 -9
  183. package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
  184. package/dist/lib/plugins/openapi/OperationList.d.ts +2 -2
  185. package/dist/lib/plugins/openapi/OperationList.js +67 -23
  186. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  187. package/dist/lib/plugins/openapi/ParameterListItem.js +6 -1
  188. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  189. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +7 -3
  190. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
  191. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +9 -2
  192. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  193. package/dist/lib/plugins/openapi/Route.d.ts +4 -4
  194. package/dist/lib/plugins/openapi/Route.js +2 -4
  195. package/dist/lib/plugins/openapi/Route.js.map +1 -1
  196. package/dist/lib/plugins/openapi/Sidecar.d.ts +1 -1
  197. package/dist/lib/plugins/openapi/Sidecar.js +35 -33
  198. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  199. package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +8 -0
  200. package/dist/lib/plugins/openapi/client/GraphQLClient.js +114 -0
  201. package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -0
  202. package/dist/lib/plugins/openapi/client/GraphQLContext.d.ts +7 -0
  203. package/dist/lib/plugins/openapi/client/GraphQLContext.js +5 -0
  204. package/dist/lib/plugins/openapi/client/GraphQLContext.js.map +1 -0
  205. package/dist/lib/plugins/openapi/client/createServer.d.ts +1 -0
  206. package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +5 -0
  207. package/dist/lib/plugins/openapi/client/useCreateQuery.js +15 -0
  208. package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -0
  209. package/dist/lib/plugins/openapi/client/worker.d.ts +4 -1
  210. package/dist/lib/plugins/openapi/client/worker.js +23 -14
  211. package/dist/lib/plugins/openapi/client/worker.js.map +1 -1
  212. package/dist/lib/plugins/openapi/graphql/fragment-masking.d.ts +3 -3
  213. package/dist/lib/plugins/openapi/graphql/fragment-masking.js +3 -4
  214. package/dist/lib/plugins/openapi/graphql/fragment-masking.js.map +1 -1
  215. package/dist/lib/plugins/openapi/graphql/gql.d.ts +5 -51
  216. package/dist/lib/plugins/openapi/graphql/gql.js +5 -3
  217. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  218. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +34 -8
  219. package/dist/lib/plugins/openapi/graphql/graphql.js +195 -662
  220. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  221. package/dist/lib/plugins/openapi/index.d.ts +2 -2
  222. package/dist/lib/plugins/openapi/index.js +40 -53
  223. package/dist/lib/plugins/openapi/index.js.map +1 -1
  224. package/dist/lib/plugins/openapi/interfaces.d.ts +1 -1
  225. package/dist/lib/plugins/openapi/playground/PathParams.js +1 -1
  226. package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
  227. package/dist/lib/plugins/openapi/playground/Playground.js +2 -1
  228. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  229. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
  230. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
  231. package/dist/lib/plugins/openapi/post-processors/removeExtensions.d.ts +6 -0
  232. package/dist/lib/plugins/openapi/post-processors/removeExtensions.js +14 -0
  233. package/dist/lib/plugins/openapi/post-processors/removeExtensions.js.map +1 -0
  234. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.d.ts +1 -0
  235. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js +125 -0
  236. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js.map +1 -0
  237. package/dist/lib/plugins/openapi/post-processors/removePaths.d.ts +11 -0
  238. package/dist/lib/plugins/openapi/post-processors/removePaths.js +33 -0
  239. package/dist/lib/plugins/openapi/post-processors/removePaths.js.map +1 -0
  240. package/dist/lib/plugins/openapi/post-processors/removePaths.test.d.ts +1 -0
  241. package/dist/lib/plugins/openapi/post-processors/removePaths.test.js +104 -0
  242. package/dist/lib/plugins/openapi/post-processors/removePaths.test.js.map +1 -0
  243. package/dist/lib/plugins/openapi/post-processors/traverse.d.ts +1 -0
  244. package/dist/lib/plugins/openapi/post-processors/traverse.js +2 -0
  245. package/dist/lib/plugins/openapi/post-processors/traverse.js.map +1 -0
  246. package/dist/lib/plugins/openapi/schema/SchemaView.js +2 -1
  247. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  248. package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +0 -1
  249. package/dist/lib/plugins/openapi/util/generateSchemaExample.js +25 -36
  250. package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
  251. package/dist/lib/plugins/openapi-worker.d.ts +1 -1
  252. package/dist/lib/plugins/openapi-worker.js +7 -1
  253. package/dist/lib/plugins/openapi-worker.js.map +1 -1
  254. package/dist/lib/plugins/redirect/index.d.ts +4 -7
  255. package/dist/lib/plugins/redirect/index.js +1 -1
  256. package/dist/lib/plugins/redirect/index.js.map +1 -1
  257. package/dist/lib/plugins/search-inkeep/index.d.ts +24 -5
  258. package/dist/lib/plugins/search-inkeep/index.js +27 -5
  259. package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
  260. package/dist/lib/plugins/search-inkeep/inkeep.d.ts +3 -4
  261. package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
  262. package/dist/lib/ui/Accordion.d.ts +7 -0
  263. package/dist/lib/ui/Accordion.js +14 -0
  264. package/dist/lib/ui/Accordion.js.map +1 -0
  265. package/dist/lib/ui/ActionButton.d.ts +4 -0
  266. package/dist/lib/ui/ActionButton.js +10 -0
  267. package/dist/lib/ui/ActionButton.js.map +1 -0
  268. package/dist/lib/ui/Alert.d.ts +8 -0
  269. package/dist/lib/ui/Alert.js +23 -0
  270. package/dist/lib/ui/Alert.js.map +1 -0
  271. package/dist/lib/ui/AlertDialog.d.ts +20 -0
  272. package/dist/lib/ui/AlertDialog.js +27 -0
  273. package/dist/lib/ui/AlertDialog.js.map +1 -0
  274. package/dist/lib/ui/AspectRatio.d.ts +3 -0
  275. package/dist/lib/ui/AspectRatio.js +4 -0
  276. package/dist/lib/ui/AspectRatio.js.map +1 -0
  277. package/dist/lib/ui/Badge.d.ts +9 -0
  278. package/dist/lib/ui/Badge.js +21 -0
  279. package/dist/lib/ui/Badge.js.map +1 -0
  280. package/dist/lib/ui/Breadcrumb.d.ts +19 -0
  281. package/dist/lib/ui/Breadcrumb.js +24 -0
  282. package/dist/lib/ui/Breadcrumb.js.map +1 -0
  283. package/dist/lib/ui/Button.d.ts +2 -3
  284. package/dist/lib/ui/Button.js +1 -1
  285. package/dist/lib/ui/Button.js.map +1 -1
  286. package/dist/lib/ui/Carousel.d.ts +18 -0
  287. package/dist/lib/ui/Carousel.js +99 -0
  288. package/dist/lib/ui/Carousel.js.map +1 -0
  289. package/dist/lib/ui/Checkbox.d.ts +4 -0
  290. package/dist/lib/ui/Checkbox.js +9 -0
  291. package/dist/lib/ui/Checkbox.js.map +1 -0
  292. package/dist/lib/ui/Collapsible.d.ts +5 -0
  293. package/dist/lib/ui/Collapsible.js +6 -0
  294. package/dist/lib/ui/Collapsible.js.map +1 -0
  295. package/dist/lib/ui/Command.d.ts +80 -0
  296. package/dist/lib/ui/Command.js +31 -0
  297. package/dist/lib/ui/Command.js.map +1 -0
  298. package/dist/lib/{components → ui}/Dialog.js +2 -2
  299. package/dist/lib/ui/Dialog.js.map +1 -0
  300. package/dist/lib/ui/Form.d.ts +23 -0
  301. package/dist/lib/ui/Form.js +63 -0
  302. package/dist/lib/ui/Form.js.map +1 -0
  303. package/dist/lib/ui/HoverCard.d.ts +6 -0
  304. package/dist/lib/ui/HoverCard.js +10 -0
  305. package/dist/lib/ui/HoverCard.js.map +1 -0
  306. package/dist/lib/ui/Label.d.ts +5 -0
  307. package/dist/lib/ui/Label.js +10 -0
  308. package/dist/lib/ui/Label.js.map +1 -0
  309. package/dist/lib/ui/Pagination.d.ts +28 -0
  310. package/dist/lib/ui/Pagination.js +24 -0
  311. package/dist/lib/ui/Pagination.js.map +1 -0
  312. package/dist/lib/ui/Popover.d.ts +6 -0
  313. package/dist/lib/ui/Popover.js +10 -0
  314. package/dist/lib/ui/Popover.js.map +1 -0
  315. package/dist/lib/ui/Progress.d.ts +4 -0
  316. package/dist/lib/ui/Progress.js +8 -0
  317. package/dist/lib/ui/Progress.js.map +1 -0
  318. package/dist/lib/ui/RadioGroup.d.ts +5 -0
  319. package/dist/lib/ui/RadioGroup.js +15 -0
  320. package/dist/lib/ui/RadioGroup.js.map +1 -0
  321. package/dist/lib/ui/ScrollArea.d.ts +5 -0
  322. package/dist/lib/ui/ScrollArea.js +12 -0
  323. package/dist/lib/ui/ScrollArea.js.map +1 -0
  324. package/dist/lib/ui/Select.js.map +1 -0
  325. package/dist/lib/ui/Skeleton.d.ts +2 -0
  326. package/dist/lib/ui/Skeleton.js +7 -0
  327. package/dist/lib/ui/Skeleton.js.map +1 -0
  328. package/dist/lib/ui/Slider.d.ts +4 -0
  329. package/dist/lib/ui/Slider.js +8 -0
  330. package/dist/lib/ui/Slider.js.map +1 -0
  331. package/dist/lib/ui/Switch.d.ts +4 -0
  332. package/dist/lib/ui/Switch.js +8 -0
  333. package/dist/lib/ui/Switch.js.map +1 -0
  334. package/dist/lib/ui/Textarea.d.ts +4 -0
  335. package/dist/lib/ui/Textarea.js +9 -0
  336. package/dist/lib/ui/Textarea.js.map +1 -0
  337. package/dist/lib/ui/Toggle.d.ts +12 -0
  338. package/dist/lib/ui/Toggle.js +26 -0
  339. package/dist/lib/ui/Toggle.js.map +1 -0
  340. package/dist/lib/ui/ToggleGroup.d.ts +12 -0
  341. package/dist/lib/ui/ToggleGroup.js +21 -0
  342. package/dist/lib/ui/ToggleGroup.js.map +1 -0
  343. package/dist/lib/ui/Tooltip.d.ts +7 -0
  344. package/dist/lib/ui/Tooltip.js +11 -0
  345. package/dist/lib/ui/Tooltip.js.map +1 -0
  346. package/dist/lib/util/MdxComponents.d.ts +3 -4
  347. package/dist/lib/util/MdxComponents.js.map +1 -1
  348. package/dist/lib/util/invariant.d.ts +9 -0
  349. package/dist/lib/util/invariant.js +7 -3
  350. package/dist/lib/util/invariant.js.map +1 -1
  351. package/dist/lib/util/traverse.d.ts +2 -0
  352. package/dist/lib/util/traverse.js +18 -0
  353. package/dist/lib/util/traverse.js.map +1 -0
  354. package/dist/lib/util/useExposedProps.d.ts +2 -0
  355. package/dist/lib/util/useExposedProps.js +9 -0
  356. package/dist/lib/util/useExposedProps.js.map +1 -0
  357. package/dist/lib/util/useIsomorphicLayoutEffect.d.ts +3 -0
  358. package/dist/lib/util/useIsomorphicLayoutEffect.js +4 -0
  359. package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -0
  360. package/dist/lib/util/useOnScreen.d.ts +4 -0
  361. package/dist/lib/util/useOnScreen.js +19 -0
  362. package/dist/lib/util/useOnScreen.js.map +1 -0
  363. package/dist/vite/build.js +19 -3
  364. package/dist/vite/build.js.map +1 -1
  365. package/dist/vite/config.d.ts +6 -10
  366. package/dist/vite/config.js +71 -68
  367. package/dist/vite/config.js.map +1 -1
  368. package/dist/vite/config.test.js +7 -5
  369. package/dist/vite/config.test.js.map +1 -1
  370. package/dist/vite/dev-server.js +13 -4
  371. package/dist/vite/dev-server.js.map +1 -1
  372. package/dist/vite/html.js +0 -2
  373. package/dist/vite/html.js.map +1 -1
  374. package/dist/vite/output.d.ts +101 -0
  375. package/dist/vite/output.js +62 -0
  376. package/dist/vite/output.js.map +1 -0
  377. package/dist/vite/plugin-api.js +67 -20
  378. package/dist/vite/plugin-api.js.map +1 -1
  379. package/dist/vite/plugin-component.js +17 -11
  380. package/dist/vite/plugin-component.js.map +1 -1
  381. package/dist/vite/plugin-config-reload.d.ts +1 -2
  382. package/dist/vite/plugin-config-reload.js +0 -2
  383. package/dist/vite/plugin-config-reload.js.map +1 -1
  384. package/dist/vite/plugin-config.d.ts +2 -3
  385. package/dist/vite/plugin-config.js +22 -3
  386. package/dist/vite/plugin-config.js.map +1 -1
  387. package/dist/vite/plugin-docs.js +27 -21
  388. package/dist/vite/plugin-docs.js.map +1 -1
  389. package/dist/vite/plugin-docs.test.js +15 -23
  390. package/dist/vite/plugin-docs.test.js.map +1 -1
  391. package/dist/vite/plugin-frontmatter.d.ts +2 -1
  392. package/dist/vite/plugin-frontmatter.js +27 -24
  393. package/dist/vite/plugin-frontmatter.js.map +1 -1
  394. package/dist/vite/plugin-mdx.d.ts +0 -6
  395. package/dist/vite/plugin-mdx.js +78 -6
  396. package/dist/vite/plugin-mdx.js.map +1 -1
  397. package/dist/vite/plugin-search.d.ts +3 -0
  398. package/dist/vite/plugin-search.js +26 -0
  399. package/dist/vite/plugin-search.js.map +1 -0
  400. package/dist/vite/plugin-sidebar.js +4 -6
  401. package/dist/vite/plugin-sidebar.js.map +1 -1
  402. package/dist/vite/{plugin-custom-css.d.ts → plugin-theme-css.d.ts} +2 -2
  403. package/dist/vite/{plugin-custom-css.js → plugin-theme-css.js} +10 -3
  404. package/dist/vite/plugin-theme-css.js.map +1 -0
  405. package/dist/vite/plugin.d.ts +1 -2
  406. package/dist/vite/plugin.js +6 -6
  407. package/dist/vite/plugin.js.map +1 -1
  408. package/dist/vite/prerender.d.ts +2 -1
  409. package/dist/vite/prerender.js +4 -3
  410. package/dist/vite/prerender.js.map +1 -1
  411. package/dist/vite/remarkStaticGeneration.d.ts +3 -0
  412. package/dist/vite/remarkStaticGeneration.js +125 -0
  413. package/dist/vite/remarkStaticGeneration.js.map +1 -0
  414. package/dist/vite/sitemap.d.ts +1 -1
  415. package/dist/zuplo/env.d.ts +6 -0
  416. package/dist/zuplo/env.js +9 -0
  417. package/dist/zuplo/env.js.map +1 -0
  418. package/dist/zuplo/with-zuplo.d.ts +3 -0
  419. package/dist/zuplo/with-zuplo.js +28 -0
  420. package/dist/zuplo/with-zuplo.js.map +1 -0
  421. package/lib/AnchorLink-BR0MvI7n.js +35 -0
  422. package/lib/AnchorLink-BR0MvI7n.js.map +1 -0
  423. package/lib/AuthenticationPlugin-D0Em0SwR.js +59 -0
  424. package/lib/{AuthenticationPlugin-Cnqy9csQ.js.map → AuthenticationPlugin-D0Em0SwR.js.map} +1 -1
  425. package/lib/Button-jK0EsymC.js +48 -0
  426. package/lib/Button-jK0EsymC.js.map +1 -0
  427. package/lib/{CategoryHeading-C7VfgpFZ.js → CategoryHeading-Bb9dqxD3.js} +4 -4
  428. package/lib/{CategoryHeading-C7VfgpFZ.js.map → CategoryHeading-Bb9dqxD3.js.map} +1 -1
  429. package/lib/ClientOnly-E7hGysn1.js +11 -0
  430. package/lib/ClientOnly-E7hGysn1.js.map +1 -0
  431. package/lib/Dialog-k70Qfukb.js +67 -0
  432. package/lib/Dialog-k70Qfukb.js.map +1 -0
  433. package/lib/Markdown-CRsmPPfY.js +15180 -0
  434. package/lib/Markdown-CRsmPPfY.js.map +1 -0
  435. package/lib/MdxPage-Wp8QU0-q.js +188 -0
  436. package/lib/MdxPage-Wp8QU0-q.js.map +1 -0
  437. package/lib/OperationList-u8xHU9-b.js +4706 -0
  438. package/lib/OperationList-u8xHU9-b.js.map +1 -0
  439. package/lib/Route-DlG_HTMu.js +11 -0
  440. package/lib/Route-DlG_HTMu.js.map +1 -0
  441. package/lib/Select-O9ZM3ZgX.js +223 -0
  442. package/lib/Select-O9ZM3ZgX.js.map +1 -0
  443. package/lib/SidebarBadge-DxFJcJ6V.js +51 -0
  444. package/lib/SidebarBadge-DxFJcJ6V.js.map +1 -0
  445. package/lib/SlotletProvider-BgvYIPQe.js +252 -0
  446. package/lib/SlotletProvider-BgvYIPQe.js.map +1 -0
  447. package/lib/SyntaxHighlight-C31iouiO.js +2981 -0
  448. package/lib/SyntaxHighlight-C31iouiO.js.map +1 -0
  449. package/lib/_commonjsHelpers-BkfeUUK-.js +29 -0
  450. package/lib/_commonjsHelpers-BkfeUUK-.js.map +1 -0
  451. package/lib/assets/{worker-DaFlmuyf.js → worker-C_2va8B8.js} +2591 -2502
  452. package/lib/assets/worker-C_2va8B8.js.map +1 -0
  453. package/lib/cn-BmFQLtkS.js +2279 -0
  454. package/lib/cn-BmFQLtkS.js.map +1 -0
  455. package/lib/context-D1nXWxm7.js +22 -0
  456. package/lib/context-D1nXWxm7.js.map +1 -0
  457. package/lib/createServer-BCAHdrpE.js +15302 -0
  458. package/lib/createServer-BCAHdrpE.js.map +1 -0
  459. package/lib/hook-hEqe7fPB.js +227 -0
  460. package/lib/hook-hEqe7fPB.js.map +1 -0
  461. package/lib/index-Bn6Lc9tq.js +9 -0
  462. package/lib/{index-DJqnphbT.js.map → index-Bn6Lc9tq.js.map} +1 -1
  463. package/lib/index-BuAyrJe3.js +46 -0
  464. package/lib/index-BuAyrJe3.js.map +1 -0
  465. package/lib/index-CmdLGbbk.js +1279 -0
  466. package/lib/index-CmdLGbbk.js.map +1 -0
  467. package/lib/index-Czzd9rjU.js +899 -0
  468. package/lib/index-Czzd9rjU.js.map +1 -0
  469. package/lib/{index-D06ATMgg.js → index-LNp6rxyU.js} +2 -2
  470. package/lib/{index-D06ATMgg.js.map → index-LNp6rxyU.js.map} +1 -1
  471. package/lib/index-Yn8c3UWE.js +921 -0
  472. package/lib/index-Yn8c3UWE.js.map +1 -0
  473. package/lib/{AnchorLink-DovtSBJk.js → index.esm-Bm8pj-bc.js} +223 -253
  474. package/lib/index.esm-Bm8pj-bc.js.map +1 -0
  475. package/lib/index.esm-C5mr_sKO.js +1193 -0
  476. package/lib/index.esm-C5mr_sKO.js.map +1 -0
  477. package/lib/invariant-Caa8-XvF.js +26 -0
  478. package/lib/invariant-Caa8-XvF.js.map +1 -0
  479. package/lib/object_hash-CvlLgU-M.js +785 -0
  480. package/lib/object_hash-CvlLgU-M.js.map +1 -0
  481. package/lib/post-processors/removeExtensions.js +11 -0
  482. package/lib/post-processors/removeExtensions.js.map +1 -0
  483. package/lib/post-processors/removePaths.js +28 -0
  484. package/lib/post-processors/removePaths.js.map +1 -0
  485. package/lib/post-processors/traverse.js +12 -0
  486. package/lib/post-processors/traverse.js.map +1 -0
  487. package/lib/{router-Oe6YmY6B.js → router-lfyopgBI.js} +23 -23
  488. package/lib/{router-Oe6YmY6B.js.map → router-lfyopgBI.js.map} +1 -1
  489. package/lib/state-tsXBLONe.js +203 -0
  490. package/lib/{state-CsuHT8ZO.js.map → state-tsXBLONe.js.map} +1 -1
  491. package/lib/ui/Accordion.js +47 -0
  492. package/lib/ui/Accordion.js.map +1 -0
  493. package/lib/ui/ActionButton.js +25 -0
  494. package/lib/ui/ActionButton.js.map +1 -0
  495. package/lib/ui/Alert.js +51 -0
  496. package/lib/ui/Alert.js.map +1 -0
  497. package/lib/ui/AlertDialog.js +114 -0
  498. package/lib/ui/AlertDialog.js.map +1 -0
  499. package/lib/ui/AspectRatio.js +6 -0
  500. package/lib/ui/AspectRatio.js.map +1 -0
  501. package/lib/ui/Badge.js +27 -0
  502. package/lib/ui/Badge.js.map +1 -0
  503. package/lib/ui/Breadcrumb.js +94 -0
  504. package/lib/ui/Breadcrumb.js.map +1 -0
  505. package/lib/ui/Button.js +49 -0
  506. package/lib/ui/Button.js.map +1 -0
  507. package/lib/ui/Callout.js +77 -0
  508. package/lib/ui/Callout.js.map +1 -0
  509. package/lib/ui/Card.js +62 -0
  510. package/lib/ui/Card.js.map +1 -0
  511. package/lib/ui/Carousel.js +1410 -0
  512. package/lib/ui/Carousel.js.map +1 -0
  513. package/lib/ui/Checkbox.js +28 -0
  514. package/lib/ui/Checkbox.js.map +1 -0
  515. package/lib/ui/Collapsible.js +8 -0
  516. package/lib/ui/Collapsible.js.map +1 -0
  517. package/lib/ui/Command.js +550 -0
  518. package/lib/ui/Command.js.map +1 -0
  519. package/lib/ui/Dialog.js +101 -0
  520. package/lib/ui/Dialog.js.map +1 -0
  521. package/lib/ui/Drawer.js +1153 -0
  522. package/lib/ui/Drawer.js.map +1 -0
  523. package/lib/ui/DropdownMenu.js +145 -0
  524. package/lib/ui/DropdownMenu.js.map +1 -0
  525. package/lib/ui/Form.js +95 -0
  526. package/lib/ui/Form.js.map +1 -0
  527. package/lib/ui/HoverCard.js +24 -0
  528. package/lib/ui/HoverCard.js.map +1 -0
  529. package/lib/ui/Input.js +22 -0
  530. package/lib/ui/Input.js.map +1 -0
  531. package/lib/ui/Label.js +20 -0
  532. package/lib/ui/Label.js.map +1 -0
  533. package/lib/ui/Pagination.js +106 -0
  534. package/lib/ui/Pagination.js.map +1 -0
  535. package/lib/ui/Popover.js +24 -0
  536. package/lib/ui/Popover.js.map +1 -0
  537. package/lib/ui/Progress.js +27 -0
  538. package/lib/ui/Progress.js.map +1 -0
  539. package/lib/ui/RadioGroup.js +32 -0
  540. package/lib/ui/RadioGroup.js.map +1 -0
  541. package/lib/ui/ScrollArea.js +39 -0
  542. package/lib/ui/ScrollArea.js.map +1 -0
  543. package/lib/ui/Select.js +122 -0
  544. package/lib/ui/Select.js.map +1 -0
  545. package/lib/ui/Skeleton.js +18 -0
  546. package/lib/ui/Skeleton.js.map +1 -0
  547. package/lib/ui/Slider.js +24 -0
  548. package/lib/ui/Slider.js.map +1 -0
  549. package/lib/ui/Switch.js +28 -0
  550. package/lib/ui/Switch.js.map +1 -0
  551. package/lib/ui/Tabs.js +47 -0
  552. package/lib/ui/Tabs.js.map +1 -0
  553. package/lib/ui/Textarea.js +21 -0
  554. package/lib/ui/Textarea.js.map +1 -0
  555. package/lib/ui/Toggle.js +38 -0
  556. package/lib/ui/Toggle.js.map +1 -0
  557. package/lib/ui/ToggleGroup.js +42 -0
  558. package/lib/ui/ToggleGroup.js.map +1 -0
  559. package/lib/ui/Tooltip.js +24 -0
  560. package/lib/ui/Tooltip.js.map +1 -0
  561. package/lib/useExposedProps-CTPtylCV.js +10 -0
  562. package/lib/useExposedProps-CTPtylCV.js.map +1 -0
  563. package/lib/{ZudokuContext-DSipF8sq.js → utils-DcpDOncX.js} +244 -248
  564. package/lib/utils-DcpDOncX.js.map +1 -0
  565. package/lib/zudoku.auth-auth0.js +24 -18
  566. package/lib/zudoku.auth-auth0.js.map +1 -1
  567. package/lib/zudoku.auth-clerk.js +2 -2
  568. package/lib/zudoku.auth-openid.js +506 -521
  569. package/lib/zudoku.auth-openid.js.map +1 -1
  570. package/lib/zudoku.components.js +1214 -3002
  571. package/lib/zudoku.components.js.map +1 -1
  572. package/lib/zudoku.openapi-worker.js +10 -16250
  573. package/lib/zudoku.openapi-worker.js.map +1 -1
  574. package/lib/zudoku.plugin-api-catalog.js +121 -0
  575. package/lib/zudoku.plugin-api-catalog.js.map +1 -0
  576. package/lib/zudoku.plugin-api-keys.js +72 -77
  577. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  578. package/lib/zudoku.plugin-custom-pages.js +17 -8
  579. package/lib/zudoku.plugin-custom-pages.js.map +1 -1
  580. package/lib/zudoku.plugin-markdown.js +15 -14
  581. package/lib/zudoku.plugin-markdown.js.map +1 -1
  582. package/lib/zudoku.plugin-openapi.js +6 -10
  583. package/lib/zudoku.plugin-openapi.js.map +1 -1
  584. package/lib/zudoku.plugin-redirect.js +2 -2
  585. package/lib/zudoku.plugin-redirect.js.map +1 -1
  586. package/lib/zudoku.plugin-search-inkeep.js +44 -27
  587. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  588. package/package.json +72 -17
  589. package/src/app/demo.tsx +0 -3
  590. package/src/app/entry.client.tsx +29 -0
  591. package/src/app/entry.server.tsx +60 -53
  592. package/src/app/main.css +1 -2
  593. package/src/app/main.tsx +12 -10
  594. package/src/app/sentry.ts +24 -0
  595. package/src/app/standalone.tsx +0 -3
  596. package/src/app/tailwind.ts +67 -52
  597. package/src/lib/authentication/AuthenticationPlugin.tsx +4 -1
  598. package/src/lib/authentication/authentication.ts +3 -3
  599. package/src/lib/authentication/components/CallbackHandler.tsx +20 -51
  600. package/src/lib/authentication/hook.ts +1 -3
  601. package/src/lib/authentication/providers/auth0.tsx +17 -11
  602. package/src/lib/authentication/providers/openid.tsx +18 -31
  603. package/src/lib/authentication/state.ts +50 -9
  604. package/{LICENSE.md → src/lib/authentication/use-broadcast/LICENSE.md} +2 -2
  605. package/src/lib/authentication/use-broadcast/shared.ts +372 -0
  606. package/src/lib/authentication/use-broadcast/useBroadcast.ts +146 -0
  607. package/src/lib/components/Bootstrap.tsx +36 -14
  608. package/src/lib/components/ClientOnly.tsx +6 -3
  609. package/src/lib/components/DeveloperHint.tsx +6 -1
  610. package/src/lib/components/Header.tsx +79 -44
  611. package/src/lib/components/Heading.tsx +13 -13
  612. package/src/lib/components/Layout.tsx +54 -37
  613. package/src/lib/components/Markdown.tsx +1 -1
  614. package/src/lib/components/MobileTopNavigation.tsx +30 -27
  615. package/src/lib/components/ReactMarkdown.license.txt +21 -0
  616. package/src/lib/components/ReactMarkdown.tsx +264 -0
  617. package/src/lib/components/Search.tsx +4 -4
  618. package/src/lib/components/SlotletProvider.tsx +16 -7
  619. package/src/lib/components/SyntaxHighlight.tsx +85 -50
  620. package/src/lib/components/ThemeSwitch.tsx +26 -0
  621. package/src/lib/components/TopNavigation.tsx +40 -19
  622. package/src/lib/components/Zudoku.tsx +108 -0
  623. package/src/lib/components/context/ZudokuContext.ts +11 -16
  624. package/src/lib/components/context/ZudokuProvider.tsx +2 -2
  625. package/src/lib/components/index.ts +14 -6
  626. package/src/lib/components/navigation/Sidebar.tsx +20 -10
  627. package/src/lib/components/navigation/SidebarCategory.tsx +38 -29
  628. package/src/lib/components/navigation/SidebarItem.tsx +22 -26
  629. package/src/lib/components/navigation/SidebarWrapper.tsx +1 -1
  630. package/src/lib/components/navigation/utils.ts +2 -2
  631. package/src/lib/core/{DevPortalContext.ts → ZudokuContext.ts} +4 -12
  632. package/src/lib/core/plugins.ts +20 -16
  633. package/src/lib/errors/ErrorAlert.tsx +20 -6
  634. package/src/lib/oas/graphql/index.ts +8 -5
  635. package/src/lib/oas/parser/upgrade/index.ts +3 -24
  636. package/src/lib/plugins/api-catalog/Catalog.tsx +124 -0
  637. package/src/lib/plugins/api-catalog/index.tsx +50 -0
  638. package/src/lib/plugins/api-keys/CreateApiKey.tsx +2 -2
  639. package/src/lib/plugins/api-keys/index.tsx +12 -9
  640. package/src/lib/plugins/custom-pages/CustomPage.tsx +18 -0
  641. package/src/lib/plugins/custom-pages/index.tsx +13 -11
  642. package/src/lib/plugins/markdown/MdxPage.tsx +37 -9
  643. package/src/lib/plugins/markdown/index.tsx +5 -3
  644. package/src/lib/plugins/markdown/resolver.ts +2 -4
  645. package/src/lib/plugins/openapi/CollapsibleCode.tsx +80 -0
  646. package/src/lib/plugins/openapi/ColorizedParam.tsx +23 -14
  647. package/src/lib/plugins/openapi/Endpoint.tsx +5 -10
  648. package/src/lib/plugins/openapi/OperationList.tsx +78 -37
  649. package/src/lib/plugins/openapi/ParameterListItem.tsx +37 -31
  650. package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +18 -13
  651. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +17 -12
  652. package/src/lib/plugins/openapi/Route.tsx +11 -12
  653. package/src/lib/plugins/openapi/Sidecar.tsx +73 -59
  654. package/src/lib/plugins/openapi/client/GraphQLClient.tsx +157 -0
  655. package/src/lib/plugins/openapi/client/GraphQLContext.tsx +16 -0
  656. package/src/lib/plugins/openapi/client/createServer.ts +2 -0
  657. package/src/lib/plugins/openapi/client/useCreateQuery.ts +21 -0
  658. package/src/lib/plugins/openapi/client/worker.ts +38 -24
  659. package/src/lib/plugins/openapi/graphql/fragment-masking.ts +11 -18
  660. package/src/lib/plugins/openapi/graphql/gql.ts +12 -29
  661. package/src/lib/plugins/openapi/graphql/graphql.ts +236 -665
  662. package/src/lib/plugins/openapi/index.tsx +42 -67
  663. package/src/lib/plugins/openapi/interfaces.ts +1 -1
  664. package/src/lib/plugins/openapi/playground/PathParams.tsx +1 -0
  665. package/src/lib/plugins/openapi/playground/Playground.tsx +4 -3
  666. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +1 -1
  667. package/src/lib/plugins/openapi/post-processors/removeExtensions.test.ts +144 -0
  668. package/src/lib/plugins/openapi/post-processors/removeExtensions.ts +24 -0
  669. package/src/lib/plugins/openapi/post-processors/removePaths.test.ts +126 -0
  670. package/src/lib/plugins/openapi/post-processors/removePaths.ts +55 -0
  671. package/src/lib/plugins/openapi/post-processors/traverse.ts +1 -0
  672. package/src/lib/plugins/openapi/schema/SchemaView.tsx +5 -2
  673. package/src/lib/plugins/openapi/util/generateSchemaExample.ts +28 -42
  674. package/src/lib/plugins/openapi-worker.ts +11 -1
  675. package/src/lib/plugins/redirect/index.tsx +5 -9
  676. package/src/lib/plugins/search-inkeep/index.tsx +61 -25
  677. package/src/lib/plugins/search-inkeep/inkeep.ts +3 -9
  678. package/src/lib/ui/Accordion.tsx +56 -0
  679. package/src/lib/ui/ActionButton.tsx +28 -0
  680. package/src/lib/ui/{Note.tsx → Alert.tsx} +11 -10
  681. package/src/lib/ui/AlertDialog.tsx +139 -0
  682. package/src/lib/ui/AspectRatio.tsx +5 -0
  683. package/src/lib/ui/Badge.tsx +36 -0
  684. package/src/lib/ui/Breadcrumb.tsx +115 -0
  685. package/src/lib/ui/Button.tsx +1 -1
  686. package/src/lib/ui/Carousel.tsx +260 -0
  687. package/src/lib/ui/Checkbox.tsx +28 -0
  688. package/src/lib/ui/Collapsible.tsx +9 -0
  689. package/src/lib/ui/Command.tsx +151 -0
  690. package/src/lib/{components → ui}/Dialog.tsx +4 -3
  691. package/src/lib/ui/Form.tsx +177 -0
  692. package/src/lib/ui/HoverCard.tsx +27 -0
  693. package/src/lib/ui/Label.tsx +24 -0
  694. package/src/lib/ui/Pagination.tsx +117 -0
  695. package/src/lib/ui/Popover.tsx +29 -0
  696. package/src/lib/ui/Progress.tsx +26 -0
  697. package/src/lib/ui/RadioGroup.tsx +42 -0
  698. package/src/lib/ui/ScrollArea.tsx +46 -0
  699. package/src/lib/ui/Skeleton.tsx +15 -0
  700. package/src/lib/ui/Slider.tsx +26 -0
  701. package/src/lib/ui/Switch.tsx +27 -0
  702. package/src/lib/ui/Textarea.tsx +23 -0
  703. package/src/lib/ui/Toggle.tsx +43 -0
  704. package/src/lib/ui/ToggleGroup.tsx +59 -0
  705. package/src/lib/ui/Tooltip.tsx +28 -0
  706. package/src/lib/util/MdxComponents.tsx +2 -6
  707. package/src/lib/util/invariant.ts +15 -3
  708. package/src/lib/util/traverse.ts +25 -0
  709. package/src/lib/util/useExposedProps.tsx +16 -0
  710. package/src/lib/util/useIsomorphicLayoutEffect.ts +5 -0
  711. package/src/lib/util/useOnScreen.ts +32 -0
  712. package/dist/internal.d.ts +0 -1
  713. package/dist/internal.js +0 -2
  714. package/dist/internal.js.map +0 -1
  715. package/dist/lib/components/DevPortal.js.map +0 -1
  716. package/dist/lib/components/Dialog.js.map +0 -1
  717. package/dist/lib/components/Select.js.map +0 -1
  718. package/dist/lib/components/context/ThemeContext.d.ts +0 -2
  719. package/dist/lib/components/context/ThemeContext.js +0 -7
  720. package/dist/lib/components/context/ThemeContext.js.map +0 -1
  721. package/dist/lib/components/context/ThemeProvider.d.ts +0 -4
  722. package/dist/lib/components/context/ThemeProvider.js +0 -23
  723. package/dist/lib/components/context/ThemeProvider.js.map +0 -1
  724. package/dist/lib/core/DevPortalContext.js.map +0 -1
  725. package/dist/lib/plugins/openapi/client/createMemoryClient.d.ts +0 -12
  726. package/dist/lib/plugins/openapi/client/createMemoryClient.js +0 -46
  727. package/dist/lib/plugins/openapi/client/createMemoryClient.js.map +0 -1
  728. package/dist/lib/plugins/openapi/client/createWorkerClient.d.ts +0 -10
  729. package/dist/lib/plugins/openapi/client/createWorkerClient.js +0 -61
  730. package/dist/lib/plugins/openapi/client/createWorkerClient.js.map +0 -1
  731. package/dist/lib/plugins/openapi/client/interfaces.d.ts +0 -4
  732. package/dist/lib/plugins/openapi/client/interfaces.js +0 -2
  733. package/dist/lib/plugins/openapi/client/interfaces.js.map +0 -1
  734. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.d.ts +0 -2
  735. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js +0 -3
  736. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js.map +0 -1
  737. package/dist/lib/themeToggle.d.ts +0 -1
  738. package/dist/lib/themeToggle.js +0 -7
  739. package/dist/lib/themeToggle.js.map +0 -1
  740. package/dist/lib/ui/Note.d.ts +0 -8
  741. package/dist/lib/ui/Note.js +0 -23
  742. package/dist/lib/ui/Note.js.map +0 -1
  743. package/dist/lib/util/createWaitForNotify.d.ts +0 -1
  744. package/dist/lib/util/createWaitForNotify.js +0 -15
  745. package/dist/lib/util/createWaitForNotify.js.map +0 -1
  746. package/dist/vite/plugin-custom-css.js.map +0 -1
  747. package/dist/vite/plugin-html-transform.d.ts +0 -2
  748. package/dist/vite/plugin-html-transform.js +0 -15
  749. package/dist/vite/plugin-html-transform.js.map +0 -1
  750. package/lib/AnchorLink-DovtSBJk.js.map +0 -1
  751. package/lib/AuthenticationPlugin-Cnqy9csQ.js +0 -55
  752. package/lib/DeveloperHint-CNyuFROc.js +0 -16
  753. package/lib/DeveloperHint-CNyuFROc.js.map +0 -1
  754. package/lib/ErrorPage-CUz-Zzmx.js +0 -16
  755. package/lib/ErrorPage-CUz-Zzmx.js.map +0 -1
  756. package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
  757. package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
  758. package/lib/Input-x-t53FyR.js +0 -2229
  759. package/lib/Input-x-t53FyR.js.map +0 -1
  760. package/lib/Markdown-C-0TaxoY.js +0 -20441
  761. package/lib/Markdown-C-0TaxoY.js.map +0 -1
  762. package/lib/MdxPage-C5I9c7R1.js +0 -173
  763. package/lib/MdxPage-C5I9c7R1.js.map +0 -1
  764. package/lib/OperationList-qsBOguHS.js +0 -601
  765. package/lib/OperationList-qsBOguHS.js.map +0 -1
  766. package/lib/Route-DlKvXPAO.js +0 -13
  767. package/lib/Route-DlKvXPAO.js.map +0 -1
  768. package/lib/SidebarBadge-DaA0-bFW.js +0 -503
  769. package/lib/SidebarBadge-DaA0-bFW.js.map +0 -1
  770. package/lib/SlotletProvider-BGEs7yyu.js +0 -240
  771. package/lib/SlotletProvider-BGEs7yyu.js.map +0 -1
  772. package/lib/ZudokuContext-DSipF8sq.js.map +0 -1
  773. package/lib/assets/worker-DaFlmuyf.js.map +0 -1
  774. package/lib/index-BIl-R3aH.js +0 -5952
  775. package/lib/index-BIl-R3aH.js.map +0 -1
  776. package/lib/index-CKmSo0py.js +0 -124
  777. package/lib/index-CKmSo0py.js.map +0 -1
  778. package/lib/index-DJqnphbT.js +0 -35
  779. package/lib/index-Dssw7Gff.js +0 -2867
  780. package/lib/index-Dssw7Gff.js.map +0 -1
  781. package/lib/index-SrtqdZ3j.js +0 -1781
  782. package/lib/index-SrtqdZ3j.js.map +0 -1
  783. package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
  784. package/lib/prism-markup-templating-DZrrEs0A.js.map +0 -1
  785. package/lib/prism-php.min-o7FpoMP_.js +0 -11
  786. package/lib/prism-php.min-o7FpoMP_.js.map +0 -1
  787. package/lib/state-CsuHT8ZO.js +0 -183
  788. package/lib/urql-core-KJnLL26g.js +0 -1455
  789. package/lib/urql-core-KJnLL26g.js.map +0 -1
  790. package/src/lib/components/DevPortal.tsx +0 -111
  791. package/src/lib/components/context/ThemeContext.tsx +0 -8
  792. package/src/lib/components/context/ThemeProvider.tsx +0 -27
  793. package/src/lib/plugins/openapi/client/createMemoryClient.ts +0 -51
  794. package/src/lib/plugins/openapi/client/createWorkerClient.ts +0 -75
  795. package/src/lib/plugins/openapi/client/interfaces.ts +0 -5
  796. package/src/lib/plugins/search-inkeep/InkeepCustomTrigger.tsx +0 -3
  797. package/src/lib/themeToggle.ts +0 -7
  798. package/src/lib/util/createWaitForNotify.ts +0 -18
  799. /package/dist/lib/{components → ui}/Dialog.d.ts +0 -0
  800. /package/dist/lib/{components → ui}/Select.d.ts +0 -0
  801. /package/dist/lib/{components → ui}/Select.js +0 -0
  802. /package/src/lib/{components → ui}/Select.tsx +0 -0
@@ -1,29 +1,9 @@
1
- var re = Object.defineProperty;
2
- var ne = (e, t, r) => t in e ? re(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
3
- var T = (e, t, r) => ne(e, typeof t != "symbol" ? t + "" : t, r);
4
- import d, { Component as L } from "react";
5
- import { g as F } from "./index-DJqnphbT.js";
6
- import { j as se } from "./jsx-runtime-B6kdoens.js";
7
- import { b as oe, L as ie } from "./index-SrtqdZ3j.js";
8
- const k = {}, X = d.createContext(k);
9
- function ae(e) {
10
- const t = d.useContext(X);
11
- return d.useMemo(
12
- function() {
13
- return typeof e == "function" ? e(t) : { ...t, ...e };
14
- },
15
- [t, e]
16
- );
17
- }
18
- function Ke(e) {
19
- let t;
20
- return e.disableParentContext ? t = typeof e.components == "function" ? e.components(k) : e.components || k : t = ae(e.components), d.createElement(
21
- X.Provider,
22
- { value: t },
23
- e.children
24
- );
25
- }
26
- var le = typeof Element < "u", ce = typeof Map == "function", ue = typeof Set == "function", fe = typeof ArrayBuffer == "function" && !!ArrayBuffer.isView;
1
+ var ee = Object.defineProperty;
2
+ var te = (e, t, r) => t in e ? ee(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
3
+ var y = (e, t, r) => te(e, typeof t != "symbol" ? t + "" : t, r);
4
+ import T, { Component as j } from "react";
5
+ import { g as L } from "./_commonjsHelpers-BkfeUUK-.js";
6
+ var re = typeof Element < "u", ne = typeof Map == "function", se = typeof Set == "function", ie = typeof ArrayBuffer == "function" && !!ArrayBuffer.isView;
27
7
  function x(e, t) {
28
8
  if (e === t) return !0;
29
9
  if (e && t && typeof e == "object" && typeof t == "object") {
@@ -35,22 +15,22 @@ function x(e, t) {
35
15
  if (!x(e[n], t[n])) return !1;
36
16
  return !0;
37
17
  }
38
- var o;
39
- if (ce && e instanceof Map && t instanceof Map) {
18
+ var i;
19
+ if (ne && e instanceof Map && t instanceof Map) {
40
20
  if (e.size !== t.size) return !1;
41
- for (o = e.entries(); !(n = o.next()).done; )
21
+ for (i = e.entries(); !(n = i.next()).done; )
42
22
  if (!t.has(n.value[0])) return !1;
43
- for (o = e.entries(); !(n = o.next()).done; )
23
+ for (i = e.entries(); !(n = i.next()).done; )
44
24
  if (!x(n.value[1], t.get(n.value[0]))) return !1;
45
25
  return !0;
46
26
  }
47
- if (ue && e instanceof Set && t instanceof Set) {
27
+ if (se && e instanceof Set && t instanceof Set) {
48
28
  if (e.size !== t.size) return !1;
49
- for (o = e.entries(); !(n = o.next()).done; )
29
+ for (i = e.entries(); !(n = i.next()).done; )
50
30
  if (!t.has(n.value[0])) return !1;
51
31
  return !0;
52
32
  }
53
- if (fe && ArrayBuffer.isView(e) && ArrayBuffer.isView(t)) {
33
+ if (ie && ArrayBuffer.isView(e) && ArrayBuffer.isView(t)) {
54
34
  if (r = e.length, r != t.length) return !1;
55
35
  for (n = r; n-- !== 0; )
56
36
  if (e[n] !== t[n]) return !1;
@@ -62,7 +42,7 @@ function x(e, t) {
62
42
  if (s = Object.keys(e), r = s.length, r !== Object.keys(t).length) return !1;
63
43
  for (n = r; n-- !== 0; )
64
44
  if (!Object.prototype.hasOwnProperty.call(t, s[n])) return !1;
65
- if (le && e instanceof Element) return !1;
45
+ if (re && e instanceof Element) return !1;
66
46
  for (n = r; n-- !== 0; )
67
47
  if (!((s[n] === "_owner" || s[n] === "__v" || s[n] === "__o") && e.$$typeof) && !x(e[s[n]], t[s[n]]))
68
48
  return !1;
@@ -70,7 +50,7 @@ function x(e, t) {
70
50
  }
71
51
  return e !== e && t !== t;
72
52
  }
73
- var pe = function(t, r) {
53
+ var ae = function(t, r) {
74
54
  try {
75
55
  return x(t, r);
76
56
  } catch (n) {
@@ -79,8 +59,8 @@ var pe = function(t, r) {
79
59
  throw n;
80
60
  }
81
61
  };
82
- const me = /* @__PURE__ */ F(pe);
83
- var de = function(e, t, r, n, s, o, c, i) {
62
+ const oe = /* @__PURE__ */ L(ae);
63
+ var le = function(e, t, r, n, s, i, c, a) {
84
64
  if (process.env.NODE_ENV !== "production" && t === void 0)
85
65
  throw new Error("invariant requires an error message argument");
86
66
  if (!e) {
@@ -90,40 +70,40 @@ var de = function(e, t, r, n, s, o, c, i) {
90
70
  "Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings."
91
71
  );
92
72
  else {
93
- var a = [r, n, s, o, c, i], u = 0;
73
+ var o = [r, n, s, i, c, a], u = 0;
94
74
  l = new Error(
95
75
  t.replace(/%s/g, function() {
96
- return a[u++];
76
+ return o[u++];
97
77
  })
98
78
  ), l.name = "Invariant Violation";
99
79
  }
100
80
  throw l.framesToPop = 1, l;
101
81
  }
102
- }, he = de;
103
- const z = /* @__PURE__ */ F(he);
104
- var ye = function(t, r, n, s) {
105
- var o = n ? n.call(s, t, r) : void 0;
106
- if (o !== void 0)
107
- return !!o;
82
+ }, ce = le;
83
+ const K = /* @__PURE__ */ L(ce);
84
+ var ue = function(t, r, n, s) {
85
+ var i = n ? n.call(s, t, r) : void 0;
86
+ if (i !== void 0)
87
+ return !!i;
108
88
  if (t === r)
109
89
  return !0;
110
90
  if (typeof t != "object" || !t || typeof r != "object" || !r)
111
91
  return !1;
112
- var c = Object.keys(t), i = Object.keys(r);
113
- if (c.length !== i.length)
92
+ var c = Object.keys(t), a = Object.keys(r);
93
+ if (c.length !== a.length)
114
94
  return !1;
115
- for (var l = Object.prototype.hasOwnProperty.bind(r), a = 0; a < c.length; a++) {
116
- var u = c[a];
95
+ for (var l = Object.prototype.hasOwnProperty.bind(r), o = 0; o < c.length; o++) {
96
+ var u = c[o];
117
97
  if (!l(u))
118
98
  return !1;
119
- var f = t[u], h = r[u];
120
- if (o = n ? n.call(s, f, h, u) : void 0, o === !1 || o === void 0 && f !== h)
99
+ var f = t[u], m = r[u];
100
+ if (i = n ? n.call(s, f, m, u) : void 0, i === !1 || i === void 0 && f !== m)
121
101
  return !1;
122
102
  }
123
103
  return !0;
124
104
  };
125
- const Te = /* @__PURE__ */ F(ye);
126
- var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "head", e.HTML = "html", e.LINK = "link", e.META = "meta", e.NOSCRIPT = "noscript", e.SCRIPT = "script", e.STYLE = "style", e.TITLE = "title", e.FRAGMENT = "Symbol(react.fragment)", e))(W || {}), I = {
105
+ const fe = /* @__PURE__ */ L(ue);
106
+ var B = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "head", e.HTML = "html", e.LINK = "link", e.META = "meta", e.NOSCRIPT = "noscript", e.SCRIPT = "script", e.STYLE = "style", e.TITLE = "title", e.FRAGMENT = "Symbol(react.fragment)", e))(B || {}), P = {
127
107
  link: { rel: ["amphtml", "canonical", "alternate"] },
128
108
  script: { type: ["application/ld+json"] },
129
109
  meta: {
@@ -145,7 +125,7 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
145
125
  "twitter:site"
146
126
  ]
147
127
  }
148
- }, N = Object.values(W), U = {
128
+ }, z = Object.values(B), F = {
149
129
  accesskey: "accessKey",
150
130
  charset: "charSet",
151
131
  class: "className",
@@ -154,90 +134,90 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
154
134
  "http-equiv": "httpEquiv",
155
135
  itemprop: "itemProp",
156
136
  tabindex: "tabIndex"
157
- }, ge = Object.entries(U).reduce(
137
+ }, pe = Object.entries(F).reduce(
158
138
  (e, [t, r]) => (e[r] = t, e),
159
139
  {}
160
- ), y = "data-rh", C = {
140
+ ), h = "data-rh", E = {
161
141
  DEFAULT_TITLE: "defaultTitle",
162
142
  DEFER: "defer",
163
143
  ENCODE_SPECIAL_CHARACTERS: "encodeSpecialCharacters",
164
144
  ON_CHANGE_CLIENT_STATE: "onChangeClientState",
165
145
  TITLE_TEMPLATE: "titleTemplate",
166
146
  PRIORITIZE_SEO_TAGS: "prioritizeSeoTags"
167
- }, E = (e, t) => {
147
+ }, b = (e, t) => {
168
148
  for (let r = e.length - 1; r >= 0; r -= 1) {
169
149
  const n = e[r];
170
150
  if (Object.prototype.hasOwnProperty.call(n, t))
171
151
  return n[t];
172
152
  }
173
153
  return null;
174
- }, ve = (e) => {
175
- let t = E(
154
+ }, de = (e) => {
155
+ let t = b(
176
156
  e,
177
157
  "title"
178
158
  /* TITLE */
179
159
  );
180
- const r = E(e, C.TITLE_TEMPLATE);
160
+ const r = b(e, E.TITLE_TEMPLATE);
181
161
  if (Array.isArray(t) && (t = t.join("")), r && t)
182
162
  return r.replace(/%s/g, () => t);
183
- const n = E(e, C.DEFAULT_TITLE);
163
+ const n = b(e, E.DEFAULT_TITLE);
184
164
  return t || n || void 0;
185
- }, Ae = (e) => E(e, C.ON_CHANGE_CLIENT_STATE) || (() => {
186
- }), $ = (e, t) => t.filter((r) => typeof r[e] < "u").map((r) => r[e]).reduce((r, n) => ({ ...r, ...n }), {}), Ce = (e, t) => t.filter((r) => typeof r.base < "u").map((r) => r.base).reverse().reduce((r, n) => {
165
+ }, me = (e) => b(e, E.ON_CHANGE_CLIENT_STATE) || (() => {
166
+ }), I = (e, t) => t.filter((r) => typeof r[e] < "u").map((r) => r[e]).reduce((r, n) => ({ ...r, ...n }), {}), he = (e, t) => t.filter((r) => typeof r.base < "u").map((r) => r.base).reverse().reduce((r, n) => {
187
167
  if (!r.length) {
188
168
  const s = Object.keys(n);
189
- for (let o = 0; o < s.length; o += 1) {
190
- const i = s[o].toLowerCase();
191
- if (e.indexOf(i) !== -1 && n[i])
169
+ for (let i = 0; i < s.length; i += 1) {
170
+ const a = s[i].toLowerCase();
171
+ if (e.indexOf(a) !== -1 && n[a])
192
172
  return r.concat(n);
193
173
  }
194
174
  }
195
175
  return r;
196
- }, []), Ee = (e) => console && typeof console.warn == "function" && console.warn(e), b = (e, t, r) => {
176
+ }, []), ye = (e) => console && typeof console.warn == "function" && console.warn(e), O = (e, t, r) => {
197
177
  const n = {};
198
- return r.filter((s) => Array.isArray(s[e]) ? !0 : (typeof s[e] < "u" && Ee(
178
+ return r.filter((s) => Array.isArray(s[e]) ? !0 : (typeof s[e] < "u" && ye(
199
179
  `Helmet: ${e} should be of type "Array". Instead found type "${typeof s[e]}"`
200
- ), !1)).map((s) => s[e]).reverse().reduce((s, o) => {
180
+ ), !1)).map((s) => s[e]).reverse().reduce((s, i) => {
201
181
  const c = {};
202
- o.filter((l) => {
203
- let a;
182
+ i.filter((l) => {
183
+ let o;
204
184
  const u = Object.keys(l);
205
- for (let h = 0; h < u.length; h += 1) {
206
- const p = u[h], g = p.toLowerCase();
207
- t.indexOf(g) !== -1 && !(a === "rel" && l[a].toLowerCase() === "canonical") && !(g === "rel" && l[g].toLowerCase() === "stylesheet") && (a = g), t.indexOf(p) !== -1 && (p === "innerHTML" || p === "cssText" || p === "itemprop") && (a = p);
185
+ for (let m = 0; m < u.length; m += 1) {
186
+ const p = u[m], g = p.toLowerCase();
187
+ t.indexOf(g) !== -1 && !(o === "rel" && l[o].toLowerCase() === "canonical") && !(g === "rel" && l[g].toLowerCase() === "stylesheet") && (o = g), t.indexOf(p) !== -1 && (p === "innerHTML" || p === "cssText" || p === "itemprop") && (o = p);
208
188
  }
209
- if (!a || !l[a])
189
+ if (!o || !l[o])
210
190
  return !1;
211
- const f = l[a].toLowerCase();
212
- return n[a] || (n[a] = {}), c[a] || (c[a] = {}), n[a][f] ? !1 : (c[a][f] = !0, !0);
191
+ const f = l[o].toLowerCase();
192
+ return n[o] || (n[o] = {}), c[o] || (c[o] = {}), n[o][f] ? !1 : (c[o][f] = !0, !0);
213
193
  }).reverse().forEach((l) => s.push(l));
214
- const i = Object.keys(c);
215
- for (let l = 0; l < i.length; l += 1) {
216
- const a = i[l], u = {
217
- ...n[a],
218
- ...c[a]
194
+ const a = Object.keys(c);
195
+ for (let l = 0; l < a.length; l += 1) {
196
+ const o = a[l], u = {
197
+ ...n[o],
198
+ ...c[o]
219
199
  };
220
- n[a] = u;
200
+ n[o] = u;
221
201
  }
222
202
  return s;
223
203
  }, []).reverse();
224
- }, be = (e, t) => {
204
+ }, Te = (e, t) => {
225
205
  if (Array.isArray(e) && e.length) {
226
206
  for (let r = 0; r < e.length; r += 1)
227
207
  if (e[r][t])
228
208
  return !0;
229
209
  }
230
210
  return !1;
231
- }, Oe = (e) => ({
232
- baseTag: Ce([
211
+ }, ge = (e) => ({
212
+ baseTag: he([
233
213
  "href"
234
214
  /* HREF */
235
215
  ], e),
236
- bodyAttributes: $("bodyAttributes", e),
237
- defer: E(e, C.DEFER),
238
- encode: E(e, C.ENCODE_SPECIAL_CHARACTERS),
239
- htmlAttributes: $("htmlAttributes", e),
240
- linkTags: b(
216
+ bodyAttributes: I("bodyAttributes", e),
217
+ defer: b(e, E.DEFER),
218
+ encode: b(e, E.ENCODE_SPECIAL_CHARACTERS),
219
+ htmlAttributes: I("htmlAttributes", e),
220
+ linkTags: O(
241
221
  "link",
242
222
  [
243
223
  "rel",
@@ -246,7 +226,7 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
246
226
  ],
247
227
  e
248
228
  ),
249
- metaTags: b(
229
+ metaTags: O(
250
230
  "meta",
251
231
  [
252
232
  "name",
@@ -258,12 +238,12 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
258
238
  ],
259
239
  e
260
240
  ),
261
- noscriptTags: b("noscript", [
241
+ noscriptTags: O("noscript", [
262
242
  "innerHTML"
263
243
  /* INNER_HTML */
264
244
  ], e),
265
- onChangeClientState: Ae(e),
266
- scriptTags: b(
245
+ onChangeClientState: me(e),
246
+ scriptTags: O(
267
247
  "script",
268
248
  [
269
249
  "src",
@@ -272,148 +252,148 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
272
252
  ],
273
253
  e
274
254
  ),
275
- styleTags: b("style", [
255
+ styleTags: O("style", [
276
256
  "cssText"
277
257
  /* CSS_TEXT */
278
258
  ], e),
279
- title: ve(e),
280
- titleAttributes: $("titleAttributes", e),
281
- prioritizeSeoTags: be(e, C.PRIORITIZE_SEO_TAGS)
282
- }), Z = (e) => Array.isArray(e) ? e.join("") : e, Se = (e, t) => {
259
+ title: de(e),
260
+ titleAttributes: I("titleAttributes", e),
261
+ prioritizeSeoTags: Te(e, E.PRIORITIZE_SEO_TAGS)
262
+ }), Z = (e) => Array.isArray(e) ? e.join("") : e, ve = (e, t) => {
283
263
  const r = Object.keys(e);
284
264
  for (let n = 0; n < r.length; n += 1)
285
265
  if (t[r[n]] && t[r[n]].includes(e[r[n]]))
286
266
  return !0;
287
267
  return !1;
288
- }, D = (e, t) => Array.isArray(e) ? e.reduce(
289
- (r, n) => (Se(n, t) ? r.priority.push(n) : r.default.push(n), r),
268
+ }, H = (e, t) => Array.isArray(e) ? e.reduce(
269
+ (r, n) => (ve(n, t) ? r.priority.push(n) : r.default.push(n), r),
290
270
  { priority: [], default: [] }
291
- ) : { default: e, priority: [] }, V = (e, t) => ({
271
+ ) : { default: e, priority: [] }, N = (e, t) => ({
292
272
  ...e,
293
273
  [t]: void 0
294
- }), we = [
274
+ }), Ae = [
295
275
  "noscript",
296
276
  "script",
297
277
  "style"
298
278
  /* STYLE */
299
- ], H = (e, t = !0) => t === !1 ? String(e) : String(e).replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#x27;"), G = (e) => Object.keys(e).reduce((t, r) => {
279
+ ], D = (e, t = !0) => t === !1 ? String(e) : String(e).replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#x27;"), G = (e) => Object.keys(e).reduce((t, r) => {
300
280
  const n = typeof e[r] < "u" ? `${r}="${e[r]}"` : `${r}`;
301
281
  return t ? `${t} ${n}` : n;
302
- }, ""), xe = (e, t, r, n) => {
303
- const s = G(r), o = Z(t);
304
- return s ? `<${e} ${y}="true" ${s}>${H(
305
- o,
282
+ }, ""), Ee = (e, t, r, n) => {
283
+ const s = G(r), i = Z(t);
284
+ return s ? `<${e} ${h}="true" ${s}>${D(
285
+ i,
306
286
  n
307
- )}</${e}>` : `<${e} ${y}="true">${H(
308
- o,
287
+ )}</${e}>` : `<${e} ${h}="true">${D(
288
+ i,
309
289
  n
310
290
  )}</${e}>`;
311
- }, Pe = (e, t, r = !0) => t.reduce((n, s) => {
312
- const o = s, c = Object.keys(o).filter(
313
- (a) => !(a === "innerHTML" || a === "cssText")
314
- ).reduce((a, u) => {
315
- const f = typeof o[u] > "u" ? u : `${u}="${H(o[u], r)}"`;
316
- return a ? `${a} ${f}` : f;
317
- }, ""), i = o.innerHTML || o.cssText || "", l = we.indexOf(e) === -1;
318
- return `${n}<${e} ${y}="true" ${c}${l ? "/>" : `>${i}</${e}>`}`;
319
- }, ""), J = (e, t = {}) => Object.keys(e).reduce((r, n) => {
320
- const s = U[n];
291
+ }, be = (e, t, r = !0) => t.reduce((n, s) => {
292
+ const i = s, c = Object.keys(i).filter(
293
+ (o) => !(o === "innerHTML" || o === "cssText")
294
+ ).reduce((o, u) => {
295
+ const f = typeof i[u] > "u" ? u : `${u}="${D(i[u], r)}"`;
296
+ return o ? `${o} ${f}` : f;
297
+ }, ""), a = i.innerHTML || i.cssText || "", l = Ae.indexOf(e) === -1;
298
+ return `${n}<${e} ${h}="true" ${c}${l ? "/>" : `>${a}</${e}>`}`;
299
+ }, ""), W = (e, t = {}) => Object.keys(e).reduce((r, n) => {
300
+ const s = F[n];
321
301
  return r[s || n] = e[n], r;
322
- }, t), Ie = (e, t, r) => {
302
+ }, t), Oe = (e, t, r) => {
323
303
  const n = {
324
304
  key: t,
325
- [y]: !0
326
- }, s = J(r, n);
327
- return [d.createElement("title", s, t)];
328
- }, P = (e, t) => t.map((r, n) => {
305
+ [h]: !0
306
+ }, s = W(r, n);
307
+ return [T.createElement("title", s, t)];
308
+ }, $ = (e, t) => t.map((r, n) => {
329
309
  const s = {
330
310
  key: n,
331
- [y]: !0
311
+ [h]: !0
332
312
  };
333
- return Object.keys(r).forEach((o) => {
334
- const i = U[o] || o;
335
- if (i === "innerHTML" || i === "cssText") {
313
+ return Object.keys(r).forEach((i) => {
314
+ const a = F[i] || i;
315
+ if (a === "innerHTML" || a === "cssText") {
336
316
  const l = r.innerHTML || r.cssText;
337
317
  s.dangerouslySetInnerHTML = { __html: l };
338
318
  } else
339
- s[i] = r[o];
340
- }), d.createElement(e, s);
341
- }), m = (e, t, r = !0) => {
319
+ s[a] = r[i];
320
+ }), T.createElement(e, s);
321
+ }), d = (e, t, r = !0) => {
342
322
  switch (e) {
343
323
  case "title":
344
324
  return {
345
- toComponent: () => Ie(e, t.title, t.titleAttributes),
346
- toString: () => xe(e, t.title, t.titleAttributes, r)
325
+ toComponent: () => Oe(e, t.title, t.titleAttributes),
326
+ toString: () => Ee(e, t.title, t.titleAttributes, r)
347
327
  };
348
328
  case "bodyAttributes":
349
329
  case "htmlAttributes":
350
330
  return {
351
- toComponent: () => J(t),
331
+ toComponent: () => W(t),
352
332
  toString: () => G(t)
353
333
  };
354
334
  default:
355
335
  return {
356
- toComponent: () => P(e, t),
357
- toString: () => Pe(e, t, r)
336
+ toComponent: () => $(e, t),
337
+ toString: () => be(e, t, r)
358
338
  };
359
339
  }
360
- }, $e = ({ metaTags: e, linkTags: t, scriptTags: r, encode: n }) => {
361
- const s = D(e, I.meta), o = D(t, I.link), c = D(r, I.script);
340
+ }, Ce = ({ metaTags: e, linkTags: t, scriptTags: r, encode: n }) => {
341
+ const s = H(e, P.meta), i = H(t, P.link), c = H(r, P.script);
362
342
  return {
363
343
  priorityMethods: {
364
344
  toComponent: () => [
365
- ...P("meta", s.priority),
366
- ...P("link", o.priority),
367
- ...P("script", c.priority)
345
+ ...$("meta", s.priority),
346
+ ...$("link", i.priority),
347
+ ...$("script", c.priority)
368
348
  ],
369
349
  toString: () => (
370
350
  // generate all the tags as strings and concatenate them
371
- `${m("meta", s.priority, n)} ${m(
351
+ `${d("meta", s.priority, n)} ${d(
372
352
  "link",
373
- o.priority,
353
+ i.priority,
374
354
  n
375
- )} ${m("script", c.priority, n)}`
355
+ )} ${d("script", c.priority, n)}`
376
356
  )
377
357
  },
378
358
  metaTags: s.default,
379
- linkTags: o.default,
359
+ linkTags: i.default,
380
360
  scriptTags: c.default
381
361
  };
382
- }, De = (e) => {
362
+ }, Se = (e) => {
383
363
  const {
384
364
  baseTag: t,
385
365
  bodyAttributes: r,
386
366
  encode: n = !0,
387
367
  htmlAttributes: s,
388
- noscriptTags: o,
368
+ noscriptTags: i,
389
369
  styleTags: c,
390
- title: i = "",
370
+ title: a = "",
391
371
  titleAttributes: l,
392
- prioritizeSeoTags: a
372
+ prioritizeSeoTags: o
393
373
  } = e;
394
- let { linkTags: u, metaTags: f, scriptTags: h } = e, p = {
374
+ let { linkTags: u, metaTags: f, scriptTags: m } = e, p = {
395
375
  toComponent: () => {
396
376
  },
397
377
  toString: () => ""
398
378
  };
399
- return a && ({ priorityMethods: p, linkTags: u, metaTags: f, scriptTags: h } = $e(e)), {
379
+ return o && ({ priorityMethods: p, linkTags: u, metaTags: f, scriptTags: m } = Ce(e)), {
400
380
  priority: p,
401
- base: m("base", t, n),
402
- bodyAttributes: m("bodyAttributes", r, n),
403
- htmlAttributes: m("htmlAttributes", s, n),
404
- link: m("link", u, n),
405
- meta: m("meta", f, n),
406
- noscript: m("noscript", o, n),
407
- script: m("script", h, n),
408
- style: m("style", c, n),
409
- title: m("title", { title: i, titleAttributes: l }, n)
381
+ base: d("base", t, n),
382
+ bodyAttributes: d("bodyAttributes", r, n),
383
+ htmlAttributes: d("htmlAttributes", s, n),
384
+ link: d("link", u, n),
385
+ meta: d("meta", f, n),
386
+ noscript: d("noscript", i, n),
387
+ script: d("script", m, n),
388
+ style: d("style", c, n),
389
+ title: d("title", { title: a, titleAttributes: l }, n)
410
390
  };
411
- }, _ = De, w = [], Q = !!(typeof window < "u" && window.document && window.document.createElement), R = class {
391
+ }, M = Se, w = [], J = !!(typeof window < "u" && window.document && window.document.createElement), k = class {
412
392
  constructor(e, t) {
413
- T(this, "instances", []);
414
- T(this, "canUseDOM", Q);
415
- T(this, "context");
416
- T(this, "value", {
393
+ y(this, "instances", []);
394
+ y(this, "canUseDOM", J);
395
+ y(this, "context");
396
+ y(this, "value", {
417
397
  setHelmet: (e) => {
418
398
  this.context.helmet = e;
419
399
  },
@@ -428,7 +408,7 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
428
408
  }
429
409
  }
430
410
  });
431
- this.context = e, this.canUseDOM = t || !1, t || (e.helmet = _({
411
+ this.context = e, this.canUseDOM = t || !1, t || (e.helmet = M({
432
412
  baseTag: [],
433
413
  bodyAttributes: {},
434
414
  encodeSpecialCharacters: !0,
@@ -442,97 +422,97 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
442
422
  titleAttributes: {}
443
423
  }));
444
424
  }
445
- }, Me = {}, ee = d.createContext(Me), v, ke = (v = class extends L {
425
+ }, we = {}, Q = T.createContext(we), v, xe = (v = class extends j {
446
426
  constructor(r) {
447
427
  super(r);
448
- T(this, "helmetData");
449
- this.helmetData = new R(this.props.context || {}, v.canUseDOM);
428
+ y(this, "helmetData");
429
+ this.helmetData = new k(this.props.context || {}, v.canUseDOM);
450
430
  }
451
431
  render() {
452
- return /* @__PURE__ */ d.createElement(ee.Provider, { value: this.helmetData.value }, this.props.children);
432
+ return /* @__PURE__ */ T.createElement(Q.Provider, { value: this.helmetData.value }, this.props.children);
453
433
  }
454
- }, T(v, "canUseDOM", Q), v), A = (e, t) => {
434
+ }, y(v, "canUseDOM", J), v), A = (e, t) => {
455
435
  const r = document.head || document.querySelector(
456
436
  "head"
457
437
  /* HEAD */
458
- ), n = r.querySelectorAll(`${e}[${y}]`), s = [].slice.call(n), o = [];
438
+ ), n = r.querySelectorAll(`${e}[${h}]`), s = [].slice.call(n), i = [];
459
439
  let c;
460
- return t && t.length && t.forEach((i) => {
440
+ return t && t.length && t.forEach((a) => {
461
441
  const l = document.createElement(e);
462
- for (const a in i)
463
- if (Object.prototype.hasOwnProperty.call(i, a))
464
- if (a === "innerHTML")
465
- l.innerHTML = i.innerHTML;
466
- else if (a === "cssText")
467
- l.styleSheet ? l.styleSheet.cssText = i.cssText : l.appendChild(document.createTextNode(i.cssText));
442
+ for (const o in a)
443
+ if (Object.prototype.hasOwnProperty.call(a, o))
444
+ if (o === "innerHTML")
445
+ l.innerHTML = a.innerHTML;
446
+ else if (o === "cssText")
447
+ l.styleSheet ? l.styleSheet.cssText = a.cssText : l.appendChild(document.createTextNode(a.cssText));
468
448
  else {
469
- const u = a, f = typeof i[u] > "u" ? "" : i[u];
470
- l.setAttribute(a, f);
449
+ const u = o, f = typeof a[u] > "u" ? "" : a[u];
450
+ l.setAttribute(o, f);
471
451
  }
472
- l.setAttribute(y, "true"), s.some((a, u) => (c = u, l.isEqualNode(a))) ? s.splice(c, 1) : o.push(l);
473
- }), s.forEach((i) => {
452
+ l.setAttribute(h, "true"), s.some((o, u) => (c = u, l.isEqualNode(o))) ? s.splice(c, 1) : i.push(l);
453
+ }), s.forEach((a) => {
474
454
  var l;
475
- return (l = i.parentNode) == null ? void 0 : l.removeChild(i);
476
- }), o.forEach((i) => r.appendChild(i)), {
455
+ return (l = a.parentNode) == null ? void 0 : l.removeChild(a);
456
+ }), i.forEach((a) => r.appendChild(a)), {
477
457
  oldTags: s,
478
- newTags: o
458
+ newTags: i
479
459
  };
480
- }, j = (e, t) => {
460
+ }, R = (e, t) => {
481
461
  const r = document.getElementsByTagName(e)[0];
482
462
  if (!r)
483
463
  return;
484
- const n = r.getAttribute(y), s = n ? n.split(",") : [], o = [...s], c = Object.keys(t);
485
- for (const i of c) {
486
- const l = t[i] || "";
487
- r.getAttribute(i) !== l && r.setAttribute(i, l), s.indexOf(i) === -1 && s.push(i);
488
- const a = o.indexOf(i);
489
- a !== -1 && o.splice(a, 1);
464
+ const n = r.getAttribute(h), s = n ? n.split(",") : [], i = [...s], c = Object.keys(t);
465
+ for (const a of c) {
466
+ const l = t[a] || "";
467
+ r.getAttribute(a) !== l && r.setAttribute(a, l), s.indexOf(a) === -1 && s.push(a);
468
+ const o = i.indexOf(a);
469
+ o !== -1 && i.splice(o, 1);
490
470
  }
491
- for (let i = o.length - 1; i >= 0; i -= 1)
492
- r.removeAttribute(o[i]);
493
- s.length === o.length ? r.removeAttribute(y) : r.getAttribute(y) !== c.join(",") && r.setAttribute(y, c.join(","));
494
- }, He = (e, t) => {
495
- typeof e < "u" && document.title !== e && (document.title = Z(e)), j("title", t);
496
- }, Y = (e, t) => {
471
+ for (let a = i.length - 1; a >= 0; a -= 1)
472
+ r.removeAttribute(i[a]);
473
+ s.length === i.length ? r.removeAttribute(h) : r.getAttribute(h) !== c.join(",") && r.setAttribute(h, c.join(","));
474
+ }, $e = (e, t) => {
475
+ typeof e < "u" && document.title !== e && (document.title = Z(e)), R("title", t);
476
+ }, V = (e, t) => {
497
477
  const {
498
478
  baseTag: r,
499
479
  bodyAttributes: n,
500
480
  htmlAttributes: s,
501
- linkTags: o,
481
+ linkTags: i,
502
482
  metaTags: c,
503
- noscriptTags: i,
483
+ noscriptTags: a,
504
484
  onChangeClientState: l,
505
- scriptTags: a,
485
+ scriptTags: o,
506
486
  styleTags: u,
507
487
  title: f,
508
- titleAttributes: h
488
+ titleAttributes: m
509
489
  } = e;
510
- j("body", n), j("html", s), He(f, h);
490
+ R("body", n), R("html", s), $e(f, m);
511
491
  const p = {
512
492
  baseTag: A("base", r),
513
- linkTags: A("link", o),
493
+ linkTags: A("link", i),
514
494
  metaTags: A("meta", c),
515
- noscriptTags: A("noscript", i),
516
- scriptTags: A("script", a),
495
+ noscriptTags: A("noscript", a),
496
+ scriptTags: A("script", o),
517
497
  styleTags: A("style", u)
518
- }, g = {}, q = {};
498
+ }, g = {}, U = {};
519
499
  Object.keys(p).forEach((S) => {
520
- const { newTags: K, oldTags: te } = p[S];
521
- K.length && (g[S] = K), te.length && (q[S] = p[S].oldTags);
522
- }), t && t(), l(e, g, q);
523
- }, O = null, _e = (e) => {
524
- O && cancelAnimationFrame(O), e.defer ? O = requestAnimationFrame(() => {
525
- Y(e, () => {
526
- O = null;
500
+ const { newTags: q, oldTags: X } = p[S];
501
+ q.length && (g[S] = q), X.length && (U[S] = p[S].oldTags);
502
+ }), t && t(), l(e, g, U);
503
+ }, C = null, Pe = (e) => {
504
+ C && cancelAnimationFrame(C), e.defer ? C = requestAnimationFrame(() => {
505
+ V(e, () => {
506
+ C = null;
527
507
  });
528
- }) : (Y(e), O = null);
529
- }, Re = _e, B = class extends L {
508
+ }) : (V(e), C = null);
509
+ }, Ie = Pe, Y = class extends j {
530
510
  constructor() {
531
511
  super(...arguments);
532
- T(this, "rendered", !1);
512
+ y(this, "rendered", !1);
533
513
  }
534
514
  shouldComponentUpdate(t) {
535
- return !Te(t, this.props);
515
+ return !fe(t, this.props);
536
516
  }
537
517
  componentDidUpdate() {
538
518
  this.emitChange();
@@ -544,13 +524,13 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
544
524
  emitChange() {
545
525
  const { helmetInstances: t, setHelmet: r } = this.props.context;
546
526
  let n = null;
547
- const s = Oe(
548
- t.get().map((o) => {
549
- const c = { ...o.props };
527
+ const s = ge(
528
+ t.get().map((i) => {
529
+ const c = { ...i.props };
550
530
  return delete c.context, c;
551
531
  })
552
532
  );
553
- ke.canUseDOM ? Re(s) : _ && (n = _(s)), r(n);
533
+ xe.canUseDOM ? Ie(s) : M && (n = M(s)), r(n);
554
534
  }
555
535
  // componentWillMount will be deprecated
556
536
  // for SSR, initialize on first render
@@ -565,9 +545,9 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
565
545
  render() {
566
546
  return this.init(), null;
567
547
  }
568
- }, M, ze = (M = class extends L {
548
+ }, _, Me = (_ = class extends j {
569
549
  shouldComponentUpdate(e) {
570
- return !me(V(this.props, "helmetData"), V(e, "helmetData"));
550
+ return !oe(N(this.props, "helmetData"), N(e, "helmetData"));
571
551
  }
572
552
  mapNestedChildrenToProps(e, t) {
573
553
  if (!t)
@@ -635,24 +615,24 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
635
615
  }), r;
636
616
  }
637
617
  warnOnInvalidChildren(e, t) {
638
- return z(
639
- N.some((r) => e.type === r),
640
- typeof e.type == "function" ? "You may be attempting to nest <Helmet> components within each other, which is not allowed. Refer to our API for more information." : `Only elements types ${N.join(
618
+ return K(
619
+ z.some((r) => e.type === r),
620
+ typeof e.type == "function" ? "You may be attempting to nest <Helmet> components within each other, which is not allowed. Refer to our API for more information." : `Only elements types ${z.join(
641
621
  ", "
642
622
  )} are allowed. Helmet does not support rendering <${e.type}> elements. Refer to our API for more information.`
643
- ), z(
623
+ ), K(
644
624
  !t || typeof t == "string" || Array.isArray(t) && !t.some((r) => typeof r != "string"),
645
625
  `Helmet expects a string as a child of <${e.type}>. Did you forget to wrap your children in braces? ( <${e.type}>{\`\`}</${e.type}> ) Refer to our API for more information.`
646
626
  ), !0;
647
627
  }
648
628
  mapChildrenToProps(e, t) {
649
629
  let r = {};
650
- return d.Children.forEach(e, (n) => {
630
+ return T.Children.forEach(e, (n) => {
651
631
  if (!n || !n.props)
652
632
  return;
653
- const { children: s, ...o } = n.props, c = Object.keys(o).reduce((l, a) => (l[ge[a] || a] = o[a], l), {});
654
- let { type: i } = n;
655
- switch (typeof i == "symbol" ? i = i.toString() : this.warnOnInvalidChildren(n, s), i) {
633
+ const { children: s, ...i } = n.props, c = Object.keys(i).reduce((l, o) => (l[pe[o] || o] = i[o], l), {});
634
+ let { type: a } = n;
635
+ switch (typeof a == "symbol" ? a = a.toString() : this.warnOnInvalidChildren(n, s), a) {
656
636
  case "Symbol(react.fragment)":
657
637
  t = this.mapChildrenToProps(s, t);
658
638
  break;
@@ -677,29 +657,19 @@ var W = /* @__PURE__ */ ((e) => (e.BASE = "base", e.BODY = "body", e.HEAD = "hea
677
657
  render() {
678
658
  const { children: e, ...t } = this.props;
679
659
  let r = { ...t }, { helmetData: n } = t;
680
- if (e && (r = this.mapChildrenToProps(e, r)), n && !(n instanceof R)) {
660
+ if (e && (r = this.mapChildrenToProps(e, r)), n && !(n instanceof k)) {
681
661
  const s = n;
682
- n = new R(s.context, !0), delete r.helmetData;
662
+ n = new k(s.context, !0), delete r.helmetData;
683
663
  }
684
- return n ? /* @__PURE__ */ d.createElement(B, { ...r, context: n.value }) : /* @__PURE__ */ d.createElement(ee.Consumer, null, (s) => /* @__PURE__ */ d.createElement(B, { ...r, context: s }));
664
+ return n ? /* @__PURE__ */ T.createElement(Y, { ...r, context: n.value }) : /* @__PURE__ */ T.createElement(Q.Consumer, null, (s) => /* @__PURE__ */ T.createElement(Y, { ...r, context: s }));
685
665
  }
686
- }, T(M, "defaultProps", {
666
+ }, y(_, "defaultProps", {
687
667
  defer: !0,
688
668
  encodeSpecialCharacters: !0,
689
669
  prioritizeSeoTags: !1
690
- }), M);
691
- const Ne = (e) => {
692
- const t = oe(), r = typeof e.to == "string" ? e.to : e.to.hash, n = (s) => {
693
- var o;
694
- !(r != null && r.startsWith("#")) || r !== t.hash || (s.preventDefault(), (o = document.getElementById(r.slice(1))) == null || o.scrollIntoView());
695
- };
696
- return /* @__PURE__ */ se.jsx(ie, { onClick: n, ...e });
697
- };
670
+ }), _);
698
671
  export {
699
- Ne as A,
700
- ze as H,
701
- Ke as M,
702
- ke as a,
703
- ae as u
672
+ Me as H,
673
+ xe as a
704
674
  };
705
- //# sourceMappingURL=AnchorLink-DovtSBJk.js.map
675
+ //# sourceMappingURL=index.esm-Bm8pj-bc.js.map