zudoku 0.0.0-e5be921 → 0.0.0-e614aaa

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 (903) hide show
  1. package/cli.js +3 -0
  2. package/dist/app/demo.js +1 -2
  3. package/dist/app/demo.js.map +1 -1
  4. package/dist/app/entry.client.d.ts +5 -0
  5. package/dist/app/entry.client.js +2 -15
  6. package/dist/app/entry.client.js.map +1 -1
  7. package/dist/app/entry.server.d.ts +1 -1
  8. package/dist/app/entry.server.js +1 -2
  9. package/dist/app/entry.server.js.map +1 -1
  10. package/dist/app/main.d.ts +2 -2
  11. package/dist/app/main.js +19 -9
  12. package/dist/app/main.js.map +1 -1
  13. package/dist/app/sentry.js +1 -1
  14. package/dist/app/sentry.js.map +1 -1
  15. package/dist/app/standalone.js +1 -2
  16. package/dist/app/standalone.js.map +1 -1
  17. package/dist/app/tailwind.js +6 -0
  18. package/dist/app/tailwind.js.map +1 -1
  19. package/dist/cli/build/handler.d.ts +1 -3
  20. package/dist/cli/build/handler.js +7 -0
  21. package/dist/cli/build/handler.js.map +1 -1
  22. package/dist/cli/cli.js +5 -0
  23. package/dist/cli/cli.js.map +1 -1
  24. package/dist/cli/cmds/build.d.ts +11 -3
  25. package/dist/cli/cmds/build.js +21 -13
  26. package/dist/cli/cmds/build.js.map +1 -1
  27. package/dist/cli/cmds/dev.js +5 -0
  28. package/dist/cli/cmds/dev.js.map +1 -1
  29. package/dist/cli/cmds/preview.d.ts +16 -0
  30. package/dist/cli/cmds/preview.js +25 -0
  31. package/dist/cli/cmds/preview.js.map +1 -0
  32. package/dist/cli/common/output.js.map +1 -1
  33. package/dist/cli/common/utils/ports.d.ts +1 -1
  34. package/dist/cli/common/utils/ports.js +16 -15
  35. package/dist/cli/common/utils/ports.js.map +1 -1
  36. package/dist/cli/dev/handler.d.ts +1 -0
  37. package/dist/cli/dev/handler.js +14 -12
  38. package/dist/cli/dev/handler.js.map +1 -1
  39. package/dist/cli/preview/handler.d.ts +3 -0
  40. package/dist/cli/preview/handler.js +37 -0
  41. package/dist/cli/preview/handler.js.map +1 -0
  42. package/dist/config/common.d.ts +5 -2
  43. package/dist/config/config.d.ts +3 -7
  44. package/dist/config/loader.d.ts +4 -4
  45. package/dist/config/loader.js +11 -5
  46. package/dist/config/loader.js.map +1 -1
  47. package/dist/config/validators/InputSidebarSchema.d.ts +32 -17
  48. package/dist/config/validators/InputSidebarSchema.js +11 -1
  49. package/dist/config/validators/InputSidebarSchema.js.map +1 -1
  50. package/dist/config/validators/common.d.ts +821 -194
  51. package/dist/config/validators/common.js +71 -16
  52. package/dist/config/validators/common.js.map +1 -1
  53. package/dist/config/validators/icon-types.d.ts +1 -1
  54. package/dist/config/validators/validate.d.ts +378 -131
  55. package/dist/index.d.ts +1 -0
  56. package/dist/index.js +1 -0
  57. package/dist/index.js.map +1 -1
  58. package/dist/lib/MissingIcon.d.ts +2 -0
  59. package/dist/lib/MissingIcon.js +7 -0
  60. package/dist/lib/MissingIcon.js.map +1 -0
  61. package/dist/lib/authentication/components/CallbackHandler.js +1 -1
  62. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  63. package/dist/lib/authentication/components/SignIn.js +1 -1
  64. package/dist/lib/authentication/components/SignIn.js.map +1 -1
  65. package/dist/lib/authentication/components/SignOut.js +2 -2
  66. package/dist/lib/authentication/components/SignOut.js.map +1 -1
  67. package/dist/lib/authentication/providers/auth0.d.ts +2 -2
  68. package/dist/lib/authentication/providers/auth0.js +2 -1
  69. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  70. package/dist/lib/authentication/providers/clerk.js +35 -12
  71. package/dist/lib/authentication/providers/clerk.js.map +1 -1
  72. package/dist/lib/authentication/providers/openid.d.ts +11 -3
  73. package/dist/lib/authentication/providers/openid.js +17 -9
  74. package/dist/lib/authentication/providers/openid.js.map +1 -1
  75. package/dist/lib/authentication/state.d.ts +9 -0
  76. package/dist/lib/authentication/state.js +19 -2
  77. package/dist/lib/authentication/state.js.map +1 -1
  78. package/dist/lib/components/AnchorLink.d.ts +1 -1
  79. package/dist/lib/components/AnchorLink.js +6 -3
  80. package/dist/lib/components/AnchorLink.js.map +1 -1
  81. package/dist/lib/components/Autocomplete.d.ts +13 -0
  82. package/dist/lib/components/Autocomplete.js +47 -0
  83. package/dist/lib/components/Autocomplete.js.map +1 -0
  84. package/dist/lib/components/Banner.js +1 -1
  85. package/dist/lib/components/Banner.js.map +1 -1
  86. package/dist/lib/components/Bootstrap.d.ts +1 -2
  87. package/dist/lib/components/Bootstrap.js +3 -3
  88. package/dist/lib/components/Bootstrap.js.map +1 -1
  89. package/dist/lib/components/Header.js +15 -15
  90. package/dist/lib/components/Header.js.map +1 -1
  91. package/dist/lib/components/Heading.d.ts +2 -2
  92. package/dist/lib/components/Layout.js +2 -2
  93. package/dist/lib/components/Layout.js.map +1 -1
  94. package/dist/lib/components/Markdown.d.ts +2 -2
  95. package/dist/lib/components/Markdown.js +3 -1
  96. package/dist/lib/components/Markdown.js.map +1 -1
  97. package/dist/lib/components/MobileTopNavigation.js +1 -1
  98. package/dist/lib/components/NotFoundPage.js +1 -1
  99. package/dist/lib/components/NotFoundPage.js.map +1 -1
  100. package/dist/lib/components/PathRenderer.d.ts +11 -0
  101. package/dist/lib/components/PathRenderer.js +28 -0
  102. package/dist/lib/components/PathRenderer.js.map +1 -0
  103. package/dist/lib/components/SlotletProvider.d.ts +2 -2
  104. package/dist/lib/components/StatusPage.d.ts +7 -0
  105. package/dist/lib/components/StatusPage.js +71 -0
  106. package/dist/lib/components/StatusPage.js.map +1 -0
  107. package/dist/lib/components/ThemeSwitch.js +8 -5
  108. package/dist/lib/components/ThemeSwitch.js.map +1 -1
  109. package/dist/lib/components/TopNavigation.js +5 -4
  110. package/dist/lib/components/TopNavigation.js.map +1 -1
  111. package/dist/lib/components/Zudoku.d.ts +1 -1
  112. package/dist/lib/components/Zudoku.js +8 -7
  113. package/dist/lib/components/Zudoku.js.map +1 -1
  114. package/dist/lib/components/cache.d.ts +6 -0
  115. package/dist/lib/components/cache.js +13 -0
  116. package/dist/lib/components/cache.js.map +1 -0
  117. package/dist/lib/components/context/RouterEventsEmitter.d.ts +1 -0
  118. package/dist/lib/components/context/RouterEventsEmitter.js +17 -0
  119. package/dist/lib/components/context/RouterEventsEmitter.js.map +1 -0
  120. package/dist/lib/components/context/ViewportAnchorContext.js +16 -4
  121. package/dist/lib/components/context/ViewportAnchorContext.js.map +1 -1
  122. package/dist/lib/components/context/ZudokuContext.d.ts +1 -1
  123. package/dist/lib/components/context/ZudokuContext.js +11 -4
  124. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  125. package/dist/lib/components/index.d.ts +32 -15
  126. package/dist/lib/components/index.js +17 -4
  127. package/dist/lib/components/index.js.map +1 -1
  128. package/dist/lib/components/navigation/Sidebar.js +7 -2
  129. package/dist/lib/components/navigation/Sidebar.js.map +1 -1
  130. package/dist/lib/components/navigation/SidebarBadge.d.ts +6 -3
  131. package/dist/lib/components/navigation/SidebarBadge.js +13 -11
  132. package/dist/lib/components/navigation/SidebarBadge.js.map +1 -1
  133. package/dist/lib/components/navigation/SidebarCategory.js +18 -16
  134. package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
  135. package/dist/lib/components/navigation/SidebarItem.js +4 -3
  136. package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
  137. package/dist/lib/components/navigation/SidebarWrapper.js +1 -1
  138. package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
  139. package/dist/lib/components/navigation/utils.js +1 -1
  140. package/dist/lib/components/navigation/utils.js.map +1 -1
  141. package/dist/lib/core/RouteGuard.d.ts +1 -0
  142. package/dist/lib/core/RouteGuard.js +45 -0
  143. package/dist/lib/core/RouteGuard.js.map +1 -0
  144. package/dist/lib/core/ZudokuContext.d.ts +15 -3
  145. package/dist/lib/core/ZudokuContext.js +26 -8
  146. package/dist/lib/core/ZudokuContext.js.map +1 -1
  147. package/dist/lib/core/plugins.d.ts +13 -7
  148. package/dist/lib/core/plugins.js +3 -0
  149. package/dist/lib/core/plugins.js.map +1 -1
  150. package/dist/lib/errors/RouterError.js +1 -1
  151. package/dist/lib/errors/RouterError.js.map +1 -1
  152. package/dist/lib/hooks/index.d.ts +3 -0
  153. package/dist/lib/hooks/index.js +5 -0
  154. package/dist/lib/hooks/index.js.map +1 -0
  155. package/dist/lib/hooks/useEvent.d.ts +11 -0
  156. package/dist/lib/hooks/useEvent.js +19 -0
  157. package/dist/lib/hooks/useEvent.js.map +1 -0
  158. package/dist/lib/hooks/useEvent.test.d.ts +1 -0
  159. package/dist/lib/hooks/useEvent.test.js +100 -0
  160. package/dist/lib/hooks/useEvent.test.js.map +1 -0
  161. package/dist/lib/icons.d.ts +1 -0
  162. package/dist/lib/icons.js +1 -0
  163. package/dist/lib/icons.js.map +1 -1
  164. package/dist/lib/oas/graphql/circular.d.ts +3 -0
  165. package/dist/lib/oas/graphql/circular.js +38 -0
  166. package/dist/lib/oas/graphql/circular.js.map +1 -0
  167. package/dist/lib/oas/graphql/index.d.ts +11 -0
  168. package/dist/lib/oas/graphql/index.js +93 -59
  169. package/dist/lib/oas/graphql/index.js.map +1 -1
  170. package/dist/lib/oas/parser/dereference/index.js +6 -3
  171. package/dist/lib/oas/parser/dereference/index.js.map +1 -1
  172. package/dist/lib/oas/parser/upgrade/index.js +19 -4
  173. package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
  174. package/dist/lib/plugins/api-catalog/Catalog.d.ts +3 -5
  175. package/dist/lib/plugins/api-catalog/Catalog.js +23 -26
  176. package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -1
  177. package/dist/lib/plugins/api-catalog/index.d.ts +9 -1
  178. package/dist/lib/plugins/api-catalog/index.js +37 -8
  179. package/dist/lib/plugins/api-catalog/index.js.map +1 -1
  180. package/dist/lib/plugins/api-keys/CreateApiKey.js +8 -4
  181. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  182. package/dist/lib/plugins/api-keys/ProtectedRoute.js +1 -1
  183. package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
  184. package/dist/lib/plugins/api-keys/SettingsApiKeys.js +1 -1
  185. package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
  186. package/dist/lib/plugins/api-keys/index.d.ts +1 -0
  187. package/dist/lib/plugins/api-keys/index.js +1 -0
  188. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  189. package/dist/lib/plugins/markdown/MdxPage.js +8 -2
  190. package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
  191. package/dist/lib/plugins/markdown/index.d.ts +1 -0
  192. package/dist/lib/plugins/markdown/index.js.map +1 -1
  193. package/dist/lib/plugins/markdown/resolver.d.ts +0 -6
  194. package/dist/lib/plugins/markdown/resolver.js +0 -29
  195. package/dist/lib/plugins/markdown/resolver.js.map +1 -1
  196. package/dist/lib/plugins/openapi/CollapsibleCode.js +2 -1
  197. package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -1
  198. package/dist/lib/plugins/openapi/ColorizedParam.d.ts +10 -2
  199. package/dist/lib/plugins/openapi/ColorizedParam.js +18 -7
  200. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  201. package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -1
  202. package/dist/lib/plugins/openapi/Endpoint.js +8 -7
  203. package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
  204. package/dist/lib/plugins/openapi/OasProvider.d.ts +8 -0
  205. package/dist/lib/plugins/openapi/OasProvider.js +29 -0
  206. package/dist/lib/plugins/openapi/OasProvider.js.map +1 -0
  207. package/dist/lib/plugins/openapi/OperationList.d.ts +5 -2
  208. package/dist/lib/plugins/openapi/OperationList.js +39 -49
  209. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  210. package/dist/lib/plugins/openapi/OperationListItem.d.ts +4 -2
  211. package/dist/lib/plugins/openapi/OperationListItem.js +16 -5
  212. package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
  213. package/dist/lib/plugins/openapi/ParameterList.d.ts +2 -1
  214. package/dist/lib/plugins/openapi/ParameterList.js +3 -2
  215. package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
  216. package/dist/lib/plugins/openapi/ParameterListItem.js +3 -2
  217. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  218. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +4 -2
  219. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +10 -3
  220. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
  221. package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +3 -4
  222. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +5 -13
  223. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
  224. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +7 -13
  225. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  226. package/dist/lib/plugins/openapi/Sidecar.js +22 -34
  227. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  228. package/dist/lib/plugins/openapi/SidecarBox.js +4 -4
  229. package/dist/lib/plugins/openapi/SidecarBox.js.map +1 -1
  230. package/dist/lib/plugins/openapi/SidecarExamples.d.ts +9 -0
  231. package/dist/lib/plugins/openapi/SidecarExamples.js +68 -0
  232. package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -0
  233. package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +1 -1
  234. package/dist/lib/plugins/openapi/client/GraphQLClient.js +22 -93
  235. package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -1
  236. package/dist/lib/plugins/openapi/client/createServer.d.ts +2 -1
  237. package/dist/lib/plugins/openapi/client/createServer.js +5 -2
  238. package/dist/lib/plugins/openapi/client/createServer.js.map +1 -1
  239. package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +1 -1
  240. package/dist/lib/plugins/openapi/client/useCreateQuery.js +2 -4
  241. package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -1
  242. package/dist/lib/plugins/openapi/context.d.ts +3 -3
  243. package/dist/lib/plugins/openapi/graphql/gql.d.ts +6 -2
  244. package/dist/lib/plugins/openapi/graphql/gql.js +3 -13
  245. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  246. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +66 -29
  247. package/dist/lib/plugins/openapi/graphql/graphql.js +33 -15
  248. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  249. package/dist/lib/plugins/openapi/index.d.ts +10 -1
  250. package/dist/lib/plugins/openapi/index.js +84 -84
  251. package/dist/lib/plugins/openapi/index.js.map +1 -1
  252. package/dist/lib/plugins/openapi/interfaces.d.ts +29 -2
  253. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.d.ts +6 -0
  254. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +12 -0
  255. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -0
  256. package/dist/lib/plugins/openapi/playground/Headers.d.ts +4 -4
  257. package/dist/lib/plugins/openapi/playground/Headers.js +84 -5
  258. package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
  259. package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +9 -0
  260. package/dist/lib/plugins/openapi/playground/ParamsGrid.js +5 -0
  261. package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -0
  262. package/dist/lib/plugins/openapi/playground/PathParams.d.ts +3 -2
  263. package/dist/lib/plugins/openapi/playground/PathParams.js +5 -7
  264. package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
  265. package/dist/lib/plugins/openapi/playground/Playground.d.ts +26 -2
  266. package/dist/lib/plugins/openapi/playground/Playground.js +64 -56
  267. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  268. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
  269. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
  270. package/dist/lib/plugins/openapi/playground/QueryParams.js +24 -18
  271. package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
  272. package/dist/lib/plugins/openapi/playground/SubmitButton.d.ts +7 -0
  273. package/dist/lib/plugins/openapi/playground/SubmitButton.js +22 -0
  274. package/dist/lib/plugins/openapi/playground/SubmitButton.js.map +1 -0
  275. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.d.ts +7 -0
  276. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js +11 -0
  277. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js.map +1 -0
  278. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.d.ts +8 -0
  279. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +95 -0
  280. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -0
  281. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +7 -0
  282. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +16 -0
  283. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -0
  284. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.d.ts +10 -0
  285. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js +32 -0
  286. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js.map +1 -0
  287. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.d.ts +1 -0
  288. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js +56 -0
  289. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js.map +1 -0
  290. package/dist/lib/plugins/openapi/post-processors/removeExtensions.d.ts +2 -1
  291. package/dist/lib/plugins/openapi/post-processors/removeExtensions.js +5 -3
  292. package/dist/lib/plugins/openapi/post-processors/removeExtensions.js.map +1 -1
  293. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js +49 -0
  294. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js.map +1 -1
  295. package/dist/lib/plugins/openapi/post-processors/removeParameters.d.ts +10 -0
  296. package/dist/lib/plugins/openapi/post-processors/removeParameters.js +66 -0
  297. package/dist/lib/plugins/openapi/post-processors/removeParameters.js.map +1 -0
  298. package/dist/lib/plugins/openapi/post-processors/removeParameters.test.d.ts +1 -0
  299. package/dist/lib/plugins/openapi/post-processors/removeParameters.test.js +131 -0
  300. package/dist/lib/plugins/openapi/post-processors/removeParameters.test.js.map +1 -0
  301. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +37 -0
  302. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -0
  303. package/dist/lib/plugins/openapi/schema/SchemaView.js +1 -1
  304. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  305. package/dist/lib/plugins/openapi/schema/utils.d.ts +1 -0
  306. package/dist/lib/plugins/openapi/schema/utils.js +2 -0
  307. package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
  308. package/dist/lib/plugins/openapi/util/createSidebarCategory.d.ts +9 -0
  309. package/dist/lib/plugins/openapi/util/createSidebarCategory.js +25 -0
  310. package/dist/lib/plugins/openapi/util/createSidebarCategory.js.map +1 -0
  311. package/dist/lib/plugins/openapi/util/generateSchemaExample.js +19 -11
  312. package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
  313. package/dist/lib/plugins/openapi/util/getRoutes.d.ts +10 -0
  314. package/dist/lib/plugins/openapi/util/getRoutes.js +74 -0
  315. package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -0
  316. package/dist/lib/plugins/openapi/util/methodColorMap.d.ts +2 -0
  317. package/dist/lib/plugins/openapi/util/methodColorMap.js +10 -0
  318. package/dist/lib/plugins/openapi/util/methodColorMap.js.map +1 -0
  319. package/dist/lib/plugins/openapi/util/methodToColor.d.ts +20 -0
  320. package/dist/lib/plugins/openapi/util/methodToColor.js +24 -0
  321. package/dist/lib/plugins/openapi/util/methodToColor.js.map +1 -0
  322. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.d.ts +1 -0
  323. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js +27 -0
  324. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js.map +1 -0
  325. package/dist/lib/plugins/redirect/index.js +1 -1
  326. package/dist/lib/plugins/redirect/index.js.map +1 -1
  327. package/dist/lib/plugins/search-inkeep/index.js +21 -7
  328. package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
  329. package/dist/lib/plugins/search-pagefind/PagefindSearch.d.ts +6 -0
  330. package/dist/lib/plugins/search-pagefind/PagefindSearch.js +67 -0
  331. package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -0
  332. package/dist/lib/plugins/search-pagefind/ResultList.d.ts +7 -0
  333. package/dist/lib/plugins/search-pagefind/ResultList.js +30 -0
  334. package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -0
  335. package/dist/lib/plugins/search-pagefind/get-results.d.ts +3 -0
  336. package/dist/lib/plugins/search-pagefind/get-results.js +37 -0
  337. package/dist/lib/plugins/search-pagefind/get-results.js.map +1 -0
  338. package/dist/lib/plugins/search-pagefind/index.d.ts +6 -0
  339. package/dist/lib/plugins/search-pagefind/index.js +9 -0
  340. package/dist/lib/plugins/search-pagefind/index.js.map +1 -0
  341. package/dist/lib/plugins/search-pagefind/types.d.ts +85 -0
  342. package/dist/lib/plugins/search-pagefind/types.js +2 -0
  343. package/dist/lib/plugins/search-pagefind/types.js.map +1 -0
  344. package/dist/lib/ui/Badge.d.ts +1 -1
  345. package/dist/lib/ui/Badge.js +2 -1
  346. package/dist/lib/ui/Badge.js.map +1 -1
  347. package/dist/lib/ui/Button.d.ts +1 -1
  348. package/dist/lib/ui/Card.js +1 -1
  349. package/dist/lib/ui/Card.js.map +1 -1
  350. package/dist/lib/ui/Checkbox.d.ts +8 -2
  351. package/dist/lib/ui/Checkbox.js +13 -1
  352. package/dist/lib/ui/Checkbox.js.map +1 -1
  353. package/dist/lib/ui/Command.d.ts +17 -3
  354. package/dist/lib/ui/Command.js +7 -3
  355. package/dist/lib/ui/Command.js.map +1 -1
  356. package/dist/lib/ui/Input.d.ts +1 -2
  357. package/dist/lib/ui/Input.js.map +1 -1
  358. package/dist/lib/ui/Select.js +2 -2
  359. package/dist/lib/ui/Select.js.map +1 -1
  360. package/dist/lib/ui/Stepper.d.ts +4 -0
  361. package/dist/lib/ui/Stepper.js +7 -0
  362. package/dist/lib/ui/Stepper.js.map +1 -0
  363. package/dist/lib/ui/SyntaxHighlight.d.ts +14 -0
  364. package/dist/lib/{components → ui}/SyntaxHighlight.js +9 -6
  365. package/dist/lib/ui/SyntaxHighlight.js.map +1 -0
  366. package/dist/lib/ui/util.d.ts +2 -0
  367. package/dist/lib/ui/util.js +3 -0
  368. package/dist/lib/ui/util.js.map +1 -0
  369. package/dist/lib/util/MdxComponents.d.ts +19 -17
  370. package/dist/lib/util/MdxComponents.js +7 -6
  371. package/dist/lib/util/MdxComponents.js.map +1 -1
  372. package/dist/lib/util/createVariantComponent.d.ts +2 -2
  373. package/dist/lib/util/joinUrl.d.ts +1 -0
  374. package/dist/lib/util/joinUrl.js +40 -0
  375. package/dist/lib/util/joinUrl.js.map +1 -0
  376. package/dist/lib/util/joinUrl.test.d.ts +1 -0
  377. package/dist/lib/util/joinUrl.test.js +43 -0
  378. package/dist/lib/util/joinUrl.test.js.map +1 -0
  379. package/dist/lib/util/scrollIntoViewIfNeeded.d.ts +1 -0
  380. package/dist/lib/util/scrollIntoViewIfNeeded.js +14 -0
  381. package/dist/lib/util/scrollIntoViewIfNeeded.js.map +1 -0
  382. package/dist/lib/util/traverse.d.ts +8 -1
  383. package/dist/lib/util/traverse.js +7 -3
  384. package/dist/lib/util/traverse.js.map +1 -1
  385. package/dist/lib/util/useExposedProps.js +1 -1
  386. package/dist/lib/util/useExposedProps.js.map +1 -1
  387. package/dist/lib/util/useLatest.d.ts +1 -0
  388. package/dist/lib/util/useLatest.js +15 -0
  389. package/dist/lib/util/useLatest.js.map +1 -0
  390. package/dist/lib/util/useOnScreen.d.ts +1 -1
  391. package/dist/lib/util/useScrollToAnchor.d.ts +1 -0
  392. package/dist/lib/util/useScrollToAnchor.js +26 -29
  393. package/dist/lib/util/useScrollToAnchor.js.map +1 -1
  394. package/dist/lib/util/useScrollToTop.js +7 -5
  395. package/dist/lib/util/useScrollToTop.js.map +1 -1
  396. package/dist/vite/api/schema-codegen.d.ts +12 -0
  397. package/dist/vite/api/schema-codegen.js +62 -0
  398. package/dist/vite/api/schema-codegen.js.map +1 -0
  399. package/dist/vite/api/schema-codegen.test.d.ts +1 -0
  400. package/dist/vite/api/schema-codegen.test.js +247 -0
  401. package/dist/vite/api/schema-codegen.test.js.map +1 -0
  402. package/dist/vite/build.js +41 -25
  403. package/dist/vite/build.js.map +1 -1
  404. package/dist/vite/config.d.ts +2 -5
  405. package/dist/vite/config.js +69 -61
  406. package/dist/vite/config.js.map +1 -1
  407. package/dist/vite/config.test.js +5 -1
  408. package/dist/vite/config.test.js.map +1 -1
  409. package/dist/vite/css/collect.d.ts +2 -0
  410. package/dist/vite/css/collect.js +27 -0
  411. package/dist/vite/css/collect.js.map +1 -0
  412. package/dist/vite/css/plugin.d.ts +5 -0
  413. package/dist/vite/css/plugin.js +79 -0
  414. package/dist/vite/css/plugin.js.map +1 -0
  415. package/dist/vite/dev-server.d.ts +5 -2
  416. package/dist/vite/dev-server.js +52 -11
  417. package/dist/vite/dev-server.js.map +1 -1
  418. package/dist/vite/error-handler.d.ts +1 -1
  419. package/dist/vite/error-handler.js +1 -1
  420. package/dist/vite/error-handler.js.map +1 -1
  421. package/dist/vite/output.d.ts +14 -2
  422. package/dist/vite/output.js +12 -14
  423. package/dist/vite/output.js.map +1 -1
  424. package/dist/vite/pagefind.d.ts +4 -0
  425. package/dist/vite/pagefind.js +15 -0
  426. package/dist/vite/pagefind.js.map +1 -0
  427. package/dist/vite/plugin-api-keys.d.ts +2 -2
  428. package/dist/vite/plugin-api-keys.js +5 -5
  429. package/dist/vite/plugin-api-keys.js.map +1 -1
  430. package/dist/vite/plugin-api.d.ts +2 -2
  431. package/dist/vite/plugin-api.js +175 -59
  432. package/dist/vite/plugin-api.js.map +1 -1
  433. package/dist/vite/plugin-auth.d.ts +2 -2
  434. package/dist/vite/plugin-auth.js +7 -4
  435. package/dist/vite/plugin-auth.js.map +1 -1
  436. package/dist/vite/plugin-component.d.ts +2 -2
  437. package/dist/vite/plugin-component.js +7 -3
  438. package/dist/vite/plugin-component.js.map +1 -1
  439. package/dist/vite/plugin-config-reload.d.ts +4 -3
  440. package/dist/vite/plugin-config-reload.js +11 -5
  441. package/dist/vite/plugin-config-reload.js.map +1 -1
  442. package/dist/vite/plugin-config.d.ts +2 -2
  443. package/dist/vite/plugin-config.js +9 -5
  444. package/dist/vite/plugin-config.js.map +1 -1
  445. package/dist/vite/plugin-custom-pages.d.ts +2 -2
  446. package/dist/vite/plugin-custom-pages.js +3 -3
  447. package/dist/vite/plugin-custom-pages.js.map +1 -1
  448. package/dist/vite/plugin-docs.d.ts +2 -2
  449. package/dist/vite/plugin-docs.js +5 -5
  450. package/dist/vite/plugin-docs.js.map +1 -1
  451. package/dist/vite/plugin-frontmatter.d.ts +2 -2
  452. package/dist/vite/plugin-frontmatter.js +5 -4
  453. package/dist/vite/plugin-frontmatter.js.map +1 -1
  454. package/dist/vite/plugin-mdx.d.ts +2 -2
  455. package/dist/vite/plugin-mdx.js +34 -16
  456. package/dist/vite/plugin-mdx.js.map +1 -1
  457. package/dist/vite/plugin-redirect.d.ts +2 -2
  458. package/dist/vite/plugin-redirect.js +3 -3
  459. package/dist/vite/plugin-redirect.js.map +1 -1
  460. package/dist/vite/plugin-search.d.ts +2 -2
  461. package/dist/vite/plugin-search.js +5 -1
  462. package/dist/vite/plugin-search.js.map +1 -1
  463. package/dist/vite/plugin-sidebar.d.ts +2 -2
  464. package/dist/vite/plugin-sidebar.js +13 -4
  465. package/dist/vite/plugin-sidebar.js.map +1 -1
  466. package/dist/vite/plugin-theme-css.d.ts +2 -2
  467. package/dist/vite/plugin-theme-css.js +57 -2
  468. package/dist/vite/plugin-theme-css.js.map +1 -1
  469. package/dist/vite/plugin.d.ts +2 -2
  470. package/dist/vite/plugin.js +4 -0
  471. package/dist/vite/plugin.js.map +1 -1
  472. package/dist/vite/{prerender.d.ts → prerender/FileWritingResponse.d.ts} +8 -9
  473. package/dist/vite/prerender/FileWritingResponse.js +51 -0
  474. package/dist/vite/prerender/FileWritingResponse.js.map +1 -0
  475. package/dist/vite/prerender/prerender.d.ts +14 -0
  476. package/dist/vite/prerender/prerender.js +84 -0
  477. package/dist/vite/prerender/prerender.js.map +1 -0
  478. package/dist/vite/prerender/worker.d.ts +13 -0
  479. package/dist/vite/prerender/worker.js +32 -0
  480. package/dist/vite/prerender/worker.js.map +1 -0
  481. package/dist/vite/reporter.d.ts +3 -0
  482. package/dist/vite/reporter.js +33 -0
  483. package/dist/vite/reporter.js.map +1 -0
  484. package/dist/vite/sitemap.js +2 -1
  485. package/dist/vite/sitemap.js.map +1 -1
  486. package/dist/zuplo/enrich-with-zuplo.d.ts +5 -0
  487. package/dist/zuplo/enrich-with-zuplo.js +184 -0
  488. package/dist/zuplo/enrich-with-zuplo.js.map +1 -0
  489. package/dist/zuplo/env.d.ts +1 -0
  490. package/dist/zuplo/env.js +3 -0
  491. package/dist/zuplo/env.js.map +1 -1
  492. package/dist/zuplo/policy-types.d.ts +33 -0
  493. package/dist/zuplo/policy-types.js +8 -0
  494. package/dist/zuplo/policy-types.js.map +1 -0
  495. package/dist/zuplo/with-zuplo-processors.d.ts +3 -0
  496. package/dist/zuplo/with-zuplo-processors.js +26 -0
  497. package/dist/zuplo/with-zuplo-processors.js.map +1 -0
  498. package/dist/zuplo/with-zuplo.d.ts +1 -1
  499. package/dist/zuplo/with-zuplo.js +7 -26
  500. package/dist/zuplo/with-zuplo.js.map +1 -1
  501. package/lib/AuthenticationPlugin-CiO1FM6Q.js +58 -0
  502. package/lib/AuthenticationPlugin-CiO1FM6Q.js.map +1 -0
  503. package/lib/{CategoryHeading-Bb9dqxD3.js → CategoryHeading-DpB47wvk.js} +3 -3
  504. package/lib/{CategoryHeading-Bb9dqxD3.js.map → CategoryHeading-DpB47wvk.js.map} +1 -1
  505. package/lib/ClientOnly-E7hGysn1.js.map +1 -1
  506. package/lib/{Dialog-k70Qfukb.js → Dialog-DIKGQxQc.js} +36 -20
  507. package/lib/{Dialog-k70Qfukb.js.map → Dialog-DIKGQxQc.js.map} +1 -1
  508. package/lib/{Markdown-CRsmPPfY.js → Markdown-DePfm7oQ.js} +5972 -5888
  509. package/lib/Markdown-DePfm7oQ.js.map +1 -0
  510. package/lib/MdxPage-BN6l6zXL.js +201 -0
  511. package/lib/MdxPage-BN6l6zXL.js.map +1 -0
  512. package/lib/OasProvider-BSuptFK-.js +34 -0
  513. package/lib/OasProvider-BSuptFK-.js.map +1 -0
  514. package/lib/OperationList-DOcfDmJP.js +5217 -0
  515. package/lib/OperationList-DOcfDmJP.js.map +1 -0
  516. package/lib/{Select-O9ZM3ZgX.js → Select-Dqtcn53H.js} +49 -49
  517. package/lib/Select-Dqtcn53H.js.map +1 -0
  518. package/lib/SlotletProvider-DdtIOUi6.js +221 -0
  519. package/lib/SlotletProvider-DdtIOUi6.js.map +1 -0
  520. package/lib/{Button-jK0EsymC.js → Spinner-1KrEmx1V.js} +17 -14
  521. package/lib/Spinner-1KrEmx1V.js.map +1 -0
  522. package/lib/chunk-IR6S3I6Y-D_3UmFIn.js +1821 -0
  523. package/lib/chunk-IR6S3I6Y-D_3UmFIn.js.map +1 -0
  524. package/lib/circular-v7K6lDDh.js +15409 -0
  525. package/lib/circular-v7K6lDDh.js.map +1 -0
  526. package/lib/{cn-BmFQLtkS.js → cn-qaFjX9_3.js} +2 -2
  527. package/lib/cn-qaFjX9_3.js.map +1 -0
  528. package/lib/{context-D1nXWxm7.js → context-DLCwaMXN.js} +2 -2
  529. package/lib/context-DLCwaMXN.js.map +1 -0
  530. package/lib/createServer-DmusVVsi.js +12728 -0
  531. package/lib/createServer-DmusVVsi.js.map +1 -0
  532. package/lib/hook-CN__aZIt.js +1464 -0
  533. package/lib/hook-CN__aZIt.js.map +1 -0
  534. package/lib/index-BTbP6Lgf.js +2103 -0
  535. package/lib/index-BTbP6Lgf.js.map +1 -0
  536. package/lib/index-CPNSgwSb.js +36 -0
  537. package/lib/index-CPNSgwSb.js.map +1 -0
  538. package/lib/{index-CkwDvuPt.js → index-Dl3Yl0yb.js} +303 -286
  539. package/lib/index-Dl3Yl0yb.js.map +1 -0
  540. package/lib/index-DwT-v3zK.js +86 -0
  541. package/lib/index-DwT-v3zK.js.map +1 -0
  542. package/lib/index-LNp6rxyU.js.map +1 -1
  543. package/lib/index-gQD2h1wX.js +447 -0
  544. package/lib/index-gQD2h1wX.js.map +1 -0
  545. package/lib/index.esm--gIChbWs.js +1207 -0
  546. package/lib/index.esm--gIChbWs.js.map +1 -0
  547. package/lib/index.esm-CQHE3GEU.js +691 -0
  548. package/lib/{index.esm-Bm8pj-bc.js.map → index.esm-CQHE3GEU.js.map} +1 -1
  549. package/lib/invariant-Caa8-XvF.js.map +1 -1
  550. package/lib/joinUrl-10po2Jdj.js +20 -0
  551. package/lib/joinUrl-10po2Jdj.js.map +1 -0
  552. package/lib/jsx-runtime-CYK1ROHF.js +446 -0
  553. package/lib/jsx-runtime-CYK1ROHF.js.map +1 -0
  554. package/lib/{hook-hEqe7fPB.js → mutation-EclmI0is.js} +39 -58
  555. package/lib/mutation-EclmI0is.js.map +1 -0
  556. package/lib/objectEntries-yMIkr2mI.js +5 -0
  557. package/lib/objectEntries-yMIkr2mI.js.map +1 -0
  558. package/lib/post-processors/removeExtensions.js +7 -7
  559. package/lib/post-processors/removeExtensions.js.map +1 -1
  560. package/lib/post-processors/removeParameters.js +48 -0
  561. package/lib/post-processors/removeParameters.js.map +1 -0
  562. package/lib/post-processors/removePaths.js.map +1 -1
  563. package/lib/post-processors/traverse.js +11 -8
  564. package/lib/post-processors/traverse.js.map +1 -1
  565. package/lib/{prism-bash.min-DadFsM4Z.js → prism-bash.min-HHIMdNJ_.js} +4 -4
  566. package/lib/{prism-bash.min-DadFsM4Z.js.map → prism-bash.min-HHIMdNJ_.js.map} +1 -1
  567. package/lib/prism-csharp.min-bQAo2pmx.js +63 -0
  568. package/lib/{prism-csharp.min-Yizuc34Y.js.map → prism-csharp.min-bQAo2pmx.js.map} +1 -1
  569. package/lib/prism-java.min-BpvsOuIa.js +35 -0
  570. package/lib/{prism-java.min-d5iT_mOd.js.map → prism-java.min-BpvsOuIa.js.map} +1 -1
  571. package/lib/{prism-markdown.min-F3U-vPBi.js → prism-markdown.min-C0Qn0m-5.js} +30 -30
  572. package/lib/{prism-markdown.min-F3U-vPBi.js.map → prism-markdown.min-C0Qn0m-5.js.map} +1 -1
  573. package/lib/prism-markup-BNGj0Tvm.js.map +1 -1
  574. package/lib/prism-ruby.min-Dx9KO9ds.js +38 -0
  575. package/lib/{prism-ruby.min-C7LwcKyz.js.map → prism-ruby.min-Dx9KO9ds.js.map} +1 -1
  576. package/lib/prism-typescript.min-CD7H2IYQ.js +34 -0
  577. package/lib/{prism-typescript.min-oSVeWCAd.js.map → prism-typescript.min-CD7H2IYQ.js.map} +1 -1
  578. package/lib/ui/Accordion.js +2 -2
  579. package/lib/ui/Accordion.js.map +1 -1
  580. package/lib/ui/ActionButton.js +10 -11
  581. package/lib/ui/ActionButton.js.map +1 -1
  582. package/lib/ui/Alert.js +3 -3
  583. package/lib/ui/Alert.js.map +1 -1
  584. package/lib/ui/AlertDialog.js +2 -2
  585. package/lib/ui/AlertDialog.js.map +1 -1
  586. package/lib/ui/Badge.js +5 -4
  587. package/lib/ui/Badge.js.map +1 -1
  588. package/lib/ui/Breadcrumb.js +5 -5
  589. package/lib/ui/Breadcrumb.js.map +1 -1
  590. package/lib/ui/Button.js +3 -3
  591. package/lib/ui/Button.js.map +1 -1
  592. package/lib/ui/Callout.js +5 -5
  593. package/lib/ui/Callout.js.map +1 -1
  594. package/lib/ui/Card.js +9 -9
  595. package/lib/ui/Card.js.map +1 -1
  596. package/lib/ui/Carousel.js +408 -402
  597. package/lib/ui/Carousel.js.map +1 -1
  598. package/lib/ui/Checkbox.js +26 -15
  599. package/lib/ui/Checkbox.js.map +1 -1
  600. package/lib/ui/Command.js +114 -508
  601. package/lib/ui/Command.js.map +1 -1
  602. package/lib/ui/Dialog.js +2 -2
  603. package/lib/ui/Dialog.js.map +1 -1
  604. package/lib/ui/Drawer.js +357 -378
  605. package/lib/ui/Drawer.js.map +1 -1
  606. package/lib/ui/DropdownMenu.js +2 -2
  607. package/lib/ui/DropdownMenu.js.map +1 -1
  608. package/lib/ui/Form.js +6 -6
  609. package/lib/ui/Form.js.map +1 -1
  610. package/lib/ui/HoverCard.js +2 -2
  611. package/lib/ui/Input.js +2 -2
  612. package/lib/ui/Input.js.map +1 -1
  613. package/lib/ui/Label.js +3 -3
  614. package/lib/ui/Pagination.js +5 -5
  615. package/lib/ui/Pagination.js.map +1 -1
  616. package/lib/ui/Popover.js +2 -2
  617. package/lib/ui/Popover.js.map +1 -1
  618. package/lib/ui/Progress.js +2 -2
  619. package/lib/ui/Progress.js.map +1 -1
  620. package/lib/ui/RadioGroup.js +2 -2
  621. package/lib/ui/RadioGroup.js.map +1 -1
  622. package/lib/ui/ScrollArea.js +2 -2
  623. package/lib/ui/ScrollArea.js.map +1 -1
  624. package/lib/ui/Select.js +4 -4
  625. package/lib/ui/Select.js.map +1 -1
  626. package/lib/ui/Skeleton.js +2 -2
  627. package/lib/ui/Skeleton.js.map +1 -1
  628. package/lib/ui/Slider.js +2 -2
  629. package/lib/ui/Stepper.js +6 -0
  630. package/lib/ui/Stepper.js.map +1 -0
  631. package/lib/ui/Switch.js +2 -2
  632. package/lib/ui/Switch.js.map +1 -1
  633. package/lib/{SyntaxHighlight-C31iouiO.js → ui/SyntaxHighlight.js} +460 -536
  634. package/lib/ui/SyntaxHighlight.js.map +1 -0
  635. package/lib/ui/Tabs.js +2 -2
  636. package/lib/ui/Textarea.js +2 -2
  637. package/lib/ui/Textarea.js.map +1 -1
  638. package/lib/ui/Toggle.js +3 -3
  639. package/lib/ui/Toggle.js.map +1 -1
  640. package/lib/ui/ToggleGroup.js +2 -2
  641. package/lib/ui/ToggleGroup.js.map +1 -1
  642. package/lib/ui/Tooltip.js +2 -2
  643. package/lib/ui/util.js +6 -0
  644. package/lib/ui/util.js.map +1 -0
  645. package/lib/useExposedProps-RIvey2Oy.js +9 -0
  646. package/lib/useExposedProps-RIvey2Oy.js.map +1 -0
  647. package/lib/useScrollToAnchor-RyqO3lj4.js +290 -0
  648. package/lib/useScrollToAnchor-RyqO3lj4.js.map +1 -0
  649. package/lib/zudoku.auth-auth0.js +19 -20
  650. package/lib/zudoku.auth-auth0.js.map +1 -1
  651. package/lib/zudoku.auth-clerk.js +81 -53
  652. package/lib/zudoku.auth-clerk.js.map +1 -1
  653. package/lib/zudoku.auth-openid.js +379 -410
  654. package/lib/zudoku.auth-openid.js.map +1 -1
  655. package/lib/zudoku.components.js +1003 -1263
  656. package/lib/zudoku.components.js.map +1 -1
  657. package/lib/zudoku.css +1 -0
  658. package/lib/zudoku.hooks.js +19 -0
  659. package/lib/zudoku.hooks.js.map +1 -0
  660. package/lib/zudoku.icons.js +10 -0
  661. package/lib/zudoku.icons.js.map +1 -1
  662. package/lib/zudoku.plugin-api-catalog.js +109 -109
  663. package/lib/zudoku.plugin-api-catalog.js.map +1 -1
  664. package/lib/zudoku.plugin-api-keys.js +108 -107
  665. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  666. package/lib/zudoku.plugin-custom-pages.js +4 -4
  667. package/lib/zudoku.plugin-custom-pages.js.map +1 -1
  668. package/lib/zudoku.plugin-markdown.js +23 -44
  669. package/lib/zudoku.plugin-markdown.js.map +1 -1
  670. package/lib/zudoku.plugin-openapi.js +8 -6
  671. package/lib/zudoku.plugin-openapi.js.map +1 -1
  672. package/lib/zudoku.plugin-redirect.js +1 -1
  673. package/lib/zudoku.plugin-redirect.js.map +1 -1
  674. package/lib/zudoku.plugin-search-inkeep.js +34 -26
  675. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  676. package/lib/zudoku.plugins.js +14 -0
  677. package/lib/zudoku.plugins.js.map +1 -0
  678. package/package.json +104 -89
  679. package/src/app/demo-cdn.html +31 -31
  680. package/src/app/demo.tsx +1 -2
  681. package/src/app/entry.client.tsx +9 -15
  682. package/src/app/entry.server.tsx +3 -3
  683. package/src/app/main.css +59 -45
  684. package/src/app/main.tsx +33 -10
  685. package/src/app/sentry.ts +1 -1
  686. package/src/app/standalone.tsx +1 -2
  687. package/src/app/tailwind.ts +6 -0
  688. package/src/lib/MissingIcon.tsx +22 -0
  689. package/src/lib/authentication/components/CallbackHandler.tsx +1 -1
  690. package/src/lib/authentication/components/SignIn.tsx +1 -1
  691. package/src/lib/authentication/components/SignOut.tsx +3 -2
  692. package/src/lib/authentication/providers/auth0.tsx +4 -6
  693. package/src/lib/authentication/providers/clerk.tsx +48 -13
  694. package/src/lib/authentication/providers/openid.tsx +32 -15
  695. package/src/lib/authentication/state.ts +26 -2
  696. package/src/lib/components/AnchorLink.tsx +6 -3
  697. package/src/lib/components/Autocomplete.tsx +113 -0
  698. package/src/lib/components/Banner.tsx +1 -0
  699. package/src/lib/components/Bootstrap.tsx +4 -6
  700. package/src/lib/components/Header.tsx +14 -10
  701. package/src/lib/components/Heading.tsx +1 -1
  702. package/src/lib/components/Layout.tsx +4 -3
  703. package/src/lib/components/Markdown.tsx +14 -15
  704. package/src/lib/components/MobileTopNavigation.tsx +1 -1
  705. package/src/lib/components/NotFoundPage.tsx +1 -1
  706. package/src/lib/components/PathRenderer.tsx +61 -0
  707. package/src/lib/components/SlotletProvider.tsx +1 -1
  708. package/src/lib/components/StatusPage.tsx +91 -0
  709. package/src/lib/components/ThemeSwitch.tsx +29 -9
  710. package/src/lib/components/TopNavigation.tsx +15 -11
  711. package/src/lib/components/Zudoku.tsx +10 -6
  712. package/src/lib/components/cache.ts +15 -0
  713. package/src/lib/components/context/RouterEventsEmitter.tsx +19 -0
  714. package/src/lib/components/context/ViewportAnchorContext.tsx +20 -6
  715. package/src/lib/components/context/ZudokuContext.ts +17 -4
  716. package/src/lib/components/index.ts +22 -5
  717. package/src/lib/components/navigation/Sidebar.tsx +8 -2
  718. package/src/lib/components/navigation/SidebarBadge.tsx +17 -12
  719. package/src/lib/components/navigation/SidebarCategory.tsx +46 -47
  720. package/src/lib/components/navigation/SidebarItem.tsx +4 -2
  721. package/src/lib/components/navigation/SidebarWrapper.tsx +3 -2
  722. package/src/lib/components/navigation/utils.ts +1 -1
  723. package/src/lib/core/RouteGuard.tsx +73 -0
  724. package/src/lib/core/ZudokuContext.ts +41 -9
  725. package/src/lib/core/plugins.ts +27 -9
  726. package/src/lib/errors/RouterError.tsx +1 -1
  727. package/src/lib/hooks/index.ts +5 -0
  728. package/src/lib/hooks/useEvent.test.tsx +149 -0
  729. package/src/lib/hooks/useEvent.ts +41 -0
  730. package/src/lib/icons.ts +1 -0
  731. package/src/lib/oas/graphql/circular.ts +50 -0
  732. package/src/lib/oas/graphql/index.ts +135 -92
  733. package/src/lib/oas/parser/dereference/index.ts +8 -4
  734. package/src/lib/oas/parser/upgrade/index.ts +21 -5
  735. package/src/lib/plugins/api-catalog/Catalog.tsx +62 -110
  736. package/src/lib/plugins/api-catalog/index.tsx +69 -9
  737. package/src/lib/plugins/api-keys/CreateApiKey.tsx +8 -4
  738. package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
  739. package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +1 -1
  740. package/src/lib/plugins/api-keys/index.tsx +4 -1
  741. package/src/lib/plugins/custom-pages/index.tsx +1 -1
  742. package/src/lib/plugins/markdown/MdxPage.tsx +15 -3
  743. package/src/lib/plugins/markdown/index.tsx +2 -1
  744. package/src/lib/plugins/markdown/resolver.ts +0 -33
  745. package/src/lib/plugins/openapi/CollapsibleCode.tsx +10 -7
  746. package/src/lib/plugins/openapi/ColorizedParam.tsx +29 -12
  747. package/src/lib/plugins/openapi/Endpoint.tsx +14 -12
  748. package/src/lib/plugins/openapi/OasProvider.tsx +51 -0
  749. package/src/lib/plugins/openapi/OperationList.tsx +106 -67
  750. package/src/lib/plugins/openapi/OperationListItem.tsx +48 -6
  751. package/src/lib/plugins/openapi/ParameterList.tsx +4 -0
  752. package/src/lib/plugins/openapi/ParameterListItem.tsx +7 -8
  753. package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +14 -2
  754. package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +15 -38
  755. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +46 -63
  756. package/src/lib/plugins/openapi/Sidecar.tsx +44 -60
  757. package/src/lib/plugins/openapi/SidecarBox.tsx +4 -16
  758. package/src/lib/plugins/openapi/SidecarExamples.tsx +162 -0
  759. package/src/lib/plugins/openapi/client/GraphQLClient.tsx +28 -120
  760. package/src/lib/plugins/openapi/client/createServer.ts +6 -2
  761. package/src/lib/plugins/openapi/client/useCreateQuery.ts +2 -5
  762. package/src/lib/plugins/openapi/context.tsx +2 -2
  763. package/src/lib/plugins/openapi/graphql/gql.ts +21 -5
  764. package/src/lib/plugins/openapi/graphql/graphql.ts +92 -45
  765. package/src/lib/plugins/openapi/index.tsx +130 -97
  766. package/src/lib/plugins/openapi/interfaces.ts +27 -2
  767. package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +54 -0
  768. package/src/lib/plugins/openapi/playground/Headers.tsx +166 -36
  769. package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +13 -0
  770. package/src/lib/plugins/openapi/playground/PathParams.tsx +39 -65
  771. package/src/lib/plugins/openapi/playground/Playground.tsx +288 -235
  772. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +6 -3
  773. package/src/lib/plugins/openapi/playground/QueryParams.tsx +87 -88
  774. package/src/lib/plugins/openapi/playground/SubmitButton.tsx +75 -0
  775. package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +73 -0
  776. package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +210 -0
  777. package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +101 -0
  778. package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.test.ts +64 -0
  779. package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.ts +36 -0
  780. package/src/lib/plugins/openapi/post-processors/removeExtensions.test.ts +58 -0
  781. package/src/lib/plugins/openapi/post-processors/removeExtensions.ts +7 -4
  782. package/src/lib/plugins/openapi/post-processors/removeParameters.test.ts +148 -0
  783. package/src/lib/plugins/openapi/post-processors/removeParameters.ts +101 -0
  784. package/src/lib/plugins/openapi/schema/{SchemaComponents.tsx → SchemaPropertyItem.tsx} +34 -9
  785. package/src/lib/plugins/openapi/schema/SchemaView.tsx +4 -1
  786. package/src/lib/plugins/openapi/schema/utils.ts +4 -0
  787. package/src/lib/plugins/openapi/util/createSidebarCategory.tsx +39 -0
  788. package/src/lib/plugins/openapi/util/generateSchemaExample.ts +26 -11
  789. package/src/lib/plugins/openapi/util/getRoutes.tsx +123 -0
  790. package/src/lib/plugins/openapi/util/methodColorMap.tsx +11 -0
  791. package/src/lib/plugins/openapi/util/methodToColor.ts +27 -0
  792. package/src/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.tsx +32 -0
  793. package/src/lib/plugins/redirect/index.tsx +1 -1
  794. package/src/lib/plugins/search-inkeep/index.tsx +27 -8
  795. package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +139 -0
  796. package/src/lib/plugins/search-pagefind/ResultList.tsx +98 -0
  797. package/src/lib/plugins/search-pagefind/get-results.tsx +54 -0
  798. package/src/lib/plugins/search-pagefind/index.tsx +21 -0
  799. package/src/lib/plugins/search-pagefind/types.ts +118 -0
  800. package/src/lib/ui/Badge.tsx +2 -1
  801. package/src/lib/ui/Card.tsx +1 -1
  802. package/src/lib/ui/Checkbox.tsx +24 -7
  803. package/src/lib/ui/Command.tsx +45 -3
  804. package/src/lib/ui/Input.tsx +1 -2
  805. package/src/lib/ui/Select.tsx +1 -1
  806. package/src/lib/ui/Stepper.css +43 -0
  807. package/src/lib/ui/Stepper.tsx +8 -0
  808. package/src/lib/{components → ui}/SyntaxHighlight.tsx +37 -8
  809. package/src/lib/ui/util.tsx +3 -0
  810. package/src/lib/util/MdxComponents.tsx +8 -6
  811. package/src/lib/util/createVariantComponent.tsx +2 -2
  812. package/src/lib/util/joinUrl.test.ts +62 -0
  813. package/src/lib/util/joinUrl.ts +57 -0
  814. package/src/lib/util/scrollIntoViewIfNeeded.ts +18 -0
  815. package/src/lib/util/traverse.ts +15 -5
  816. package/src/lib/util/useExposedProps.tsx +1 -1
  817. package/src/lib/util/useLatest.ts +18 -0
  818. package/src/lib/util/useScrollToAnchor.ts +33 -34
  819. package/src/lib/util/useScrollToTop.ts +9 -4
  820. package/dist/lib/components/SyntaxHighlight.d.ts +0 -11
  821. package/dist/lib/components/SyntaxHighlight.js.map +0 -1
  822. package/dist/lib/plugins/openapi/Route.d.ts +0 -6
  823. package/dist/lib/plugins/openapi/Route.js +0 -6
  824. package/dist/lib/plugins/openapi/Route.js.map +0 -1
  825. package/dist/lib/plugins/openapi/client/worker.d.ts +0 -4
  826. package/dist/lib/plugins/openapi/client/worker.js +0 -29
  827. package/dist/lib/plugins/openapi/client/worker.js.map +0 -1
  828. package/dist/lib/plugins/openapi/playground/ResponseTab.d.ts +0 -4
  829. package/dist/lib/plugins/openapi/playground/ResponseTab.js +0 -42
  830. package/dist/lib/plugins/openapi/playground/ResponseTab.js.map +0 -1
  831. package/dist/lib/plugins/openapi/schema/SchemaComponents.js +0 -28
  832. package/dist/lib/plugins/openapi/schema/SchemaComponents.js.map +0 -1
  833. package/dist/lib/plugins/openapi-worker.d.ts +0 -1
  834. package/dist/lib/plugins/openapi-worker.js +0 -8
  835. package/dist/lib/plugins/openapi-worker.js.map +0 -1
  836. package/dist/vite/prerender.js +0 -89
  837. package/dist/vite/prerender.js.map +0 -1
  838. package/lib/AnchorLink-BR0MvI7n.js +0 -35
  839. package/lib/AnchorLink-BR0MvI7n.js.map +0 -1
  840. package/lib/AuthenticationPlugin-D0Em0SwR.js +0 -59
  841. package/lib/AuthenticationPlugin-D0Em0SwR.js.map +0 -1
  842. package/lib/Button-jK0EsymC.js.map +0 -1
  843. package/lib/Markdown-CRsmPPfY.js.map +0 -1
  844. package/lib/MdxPage-Wp8QU0-q.js +0 -188
  845. package/lib/MdxPage-Wp8QU0-q.js.map +0 -1
  846. package/lib/OperationList-u8xHU9-b.js +0 -4706
  847. package/lib/OperationList-u8xHU9-b.js.map +0 -1
  848. package/lib/Route-DlG_HTMu.js +0 -11
  849. package/lib/Route-DlG_HTMu.js.map +0 -1
  850. package/lib/Select-O9ZM3ZgX.js.map +0 -1
  851. package/lib/SidebarBadge-DxFJcJ6V.js +0 -51
  852. package/lib/SidebarBadge-DxFJcJ6V.js.map +0 -1
  853. package/lib/SlotletProvider-BgvYIPQe.js +0 -252
  854. package/lib/SlotletProvider-BgvYIPQe.js.map +0 -1
  855. package/lib/Spinner-3cQDBVGr.js +0 -7
  856. package/lib/Spinner-3cQDBVGr.js.map +0 -1
  857. package/lib/SyntaxHighlight-C31iouiO.js.map +0 -1
  858. package/lib/__vite-browser-external-BYRIRx8p.js +0 -9
  859. package/lib/__vite-browser-external-BYRIRx8p.js.map +0 -1
  860. package/lib/assets/index-B_Jk_Yzp.js +0 -4820
  861. package/lib/assets/index-B_Jk_Yzp.js.map +0 -1
  862. package/lib/assets/worker-C_2va8B8.js +0 -18200
  863. package/lib/assets/worker-C_2va8B8.js.map +0 -1
  864. package/lib/cn-BmFQLtkS.js.map +0 -1
  865. package/lib/context-D1nXWxm7.js.map +0 -1
  866. package/lib/createServer-BCAHdrpE.js +0 -15302
  867. package/lib/createServer-BCAHdrpE.js.map +0 -1
  868. package/lib/hook-hEqe7fPB.js.map +0 -1
  869. package/lib/index-BuAyrJe3.js +0 -46
  870. package/lib/index-BuAyrJe3.js.map +0 -1
  871. package/lib/index-CkwDvuPt.js.map +0 -1
  872. package/lib/index-CmdLGbbk.js +0 -1279
  873. package/lib/index-CmdLGbbk.js.map +0 -1
  874. package/lib/index-Czzd9rjU.js +0 -899
  875. package/lib/index-Czzd9rjU.js.map +0 -1
  876. package/lib/index-Yn8c3UWE.js +0 -921
  877. package/lib/index-Yn8c3UWE.js.map +0 -1
  878. package/lib/index.esm-Bm8pj-bc.js +0 -675
  879. package/lib/index.esm-C5mr_sKO.js +0 -1193
  880. package/lib/index.esm-C5mr_sKO.js.map +0 -1
  881. package/lib/jsx-runtime-B6kdoens.js +0 -635
  882. package/lib/jsx-runtime-B6kdoens.js.map +0 -1
  883. package/lib/object_hash-CvlLgU-M.js +0 -785
  884. package/lib/object_hash-CvlLgU-M.js.map +0 -1
  885. package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
  886. package/lib/prism-java.min-d5iT_mOd.js +0 -7
  887. package/lib/prism-ruby.min-C7LwcKyz.js +0 -10
  888. package/lib/prism-typescript.min-oSVeWCAd.js +0 -6
  889. package/lib/router-lfyopgBI.js +0 -3024
  890. package/lib/router-lfyopgBI.js.map +0 -1
  891. package/lib/state-tsXBLONe.js +0 -203
  892. package/lib/state-tsXBLONe.js.map +0 -1
  893. package/lib/useExposedProps-CTPtylCV.js +0 -10
  894. package/lib/useExposedProps-CTPtylCV.js.map +0 -1
  895. package/lib/utils-DcpDOncX.js +0 -1218
  896. package/lib/utils-DcpDOncX.js.map +0 -1
  897. package/lib/zudoku.openapi-worker.js +0 -15
  898. package/lib/zudoku.openapi-worker.js.map +0 -1
  899. package/src/lib/plugins/openapi/Route.tsx +0 -19
  900. package/src/lib/plugins/openapi/client/worker.ts +0 -44
  901. package/src/lib/plugins/openapi/playground/ResponseTab.tsx +0 -76
  902. package/src/lib/plugins/openapi-worker.ts +0 -11
  903. /package/dist/lib/plugins/openapi/schema/{SchemaComponents.d.ts → SchemaPropertyItem.d.ts} +0 -0
@@ -0,0 +1,1464 @@
1
+ var Ge = (t) => {
2
+ throw TypeError(t);
3
+ };
4
+ var me = (t, e, s) => e.has(t) || Ge("Cannot " + s);
5
+ var n = (t, e, s) => (me(t, e, "read from private field"), s ? s.call(t) : e.get(t)), g = (t, e, s) => e.has(t) ? Ge("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(t) : e.set(t, s), d = (t, e, s, r) => (me(t, e, "write to private field"), r ? r.call(t, s) : e.set(t, s), s), w = (t, e, s) => (me(t, e, "access private method"), s);
6
+ import * as j from "react";
7
+ import $e, { createContext as Et, useContext as Ot, useMemo as It } from "react";
8
+ import { j as Ft } from "./jsx-runtime-CYK1ROHF.js";
9
+ import { u as ve, m as ze } from "./chunk-IR6S3I6Y-D_3UmFIn.js";
10
+ var qe = class {
11
+ constructor() {
12
+ this.listeners = /* @__PURE__ */ new Set(), this.subscribe = this.subscribe.bind(this);
13
+ }
14
+ subscribe(t) {
15
+ return this.listeners.add(t), this.onSubscribe(), () => {
16
+ this.listeners.delete(t), this.onUnsubscribe();
17
+ };
18
+ }
19
+ hasListeners() {
20
+ return this.listeners.size > 0;
21
+ }
22
+ onSubscribe() {
23
+ }
24
+ onUnsubscribe() {
25
+ }
26
+ }, V = typeof window > "u" || "Deno" in globalThis;
27
+ function Se() {
28
+ }
29
+ function fs(t, e) {
30
+ return typeof t == "function" ? t(e) : t;
31
+ }
32
+ function we(t) {
33
+ return typeof t == "number" && t >= 0 && t !== 1 / 0;
34
+ }
35
+ function at(t, e) {
36
+ return Math.max(t + (e || 0) - Date.now(), 0);
37
+ }
38
+ function ye(t, e) {
39
+ return typeof t == "function" ? t(e) : t;
40
+ }
41
+ function k(t, e) {
42
+ return typeof t == "function" ? t(e) : t;
43
+ }
44
+ function ys(t, e) {
45
+ const {
46
+ type: s = "all",
47
+ exact: r,
48
+ fetchStatus: i,
49
+ predicate: a,
50
+ queryKey: o,
51
+ stale: u
52
+ } = t;
53
+ if (o) {
54
+ if (r) {
55
+ if (e.queryHash !== Pt(o, e.options))
56
+ return !1;
57
+ } else if (!Le(e.queryKey, o))
58
+ return !1;
59
+ }
60
+ if (s !== "all") {
61
+ const l = e.isActive();
62
+ if (s === "active" && !l || s === "inactive" && l)
63
+ return !1;
64
+ }
65
+ return !(typeof u == "boolean" && e.isStale() !== u || i && i !== e.state.fetchStatus || a && !a(e));
66
+ }
67
+ function ps(t, e) {
68
+ const { exact: s, status: r, predicate: i, mutationKey: a } = t;
69
+ if (a) {
70
+ if (!e.options.mutationKey)
71
+ return !1;
72
+ if (s) {
73
+ if (Re(e.options.mutationKey) !== Re(a))
74
+ return !1;
75
+ } else if (!Le(e.options.mutationKey, a))
76
+ return !1;
77
+ }
78
+ return !(r && e.state.status !== r || i && !i(e));
79
+ }
80
+ function Pt(t, e) {
81
+ return ((e == null ? void 0 : e.queryKeyHashFn) || Re)(t);
82
+ }
83
+ function Re(t) {
84
+ return JSON.stringify(
85
+ t,
86
+ (e, s) => Oe(s) ? Object.keys(s).sort().reduce((r, i) => (r[i] = s[i], r), {}) : s
87
+ );
88
+ }
89
+ function Le(t, e) {
90
+ return t === e ? !0 : typeof t != typeof e ? !1 : t && e && typeof t == "object" && typeof e == "object" ? !Object.keys(e).some((s) => !Le(t[s], e[s])) : !1;
91
+ }
92
+ function Ce(t, e) {
93
+ if (t === e)
94
+ return t;
95
+ const s = Je(t) && Je(e);
96
+ if (s || Oe(t) && Oe(e)) {
97
+ const r = s ? t : Object.keys(t), i = r.length, a = s ? e : Object.keys(e), o = a.length, u = s ? [] : {};
98
+ let l = 0;
99
+ for (let f = 0; f < o; f++) {
100
+ const m = s ? f : a[f];
101
+ (!s && r.includes(m) || s) && t[m] === void 0 && e[m] === void 0 ? (u[m] = void 0, l++) : (u[m] = Ce(t[m], e[m]), u[m] === t[m] && t[m] !== void 0 && l++);
102
+ }
103
+ return i === o && l === i ? t : u;
104
+ }
105
+ return e;
106
+ }
107
+ function Ee(t, e) {
108
+ if (!e || Object.keys(t).length !== Object.keys(e).length)
109
+ return !1;
110
+ for (const s in t)
111
+ if (t[s] !== e[s])
112
+ return !1;
113
+ return !0;
114
+ }
115
+ function Je(t) {
116
+ return Array.isArray(t) && t.length === Object.keys(t).length;
117
+ }
118
+ function Oe(t) {
119
+ if (!Ve(t))
120
+ return !1;
121
+ const e = t.constructor;
122
+ if (e === void 0)
123
+ return !0;
124
+ const s = e.prototype;
125
+ return !(!Ve(s) || !s.hasOwnProperty("isPrototypeOf") || Object.getPrototypeOf(t) !== Object.prototype);
126
+ }
127
+ function Ve(t) {
128
+ return Object.prototype.toString.call(t) === "[object Object]";
129
+ }
130
+ function Tt(t) {
131
+ return new Promise((e) => {
132
+ setTimeout(e, t);
133
+ });
134
+ }
135
+ function Ie(t, e, s) {
136
+ if (typeof s.structuralSharing == "function")
137
+ return s.structuralSharing(t, e);
138
+ if (s.structuralSharing !== !1) {
139
+ if (process.env.NODE_ENV !== "production")
140
+ try {
141
+ return Ce(t, e);
142
+ } catch (r) {
143
+ console.error(
144
+ `Structural sharing requires data to be JSON serializable. To fix this, turn off structuralSharing or return JSON-serializable data from your queryFn. [${s.queryHash}]: ${r}`
145
+ );
146
+ }
147
+ return Ce(t, e);
148
+ }
149
+ return e;
150
+ }
151
+ function vs(t, e, s = 0) {
152
+ const r = [...t, e];
153
+ return s && r.length > s ? r.slice(1) : r;
154
+ }
155
+ function bs(t, e, s = 0) {
156
+ const r = [e, ...t];
157
+ return s && r.length > s ? r.slice(0, -1) : r;
158
+ }
159
+ var pe = Symbol();
160
+ function Dt(t, e) {
161
+ return process.env.NODE_ENV !== "production" && t.queryFn === pe && console.error(
162
+ `Attempted to invoke queryFn when set to skipToken. This is likely a configuration error. Query hash: '${t.queryHash}'`
163
+ ), !t.queryFn && (e != null && e.initialPromise) ? () => e.initialPromise : !t.queryFn || t.queryFn === pe ? () => Promise.reject(new Error(`Missing queryFn: '${t.queryHash}'`)) : t.queryFn;
164
+ }
165
+ var H, L, ee, tt, jt = (tt = class extends qe {
166
+ constructor() {
167
+ super();
168
+ g(this, H);
169
+ g(this, L);
170
+ g(this, ee);
171
+ d(this, ee, (e) => {
172
+ if (!V && window.addEventListener) {
173
+ const s = () => e();
174
+ return window.addEventListener("visibilitychange", s, !1), () => {
175
+ window.removeEventListener("visibilitychange", s);
176
+ };
177
+ }
178
+ });
179
+ }
180
+ onSubscribe() {
181
+ n(this, L) || this.setEventListener(n(this, ee));
182
+ }
183
+ onUnsubscribe() {
184
+ var e;
185
+ this.hasListeners() || ((e = n(this, L)) == null || e.call(this), d(this, L, void 0));
186
+ }
187
+ setEventListener(e) {
188
+ var s;
189
+ d(this, ee, e), (s = n(this, L)) == null || s.call(this), d(this, L, e((r) => {
190
+ typeof r == "boolean" ? this.setFocused(r) : this.onFocus();
191
+ }));
192
+ }
193
+ setFocused(e) {
194
+ n(this, H) !== e && (d(this, H, e), this.onFocus());
195
+ }
196
+ onFocus() {
197
+ const e = this.isFocused();
198
+ this.listeners.forEach((s) => {
199
+ s(e);
200
+ });
201
+ }
202
+ isFocused() {
203
+ var e;
204
+ return typeof n(this, H) == "boolean" ? n(this, H) : ((e = globalThis.document) == null ? void 0 : e.visibilityState) !== "hidden";
205
+ }
206
+ }, H = new WeakMap(), L = new WeakMap(), ee = new WeakMap(), tt), ot = new jt(), te, M, se, st, At = (st = class extends qe {
207
+ constructor() {
208
+ super();
209
+ g(this, te, !0);
210
+ g(this, M);
211
+ g(this, se);
212
+ d(this, se, (e) => {
213
+ if (!V && window.addEventListener) {
214
+ const s = () => e(!0), r = () => e(!1);
215
+ return window.addEventListener("online", s, !1), window.addEventListener("offline", r, !1), () => {
216
+ window.removeEventListener("online", s), window.removeEventListener("offline", r);
217
+ };
218
+ }
219
+ });
220
+ }
221
+ onSubscribe() {
222
+ n(this, M) || this.setEventListener(n(this, se));
223
+ }
224
+ onUnsubscribe() {
225
+ var e;
226
+ this.hasListeners() || ((e = n(this, M)) == null || e.call(this), d(this, M, void 0));
227
+ }
228
+ setEventListener(e) {
229
+ var s;
230
+ d(this, se, e), (s = n(this, M)) == null || s.call(this), d(this, M, e(this.setOnline.bind(this)));
231
+ }
232
+ setOnline(e) {
233
+ n(this, te) !== e && (d(this, te, e), this.listeners.forEach((r) => {
234
+ r(e);
235
+ }));
236
+ }
237
+ isOnline() {
238
+ return n(this, te);
239
+ }
240
+ }, te = new WeakMap(), M = new WeakMap(), se = new WeakMap(), st), ut = new At();
241
+ function Fe() {
242
+ let t, e;
243
+ const s = new Promise((i, a) => {
244
+ t = i, e = a;
245
+ });
246
+ s.status = "pending", s.catch(() => {
247
+ });
248
+ function r(i) {
249
+ Object.assign(s, i), delete s.resolve, delete s.reject;
250
+ }
251
+ return s.resolve = (i) => {
252
+ r({
253
+ status: "fulfilled",
254
+ value: i
255
+ }), t(i);
256
+ }, s.reject = (i) => {
257
+ r({
258
+ status: "rejected",
259
+ reason: i
260
+ }), e(i);
261
+ }, s;
262
+ }
263
+ function kt(t) {
264
+ return Math.min(1e3 * 2 ** t, 3e4);
265
+ }
266
+ function ct(t) {
267
+ return (t ?? "online") === "online" ? ut.isOnline() : !0;
268
+ }
269
+ var ht = class extends Error {
270
+ constructor(t) {
271
+ super("CancelledError"), this.revert = t == null ? void 0 : t.revert, this.silent = t == null ? void 0 : t.silent;
272
+ }
273
+ };
274
+ function ge(t) {
275
+ return t instanceof ht;
276
+ }
277
+ function xt(t) {
278
+ let e = !1, s = 0, r = !1, i;
279
+ const a = Fe(), o = (h) => {
280
+ var v;
281
+ r || (p(new ht(h)), (v = t.abort) == null || v.call(t));
282
+ }, u = () => {
283
+ e = !0;
284
+ }, l = () => {
285
+ e = !1;
286
+ }, f = () => ot.isFocused() && (t.networkMode === "always" || ut.isOnline()) && t.canRun(), m = () => ct(t.networkMode) && t.canRun(), c = (h) => {
287
+ var v;
288
+ r || (r = !0, (v = t.onSuccess) == null || v.call(t, h), i == null || i(), a.resolve(h));
289
+ }, p = (h) => {
290
+ var v;
291
+ r || (r = !0, (v = t.onError) == null || v.call(t, h), i == null || i(), a.reject(h));
292
+ }, y = () => new Promise((h) => {
293
+ var v;
294
+ i = (C) => {
295
+ (r || f()) && h(C);
296
+ }, (v = t.onPause) == null || v.call(t);
297
+ }).then(() => {
298
+ var h;
299
+ i = void 0, r || (h = t.onContinue) == null || h.call(t);
300
+ }), E = () => {
301
+ if (r)
302
+ return;
303
+ let h;
304
+ const v = s === 0 ? t.initialPromise : void 0;
305
+ try {
306
+ h = v ?? t.fn();
307
+ } catch (C) {
308
+ h = Promise.reject(C);
309
+ }
310
+ Promise.resolve(h).then(c).catch((C) => {
311
+ var be;
312
+ if (r)
313
+ return;
314
+ const R = t.retry ?? (V ? 0 : 3), O = t.retryDelay ?? kt, q = typeof O == "function" ? O(s, C) : O, W = R === !0 || typeof R == "number" && s < R || typeof R == "function" && R(s, C);
315
+ if (e || !W) {
316
+ p(C);
317
+ return;
318
+ }
319
+ s++, (be = t.onFail) == null || be.call(t, s, C), Tt(q).then(() => f() ? void 0 : y()).then(() => {
320
+ e ? p(C) : E();
321
+ });
322
+ });
323
+ };
324
+ return {
325
+ promise: a,
326
+ cancel: o,
327
+ continue: () => (i == null || i(), a),
328
+ cancelRetry: u,
329
+ continueRetry: l,
330
+ canStart: m,
331
+ start: () => (m() ? E() : y().then(E), a)
332
+ };
333
+ }
334
+ function Qt() {
335
+ let t = [], e = 0, s = (u) => {
336
+ u();
337
+ }, r = (u) => {
338
+ u();
339
+ }, i = (u) => setTimeout(u, 0);
340
+ const a = (u) => {
341
+ e ? t.push(u) : i(() => {
342
+ s(u);
343
+ });
344
+ }, o = () => {
345
+ const u = t;
346
+ t = [], u.length && i(() => {
347
+ r(() => {
348
+ u.forEach((l) => {
349
+ s(l);
350
+ });
351
+ });
352
+ });
353
+ };
354
+ return {
355
+ batch: (u) => {
356
+ let l;
357
+ e++;
358
+ try {
359
+ l = u();
360
+ } finally {
361
+ e--, e || o();
362
+ }
363
+ return l;
364
+ },
365
+ /**
366
+ * All calls to the wrapped function will be batched.
367
+ */
368
+ batchCalls: (u) => (...l) => {
369
+ a(() => {
370
+ u(...l);
371
+ });
372
+ },
373
+ schedule: a,
374
+ /**
375
+ * Use this method to set a custom notify function.
376
+ * This can be used to for example wrap notifications with `React.act` while running tests.
377
+ */
378
+ setNotifyFunction: (u) => {
379
+ s = u;
380
+ },
381
+ /**
382
+ * Use this method to set a custom function to batch notifications together into a single tick.
383
+ * By default React Query will use the batch function provided by ReactDOM or React Native.
384
+ */
385
+ setBatchNotifyFunction: (u) => {
386
+ r = u;
387
+ },
388
+ setScheduler: (u) => {
389
+ i = u;
390
+ }
391
+ };
392
+ }
393
+ var Me = Qt(), K, rt, Ut = (rt = class {
394
+ constructor() {
395
+ g(this, K);
396
+ }
397
+ destroy() {
398
+ this.clearGcTimeout();
399
+ }
400
+ scheduleGc() {
401
+ this.clearGcTimeout(), we(this.gcTime) && d(this, K, setTimeout(() => {
402
+ this.optionalRemove();
403
+ }, this.gcTime));
404
+ }
405
+ updateGcTime(t) {
406
+ this.gcTime = Math.max(
407
+ this.gcTime || 0,
408
+ t ?? (V ? 1 / 0 : 5 * 60 * 1e3)
409
+ );
410
+ }
411
+ clearGcTimeout() {
412
+ n(this, K) && (clearTimeout(n(this, K)), d(this, K, void 0));
413
+ }
414
+ }, K = new WeakMap(), rt), re, ne, D, B, I, he, G, A, U, nt, ms = (nt = class extends Ut {
415
+ constructor(e) {
416
+ super();
417
+ g(this, A);
418
+ g(this, re);
419
+ g(this, ne);
420
+ g(this, D);
421
+ g(this, B);
422
+ g(this, I);
423
+ g(this, he);
424
+ g(this, G);
425
+ d(this, G, !1), d(this, he, e.defaultOptions), this.setOptions(e.options), this.observers = [], d(this, B, e.client), d(this, D, n(this, B).getQueryCache()), this.queryKey = e.queryKey, this.queryHash = e.queryHash, d(this, re, qt(this.options)), this.state = e.state ?? n(this, re), this.scheduleGc();
426
+ }
427
+ get meta() {
428
+ return this.options.meta;
429
+ }
430
+ get promise() {
431
+ var e;
432
+ return (e = n(this, I)) == null ? void 0 : e.promise;
433
+ }
434
+ setOptions(e) {
435
+ this.options = { ...n(this, he), ...e }, this.updateGcTime(this.options.gcTime);
436
+ }
437
+ optionalRemove() {
438
+ !this.observers.length && this.state.fetchStatus === "idle" && n(this, D).remove(this);
439
+ }
440
+ setData(e, s) {
441
+ const r = Ie(this.state.data, e, this.options);
442
+ return w(this, A, U).call(this, {
443
+ data: r,
444
+ type: "success",
445
+ dataUpdatedAt: s == null ? void 0 : s.updatedAt,
446
+ manual: s == null ? void 0 : s.manual
447
+ }), r;
448
+ }
449
+ setState(e, s) {
450
+ w(this, A, U).call(this, { type: "setState", state: e, setStateOptions: s });
451
+ }
452
+ cancel(e) {
453
+ var r, i;
454
+ const s = (r = n(this, I)) == null ? void 0 : r.promise;
455
+ return (i = n(this, I)) == null || i.cancel(e), s ? s.then(Se).catch(Se) : Promise.resolve();
456
+ }
457
+ destroy() {
458
+ super.destroy(), this.cancel({ silent: !0 });
459
+ }
460
+ reset() {
461
+ this.destroy(), this.setState(n(this, re));
462
+ }
463
+ isActive() {
464
+ return this.observers.some(
465
+ (e) => k(e.options.enabled, this) !== !1
466
+ );
467
+ }
468
+ isDisabled() {
469
+ return this.getObserversCount() > 0 ? !this.isActive() : this.options.queryFn === pe || this.state.dataUpdateCount + this.state.errorUpdateCount === 0;
470
+ }
471
+ isStale() {
472
+ return this.state.isInvalidated ? !0 : this.getObserversCount() > 0 ? this.observers.some(
473
+ (e) => e.getCurrentResult().isStale
474
+ ) : this.state.data === void 0;
475
+ }
476
+ isStaleByTime(e = 0) {
477
+ return this.state.isInvalidated || this.state.data === void 0 || !at(this.state.dataUpdatedAt, e);
478
+ }
479
+ onFocus() {
480
+ var s;
481
+ const e = this.observers.find((r) => r.shouldFetchOnWindowFocus());
482
+ e == null || e.refetch({ cancelRefetch: !1 }), (s = n(this, I)) == null || s.continue();
483
+ }
484
+ onOnline() {
485
+ var s;
486
+ const e = this.observers.find((r) => r.shouldFetchOnReconnect());
487
+ e == null || e.refetch({ cancelRefetch: !1 }), (s = n(this, I)) == null || s.continue();
488
+ }
489
+ addObserver(e) {
490
+ this.observers.includes(e) || (this.observers.push(e), this.clearGcTimeout(), n(this, D).notify({ type: "observerAdded", query: this, observer: e }));
491
+ }
492
+ removeObserver(e) {
493
+ this.observers.includes(e) && (this.observers = this.observers.filter((s) => s !== e), this.observers.length || (n(this, I) && (n(this, G) ? n(this, I).cancel({ revert: !0 }) : n(this, I).cancelRetry()), this.scheduleGc()), n(this, D).notify({ type: "observerRemoved", query: this, observer: e }));
494
+ }
495
+ getObserversCount() {
496
+ return this.observers.length;
497
+ }
498
+ invalidate() {
499
+ this.state.isInvalidated || w(this, A, U).call(this, { type: "invalidate" });
500
+ }
501
+ fetch(e, s) {
502
+ var l, f, m;
503
+ if (this.state.fetchStatus !== "idle") {
504
+ if (this.state.data !== void 0 && (s != null && s.cancelRefetch))
505
+ this.cancel({ silent: !0 });
506
+ else if (n(this, I))
507
+ return n(this, I).continueRetry(), n(this, I).promise;
508
+ }
509
+ if (e && this.setOptions(e), !this.options.queryFn) {
510
+ const c = this.observers.find((p) => p.options.queryFn);
511
+ c && this.setOptions(c.options);
512
+ }
513
+ process.env.NODE_ENV !== "production" && (Array.isArray(this.options.queryKey) || console.error(
514
+ "As of v4, queryKey needs to be an Array. If you are using a string like 'repoData', please change it to an Array, e.g. ['repoData']"
515
+ ));
516
+ const r = new AbortController(), i = (c) => {
517
+ Object.defineProperty(c, "signal", {
518
+ enumerable: !0,
519
+ get: () => (d(this, G, !0), r.signal)
520
+ });
521
+ }, a = () => {
522
+ const c = Dt(this.options, s), p = {
523
+ client: n(this, B),
524
+ queryKey: this.queryKey,
525
+ meta: this.meta
526
+ };
527
+ return i(p), d(this, G, !1), this.options.persister ? this.options.persister(
528
+ c,
529
+ p,
530
+ this
531
+ ) : c(p);
532
+ }, o = {
533
+ fetchOptions: s,
534
+ options: this.options,
535
+ queryKey: this.queryKey,
536
+ client: n(this, B),
537
+ state: this.state,
538
+ fetchFn: a
539
+ };
540
+ i(o), (l = this.options.behavior) == null || l.onFetch(
541
+ o,
542
+ this
543
+ ), d(this, ne, this.state), (this.state.fetchStatus === "idle" || this.state.fetchMeta !== ((f = o.fetchOptions) == null ? void 0 : f.meta)) && w(this, A, U).call(this, { type: "fetch", meta: (m = o.fetchOptions) == null ? void 0 : m.meta });
544
+ const u = (c) => {
545
+ var p, y, E, h;
546
+ ge(c) && c.silent || w(this, A, U).call(this, {
547
+ type: "error",
548
+ error: c
549
+ }), ge(c) || ((y = (p = n(this, D).config).onError) == null || y.call(
550
+ p,
551
+ c,
552
+ this
553
+ ), (h = (E = n(this, D).config).onSettled) == null || h.call(
554
+ E,
555
+ this.state.data,
556
+ c,
557
+ this
558
+ )), this.scheduleGc();
559
+ };
560
+ return d(this, I, xt({
561
+ initialPromise: s == null ? void 0 : s.initialPromise,
562
+ fn: o.fetchFn,
563
+ abort: r.abort.bind(r),
564
+ onSuccess: (c) => {
565
+ var p, y, E, h;
566
+ if (c === void 0) {
567
+ process.env.NODE_ENV !== "production" && console.error(
568
+ `Query data cannot be undefined. Please make sure to return a value other than undefined from your query function. Affected query key: ${this.queryHash}`
569
+ ), u(new Error(`${this.queryHash} data is undefined`));
570
+ return;
571
+ }
572
+ try {
573
+ this.setData(c);
574
+ } catch (v) {
575
+ u(v);
576
+ return;
577
+ }
578
+ (y = (p = n(this, D).config).onSuccess) == null || y.call(p, c, this), (h = (E = n(this, D).config).onSettled) == null || h.call(
579
+ E,
580
+ c,
581
+ this.state.error,
582
+ this
583
+ ), this.scheduleGc();
584
+ },
585
+ onError: u,
586
+ onFail: (c, p) => {
587
+ w(this, A, U).call(this, { type: "failed", failureCount: c, error: p });
588
+ },
589
+ onPause: () => {
590
+ w(this, A, U).call(this, { type: "pause" });
591
+ },
592
+ onContinue: () => {
593
+ w(this, A, U).call(this, { type: "continue" });
594
+ },
595
+ retry: o.options.retry,
596
+ retryDelay: o.options.retryDelay,
597
+ networkMode: o.options.networkMode,
598
+ canRun: () => !0
599
+ })), n(this, I).start();
600
+ }
601
+ }, re = new WeakMap(), ne = new WeakMap(), D = new WeakMap(), B = new WeakMap(), I = new WeakMap(), he = new WeakMap(), G = new WeakMap(), A = new WeakSet(), U = function(e) {
602
+ const s = (r) => {
603
+ switch (e.type) {
604
+ case "failed":
605
+ return {
606
+ ...r,
607
+ fetchFailureCount: e.failureCount,
608
+ fetchFailureReason: e.error
609
+ };
610
+ case "pause":
611
+ return {
612
+ ...r,
613
+ fetchStatus: "paused"
614
+ };
615
+ case "continue":
616
+ return {
617
+ ...r,
618
+ fetchStatus: "fetching"
619
+ };
620
+ case "fetch":
621
+ return {
622
+ ...r,
623
+ ...lt(r.data, this.options),
624
+ fetchMeta: e.meta ?? null
625
+ };
626
+ case "success":
627
+ return {
628
+ ...r,
629
+ data: e.data,
630
+ dataUpdateCount: r.dataUpdateCount + 1,
631
+ dataUpdatedAt: e.dataUpdatedAt ?? Date.now(),
632
+ error: null,
633
+ isInvalidated: !1,
634
+ status: "success",
635
+ ...!e.manual && {
636
+ fetchStatus: "idle",
637
+ fetchFailureCount: 0,
638
+ fetchFailureReason: null
639
+ }
640
+ };
641
+ case "error":
642
+ const i = e.error;
643
+ return ge(i) && i.revert && n(this, ne) ? { ...n(this, ne), fetchStatus: "idle" } : {
644
+ ...r,
645
+ error: i,
646
+ errorUpdateCount: r.errorUpdateCount + 1,
647
+ errorUpdatedAt: Date.now(),
648
+ fetchFailureCount: r.fetchFailureCount + 1,
649
+ fetchFailureReason: i,
650
+ fetchStatus: "idle",
651
+ status: "error"
652
+ };
653
+ case "invalidate":
654
+ return {
655
+ ...r,
656
+ isInvalidated: !0
657
+ };
658
+ case "setState":
659
+ return {
660
+ ...r,
661
+ ...e.state
662
+ };
663
+ }
664
+ };
665
+ this.state = s(this.state), Me.batch(() => {
666
+ this.observers.forEach((r) => {
667
+ r.onQueryUpdate();
668
+ }), n(this, D).notify({ query: this, type: "updated", action: e });
669
+ });
670
+ }, nt);
671
+ function lt(t, e) {
672
+ return {
673
+ fetchFailureCount: 0,
674
+ fetchFailureReason: null,
675
+ fetchStatus: ct(e.networkMode) ? "fetching" : "paused",
676
+ ...t === void 0 && {
677
+ error: null,
678
+ status: "pending"
679
+ }
680
+ };
681
+ }
682
+ function qt(t) {
683
+ const e = typeof t.initialData == "function" ? t.initialData() : t.initialData, s = e !== void 0, r = s ? typeof t.initialDataUpdatedAt == "function" ? t.initialDataUpdatedAt() : t.initialDataUpdatedAt : 0;
684
+ return {
685
+ data: e,
686
+ dataUpdateCount: 0,
687
+ dataUpdatedAt: s ? r ?? Date.now() : 0,
688
+ error: null,
689
+ errorUpdateCount: 0,
690
+ errorUpdatedAt: 0,
691
+ fetchFailureCount: 0,
692
+ fetchFailureReason: null,
693
+ fetchMeta: null,
694
+ isInvalidated: !1,
695
+ status: s ? "success" : "pending",
696
+ fetchStatus: "idle"
697
+ };
698
+ }
699
+ var T, b, le, P, $, ie, N, Q, de, ae, oe, z, J, _, ue, S, ce, Pe, Te, De, je, Ae, ke, xe, ft, it, dt = (it = class extends qe {
700
+ constructor(e, s) {
701
+ super();
702
+ g(this, S);
703
+ g(this, T);
704
+ g(this, b);
705
+ g(this, le);
706
+ g(this, P);
707
+ g(this, $);
708
+ g(this, ie);
709
+ g(this, N);
710
+ g(this, Q);
711
+ g(this, de);
712
+ g(this, ae);
713
+ // This property keeps track of the last query with defined data.
714
+ // It will be used to pass the previous data and query to the placeholder function between renders.
715
+ g(this, oe);
716
+ g(this, z);
717
+ g(this, J);
718
+ g(this, _);
719
+ g(this, ue, /* @__PURE__ */ new Set());
720
+ this.options = s, d(this, T, e), d(this, Q, null), d(this, N, Fe()), this.options.experimental_prefetchInRender || n(this, N).reject(
721
+ new Error("experimental_prefetchInRender feature flag is not enabled")
722
+ ), this.bindMethods(), this.setOptions(s);
723
+ }
724
+ bindMethods() {
725
+ this.refetch = this.refetch.bind(this);
726
+ }
727
+ onSubscribe() {
728
+ this.listeners.size === 1 && (n(this, b).addObserver(this), Ze(n(this, b), this.options) ? w(this, S, ce).call(this) : this.updateResult(), w(this, S, je).call(this));
729
+ }
730
+ onUnsubscribe() {
731
+ this.hasListeners() || this.destroy();
732
+ }
733
+ shouldFetchOnReconnect() {
734
+ return Qe(
735
+ n(this, b),
736
+ this.options,
737
+ this.options.refetchOnReconnect
738
+ );
739
+ }
740
+ shouldFetchOnWindowFocus() {
741
+ return Qe(
742
+ n(this, b),
743
+ this.options,
744
+ this.options.refetchOnWindowFocus
745
+ );
746
+ }
747
+ destroy() {
748
+ this.listeners = /* @__PURE__ */ new Set(), w(this, S, Ae).call(this), w(this, S, ke).call(this), n(this, b).removeObserver(this);
749
+ }
750
+ setOptions(e, s) {
751
+ const r = this.options, i = n(this, b);
752
+ if (this.options = n(this, T).defaultQueryOptions(e), this.options.enabled !== void 0 && typeof this.options.enabled != "boolean" && typeof this.options.enabled != "function" && typeof k(this.options.enabled, n(this, b)) != "boolean")
753
+ throw new Error(
754
+ "Expected enabled to be a boolean or a callback that returns a boolean"
755
+ );
756
+ w(this, S, xe).call(this), n(this, b).setOptions(this.options), r._defaulted && !Ee(this.options, r) && n(this, T).getQueryCache().notify({
757
+ type: "observerOptionsUpdated",
758
+ query: n(this, b),
759
+ observer: this
760
+ });
761
+ const a = this.hasListeners();
762
+ a && We(
763
+ n(this, b),
764
+ i,
765
+ this.options,
766
+ r
767
+ ) && w(this, S, ce).call(this), this.updateResult(s), a && (n(this, b) !== i || k(this.options.enabled, n(this, b)) !== k(r.enabled, n(this, b)) || ye(this.options.staleTime, n(this, b)) !== ye(r.staleTime, n(this, b))) && w(this, S, Pe).call(this);
768
+ const o = w(this, S, Te).call(this);
769
+ a && (n(this, b) !== i || k(this.options.enabled, n(this, b)) !== k(r.enabled, n(this, b)) || o !== n(this, _)) && w(this, S, De).call(this, o);
770
+ }
771
+ getOptimisticResult(e) {
772
+ const s = n(this, T).getQueryCache().build(n(this, T), e), r = this.createResult(s, e);
773
+ return Mt(this, r) && (d(this, P, r), d(this, ie, this.options), d(this, $, n(this, b).state)), r;
774
+ }
775
+ getCurrentResult() {
776
+ return n(this, P);
777
+ }
778
+ trackResult(e, s) {
779
+ const r = {};
780
+ return Object.keys(e).forEach((i) => {
781
+ Object.defineProperty(r, i, {
782
+ configurable: !1,
783
+ enumerable: !0,
784
+ get: () => (this.trackProp(i), s == null || s(i), e[i])
785
+ });
786
+ }), r;
787
+ }
788
+ trackProp(e) {
789
+ n(this, ue).add(e);
790
+ }
791
+ getCurrentQuery() {
792
+ return n(this, b);
793
+ }
794
+ refetch({ ...e } = {}) {
795
+ return this.fetch({
796
+ ...e
797
+ });
798
+ }
799
+ fetchOptimistic(e) {
800
+ const s = n(this, T).defaultQueryOptions(e), r = n(this, T).getQueryCache().build(n(this, T), s);
801
+ return r.fetch().then(() => this.createResult(r, s));
802
+ }
803
+ fetch(e) {
804
+ return w(this, S, ce).call(this, {
805
+ ...e,
806
+ cancelRefetch: e.cancelRefetch ?? !0
807
+ }).then(() => (this.updateResult(), n(this, P)));
808
+ }
809
+ createResult(e, s) {
810
+ var Be;
811
+ const r = n(this, b), i = this.options, a = n(this, P), o = n(this, $), u = n(this, ie), f = e !== r ? e.state : n(this, le), { state: m } = e;
812
+ let c = { ...m }, p = !1, y;
813
+ if (s._optimisticResults) {
814
+ const F = this.hasListeners(), Y = !F && Ze(e, s), X = F && We(e, r, s, i);
815
+ (Y || X) && (c = {
816
+ ...c,
817
+ ...lt(m.data, e.options)
818
+ }), s._optimisticResults === "isRestoring" && (c.fetchStatus = "idle");
819
+ }
820
+ let { error: E, errorUpdatedAt: h, status: v } = c;
821
+ if (s.select && c.data !== void 0)
822
+ if (a && c.data === (o == null ? void 0 : o.data) && s.select === n(this, de))
823
+ y = n(this, ae);
824
+ else
825
+ try {
826
+ d(this, de, s.select), y = s.select(c.data), y = Ie(a == null ? void 0 : a.data, y, s), d(this, ae, y), d(this, Q, null);
827
+ } catch (F) {
828
+ d(this, Q, F);
829
+ }
830
+ else
831
+ y = c.data;
832
+ if (s.placeholderData !== void 0 && y === void 0 && v === "pending") {
833
+ let F;
834
+ if (a != null && a.isPlaceholderData && s.placeholderData === (u == null ? void 0 : u.placeholderData))
835
+ F = a.data;
836
+ else if (F = typeof s.placeholderData == "function" ? s.placeholderData(
837
+ (Be = n(this, oe)) == null ? void 0 : Be.state.data,
838
+ n(this, oe)
839
+ ) : s.placeholderData, s.select && F !== void 0)
840
+ try {
841
+ F = s.select(F), d(this, Q, null);
842
+ } catch (Y) {
843
+ d(this, Q, Y);
844
+ }
845
+ F !== void 0 && (v = "success", y = Ie(
846
+ a == null ? void 0 : a.data,
847
+ F,
848
+ s
849
+ ), p = !0);
850
+ }
851
+ n(this, Q) && (E = n(this, Q), y = n(this, ae), h = Date.now(), v = "error");
852
+ const C = c.fetchStatus === "fetching", R = v === "pending", O = v === "error", q = R && C, W = y !== void 0, x = {
853
+ status: v,
854
+ fetchStatus: c.fetchStatus,
855
+ isPending: R,
856
+ isSuccess: v === "success",
857
+ isError: O,
858
+ isInitialLoading: q,
859
+ isLoading: q,
860
+ data: y,
861
+ dataUpdatedAt: c.dataUpdatedAt,
862
+ error: E,
863
+ errorUpdatedAt: h,
864
+ failureCount: c.fetchFailureCount,
865
+ failureReason: c.fetchFailureReason,
866
+ errorUpdateCount: c.errorUpdateCount,
867
+ isFetched: c.dataUpdateCount > 0 || c.errorUpdateCount > 0,
868
+ isFetchedAfterMount: c.dataUpdateCount > f.dataUpdateCount || c.errorUpdateCount > f.errorUpdateCount,
869
+ isFetching: C,
870
+ isRefetching: C && !R,
871
+ isLoadingError: O && !W,
872
+ isPaused: c.fetchStatus === "paused",
873
+ isPlaceholderData: p,
874
+ isRefetchError: O && W,
875
+ isStale: Ne(e, s),
876
+ refetch: this.refetch,
877
+ promise: n(this, N)
878
+ };
879
+ if (this.options.experimental_prefetchInRender) {
880
+ const F = (fe) => {
881
+ x.status === "error" ? fe.reject(x.error) : x.data !== void 0 && fe.resolve(x.data);
882
+ }, Y = () => {
883
+ const fe = d(this, N, x.promise = Fe());
884
+ F(fe);
885
+ }, X = n(this, N);
886
+ switch (X.status) {
887
+ case "pending":
888
+ e.queryHash === r.queryHash && F(X);
889
+ break;
890
+ case "fulfilled":
891
+ (x.status === "error" || x.data !== X.value) && Y();
892
+ break;
893
+ case "rejected":
894
+ (x.status !== "error" || x.error !== X.reason) && Y();
895
+ break;
896
+ }
897
+ }
898
+ return x;
899
+ }
900
+ updateResult(e) {
901
+ const s = n(this, P), r = this.createResult(n(this, b), this.options);
902
+ if (d(this, $, n(this, b).state), d(this, ie, this.options), n(this, $).data !== void 0 && d(this, oe, n(this, b)), Ee(r, s))
903
+ return;
904
+ d(this, P, r);
905
+ const i = {}, a = () => {
906
+ if (!s)
907
+ return !0;
908
+ const { notifyOnChangeProps: o } = this.options, u = typeof o == "function" ? o() : o;
909
+ if (u === "all" || !u && !n(this, ue).size)
910
+ return !0;
911
+ const l = new Set(
912
+ u ?? n(this, ue)
913
+ );
914
+ return this.options.throwOnError && l.add("error"), Object.keys(n(this, P)).some((f) => {
915
+ const m = f;
916
+ return n(this, P)[m] !== s[m] && l.has(m);
917
+ });
918
+ };
919
+ (e == null ? void 0 : e.listeners) !== !1 && a() && (i.listeners = !0), w(this, S, ft).call(this, { ...i, ...e });
920
+ }
921
+ onQueryUpdate() {
922
+ this.updateResult(), this.hasListeners() && w(this, S, je).call(this);
923
+ }
924
+ }, T = new WeakMap(), b = new WeakMap(), le = new WeakMap(), P = new WeakMap(), $ = new WeakMap(), ie = new WeakMap(), N = new WeakMap(), Q = new WeakMap(), de = new WeakMap(), ae = new WeakMap(), oe = new WeakMap(), z = new WeakMap(), J = new WeakMap(), _ = new WeakMap(), ue = new WeakMap(), S = new WeakSet(), ce = function(e) {
925
+ w(this, S, xe).call(this);
926
+ let s = n(this, b).fetch(
927
+ this.options,
928
+ e
929
+ );
930
+ return e != null && e.throwOnError || (s = s.catch(Se)), s;
931
+ }, Pe = function() {
932
+ w(this, S, Ae).call(this);
933
+ const e = ye(
934
+ this.options.staleTime,
935
+ n(this, b)
936
+ );
937
+ if (V || n(this, P).isStale || !we(e))
938
+ return;
939
+ const r = at(n(this, P).dataUpdatedAt, e) + 1;
940
+ d(this, z, setTimeout(() => {
941
+ n(this, P).isStale || this.updateResult();
942
+ }, r));
943
+ }, Te = function() {
944
+ return (typeof this.options.refetchInterval == "function" ? this.options.refetchInterval(n(this, b)) : this.options.refetchInterval) ?? !1;
945
+ }, De = function(e) {
946
+ w(this, S, ke).call(this), d(this, _, e), !(V || k(this.options.enabled, n(this, b)) === !1 || !we(n(this, _)) || n(this, _) === 0) && d(this, J, setInterval(() => {
947
+ (this.options.refetchIntervalInBackground || ot.isFocused()) && w(this, S, ce).call(this);
948
+ }, n(this, _)));
949
+ }, je = function() {
950
+ w(this, S, Pe).call(this), w(this, S, De).call(this, w(this, S, Te).call(this));
951
+ }, Ae = function() {
952
+ n(this, z) && (clearTimeout(n(this, z)), d(this, z, void 0));
953
+ }, ke = function() {
954
+ n(this, J) && (clearInterval(n(this, J)), d(this, J, void 0));
955
+ }, xe = function() {
956
+ const e = n(this, T).getQueryCache().build(n(this, T), this.options);
957
+ if (e === n(this, b))
958
+ return;
959
+ const s = n(this, b);
960
+ d(this, b, e), d(this, le, e.state), this.hasListeners() && (s == null || s.removeObserver(this), e.addObserver(this));
961
+ }, ft = function(e) {
962
+ Me.batch(() => {
963
+ e.listeners && this.listeners.forEach((s) => {
964
+ s(n(this, P));
965
+ }), n(this, T).getQueryCache().notify({
966
+ query: n(this, b),
967
+ type: "observerResultsUpdated"
968
+ });
969
+ });
970
+ }, it);
971
+ function Lt(t, e) {
972
+ return k(e.enabled, t) !== !1 && t.state.data === void 0 && !(t.state.status === "error" && e.retryOnMount === !1);
973
+ }
974
+ function Ze(t, e) {
975
+ return Lt(t, e) || t.state.data !== void 0 && Qe(t, e, e.refetchOnMount);
976
+ }
977
+ function Qe(t, e, s) {
978
+ if (k(e.enabled, t) !== !1) {
979
+ const r = typeof s == "function" ? s(t) : s;
980
+ return r === "always" || r !== !1 && Ne(t, e);
981
+ }
982
+ return !1;
983
+ }
984
+ function We(t, e, s, r) {
985
+ return (t !== e || k(r.enabled, t) === !1) && (!s.suspense || t.state.status !== "error") && Ne(t, s);
986
+ }
987
+ function Ne(t, e) {
988
+ return k(e.enabled, t) !== !1 && t.isStaleByTime(ye(e.staleTime, t));
989
+ }
990
+ function Mt(t, e) {
991
+ return !Ee(t.getCurrentResult(), e);
992
+ }
993
+ var yt = j.createContext(
994
+ void 0
995
+ ), pt = (t) => {
996
+ const e = j.useContext(yt);
997
+ if (t)
998
+ return t;
999
+ if (!e)
1000
+ throw new Error("No QueryClient set, use QueryClientProvider to set one");
1001
+ return e;
1002
+ }, gs = ({
1003
+ client: t,
1004
+ children: e
1005
+ }) => (j.useEffect(() => (t.mount(), () => {
1006
+ t.unmount();
1007
+ }), [t]), /* @__PURE__ */ Ft.jsx(yt.Provider, { value: t, children: e })), vt = j.createContext(!1), Nt = () => j.useContext(vt);
1008
+ vt.Provider;
1009
+ function _t() {
1010
+ let t = !1;
1011
+ return {
1012
+ clearReset: () => {
1013
+ t = !1;
1014
+ },
1015
+ reset: () => {
1016
+ t = !0;
1017
+ },
1018
+ isReset: () => t
1019
+ };
1020
+ }
1021
+ var Ht = j.createContext(_t()), Kt = () => j.useContext(Ht);
1022
+ function Bt(t, e) {
1023
+ return typeof t == "function" ? t(...e) : !!t;
1024
+ }
1025
+ function Ye() {
1026
+ }
1027
+ var Gt = (t, e) => {
1028
+ (t.suspense || t.throwOnError || t.experimental_prefetchInRender) && (e.isReset() || (t.retryOnMount = !1));
1029
+ }, $t = (t) => {
1030
+ j.useEffect(() => {
1031
+ t.clearReset();
1032
+ }, [t]);
1033
+ }, zt = ({
1034
+ result: t,
1035
+ errorResetBoundary: e,
1036
+ throwOnError: s,
1037
+ query: r,
1038
+ suspense: i
1039
+ }) => t.isError && !e.isReset() && !t.isFetching && r && (i && t.data === void 0 || Bt(s, [t.error, r])), Jt = (t, e) => e.state.data === void 0, Vt = (t) => {
1040
+ const e = t.staleTime;
1041
+ t.suspense && (t.staleTime = typeof e == "function" ? (...s) => Math.max(e(...s), 1e3) : Math.max(e ?? 1e3, 1e3), typeof t.gcTime == "number" && (t.gcTime = Math.max(t.gcTime, 1e3)));
1042
+ }, Zt = (t, e) => t.isLoading && t.isFetching && !e, Wt = (t, e) => (t == null ? void 0 : t.suspense) && e.isPending, Xe = (t, e, s) => e.fetchOptimistic(t).catch(() => {
1043
+ s.clearReset();
1044
+ });
1045
+ function bt(t, e, s) {
1046
+ var c, p, y, E, h;
1047
+ if (process.env.NODE_ENV !== "production" && (typeof t != "object" || Array.isArray(t)))
1048
+ throw new Error(
1049
+ 'Bad argument type. Starting with v5, only the "Object" form is allowed when calling query related functions. Please use the error stack to find the culprit call. More info here: https://tanstack.com/query/latest/docs/react/guides/migrating-to-v5#supports-a-single-signature-one-object'
1050
+ );
1051
+ const r = pt(s), i = Nt(), a = Kt(), o = r.defaultQueryOptions(t);
1052
+ (p = (c = r.getDefaultOptions().queries) == null ? void 0 : c._experimental_beforeQuery) == null || p.call(
1053
+ c,
1054
+ o
1055
+ ), o._optimisticResults = i ? "isRestoring" : "optimistic", Vt(o), Gt(o, a), $t(a);
1056
+ const u = !r.getQueryCache().get(o.queryHash), [l] = j.useState(
1057
+ () => new e(
1058
+ r,
1059
+ o
1060
+ )
1061
+ ), f = l.getOptimisticResult(o), m = !i && t.subscribed !== !1;
1062
+ if (j.useSyncExternalStore(
1063
+ j.useCallback(
1064
+ (v) => {
1065
+ const C = m ? l.subscribe(Me.batchCalls(v)) : Ye;
1066
+ return l.updateResult(), C;
1067
+ },
1068
+ [l, m]
1069
+ ),
1070
+ () => l.getCurrentResult(),
1071
+ () => l.getCurrentResult()
1072
+ ), j.useEffect(() => {
1073
+ l.setOptions(o, { listeners: !1 });
1074
+ }, [o, l]), Wt(o, f))
1075
+ throw Xe(o, l, a);
1076
+ if (zt({
1077
+ result: f,
1078
+ errorResetBoundary: a,
1079
+ throwOnError: o.throwOnError,
1080
+ query: r.getQueryCache().get(o.queryHash),
1081
+ suspense: o.suspense
1082
+ }))
1083
+ throw f.error;
1084
+ if ((E = (y = r.getDefaultOptions().queries) == null ? void 0 : y._experimental_afterQuery) == null || E.call(
1085
+ y,
1086
+ o,
1087
+ f
1088
+ ), o.experimental_prefetchInRender && !V && Zt(f, i)) {
1089
+ const v = u ? (
1090
+ // Fetch immediately on render in order to ensure `.promise` is resolved even if the component is unmounted
1091
+ Xe(o, l, a)
1092
+ ) : (
1093
+ // subscribe to the "cache promise" so that we can finalize the currentThenable once data comes in
1094
+ (h = r.getQueryCache().get(o.queryHash)) == null ? void 0 : h.promise
1095
+ );
1096
+ v == null || v.catch(Ye).finally(() => {
1097
+ l.updateResult();
1098
+ });
1099
+ }
1100
+ return o.notifyOnChangeProps ? f : l.trackResult(f);
1101
+ }
1102
+ function Yt(t, e) {
1103
+ return bt(t, dt, e);
1104
+ }
1105
+ function Xt(t, e) {
1106
+ return process.env.NODE_ENV !== "production" && t.queryFn === pe && console.error("skipToken is not allowed for useSuspenseQuery"), bt(
1107
+ {
1108
+ ...t,
1109
+ enabled: !0,
1110
+ suspense: !0,
1111
+ throwOnError: Jt,
1112
+ placeholderData: void 0
1113
+ },
1114
+ dt,
1115
+ e
1116
+ );
1117
+ }
1118
+ const Z = (...t) => {
1119
+ const e = t.filter((s) => !!s).map((s) => s.replace(/(^\/+|\/+$)/g, "")).join("/").replace(/(^\/+|\/+$)/g, "");
1120
+ return e ? `/${e}` : "/";
1121
+ }, mt = Object.freeze({
1122
+ API_IDENTITIES: ["api-identities"]
1123
+ }), Ss = () => {
1124
+ const t = pt();
1125
+ return {
1126
+ invalidateCache: async (e) => {
1127
+ await t.invalidateQueries({ queryKey: mt[e] });
1128
+ }
1129
+ };
1130
+ }, _e = (t, e) => {
1131
+ for (const s of t) {
1132
+ const r = He(s, e);
1133
+ if (r !== void 0) return r;
1134
+ }
1135
+ }, He = (t, e, s = []) => {
1136
+ const r = e(t, s);
1137
+ if (r !== void 0) return r;
1138
+ if (t.type === "category")
1139
+ for (const i of t.items) {
1140
+ const a = He(i, e, [
1141
+ ...s,
1142
+ t
1143
+ ]);
1144
+ if (a !== void 0) return a;
1145
+ }
1146
+ }, ws = () => {
1147
+ const t = ve(), s = gt().sidebar;
1148
+ return _e(s, (r) => {
1149
+ if (r.type === "doc" && Z(r.id) === t.pathname)
1150
+ return r;
1151
+ });
1152
+ }, Rs = (t) => {
1153
+ const e = ve();
1154
+ return He(t, (s) => {
1155
+ if (s.type === "category" && s.link && Z(s.link.id) === e.pathname || s.type === "doc" && Z(s.id) === e.pathname)
1156
+ return !0;
1157
+ });
1158
+ }, Cs = () => {
1159
+ const t = ve().pathname, s = gt().sidebar;
1160
+ let r, i, a = !1;
1161
+ return _e(s, (o) => {
1162
+ const u = o.type === "doc" ? Z(o.id) : o.type === "category" && o.link ? Z(o.link.id) : void 0;
1163
+ if (u) {
1164
+ if (a)
1165
+ return i = { label: o.label, id: u }, !0;
1166
+ t === u ? a = !0 : r = { label: o.label, id: u };
1167
+ }
1168
+ }), { prev: r, next: i };
1169
+ }, es = Et(
1170
+ void 0
1171
+ ), Ke = () => {
1172
+ const t = Ot(es);
1173
+ if (!t)
1174
+ throw new Error("useZudoku must be used within a ZudokuProvider.");
1175
+ return t;
1176
+ }, Es = () => {
1177
+ const { getApiIdentities: t } = Ke();
1178
+ return Yt({
1179
+ queryFn: t,
1180
+ queryKey: [mt.API_IDENTITIES]
1181
+ });
1182
+ }, gt = () => {
1183
+ var c;
1184
+ const { getPluginSidebar: t, sidebars: e, topNavigation: s, options: r } = Ke(), i = ve(), a = us(), o = (c = r.protectedRoutes) == null ? void 0 : c.some(
1185
+ (p) => ze(p, i.pathname)
1186
+ ), u = Object.entries(e).find(([, p]) => _e(p, (y) => {
1187
+ if ((y.type === "doc" ? Z(y.id) : y.type === "category" && y.link ? Z(y.link.id) : void 0) === i.pathname)
1188
+ return y;
1189
+ })), l = s.find((p) => p.id === (u == null ? void 0 : u[0])) ?? s.find((p) => ze(p.id, i.pathname)), { data: f } = Xt({
1190
+ queryFn: () => t(i.pathname),
1191
+ queryKey: ["plugin-sidebar", i.pathname]
1192
+ });
1193
+ return {
1194
+ sidebar: a.isAuthEnabled && !a.isAuthenticated && o ? [] : [...u ? u[1] : [], ...f],
1195
+ topNavItem: l
1196
+ };
1197
+ }, et = (t) => {
1198
+ let e;
1199
+ const s = /* @__PURE__ */ new Set(), r = (f, m) => {
1200
+ const c = typeof f == "function" ? f(e) : f;
1201
+ if (!Object.is(c, e)) {
1202
+ const p = e;
1203
+ e = m ?? (typeof c != "object" || c === null) ? c : Object.assign({}, e, c), s.forEach((y) => y(e, p));
1204
+ }
1205
+ }, i = () => e, u = { setState: r, getState: i, getInitialState: () => l, subscribe: (f) => (s.add(f), () => s.delete(f)) }, l = e = t(r, i, u);
1206
+ return u;
1207
+ }, ts = (t) => t ? et(t) : et, ss = (t) => t;
1208
+ function rs(t, e = ss) {
1209
+ const s = $e.useSyncExternalStore(
1210
+ t.subscribe,
1211
+ () => e(t.getState()),
1212
+ () => e(t.getInitialState())
1213
+ );
1214
+ return $e.useDebugValue(s), s;
1215
+ }
1216
+ const ns = (t) => {
1217
+ const e = ts(t), s = (r) => rs(e, r);
1218
+ return Object.assign(s, e), s;
1219
+ }, St = (t) => ns;
1220
+ function wt(t, e) {
1221
+ let s;
1222
+ try {
1223
+ s = t();
1224
+ } catch {
1225
+ return;
1226
+ }
1227
+ return {
1228
+ getItem: (i) => {
1229
+ var a;
1230
+ const o = (l) => l === null ? null : JSON.parse(l, void 0), u = (a = s.getItem(i)) != null ? a : null;
1231
+ return u instanceof Promise ? u.then(o) : o(u);
1232
+ },
1233
+ setItem: (i, a) => s.setItem(
1234
+ i,
1235
+ JSON.stringify(a, void 0)
1236
+ ),
1237
+ removeItem: (i) => s.removeItem(i)
1238
+ };
1239
+ }
1240
+ const Ue = (t) => (e) => {
1241
+ try {
1242
+ const s = t(e);
1243
+ return s instanceof Promise ? s : {
1244
+ then(r) {
1245
+ return Ue(r)(s);
1246
+ },
1247
+ catch(r) {
1248
+ return this;
1249
+ }
1250
+ };
1251
+ } catch (s) {
1252
+ return {
1253
+ then(r) {
1254
+ return this;
1255
+ },
1256
+ catch(r) {
1257
+ return Ue(r)(s);
1258
+ }
1259
+ };
1260
+ }
1261
+ }, is = (t, e) => (s, r, i) => {
1262
+ let a = {
1263
+ storage: wt(() => localStorage),
1264
+ partialize: (h) => h,
1265
+ version: 0,
1266
+ merge: (h, v) => ({
1267
+ ...v,
1268
+ ...h
1269
+ }),
1270
+ ...e
1271
+ }, o = !1;
1272
+ const u = /* @__PURE__ */ new Set(), l = /* @__PURE__ */ new Set();
1273
+ let f = a.storage;
1274
+ if (!f)
1275
+ return t(
1276
+ (...h) => {
1277
+ console.warn(
1278
+ `[zustand persist middleware] Unable to update item '${a.name}', the given storage is currently unavailable.`
1279
+ ), s(...h);
1280
+ },
1281
+ r,
1282
+ i
1283
+ );
1284
+ const m = () => {
1285
+ const h = a.partialize({ ...r() });
1286
+ return f.setItem(a.name, {
1287
+ state: h,
1288
+ version: a.version
1289
+ });
1290
+ }, c = i.setState;
1291
+ i.setState = (h, v) => {
1292
+ c(h, v), m();
1293
+ };
1294
+ const p = t(
1295
+ (...h) => {
1296
+ s(...h), m();
1297
+ },
1298
+ r,
1299
+ i
1300
+ );
1301
+ i.getInitialState = () => p;
1302
+ let y;
1303
+ const E = () => {
1304
+ var h, v;
1305
+ if (!f) return;
1306
+ o = !1, u.forEach((R) => {
1307
+ var O;
1308
+ return R((O = r()) != null ? O : p);
1309
+ });
1310
+ const C = ((v = a.onRehydrateStorage) == null ? void 0 : v.call(a, (h = r()) != null ? h : p)) || void 0;
1311
+ return Ue(f.getItem.bind(f))(a.name).then((R) => {
1312
+ if (R)
1313
+ if (typeof R.version == "number" && R.version !== a.version) {
1314
+ if (a.migrate) {
1315
+ const O = a.migrate(
1316
+ R.state,
1317
+ R.version
1318
+ );
1319
+ return O instanceof Promise ? O.then((q) => [!0, q]) : [!0, O];
1320
+ }
1321
+ console.error(
1322
+ "State loaded from storage couldn't be migrated since no migrate function was provided"
1323
+ );
1324
+ } else
1325
+ return [!1, R.state];
1326
+ return [!1, void 0];
1327
+ }).then((R) => {
1328
+ var O;
1329
+ const [q, W] = R;
1330
+ if (y = a.merge(
1331
+ W,
1332
+ (O = r()) != null ? O : p
1333
+ ), s(y, !0), q)
1334
+ return m();
1335
+ }).then(() => {
1336
+ C == null || C(y, void 0), y = r(), o = !0, l.forEach((R) => R(y));
1337
+ }).catch((R) => {
1338
+ C == null || C(void 0, R);
1339
+ });
1340
+ };
1341
+ return i.persist = {
1342
+ setOptions: (h) => {
1343
+ a = {
1344
+ ...a,
1345
+ ...h
1346
+ }, h.storage && (f = h.storage);
1347
+ },
1348
+ clearStorage: () => {
1349
+ f == null || f.removeItem(a.name);
1350
+ },
1351
+ getOptions: () => a,
1352
+ rehydrate: () => E(),
1353
+ hasHydrated: () => o,
1354
+ onHydrate: (h) => (u.add(h), () => {
1355
+ u.delete(h);
1356
+ }),
1357
+ onFinishHydration: (h) => (l.add(h), () => {
1358
+ l.delete(h);
1359
+ })
1360
+ }, a.skipHydration || E(), y || p;
1361
+ }, Rt = is, as = (t) => {
1362
+ const e = (s) => {
1363
+ s.key === t.persist.getOptions().name && s.newValue && t.persist.rehydrate();
1364
+ };
1365
+ return window.addEventListener("storage", e), () => {
1366
+ window.removeEventListener("storage", e);
1367
+ };
1368
+ }, Ct = St()(
1369
+ Rt(
1370
+ (t) => ({
1371
+ isAuthenticated: !1,
1372
+ isPending: !0,
1373
+ profile: null,
1374
+ providerData: null
1375
+ }),
1376
+ {
1377
+ merge: (t, e) => ({
1378
+ ...e,
1379
+ isPending: !1,
1380
+ ...typeof t == "object" ? t : {}
1381
+ }),
1382
+ name: "auth-state",
1383
+ storage: wt(() => localStorage)
1384
+ }
1385
+ )
1386
+ );
1387
+ typeof window < "u" && as(Ct);
1388
+ const os = St()(
1389
+ Rt(
1390
+ (t) => ({
1391
+ selectedServer: void 0,
1392
+ setSelectedServer: (e) => t({ selectedServer: e })
1393
+ }),
1394
+ { name: "zudoku-selected-server" }
1395
+ )
1396
+ ), Os = (t) => {
1397
+ const { selectedServer: e, setSelectedServer: s } = os();
1398
+ return { selectedServer: It(
1399
+ () => {
1400
+ var i;
1401
+ return e && t.some((a) => a.url === e) ? e : ((i = t.at(0)) == null ? void 0 : i.url) ?? "";
1402
+ },
1403
+ [e, t]
1404
+ ), setSelectedServer: s };
1405
+ }, us = () => {
1406
+ const { authentication: t } = Ke(), e = Ct(), s = typeof t < "u";
1407
+ return {
1408
+ isAuthEnabled: s,
1409
+ ...e,
1410
+ login: async () => {
1411
+ if (!s)
1412
+ throw new Error("Authentication is not enabled.");
1413
+ await t.signIn();
1414
+ },
1415
+ logout: async () => {
1416
+ if (!s)
1417
+ throw new Error("Authentication is not enabled.");
1418
+ await t.signOut(), window.location.href = "/";
1419
+ }
1420
+ };
1421
+ };
1422
+ export {
1423
+ ut as A,
1424
+ ye as B,
1425
+ fs as C,
1426
+ Le as D,
1427
+ pe as E,
1428
+ gs as F,
1429
+ gt as G,
1430
+ _e as H,
1431
+ Ss as I,
1432
+ mt as J,
1433
+ ms as Q,
1434
+ Ut as R,
1435
+ qe as S,
1436
+ es as Z,
1437
+ Ke as a,
1438
+ Xt as b,
1439
+ xt as c,
1440
+ ws as d,
1441
+ Cs as e,
1442
+ pt as f,
1443
+ Ye as g,
1444
+ Re as h,
1445
+ Bt as i,
1446
+ Z as j,
1447
+ us as k,
1448
+ Rs as l,
1449
+ Yt as m,
1450
+ Me as n,
1451
+ Os as o,
1452
+ Es as p,
1453
+ Pt as q,
1454
+ ys as r,
1455
+ Ee as s,
1456
+ ps as t,
1457
+ Ct as u,
1458
+ Se as v,
1459
+ Dt as w,
1460
+ bs as x,
1461
+ vs as y,
1462
+ ot as z
1463
+ };
1464
+ //# sourceMappingURL=hook-CN__aZIt.js.map