zudoku 0.0.0-ee328ec → 0.0.0-efc60ba6

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 (1313) hide show
  1. package/README.md +2 -2
  2. package/cli.js +8 -2
  3. package/dist/app/ZuploBuildConfig.d.ts +11 -121
  4. package/dist/app/ZuploBuildConfig.js +8 -8
  5. package/dist/app/ZuploBuildConfig.js.map +1 -1
  6. package/dist/app/demo.js +21 -5
  7. package/dist/app/demo.js.map +1 -1
  8. package/dist/app/entry.client.d.ts +0 -2
  9. package/dist/app/entry.client.js +0 -2
  10. package/dist/app/entry.client.js.map +1 -1
  11. package/dist/app/entry.server.d.ts +0 -2
  12. package/dist/app/entry.server.js +0 -2
  13. package/dist/app/entry.server.js.map +1 -1
  14. package/dist/app/env.d.ts +7 -7
  15. package/dist/app/env.js +8 -0
  16. package/dist/app/env.js.map +1 -1
  17. package/dist/app/main.d.ts +2 -1
  18. package/dist/app/main.js +26 -45
  19. package/dist/app/main.js.map +1 -1
  20. package/dist/app/standalone.js +7 -6
  21. package/dist/app/standalone.js.map +1 -1
  22. package/dist/cli/build/handler.js +9 -1
  23. package/dist/cli/build/handler.js.map +1 -1
  24. package/dist/config/config.d.ts +14 -2
  25. package/dist/config/file-exists.d.ts +1 -0
  26. package/dist/config/file-exists.js +5 -0
  27. package/dist/config/file-exists.js.map +1 -0
  28. package/dist/config/loader.d.ts +19 -4
  29. package/dist/config/loader.js +91 -15
  30. package/dist/config/loader.js.map +1 -1
  31. package/dist/config/validators/BuildSchema.d.ts +20 -44
  32. package/dist/config/validators/BuildSchema.js +8 -14
  33. package/dist/config/validators/BuildSchema.js.map +1 -1
  34. package/dist/config/validators/InputNavigationSchema.d.ts +7460 -0
  35. package/dist/config/validators/InputNavigationSchema.js +74 -0
  36. package/dist/config/validators/InputNavigationSchema.js.map +1 -0
  37. package/dist/config/validators/InputNavigationSchema.test-d.js +145 -0
  38. package/dist/config/validators/InputNavigationSchema.test-d.js.map +1 -0
  39. package/dist/config/validators/NavigationSchema.d.ts +44 -0
  40. package/dist/config/validators/NavigationSchema.js +98 -0
  41. package/dist/config/validators/NavigationSchema.js.map +1 -0
  42. package/dist/config/validators/ProtectedRoutesSchema.d.ts +12 -0
  43. package/dist/config/validators/ProtectedRoutesSchema.js +19 -0
  44. package/dist/config/validators/ProtectedRoutesSchema.js.map +1 -0
  45. package/dist/config/validators/icon-types.d.ts +2 -1
  46. package/dist/config/validators/icon-types.js +1829 -1
  47. package/dist/config/validators/icon-types.js.map +1 -1
  48. package/dist/config/validators/validate.d.ts +596 -2810
  49. package/dist/config/validators/validate.js +438 -16
  50. package/dist/config/validators/validate.js.map +1 -1
  51. package/dist/config/validators/validate.test.d.ts +1 -0
  52. package/dist/config/validators/validate.test.js +141 -0
  53. package/dist/config/validators/validate.test.js.map +1 -0
  54. package/dist/index.d.ts +6 -3
  55. package/dist/index.js +3 -0
  56. package/dist/index.js.map +1 -1
  57. package/dist/lib/auth/issuer.d.ts +2 -0
  58. package/dist/lib/auth/issuer.js +37 -0
  59. package/dist/lib/auth/issuer.js.map +1 -0
  60. package/dist/lib/auth/issuer.test.d.ts +1 -0
  61. package/dist/lib/auth/issuer.test.js +94 -0
  62. package/dist/lib/auth/issuer.test.js.map +1 -0
  63. package/dist/lib/authentication/AuthenticationPlugin.d.ts +2 -2
  64. package/dist/lib/authentication/AuthenticationPlugin.js +1 -1
  65. package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
  66. package/dist/lib/authentication/authentication.d.ts +4 -4
  67. package/dist/lib/authentication/components/CallbackHandler.js +12 -10
  68. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  69. package/dist/lib/authentication/components/OAuthErrorPage.d.ts +3 -0
  70. package/dist/lib/authentication/components/OAuthErrorPage.js +99 -0
  71. package/dist/lib/authentication/components/OAuthErrorPage.js.map +1 -0
  72. package/dist/lib/authentication/components/SignIn.js +4 -3
  73. package/dist/lib/authentication/components/SignIn.js.map +1 -1
  74. package/dist/lib/authentication/errors.d.ts +6 -12
  75. package/dist/lib/authentication/errors.js +2 -1
  76. package/dist/lib/authentication/errors.js.map +1 -1
  77. package/dist/lib/authentication/hook.d.ts +7 -0
  78. package/dist/lib/authentication/hook.js.map +1 -1
  79. package/dist/lib/authentication/providers/auth0.js +1 -1
  80. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  81. package/dist/lib/authentication/providers/azureb2c.d.ts +28 -0
  82. package/dist/lib/authentication/providers/azureb2c.js +147 -0
  83. package/dist/lib/authentication/providers/azureb2c.js.map +1 -0
  84. package/dist/lib/authentication/providers/clerk.js +66 -54
  85. package/dist/lib/authentication/providers/clerk.js.map +1 -1
  86. package/dist/lib/authentication/providers/openid.d.ts +12 -14
  87. package/dist/lib/authentication/providers/openid.js +62 -27
  88. package/dist/lib/authentication/providers/openid.js.map +1 -1
  89. package/dist/lib/authentication/providers/supabase.js +5 -14
  90. package/dist/lib/authentication/providers/supabase.js.map +1 -1
  91. package/dist/lib/authentication/state.d.ts +6 -5
  92. package/dist/lib/authentication/state.js +19 -6
  93. package/dist/lib/authentication/state.js.map +1 -1
  94. package/dist/lib/components/Autocomplete.js +3 -3
  95. package/dist/lib/components/Autocomplete.js.map +1 -1
  96. package/dist/lib/components/Banner.js +2 -2
  97. package/dist/lib/components/Banner.js.map +1 -1
  98. package/dist/lib/components/BuildCheck.d.ts +2 -1
  99. package/dist/lib/components/BuildCheck.js +3 -4
  100. package/dist/lib/components/BuildCheck.js.map +1 -1
  101. package/dist/lib/components/CategoryHeading.js +1 -1
  102. package/dist/lib/components/CategoryHeading.js.map +1 -1
  103. package/dist/lib/components/ErrorPage.js +2 -2
  104. package/dist/lib/components/ErrorPage.js.map +1 -1
  105. package/dist/lib/components/Footer.js +6 -6
  106. package/dist/lib/components/Footer.js.map +1 -1
  107. package/dist/lib/components/Framed.d.ts +7 -0
  108. package/dist/lib/components/Framed.js +26 -0
  109. package/dist/lib/components/Framed.js.map +1 -0
  110. package/dist/lib/components/Header.js +24 -15
  111. package/dist/lib/components/Header.js.map +1 -1
  112. package/dist/lib/components/Heading.d.ts +6 -2
  113. package/dist/lib/components/Heading.js +7 -2
  114. package/dist/lib/components/Heading.js.map +1 -1
  115. package/dist/lib/components/InlineCode.js +1 -1
  116. package/dist/lib/components/InlineCode.js.map +1 -1
  117. package/dist/lib/components/Layout.js +2 -2
  118. package/dist/lib/components/Layout.js.map +1 -1
  119. package/dist/lib/components/Main.js +5 -5
  120. package/dist/lib/components/Main.js.map +1 -1
  121. package/dist/lib/components/Markdown.d.ts +3 -2
  122. package/dist/lib/components/Markdown.js +14 -16
  123. package/dist/lib/components/Markdown.js.map +1 -1
  124. package/dist/lib/components/MobileTopNavigation.js +14 -7
  125. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  126. package/dist/lib/components/NotFoundPage.js +2 -2
  127. package/dist/lib/components/NotFoundPage.js.map +1 -1
  128. package/dist/lib/components/PageProgress.d.ts +1 -0
  129. package/dist/lib/components/PageProgress.js +20 -0
  130. package/dist/lib/components/PageProgress.js.map +1 -0
  131. package/dist/lib/components/Pagination.js +1 -1
  132. package/dist/lib/components/Pagination.js.map +1 -1
  133. package/dist/lib/components/Search.js +1 -1
  134. package/dist/lib/components/Search.js.map +1 -1
  135. package/dist/lib/components/Slot.d.ts +17 -0
  136. package/dist/lib/components/Slot.js +24 -0
  137. package/dist/lib/components/Slot.js.map +1 -0
  138. package/dist/lib/components/Slot.test.d.ts +1 -0
  139. package/dist/lib/components/Slot.test.js +168 -0
  140. package/dist/lib/components/Slot.test.js.map +1 -0
  141. package/dist/lib/components/StatusPage.js +4 -0
  142. package/dist/lib/components/StatusPage.js.map +1 -1
  143. package/dist/lib/components/TopNavigation.d.ts +7 -6
  144. package/dist/lib/components/TopNavigation.js +52 -54
  145. package/dist/lib/components/TopNavigation.js.map +1 -1
  146. package/dist/lib/components/Typography.d.ts +5 -0
  147. package/dist/lib/components/Typography.js +8 -0
  148. package/dist/lib/components/Typography.js.map +1 -0
  149. package/dist/lib/components/Zudoku.js +2 -2
  150. package/dist/lib/components/Zudoku.js.map +1 -1
  151. package/dist/lib/components/context/SlotProvider.d.ts +26 -0
  152. package/dist/lib/components/context/SlotProvider.js +83 -0
  153. package/dist/lib/components/context/SlotProvider.js.map +1 -0
  154. package/dist/lib/components/context/ZudokuContext.d.ts +3 -7
  155. package/dist/lib/components/context/ZudokuContext.js +57 -32
  156. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  157. package/dist/lib/components/context/ZudokuProvider.d.ts +1 -1
  158. package/dist/lib/components/context/ZudokuProvider.js +2 -1
  159. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  160. package/dist/lib/components/index.d.ts +43 -25
  161. package/dist/lib/components/index.js +15 -7
  162. package/dist/lib/components/index.js.map +1 -1
  163. package/dist/lib/components/navigation/Navigation.d.ts +5 -0
  164. package/dist/lib/components/navigation/Navigation.js +12 -0
  165. package/dist/lib/components/navigation/Navigation.js.map +1 -0
  166. package/dist/lib/components/navigation/{SidebarBadge.d.ts → NavigationBadge.d.ts} +1 -1
  167. package/dist/lib/components/navigation/{SidebarBadge.js → NavigationBadge.js} +3 -3
  168. package/dist/lib/components/navigation/NavigationBadge.js.map +1 -0
  169. package/dist/lib/components/navigation/NavigationCategory.d.ts +5 -0
  170. package/dist/lib/components/navigation/{SidebarCategory.js → NavigationCategory.js} +16 -14
  171. package/dist/lib/components/navigation/NavigationCategory.js.map +1 -0
  172. package/dist/lib/components/navigation/NavigationItem.d.ts +6 -0
  173. package/dist/lib/components/navigation/NavigationItem.js +54 -0
  174. package/dist/lib/components/navigation/NavigationItem.js.map +1 -0
  175. package/dist/lib/components/navigation/{SidebarWrapper.d.ts → NavigationWrapper.d.ts} +1 -1
  176. package/dist/lib/components/navigation/{SidebarWrapper.js → NavigationWrapper.js} +5 -5
  177. package/dist/lib/components/navigation/NavigationWrapper.js.map +1 -0
  178. package/dist/lib/components/navigation/PoweredByZudoku.js +1 -1
  179. package/dist/lib/components/navigation/Toc.js +1 -1
  180. package/dist/lib/components/navigation/Toc.js.map +1 -1
  181. package/dist/lib/components/navigation/utils.d.ts +14 -6
  182. package/dist/lib/components/navigation/utils.js +49 -18
  183. package/dist/lib/components/navigation/utils.js.map +1 -1
  184. package/dist/lib/core/RouteGuard.js +9 -9
  185. package/dist/lib/core/RouteGuard.js.map +1 -1
  186. package/dist/lib/core/ZudokuContext.d.ts +34 -21
  187. package/dist/lib/core/ZudokuContext.js +38 -14
  188. package/dist/lib/core/ZudokuContext.js.map +1 -1
  189. package/dist/lib/core/plugins.d.ts +8 -4
  190. package/dist/lib/core/plugins.js +1 -0
  191. package/dist/lib/core/plugins.js.map +1 -1
  192. package/dist/lib/errors/ErrorAlert.js +2 -3
  193. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  194. package/dist/lib/hooks/index.d.ts +25 -0
  195. package/dist/lib/hooks/index.js +11 -0
  196. package/dist/lib/hooks/index.js.map +1 -1
  197. package/dist/lib/hooks/useEvent.test.js +5 -3
  198. package/dist/lib/hooks/useEvent.test.js.map +1 -1
  199. package/dist/lib/hooks/useHotkey.d.ts +4 -0
  200. package/dist/lib/hooks/useHotkey.js +58 -0
  201. package/dist/lib/hooks/useHotkey.js.map +1 -0
  202. package/dist/lib/oas/graphql/circular.js +23 -18
  203. package/dist/lib/oas/graphql/circular.js.map +1 -1
  204. package/dist/lib/plugins/api-catalog/Catalog.d.ts +1 -1
  205. package/dist/lib/plugins/api-catalog/Catalog.js +1 -1
  206. package/dist/lib/plugins/api-catalog/index.d.ts +6 -6
  207. package/dist/lib/plugins/api-catalog/index.js +10 -10
  208. package/dist/lib/plugins/api-catalog/index.js.map +1 -1
  209. package/dist/lib/plugins/api-keys/CreateApiKey.d.ts +3 -2
  210. package/dist/lib/plugins/api-keys/CreateApiKey.js +18 -4
  211. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  212. package/dist/lib/plugins/api-keys/SettingsApiKeys.d.ts +1 -1
  213. package/dist/lib/plugins/api-keys/SettingsApiKeys.js +152 -27
  214. package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
  215. package/dist/lib/plugins/api-keys/index.d.ts +29 -15
  216. package/dist/lib/plugins/api-keys/index.js +63 -33
  217. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  218. package/dist/lib/plugins/custom-pages/index.d.ts +4 -6
  219. package/dist/lib/plugins/custom-pages/index.js +15 -10
  220. package/dist/lib/plugins/custom-pages/index.js.map +1 -1
  221. package/dist/lib/plugins/markdown/MdxPage.d.ts +1 -2
  222. package/dist/lib/plugins/markdown/MdxPage.js +30 -10
  223. package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
  224. package/dist/lib/plugins/markdown/index.d.ts +11 -3
  225. package/dist/lib/plugins/markdown/index.js +9 -26
  226. package/dist/lib/plugins/markdown/index.js.map +1 -1
  227. package/dist/lib/plugins/openapi/CollapsibleCode.js +1 -1
  228. package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -1
  229. package/dist/lib/plugins/openapi/ColorizedParam.js +1 -1
  230. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  231. package/dist/lib/plugins/openapi/OperationList.js +3 -3
  232. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  233. package/dist/lib/plugins/openapi/OperationListItem.js +3 -4
  234. package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
  235. package/dist/lib/plugins/openapi/ParamInfos.js +3 -1
  236. package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -1
  237. package/dist/lib/plugins/openapi/ParameterListItem.js +1 -1
  238. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  239. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +1 -1
  240. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +5 -1
  241. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
  242. package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +2 -4
  243. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +1 -4
  244. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  245. package/dist/lib/plugins/openapi/SchemaList.js +7 -7
  246. package/dist/lib/plugins/openapi/SchemaList.js.map +1 -1
  247. package/dist/lib/plugins/openapi/Sidecar.js +11 -91
  248. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  249. package/dist/lib/plugins/openapi/SidecarExamples.js +9 -1
  250. package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
  251. package/dist/lib/plugins/openapi/components/EnumValues.js +1 -1
  252. package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -1
  253. package/dist/lib/plugins/openapi/components/ResponseContent.d.ts +12 -0
  254. package/dist/lib/plugins/openapi/components/ResponseContent.js +21 -0
  255. package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -0
  256. package/dist/lib/plugins/openapi/graphql/gql.d.ts +1 -1
  257. package/dist/lib/plugins/openapi/graphql/gql.js +1 -1
  258. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  259. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +4 -3
  260. package/dist/lib/plugins/openapi/graphql/graphql.js +3 -2
  261. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  262. package/dist/lib/plugins/openapi/index.d.ts +3 -3
  263. package/dist/lib/plugins/openapi/index.js +51 -19
  264. package/dist/lib/plugins/openapi/index.js.map +1 -1
  265. package/dist/lib/plugins/openapi/interfaces.d.ts +3 -3
  266. package/dist/lib/plugins/openapi/playground/BodyPanel.d.ts +5 -0
  267. package/dist/lib/plugins/openapi/playground/BodyPanel.js +26 -0
  268. package/dist/lib/plugins/openapi/playground/BodyPanel.js.map +1 -0
  269. package/dist/lib/plugins/openapi/playground/CollapsibleHeader.d.ts +8 -0
  270. package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js +11 -0
  271. package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js.map +1 -0
  272. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +2 -1
  273. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -1
  274. package/dist/lib/plugins/openapi/playground/Headers.d.ts +5 -4
  275. package/dist/lib/plugins/openapi/playground/Headers.js +54 -32
  276. package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
  277. package/dist/lib/plugins/openapi/playground/IdentityDialog.js +2 -1
  278. package/dist/lib/plugins/openapi/playground/IdentityDialog.js.map +1 -1
  279. package/dist/lib/plugins/openapi/playground/IdentitySelector.js +1 -4
  280. package/dist/lib/plugins/openapi/playground/IdentitySelector.js.map +1 -1
  281. package/dist/lib/plugins/openapi/playground/InlineInput.js +1 -1
  282. package/dist/lib/plugins/openapi/playground/InlineInput.js.map +1 -1
  283. package/dist/lib/plugins/openapi/playground/ParamsGrid.js +2 -2
  284. package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -1
  285. package/dist/lib/plugins/openapi/playground/PathParams.js +1 -2
  286. package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
  287. package/dist/lib/plugins/openapi/playground/Playground.d.ts +3 -8
  288. package/dist/lib/plugins/openapi/playground/Playground.js +115 -93
  289. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  290. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
  291. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
  292. package/dist/lib/plugins/openapi/playground/QueryParams.d.ts +2 -2
  293. package/dist/lib/plugins/openapi/playground/QueryParams.js +38 -23
  294. package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
  295. package/dist/lib/plugins/openapi/playground/Spinner.d.ts +2 -0
  296. package/dist/lib/plugins/openapi/playground/Spinner.js +63 -0
  297. package/dist/lib/plugins/openapi/playground/Spinner.js.map +1 -0
  298. package/dist/lib/plugins/openapi/playground/fileUtils.d.ts +2 -0
  299. package/dist/lib/plugins/openapi/playground/fileUtils.js +22 -0
  300. package/dist/lib/plugins/openapi/playground/fileUtils.js.map +1 -0
  301. package/dist/lib/plugins/openapi/playground/request-panel/UrlPath.d.ts +3 -0
  302. package/dist/lib/plugins/openapi/playground/request-panel/UrlPath.js +13 -0
  303. package/dist/lib/plugins/openapi/playground/request-panel/UrlPath.js.map +1 -0
  304. package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.d.ts +1 -0
  305. package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js +12 -0
  306. package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js.map +1 -0
  307. package/dist/lib/plugins/openapi/playground/result-panel/Highlight.d.ts +12 -0
  308. package/dist/lib/plugins/openapi/playground/result-panel/Highlight.js +11 -0
  309. package/dist/lib/plugins/openapi/playground/result-panel/Highlight.js.map +1 -0
  310. package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.d.ts +8 -0
  311. package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js +69 -0
  312. package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js.map +1 -0
  313. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.d.ts +10 -4
  314. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +33 -31
  315. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
  316. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +4 -2
  317. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +8 -10
  318. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -1
  319. package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.d.ts +16 -0
  320. package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js +10 -0
  321. package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js.map +1 -0
  322. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +3 -3
  323. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -1
  324. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +12 -14
  325. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
  326. package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +2 -1
  327. package/dist/lib/plugins/openapi/schema/SchemaView.js +7 -7
  328. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  329. package/dist/lib/plugins/openapi/schema/utils.d.ts +5 -1
  330. package/dist/lib/plugins/openapi/schema/utils.js +12 -7
  331. package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
  332. package/dist/lib/plugins/openapi/util/createHttpSnippet.d.ts +11 -0
  333. package/dist/lib/plugins/openapi/util/createHttpSnippet.js +89 -0
  334. package/dist/lib/plugins/openapi/util/createHttpSnippet.js.map +1 -0
  335. package/dist/lib/plugins/openapi/util/createNavigationCategory.d.ts +9 -0
  336. package/dist/lib/plugins/openapi/util/{createSidebarCategory.js → createNavigationCategory.js} +5 -4
  337. package/dist/lib/plugins/openapi/util/createNavigationCategory.js.map +1 -0
  338. package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +1 -1
  339. package/dist/lib/plugins/openapi/util/generateSchemaExample.js +4 -0
  340. package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
  341. package/dist/lib/plugins/openapi/util/getRoutes.js +2 -2
  342. package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -1
  343. package/dist/lib/plugins/openapi/util/methodColorMap.d.ts +1 -1
  344. package/dist/lib/plugins/redirect/index.d.ts +1 -1
  345. package/dist/lib/plugins/search-inkeep/index.d.ts +5 -22
  346. package/dist/lib/plugins/search-inkeep/index.js +35 -29
  347. package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
  348. package/dist/lib/plugins/search-inkeep/inkeep.d.ts +5 -21
  349. package/dist/lib/plugins/search-inkeep/inkeep.js +10 -19
  350. package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
  351. package/dist/lib/plugins/search-pagefind/PagefindSearch.js +1 -1
  352. package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -1
  353. package/dist/lib/plugins/search-pagefind/ResultList.d.ts +1 -1
  354. package/dist/lib/plugins/search-pagefind/ResultList.js +12 -5
  355. package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -1
  356. package/dist/lib/shiki.d.ts +35 -0
  357. package/dist/lib/shiki.js +103 -0
  358. package/dist/lib/shiki.js.map +1 -0
  359. package/dist/lib/ui/ActionButton.js +1 -1
  360. package/dist/lib/ui/ActionButton.js.map +1 -1
  361. package/dist/lib/ui/Alert.d.ts +6 -5
  362. package/dist/lib/ui/Alert.js +12 -10
  363. package/dist/lib/ui/Alert.js.map +1 -1
  364. package/dist/lib/ui/Badge.d.ts +2 -2
  365. package/dist/lib/ui/Badge.js +1 -1
  366. package/dist/lib/ui/Badge.js.map +1 -1
  367. package/dist/lib/ui/Button.d.ts +2 -2
  368. package/dist/lib/ui/Button.js +8 -6
  369. package/dist/lib/ui/Button.js.map +1 -1
  370. package/dist/lib/ui/Callout.js +1 -1
  371. package/dist/lib/ui/Callout.js.map +1 -1
  372. package/dist/lib/ui/Card.js +1 -1
  373. package/dist/lib/ui/Checkbox.js +1 -1
  374. package/dist/lib/ui/Checkbox.js.map +1 -1
  375. package/dist/lib/ui/CodeBlock.d.ts +15 -0
  376. package/dist/lib/ui/CodeBlock.js +43 -0
  377. package/dist/lib/ui/CodeBlock.js.map +1 -0
  378. package/dist/lib/ui/Command.d.ts +1 -1
  379. package/dist/lib/ui/Command.js +3 -3
  380. package/dist/lib/ui/Command.js.map +1 -1
  381. package/dist/lib/ui/Dialog.d.ts +3 -1
  382. package/dist/lib/ui/Dialog.js +2 -2
  383. package/dist/lib/ui/Dialog.js.map +1 -1
  384. package/dist/lib/ui/DropdownMenu.js +4 -4
  385. package/dist/lib/ui/DropdownMenu.js.map +1 -1
  386. package/dist/lib/ui/EmbeddedCodeBlock.d.ts +15 -0
  387. package/dist/lib/ui/EmbeddedCodeBlock.js +18 -0
  388. package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -0
  389. package/dist/lib/ui/HoverCard.js +1 -1
  390. package/dist/lib/ui/HoverCard.js.map +1 -1
  391. package/dist/lib/ui/Input.js +1 -1
  392. package/dist/lib/ui/Input.js.map +1 -1
  393. package/dist/lib/ui/Popover.js +1 -1
  394. package/dist/lib/ui/Popover.js.map +1 -1
  395. package/dist/lib/ui/RadioGroup.js +1 -1
  396. package/dist/lib/ui/RadioGroup.js.map +1 -1
  397. package/dist/lib/ui/Select.js +2 -2
  398. package/dist/lib/ui/Select.js.map +1 -1
  399. package/dist/lib/ui/Slider.js +1 -1
  400. package/dist/lib/ui/Slider.js.map +1 -1
  401. package/dist/lib/ui/Switch.js +1 -1
  402. package/dist/lib/ui/Switch.js.map +1 -1
  403. package/dist/lib/ui/SyntaxHighlight.d.ts +12 -15
  404. package/dist/lib/ui/SyntaxHighlight.js +13 -60
  405. package/dist/lib/ui/SyntaxHighlight.js.map +1 -1
  406. package/dist/lib/ui/Tabs.js +2 -2
  407. package/dist/lib/ui/Tabs.js.map +1 -1
  408. package/dist/lib/ui/Textarea.js +1 -1
  409. package/dist/lib/ui/Textarea.js.map +1 -1
  410. package/dist/lib/ui/Toggle.js +1 -1
  411. package/dist/lib/ui/Toggle.js.map +1 -1
  412. package/dist/lib/ui/Tooltip.d.ts +2 -1
  413. package/dist/lib/ui/Tooltip.js +2 -1
  414. package/dist/lib/ui/Tooltip.js.map +1 -1
  415. package/dist/lib/util/MdxComponents.d.ts +17 -3
  416. package/dist/lib/util/MdxComponents.js +13 -12
  417. package/dist/lib/util/MdxComponents.js.map +1 -1
  418. package/dist/lib/util/humanFileSize.d.ts +6 -0
  419. package/dist/lib/util/humanFileSize.js +14 -0
  420. package/dist/lib/util/humanFileSize.js.map +1 -0
  421. package/dist/lib/util/humanFileSize.test.d.ts +1 -0
  422. package/dist/lib/util/humanFileSize.test.js +22 -0
  423. package/dist/lib/util/humanFileSize.test.js.map +1 -0
  424. package/dist/lib/util/invariant.d.ts +6 -5
  425. package/dist/lib/util/invariant.js +1 -1
  426. package/dist/lib/util/invariant.js.map +1 -1
  427. package/dist/lib/util/os.d.ts +2 -0
  428. package/dist/lib/util/os.js +21 -0
  429. package/dist/lib/util/os.js.map +1 -0
  430. package/dist/lib/util/useCopyToClipboard.d.ts +1 -0
  431. package/dist/lib/util/useCopyToClipboard.js +11 -0
  432. package/dist/lib/util/useCopyToClipboard.js.map +1 -0
  433. package/dist/lib/util/useExposedProps.d.ts +8 -1
  434. package/dist/lib/util/useExposedProps.js.map +1 -1
  435. package/dist/lib/util/useScrollToAnchor.js +3 -3
  436. package/dist/lib/util/useScrollToAnchor.js.map +1 -1
  437. package/dist/vite/api/SchemaManager.d.ts +4 -4
  438. package/dist/vite/api/SchemaManager.js +41 -22
  439. package/dist/vite/api/SchemaManager.js.map +1 -1
  440. package/dist/vite/api/SchemaManager.test.js +4 -4
  441. package/dist/vite/api/SchemaManager.test.js.map +1 -1
  442. package/dist/vite/api/schema-codegen.js +42 -11
  443. package/dist/vite/api/schema-codegen.js.map +1 -1
  444. package/dist/vite/api/schema-codegen.test.js +82 -0
  445. package/dist/vite/api/schema-codegen.test.js.map +1 -1
  446. package/dist/vite/build.js +21 -7
  447. package/dist/vite/build.js.map +1 -1
  448. package/dist/vite/config.d.ts +2 -9
  449. package/dist/vite/config.js +58 -98
  450. package/dist/vite/config.js.map +1 -1
  451. package/dist/vite/config.test.js +1 -1
  452. package/dist/vite/config.test.js.map +1 -1
  453. package/dist/vite/css/plugin.d.ts +1 -2
  454. package/dist/vite/css/plugin.js +14 -2
  455. package/dist/vite/css/plugin.js.map +1 -1
  456. package/dist/vite/dev-server.d.ts +0 -1
  457. package/dist/vite/dev-server.js +19 -13
  458. package/dist/vite/dev-server.js.map +1 -1
  459. package/dist/vite/html.d.ts +2 -2
  460. package/dist/vite/html.js +5 -2
  461. package/dist/vite/html.js.map +1 -1
  462. package/dist/vite/mdx/remark-last-modified.d.ts +3 -0
  463. package/dist/vite/mdx/remark-last-modified.js +29 -0
  464. package/dist/vite/mdx/remark-last-modified.js.map +1 -0
  465. package/dist/vite/mdx/utils.d.ts +2 -0
  466. package/dist/vite/mdx/utils.js +31 -0
  467. package/dist/vite/mdx/utils.js.map +1 -0
  468. package/dist/vite/plugin-api-keys.d.ts +1 -2
  469. package/dist/vite/plugin-api-keys.js +9 -3
  470. package/dist/vite/plugin-api-keys.js.map +1 -1
  471. package/dist/vite/plugin-api.d.ts +1 -2
  472. package/dist/vite/plugin-api.js +13 -12
  473. package/dist/vite/plugin-api.js.map +1 -1
  474. package/dist/vite/plugin-auth.d.ts +1 -2
  475. package/dist/vite/plugin-auth.js +3 -2
  476. package/dist/vite/plugin-auth.js.map +1 -1
  477. package/dist/vite/plugin-component.d.ts +1 -2
  478. package/dist/vite/plugin-component.js +3 -2
  479. package/dist/vite/plugin-component.js.map +1 -1
  480. package/dist/vite/plugin-config-reload.d.ts +1 -2
  481. package/dist/vite/plugin-config-reload.js +23 -22
  482. package/dist/vite/plugin-config-reload.js.map +1 -1
  483. package/dist/vite/plugin-config.d.ts +2 -3
  484. package/dist/vite/plugin-config.js +6 -4
  485. package/dist/vite/plugin-config.js.map +1 -1
  486. package/dist/vite/plugin-custom-pages.d.ts +1 -2
  487. package/dist/vite/plugin-custom-pages.js +5 -4
  488. package/dist/vite/plugin-custom-pages.js.map +1 -1
  489. package/dist/vite/plugin-docs.d.ts +1 -2
  490. package/dist/vite/plugin-docs.js +69 -61
  491. package/dist/vite/plugin-docs.js.map +1 -1
  492. package/dist/vite/plugin-frontmatter.d.ts +1 -2
  493. package/dist/vite/plugin-frontmatter.js +9 -4
  494. package/dist/vite/plugin-frontmatter.js.map +1 -1
  495. package/dist/vite/plugin-mdx.d.ts +1 -2
  496. package/dist/vite/plugin-mdx.js +24 -51
  497. package/dist/vite/plugin-mdx.js.map +1 -1
  498. package/dist/vite/{plugin-sidebar.d.ts → plugin-navigation.d.ts} +1 -2
  499. package/dist/vite/{plugin-sidebar.js → plugin-navigation.js} +22 -20
  500. package/dist/vite/plugin-navigation.js.map +1 -0
  501. package/dist/vite/plugin-redirect.d.ts +1 -2
  502. package/dist/vite/plugin-redirect.js +3 -2
  503. package/dist/vite/plugin-redirect.js.map +1 -1
  504. package/dist/vite/plugin-search.d.ts +1 -2
  505. package/dist/vite/plugin-search.js +3 -2
  506. package/dist/vite/plugin-search.js.map +1 -1
  507. package/dist/vite/plugin-shiki-register.d.ts +2 -0
  508. package/dist/vite/plugin-shiki-register.js +39 -0
  509. package/dist/vite/plugin-shiki-register.js.map +1 -0
  510. package/dist/vite/plugin-theme.d.ts +8 -0
  511. package/dist/vite/plugin-theme.js +274 -0
  512. package/dist/vite/plugin-theme.js.map +1 -0
  513. package/dist/vite/plugin-theme.test.d.ts +1 -0
  514. package/dist/vite/plugin-theme.test.js +312 -0
  515. package/dist/vite/plugin-theme.test.js.map +1 -0
  516. package/dist/vite/plugin.d.ts +1 -2
  517. package/dist/vite/plugin.js +23 -22
  518. package/dist/vite/plugin.js.map +1 -1
  519. package/dist/vite/prerender/worker.js +5 -1
  520. package/dist/vite/prerender/worker.js.map +1 -1
  521. package/dist/vite/shadcn-registry.d.ts +45 -0
  522. package/dist/vite/shadcn-registry.js +29 -0
  523. package/dist/vite/shadcn-registry.js.map +1 -0
  524. package/dist/vite/sitemap.d.ts +1 -1
  525. package/dist/zuplo/with-zuplo.d.ts +2 -2
  526. package/dist/zuplo/with-zuplo.js.map +1 -1
  527. package/lib/Button-B3o-2Xdf.js +51 -0
  528. package/lib/Button-B3o-2Xdf.js.map +1 -0
  529. package/lib/{Card-BtheiD7j.js → Card-CMDQUPM4.js} +3 -3
  530. package/lib/{Card-BtheiD7j.js.map → Card-CMDQUPM4.js.map} +1 -1
  531. package/lib/ClientOnly-E7hGysn1.js.map +1 -1
  532. package/lib/CodeBlock-NFCmSWOK.js +98 -0
  533. package/lib/CodeBlock-NFCmSWOK.js.map +1 -0
  534. package/lib/Command-BYukybsa.js +140 -0
  535. package/lib/Command-BYukybsa.js.map +1 -0
  536. package/lib/{Dialog-ByYz4ABw.js → Dialog-u9Uz9sTt.js} +26 -25
  537. package/lib/Dialog-u9Uz9sTt.js.map +1 -0
  538. package/lib/{Drawer-CEwbkLDb.js → Drawer-DJ05s2pH.js} +105 -105
  539. package/lib/{Drawer-CEwbkLDb.js.map → Drawer-DJ05s2pH.js.map} +1 -1
  540. package/lib/MdxPage-CdxPkV7p.js +110 -0
  541. package/lib/MdxPage-CdxPkV7p.js.map +1 -0
  542. package/lib/OAuthErrorPage-CNbVseNs.js +150 -0
  543. package/lib/OAuthErrorPage-CNbVseNs.js.map +1 -0
  544. package/lib/OasProvider-dNGQw-A8.js +35 -0
  545. package/lib/OasProvider-dNGQw-A8.js.map +1 -0
  546. package/lib/OperationList-ckGHyNMV.js +5168 -0
  547. package/lib/OperationList-ckGHyNMV.js.map +1 -0
  548. package/lib/Pagination-Chy4IAeH.js +37 -0
  549. package/lib/Pagination-Chy4IAeH.js.map +1 -0
  550. package/lib/{RouteGuard-D2gX29iI.js → RouteGuard-D17dUEM_.js} +277 -283
  551. package/lib/RouteGuard-D17dUEM_.js.map +1 -0
  552. package/lib/{SchemaList-DGOmVkot.js → SchemaList-BVirSc9P.js} +59 -57
  553. package/lib/SchemaList-BVirSc9P.js.map +1 -0
  554. package/lib/SchemaView-DhJktH3K.js +366 -0
  555. package/lib/SchemaView-DhJktH3K.js.map +1 -0
  556. package/lib/Select-CHg-8SQA.js +273 -0
  557. package/lib/Select-CHg-8SQA.js.map +1 -0
  558. package/lib/SignUp-xrEyHGja.js +56 -0
  559. package/lib/SignUp-xrEyHGja.js.map +1 -0
  560. package/lib/{Markdown-DvdVn1O7.js → Slot-DwKHufbT.js} +14307 -15696
  561. package/lib/Slot-DwKHufbT.js.map +1 -0
  562. package/lib/Spinner-mNLZ6awP.js.map +1 -1
  563. package/lib/SyntaxHighlight-DQ64ObSH.js +10308 -0
  564. package/lib/SyntaxHighlight-DQ64ObSH.js.map +1 -0
  565. package/lib/{Toc-BnN4zBb3.js → Toc-IyR_0dSg.js} +5 -5
  566. package/lib/Toc-IyR_0dSg.js.map +1 -0
  567. package/lib/ZudokuContext-Coxa0DfE.js +1278 -0
  568. package/lib/ZudokuContext-Coxa0DfE.js.map +1 -0
  569. package/lib/chunk-QMGIS6GS-CdEm9pzB.js +1839 -0
  570. package/lib/chunk-QMGIS6GS-CdEm9pzB.js.map +1 -0
  571. package/lib/{circular-WY7p7GWq.js → circular-3tGytcdj.js} +1568 -1560
  572. package/lib/circular-3tGytcdj.js.map +1 -0
  573. package/lib/clsx-OuTLNxxd.js +17 -0
  574. package/lib/clsx-OuTLNxxd.js.map +1 -0
  575. package/lib/{cn-qaFjX9_3.js → cn-dYga0KKN.js} +1015 -563
  576. package/lib/cn-dYga0KKN.js.map +1 -0
  577. package/lib/{createServer-D3RtEIGE.js → createServer-C1PpesMb.js} +3985 -4127
  578. package/lib/createServer-C1PpesMb.js.map +1 -0
  579. package/lib/errors-DekB3aZw.js +45 -0
  580. package/lib/errors-DekB3aZw.js.map +1 -0
  581. package/lib/hook-DEPqwjke.js +247 -0
  582. package/lib/hook-DEPqwjke.js.map +1 -0
  583. package/lib/index-B2tq8ySG.js +4082 -0
  584. package/lib/index-B2tq8ySG.js.map +1 -0
  585. package/lib/{index-LNp6rxyU.js → index-BWWkmg0b.js} +3 -3
  586. package/lib/{index-LNp6rxyU.js.map → index-BWWkmg0b.js.map} +1 -1
  587. package/lib/{index-CuBIgTKC.js → index-CrcNWbel.js} +9 -9
  588. package/lib/{index-CuBIgTKC.js.map → index-CrcNWbel.js.map} +1 -1
  589. package/lib/index-D7-DP8pf.js +3391 -0
  590. package/lib/index-D7-DP8pf.js.map +1 -0
  591. package/lib/{index-CPNSgwSb.js → index-DI5SPFK9.js} +5 -5
  592. package/lib/{index-CPNSgwSb.js.map → index-DI5SPFK9.js.map} +1 -1
  593. package/lib/{index-DcHeSvkE.js → index-DmNq2fbN.js} +773 -796
  594. package/lib/index-DmNq2fbN.js.map +1 -0
  595. package/lib/index.esm-CdzlRw50.js +1254 -0
  596. package/lib/index.esm-CdzlRw50.js.map +1 -0
  597. package/lib/invariant-Bm-FVUQE.js +44 -0
  598. package/lib/invariant-Bm-FVUQE.js.map +1 -0
  599. package/lib/jsx-runtime-C5mzlN2N.js.map +1 -1
  600. package/lib/processors/removeExtensions.js.map +1 -1
  601. package/lib/processors/removeParameters.js +27 -28
  602. package/lib/processors/removeParameters.js.map +1 -1
  603. package/lib/processors/removePaths.js +17 -17
  604. package/lib/processors/removePaths.js.map +1 -1
  605. package/lib/processors/traverse.js.map +1 -1
  606. package/lib/ui/Accordion.js +1 -1
  607. package/lib/ui/Accordion.js.map +1 -1
  608. package/lib/ui/ActionButton.js +10 -10
  609. package/lib/ui/ActionButton.js.map +1 -1
  610. package/lib/ui/Alert.js +54 -38
  611. package/lib/ui/Alert.js.map +1 -1
  612. package/lib/ui/AlertDialog.js +1 -1
  613. package/lib/ui/AlertDialog.js.map +1 -1
  614. package/lib/ui/Badge.js +3 -3
  615. package/lib/ui/Badge.js.map +1 -1
  616. package/lib/ui/Breadcrumb.js +1 -1
  617. package/lib/ui/Breadcrumb.js.map +1 -1
  618. package/lib/ui/Button.js +20 -18
  619. package/lib/ui/Button.js.map +1 -1
  620. package/lib/ui/Callout.js +11 -10
  621. package/lib/ui/Callout.js.map +1 -1
  622. package/lib/ui/Card.js +8 -8
  623. package/lib/ui/Card.js.map +1 -1
  624. package/lib/ui/Carousel.js +175 -175
  625. package/lib/ui/Carousel.js.map +1 -1
  626. package/lib/ui/Checkbox.js +7 -7
  627. package/lib/ui/Checkbox.js.map +1 -1
  628. package/lib/ui/CodeBlock.js +9 -0
  629. package/lib/ui/CodeBlock.js.map +1 -0
  630. package/lib/ui/Command.js +57 -57
  631. package/lib/ui/Command.js.map +1 -1
  632. package/lib/ui/Dialog.js +40 -40
  633. package/lib/ui/Dialog.js.map +1 -1
  634. package/lib/ui/Drawer.js +2 -2
  635. package/lib/ui/DropdownMenu.js +34 -34
  636. package/lib/ui/DropdownMenu.js.map +1 -1
  637. package/lib/ui/EmbeddedCodeBlock.js +80 -0
  638. package/lib/ui/EmbeddedCodeBlock.js.map +1 -0
  639. package/lib/ui/Form.js +2 -2
  640. package/lib/ui/Form.js.map +1 -1
  641. package/lib/ui/HoverCard.js +5 -5
  642. package/lib/ui/HoverCard.js.map +1 -1
  643. package/lib/ui/Input.js +2 -2
  644. package/lib/ui/Input.js.map +1 -1
  645. package/lib/ui/Label.js +2 -2
  646. package/lib/ui/Label.js.map +1 -1
  647. package/lib/ui/Pagination.js +1 -1
  648. package/lib/ui/Pagination.js.map +1 -1
  649. package/lib/ui/Popover.js +2 -2
  650. package/lib/ui/Popover.js.map +1 -1
  651. package/lib/ui/Progress.js +1 -1
  652. package/lib/ui/Progress.js.map +1 -1
  653. package/lib/ui/RadioGroup.js +10 -10
  654. package/lib/ui/RadioGroup.js.map +1 -1
  655. package/lib/ui/ScrollArea.js +1 -1
  656. package/lib/ui/ScrollArea.js.map +1 -1
  657. package/lib/ui/Select.js +31 -31
  658. package/lib/ui/Select.js.map +1 -1
  659. package/lib/ui/Skeleton.js +1 -1
  660. package/lib/ui/Skeleton.js.map +1 -1
  661. package/lib/ui/Slider.js +5 -5
  662. package/lib/ui/Slider.js.map +1 -1
  663. package/lib/ui/Stepper.js.map +1 -1
  664. package/lib/ui/Switch.js +5 -5
  665. package/lib/ui/Switch.js.map +1 -1
  666. package/lib/ui/SyntaxHighlight.js +5 -5
  667. package/lib/ui/Tabs.js +16 -16
  668. package/lib/ui/Tabs.js.map +1 -1
  669. package/lib/ui/Textarea.js +5 -5
  670. package/lib/ui/Textarea.js.map +1 -1
  671. package/lib/ui/Toggle.js +7 -7
  672. package/lib/ui/Toggle.js.map +1 -1
  673. package/lib/ui/ToggleGroup.js +1 -1
  674. package/lib/ui/ToggleGroup.js.map +1 -1
  675. package/lib/ui/Tooltip.js +15 -8
  676. package/lib/ui/Tooltip.js.map +1 -1
  677. package/lib/ui/util.js +1 -1
  678. package/lib/useExposedProps-DUoV7MCU.js +113 -0
  679. package/lib/useExposedProps-DUoV7MCU.js.map +1 -0
  680. package/lib/zudoku.auth-auth0.js +29 -32
  681. package/lib/zudoku.auth-auth0.js.map +1 -1
  682. package/lib/zudoku.auth-azureb2c.js +137 -0
  683. package/lib/zudoku.auth-azureb2c.js.map +1 -0
  684. package/lib/zudoku.auth-clerk.js +104 -99
  685. package/lib/zudoku.auth-clerk.js.map +1 -1
  686. package/lib/zudoku.auth-openid.js +452 -447
  687. package/lib/zudoku.auth-openid.js.map +1 -1
  688. package/lib/zudoku.auth-supabase.js +97 -0
  689. package/lib/zudoku.auth-supabase.js.map +1 -0
  690. package/lib/zudoku.components.js +21 -20
  691. package/lib/zudoku.hooks.js +21 -13
  692. package/lib/zudoku.hooks.js.map +1 -1
  693. package/lib/zudoku.icons.js.map +1 -1
  694. package/lib/zudoku.plugin-api-catalog.js +64 -63
  695. package/lib/zudoku.plugin-api-catalog.js.map +1 -1
  696. package/lib/zudoku.plugin-api-keys.js +654 -191
  697. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  698. package/lib/zudoku.plugin-custom-pages.js +12 -18
  699. package/lib/zudoku.plugin-custom-pages.js.map +1 -1
  700. package/lib/zudoku.plugin-markdown.js +20 -73
  701. package/lib/zudoku.plugin-markdown.js.map +1 -1
  702. package/lib/zudoku.plugin-openapi.js +5 -4
  703. package/lib/zudoku.plugin-openapi.js.map +1 -1
  704. package/lib/zudoku.plugin-redirect.js +1 -1
  705. package/lib/zudoku.plugin-redirect.js.map +1 -1
  706. package/lib/zudoku.plugin-search-inkeep.js +55 -59
  707. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  708. package/lib/zudoku.plugin-search-pagefind.js +216 -124
  709. package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
  710. package/lib/zudoku.plugins.js +7 -6
  711. package/lib/zudoku.plugins.js.map +1 -1
  712. package/package.json +112 -81
  713. package/src/app/ZuploBuildConfig.ts +8 -8
  714. package/src/app/defaultTheme.css +73 -0
  715. package/src/app/demo.tsx +24 -6
  716. package/src/app/entry.client.tsx +0 -2
  717. package/src/app/entry.server.tsx +0 -2
  718. package/src/app/env.ts +8 -0
  719. package/src/app/font.geist.css +73 -0
  720. package/src/app/main.css +131 -150
  721. package/src/app/main.tsx +32 -57
  722. package/src/app/standalone.tsx +7 -6
  723. package/src/lib/auth/issuer.test.ts +120 -0
  724. package/src/lib/auth/issuer.ts +41 -0
  725. package/src/lib/authentication/AuthenticationPlugin.tsx +4 -4
  726. package/src/lib/authentication/authentication.ts +4 -7
  727. package/src/lib/authentication/components/CallbackHandler.tsx +23 -16
  728. package/src/lib/authentication/components/OAuthErrorPage.tsx +171 -0
  729. package/src/lib/authentication/components/SignIn.tsx +5 -12
  730. package/src/lib/authentication/errors.ts +27 -13
  731. package/src/lib/authentication/hook.ts +2 -0
  732. package/src/lib/authentication/providers/auth0.tsx +9 -3
  733. package/src/lib/authentication/providers/azureb2c.tsx +201 -0
  734. package/src/lib/authentication/providers/clerk.tsx +76 -58
  735. package/src/lib/authentication/providers/openid.tsx +101 -30
  736. package/src/lib/authentication/providers/supabase.tsx +9 -16
  737. package/src/lib/authentication/state.ts +37 -7
  738. package/src/lib/components/Autocomplete.tsx +3 -2
  739. package/src/lib/components/Banner.tsx +2 -3
  740. package/src/lib/components/BuildCheck.tsx +4 -4
  741. package/src/lib/components/CategoryHeading.tsx +4 -1
  742. package/src/lib/components/ErrorPage.tsx +3 -3
  743. package/src/lib/components/Footer.tsx +8 -11
  744. package/src/lib/components/Framed.tsx +51 -0
  745. package/src/lib/components/Header.tsx +43 -40
  746. package/src/lib/components/Heading.tsx +16 -8
  747. package/src/lib/components/InlineCode.tsx +1 -1
  748. package/src/lib/components/Layout.tsx +3 -3
  749. package/src/lib/components/Main.tsx +13 -13
  750. package/src/lib/components/Markdown.tsx +40 -27
  751. package/src/lib/components/MobileTopNavigation.tsx +74 -16
  752. package/src/lib/components/NotFoundPage.tsx +6 -5
  753. package/src/lib/components/PageProgress.tsx +28 -0
  754. package/src/lib/components/Pagination.tsx +5 -10
  755. package/src/lib/components/Search.tsx +1 -1
  756. package/src/lib/components/Slot.test.tsx +465 -0
  757. package/src/lib/components/Slot.tsx +64 -0
  758. package/src/lib/components/StatusPage.tsx +5 -0
  759. package/src/lib/components/TopNavigation.tsx +80 -85
  760. package/src/lib/components/Typography.tsx +14 -0
  761. package/src/lib/components/Zudoku.tsx +9 -9
  762. package/src/lib/components/context/SlotProvider.tsx +149 -0
  763. package/src/lib/components/context/ZudokuContext.ts +67 -43
  764. package/src/lib/components/context/ZudokuProvider.tsx +3 -2
  765. package/src/lib/components/index.ts +16 -10
  766. package/src/lib/components/navigation/Navigation.tsx +50 -0
  767. package/src/lib/components/navigation/{SidebarBadge.tsx → NavigationBadge.tsx} +2 -2
  768. package/src/lib/components/navigation/{SidebarCategory.tsx → NavigationCategory.tsx} +19 -17
  769. package/src/lib/components/navigation/NavigationItem.tsx +159 -0
  770. package/src/lib/components/navigation/{SidebarWrapper.tsx → NavigationWrapper.tsx} +8 -5
  771. package/src/lib/components/navigation/PoweredByZudoku.tsx +1 -1
  772. package/src/lib/components/navigation/Toc.tsx +2 -2
  773. package/src/lib/components/navigation/utils.ts +69 -28
  774. package/src/lib/core/RouteGuard.tsx +13 -13
  775. package/src/lib/core/ZudokuContext.ts +77 -31
  776. package/src/lib/core/plugins.ts +13 -4
  777. package/src/lib/errors/ErrorAlert.tsx +8 -16
  778. package/src/lib/hooks/index.ts +11 -0
  779. package/src/lib/hooks/useEvent.test.tsx +7 -5
  780. package/src/lib/hooks/useHotkey.ts +70 -0
  781. package/src/lib/oas/graphql/circular.ts +27 -19
  782. package/src/lib/plugins/api-catalog/Catalog.tsx +2 -2
  783. package/src/lib/plugins/api-catalog/index.tsx +19 -19
  784. package/src/lib/plugins/api-keys/CreateApiKey.tsx +70 -44
  785. package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +484 -118
  786. package/src/lib/plugins/api-keys/index.tsx +140 -62
  787. package/src/lib/plugins/custom-pages/index.tsx +21 -16
  788. package/src/lib/plugins/markdown/MdxPage.tsx +77 -22
  789. package/src/lib/plugins/markdown/index.tsx +29 -42
  790. package/src/lib/plugins/openapi/CollapsibleCode.tsx +6 -3
  791. package/src/lib/plugins/openapi/ColorizedParam.tsx +2 -2
  792. package/src/lib/plugins/openapi/OperationList.tsx +13 -21
  793. package/src/lib/plugins/openapi/OperationListItem.tsx +9 -37
  794. package/src/lib/plugins/openapi/ParamInfos.tsx +3 -1
  795. package/src/lib/plugins/openapi/ParameterListItem.tsx +6 -0
  796. package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +8 -2
  797. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +5 -16
  798. package/src/lib/plugins/openapi/SchemaList.tsx +24 -18
  799. package/src/lib/plugins/openapi/Sidecar.tsx +14 -99
  800. package/src/lib/plugins/openapi/SidecarExamples.tsx +9 -2
  801. package/src/lib/plugins/openapi/components/EnumValues.tsx +1 -1
  802. package/src/lib/plugins/openapi/components/ResponseContent.tsx +104 -0
  803. package/src/lib/plugins/openapi/graphql/gql.ts +5 -5
  804. package/src/lib/plugins/openapi/graphql/graphql.ts +8 -6
  805. package/src/lib/plugins/openapi/index.tsx +77 -27
  806. package/src/lib/plugins/openapi/interfaces.ts +3 -3
  807. package/src/lib/plugins/openapi/playground/BodyPanel.tsx +55 -0
  808. package/src/lib/plugins/openapi/playground/CollapsibleHeader.tsx +47 -0
  809. package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +8 -1
  810. package/src/lib/plugins/openapi/playground/Headers.tsx +217 -115
  811. package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +3 -2
  812. package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +19 -35
  813. package/src/lib/plugins/openapi/playground/InlineInput.tsx +1 -1
  814. package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +2 -2
  815. package/src/lib/plugins/openapi/playground/PathParams.tsx +5 -6
  816. package/src/lib/plugins/openapi/playground/Playground.tsx +267 -290
  817. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +3 -2
  818. package/src/lib/plugins/openapi/playground/QueryParams.tsx +104 -58
  819. package/src/lib/plugins/openapi/playground/Spinner.tsx +87 -0
  820. package/src/lib/plugins/openapi/playground/fileUtils.ts +32 -0
  821. package/src/lib/plugins/openapi/playground/request-panel/UrlPath.tsx +31 -0
  822. package/src/lib/plugins/openapi/playground/request-panel/UrlQueryParams.tsx +25 -0
  823. package/src/lib/plugins/openapi/playground/result-panel/Highlight.tsx +26 -0
  824. package/src/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.tsx +115 -0
  825. package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +149 -108
  826. package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +68 -89
  827. package/src/lib/plugins/openapi/playground/useRememberSkipLoginDialog.tsx +20 -0
  828. package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +5 -5
  829. package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +25 -20
  830. package/src/lib/plugins/openapi/schema/SchemaView.tsx +13 -14
  831. package/src/lib/plugins/openapi/schema/utils.ts +21 -8
  832. package/src/lib/plugins/openapi/util/createHttpSnippet.ts +107 -0
  833. package/src/lib/plugins/openapi/util/{createSidebarCategory.tsx → createNavigationCategory.tsx} +6 -5
  834. package/src/lib/plugins/openapi/util/generateSchemaExample.ts +6 -1
  835. package/src/lib/plugins/openapi/util/getRoutes.tsx +2 -2
  836. package/src/lib/plugins/openapi/util/methodColorMap.tsx +1 -1
  837. package/src/lib/plugins/redirect/index.tsx +1 -1
  838. package/src/lib/plugins/search-inkeep/index.tsx +54 -58
  839. package/src/lib/plugins/search-inkeep/inkeep.ts +19 -21
  840. package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +1 -0
  841. package/src/lib/plugins/search-pagefind/ResultList.tsx +13 -4
  842. package/src/lib/shiki.ts +134 -0
  843. package/src/lib/ui/ActionButton.tsx +3 -1
  844. package/src/lib/ui/Alert.tsx +45 -39
  845. package/src/lib/ui/Badge.tsx +2 -2
  846. package/src/lib/ui/Button.tsx +9 -6
  847. package/src/lib/ui/Callout.tsx +2 -1
  848. package/src/lib/ui/Card.tsx +1 -1
  849. package/src/lib/ui/Checkbox.tsx +1 -1
  850. package/src/lib/ui/CodeBlock.tsx +113 -0
  851. package/src/lib/ui/Command.tsx +5 -5
  852. package/src/lib/ui/Dialog.tsx +11 -7
  853. package/src/lib/ui/DropdownMenu.tsx +4 -4
  854. package/src/lib/ui/EmbeddedCodeBlock.tsx +94 -0
  855. package/src/lib/ui/HoverCard.tsx +1 -1
  856. package/src/lib/ui/Input.tsx +1 -1
  857. package/src/lib/ui/Popover.tsx +1 -1
  858. package/src/lib/ui/RadioGroup.tsx +1 -1
  859. package/src/lib/ui/Select.tsx +3 -3
  860. package/src/lib/ui/Slider.tsx +1 -1
  861. package/src/lib/ui/Switch.tsx +1 -1
  862. package/src/lib/ui/SyntaxHighlight.tsx +28 -179
  863. package/src/lib/ui/Tabs.tsx +2 -2
  864. package/src/lib/ui/Textarea.tsx +1 -1
  865. package/src/lib/ui/Toggle.tsx +1 -1
  866. package/src/lib/ui/Tooltip.tsx +16 -1
  867. package/src/lib/util/MdxComponents.tsx +40 -16
  868. package/src/lib/util/humanFileSize.test.ts +24 -0
  869. package/src/lib/util/humanFileSize.ts +16 -0
  870. package/src/lib/util/invariant.ts +7 -5
  871. package/src/lib/util/os.ts +18 -0
  872. package/src/lib/util/useCopyToClipboard.ts +17 -0
  873. package/src/lib/util/useExposedProps.tsx +12 -1
  874. package/src/lib/util/useScrollToAnchor.ts +3 -3
  875. package/src/shiki/langs/abap.js +1 -0
  876. package/src/shiki/langs/actionscript-3.js +1 -0
  877. package/src/shiki/langs/ada.js +1 -0
  878. package/src/shiki/langs/angular-expression.js +1 -0
  879. package/src/shiki/langs/angular-html.js +1 -0
  880. package/src/shiki/langs/angular-inline-style.js +1 -0
  881. package/src/shiki/langs/angular-inline-template.js +1 -0
  882. package/src/shiki/langs/angular-let-declaration.js +1 -0
  883. package/src/shiki/langs/angular-template-blocks.js +1 -0
  884. package/src/shiki/langs/angular-template.js +1 -0
  885. package/src/shiki/langs/angular-ts.js +1 -0
  886. package/src/shiki/langs/apache.js +1 -0
  887. package/src/shiki/langs/apex.js +1 -0
  888. package/src/shiki/langs/apl.js +1 -0
  889. package/src/shiki/langs/applescript.js +1 -0
  890. package/src/shiki/langs/ara.js +1 -0
  891. package/src/shiki/langs/asciidoc.js +1 -0
  892. package/src/shiki/langs/asm.js +1 -0
  893. package/src/shiki/langs/astro.js +1 -0
  894. package/src/shiki/langs/awk.js +1 -0
  895. package/src/shiki/langs/ballerina.js +1 -0
  896. package/src/shiki/langs/bat.js +1 -0
  897. package/src/shiki/langs/beancount.js +1 -0
  898. package/src/shiki/langs/berry.js +1 -0
  899. package/src/shiki/langs/bibtex.js +1 -0
  900. package/src/shiki/langs/bicep.js +1 -0
  901. package/src/shiki/langs/blade.js +1 -0
  902. package/src/shiki/langs/bsl.js +1 -0
  903. package/src/shiki/langs/c.js +1 -0
  904. package/src/shiki/langs/cadence.js +1 -0
  905. package/src/shiki/langs/cairo.js +1 -0
  906. package/src/shiki/langs/clarity.js +1 -0
  907. package/src/shiki/langs/clojure.js +1 -0
  908. package/src/shiki/langs/cmake.js +1 -0
  909. package/src/shiki/langs/cobol.js +1 -0
  910. package/src/shiki/langs/codeowners.js +1 -0
  911. package/src/shiki/langs/codeql.js +1 -0
  912. package/src/shiki/langs/coffee.js +1 -0
  913. package/src/shiki/langs/common-lisp.js +1 -0
  914. package/src/shiki/langs/coq.js +1 -0
  915. package/src/shiki/langs/cpp-macro.js +1 -0
  916. package/src/shiki/langs/cpp.js +1 -0
  917. package/src/shiki/langs/crystal.js +1 -0
  918. package/src/shiki/langs/csharp.js +1 -0
  919. package/src/shiki/langs/css.js +1 -0
  920. package/src/shiki/langs/csv.js +1 -0
  921. package/src/shiki/langs/cue.js +1 -0
  922. package/src/shiki/langs/cypher.js +1 -0
  923. package/src/shiki/langs/d.js +1 -0
  924. package/src/shiki/langs/dart.js +1 -0
  925. package/src/shiki/langs/dax.js +1 -0
  926. package/src/shiki/langs/desktop.js +1 -0
  927. package/src/shiki/langs/diff.js +1 -0
  928. package/src/shiki/langs/docker.js +1 -0
  929. package/src/shiki/langs/dotenv.js +1 -0
  930. package/src/shiki/langs/dream-maker.js +1 -0
  931. package/src/shiki/langs/edge.js +1 -0
  932. package/src/shiki/langs/elixir.js +1 -0
  933. package/src/shiki/langs/elm.js +1 -0
  934. package/src/shiki/langs/emacs-lisp.js +1 -0
  935. package/src/shiki/langs/erb.js +1 -0
  936. package/src/shiki/langs/erlang.js +1 -0
  937. package/src/shiki/langs/es-tag-css.js +1 -0
  938. package/src/shiki/langs/es-tag-glsl.js +1 -0
  939. package/src/shiki/langs/es-tag-html.js +1 -0
  940. package/src/shiki/langs/es-tag-sql.js +1 -0
  941. package/src/shiki/langs/es-tag-xml.js +1 -0
  942. package/src/shiki/langs/fennel.js +1 -0
  943. package/src/shiki/langs/fish.js +1 -0
  944. package/src/shiki/langs/fluent.js +1 -0
  945. package/src/shiki/langs/fortran-fixed-form.js +1 -0
  946. package/src/shiki/langs/fortran-free-form.js +1 -0
  947. package/src/shiki/langs/fsharp.js +1 -0
  948. package/src/shiki/langs/gdresource.js +1 -0
  949. package/src/shiki/langs/gdscript.js +1 -0
  950. package/src/shiki/langs/gdshader.js +1 -0
  951. package/src/shiki/langs/genie.js +1 -0
  952. package/src/shiki/langs/gherkin.js +1 -0
  953. package/src/shiki/langs/git-commit.js +1 -0
  954. package/src/shiki/langs/git-rebase.js +1 -0
  955. package/src/shiki/langs/gleam.js +1 -0
  956. package/src/shiki/langs/glimmer-js.js +1 -0
  957. package/src/shiki/langs/glimmer-ts.js +1 -0
  958. package/src/shiki/langs/glsl.js +1 -0
  959. package/src/shiki/langs/gnuplot.js +1 -0
  960. package/src/shiki/langs/go.js +1 -0
  961. package/src/shiki/langs/graphql.js +1 -0
  962. package/src/shiki/langs/groovy.js +1 -0
  963. package/src/shiki/langs/hack.js +1 -0
  964. package/src/shiki/langs/haml.js +1 -0
  965. package/src/shiki/langs/handlebars.js +1 -0
  966. package/src/shiki/langs/haskell.js +1 -0
  967. package/src/shiki/langs/haxe.js +1 -0
  968. package/src/shiki/langs/hcl.js +1 -0
  969. package/src/shiki/langs/hjson.js +1 -0
  970. package/src/shiki/langs/hlsl.js +1 -0
  971. package/src/shiki/langs/html-derivative.js +1 -0
  972. package/src/shiki/langs/html.js +1 -0
  973. package/src/shiki/langs/http.js +1 -0
  974. package/src/shiki/langs/hxml.js +1 -0
  975. package/src/shiki/langs/hy.js +1 -0
  976. package/src/shiki/langs/imba.js +1 -0
  977. package/src/shiki/langs/ini.js +1 -0
  978. package/src/shiki/langs/java.js +1 -0
  979. package/src/shiki/langs/javascript.js +1 -0
  980. package/src/shiki/langs/jinja-html.js +1 -0
  981. package/src/shiki/langs/jinja.js +1 -0
  982. package/src/shiki/langs/jison.js +1 -0
  983. package/src/shiki/langs/json.js +1 -0
  984. package/src/shiki/langs/json5.js +1 -0
  985. package/src/shiki/langs/jsonc.js +1 -0
  986. package/src/shiki/langs/jsonl.js +1 -0
  987. package/src/shiki/langs/jsonnet.js +1 -0
  988. package/src/shiki/langs/jssm.js +1 -0
  989. package/src/shiki/langs/jsx.js +1 -0
  990. package/src/shiki/langs/julia.js +1 -0
  991. package/src/shiki/langs/kotlin.js +1 -0
  992. package/src/shiki/langs/kusto.js +1 -0
  993. package/src/shiki/langs/latex.js +1 -0
  994. package/src/shiki/langs/lean.js +1 -0
  995. package/src/shiki/langs/less.js +1 -0
  996. package/src/shiki/langs/liquid.js +1 -0
  997. package/src/shiki/langs/llvm.js +1 -0
  998. package/src/shiki/langs/log.js +1 -0
  999. package/src/shiki/langs/logo.js +1 -0
  1000. package/src/shiki/langs/lua.js +1 -0
  1001. package/src/shiki/langs/luau.js +1 -0
  1002. package/src/shiki/langs/make.js +1 -0
  1003. package/src/shiki/langs/markdown-vue.js +1 -0
  1004. package/src/shiki/langs/markdown.js +1 -0
  1005. package/src/shiki/langs/marko.js +1 -0
  1006. package/src/shiki/langs/matlab.js +1 -0
  1007. package/src/shiki/langs/mdc.js +1 -0
  1008. package/src/shiki/langs/mdx.js +1 -0
  1009. package/src/shiki/langs/mermaid.js +1 -0
  1010. package/src/shiki/langs/mipsasm.js +1 -0
  1011. package/src/shiki/langs/mojo.js +1 -0
  1012. package/src/shiki/langs/move.js +1 -0
  1013. package/src/shiki/langs/narrat.js +1 -0
  1014. package/src/shiki/langs/nextflow.js +1 -0
  1015. package/src/shiki/langs/nginx.js +1 -0
  1016. package/src/shiki/langs/nim.js +1 -0
  1017. package/src/shiki/langs/nix.js +1 -0
  1018. package/src/shiki/langs/nushell.js +1 -0
  1019. package/src/shiki/langs/objective-c.js +1 -0
  1020. package/src/shiki/langs/objective-cpp.js +1 -0
  1021. package/src/shiki/langs/ocaml.js +1 -0
  1022. package/src/shiki/langs/pascal.js +1 -0
  1023. package/src/shiki/langs/perl.js +1 -0
  1024. package/src/shiki/langs/php.js +1 -0
  1025. package/src/shiki/langs/plsql.js +1 -0
  1026. package/src/shiki/langs/po.js +1 -0
  1027. package/src/shiki/langs/polar.js +1 -0
  1028. package/src/shiki/langs/postcss.js +1 -0
  1029. package/src/shiki/langs/powerquery.js +1 -0
  1030. package/src/shiki/langs/powershell.js +1 -0
  1031. package/src/shiki/langs/prisma.js +1 -0
  1032. package/src/shiki/langs/prolog.js +1 -0
  1033. package/src/shiki/langs/proto.js +1 -0
  1034. package/src/shiki/langs/pug.js +1 -0
  1035. package/src/shiki/langs/puppet.js +1 -0
  1036. package/src/shiki/langs/purescript.js +1 -0
  1037. package/src/shiki/langs/python.js +1 -0
  1038. package/src/shiki/langs/qml.js +1 -0
  1039. package/src/shiki/langs/qmldir.js +1 -0
  1040. package/src/shiki/langs/qss.js +1 -0
  1041. package/src/shiki/langs/r.js +1 -0
  1042. package/src/shiki/langs/racket.js +1 -0
  1043. package/src/shiki/langs/raku.js +1 -0
  1044. package/src/shiki/langs/razor.js +1 -0
  1045. package/src/shiki/langs/reg.js +1 -0
  1046. package/src/shiki/langs/regexp.js +1 -0
  1047. package/src/shiki/langs/rel.js +1 -0
  1048. package/src/shiki/langs/riscv.js +1 -0
  1049. package/src/shiki/langs/rst.js +1 -0
  1050. package/src/shiki/langs/ruby.js +1 -0
  1051. package/src/shiki/langs/rust.js +1 -0
  1052. package/src/shiki/langs/sas.js +1 -0
  1053. package/src/shiki/langs/sass.js +1 -0
  1054. package/src/shiki/langs/scala.js +1 -0
  1055. package/src/shiki/langs/scheme.js +1 -0
  1056. package/src/shiki/langs/scss.js +1 -0
  1057. package/src/shiki/langs/sdbl.js +1 -0
  1058. package/src/shiki/langs/shaderlab.js +1 -0
  1059. package/src/shiki/langs/shellscript.js +1 -0
  1060. package/src/shiki/langs/shellsession.js +1 -0
  1061. package/src/shiki/langs/smalltalk.js +1 -0
  1062. package/src/shiki/langs/solidity.js +1 -0
  1063. package/src/shiki/langs/soy.js +1 -0
  1064. package/src/shiki/langs/sparql.js +1 -0
  1065. package/src/shiki/langs/splunk.js +1 -0
  1066. package/src/shiki/langs/sql.js +1 -0
  1067. package/src/shiki/langs/ssh-config.js +1 -0
  1068. package/src/shiki/langs/stata.js +1 -0
  1069. package/src/shiki/langs/stylus.js +1 -0
  1070. package/src/shiki/langs/svelte.js +1 -0
  1071. package/src/shiki/langs/swift.js +1 -0
  1072. package/src/shiki/langs/system-verilog.js +1 -0
  1073. package/src/shiki/langs/systemd.js +1 -0
  1074. package/src/shiki/langs/talonscript.js +1 -0
  1075. package/src/shiki/langs/tasl.js +1 -0
  1076. package/src/shiki/langs/tcl.js +1 -0
  1077. package/src/shiki/langs/templ.js +1 -0
  1078. package/src/shiki/langs/terraform.js +1 -0
  1079. package/src/shiki/langs/tex.js +1 -0
  1080. package/src/shiki/langs/toml.js +1 -0
  1081. package/src/shiki/langs/ts-tags.js +1 -0
  1082. package/src/shiki/langs/tsv.js +1 -0
  1083. package/src/shiki/langs/tsx.js +1 -0
  1084. package/src/shiki/langs/turtle.js +1 -0
  1085. package/src/shiki/langs/twig.js +1 -0
  1086. package/src/shiki/langs/typescript.js +1 -0
  1087. package/src/shiki/langs/typespec.js +1 -0
  1088. package/src/shiki/langs/typst.js +1 -0
  1089. package/src/shiki/langs/v.js +1 -0
  1090. package/src/shiki/langs/vala.js +1 -0
  1091. package/src/shiki/langs/vb.js +1 -0
  1092. package/src/shiki/langs/verilog.js +1 -0
  1093. package/src/shiki/langs/vhdl.js +1 -0
  1094. package/src/shiki/langs/viml.js +1 -0
  1095. package/src/shiki/langs/vue-directives.js +1 -0
  1096. package/src/shiki/langs/vue-html.js +1 -0
  1097. package/src/shiki/langs/vue-interpolations.js +1 -0
  1098. package/src/shiki/langs/vue-sfc-style-variable-injection.js +1 -0
  1099. package/src/shiki/langs/vue.js +1 -0
  1100. package/src/shiki/langs/vyper.js +1 -0
  1101. package/src/shiki/langs/wasm.js +1 -0
  1102. package/src/shiki/langs/wenyan.js +1 -0
  1103. package/src/shiki/langs/wgsl.js +1 -0
  1104. package/src/shiki/langs/wikitext.js +1 -0
  1105. package/src/shiki/langs/wit.js +1 -0
  1106. package/src/shiki/langs/wolfram.js +1 -0
  1107. package/src/shiki/langs/xml.js +1 -0
  1108. package/src/shiki/langs/xsl.js +1 -0
  1109. package/src/shiki/langs/yaml.js +1 -0
  1110. package/src/shiki/langs/zenscript.js +1 -0
  1111. package/src/shiki/langs/zig.js +1 -0
  1112. package/src/shiki/themes/andromeeda.js +1 -0
  1113. package/src/shiki/themes/aurora-x.js +1 -0
  1114. package/src/shiki/themes/ayu-dark.js +1 -0
  1115. package/src/shiki/themes/catppuccin-frappe.js +1 -0
  1116. package/src/shiki/themes/catppuccin-latte.js +1 -0
  1117. package/src/shiki/themes/catppuccin-macchiato.js +1 -0
  1118. package/src/shiki/themes/catppuccin-mocha.js +1 -0
  1119. package/src/shiki/themes/dark-plus.js +1 -0
  1120. package/src/shiki/themes/dracula-soft.js +1 -0
  1121. package/src/shiki/themes/dracula.js +1 -0
  1122. package/src/shiki/themes/everforest-dark.js +1 -0
  1123. package/src/shiki/themes/everforest-light.js +1 -0
  1124. package/src/shiki/themes/github-dark-default.js +1 -0
  1125. package/src/shiki/themes/github-dark-dimmed.js +1 -0
  1126. package/src/shiki/themes/github-dark-high-contrast.js +1 -0
  1127. package/src/shiki/themes/github-dark.js +1 -0
  1128. package/src/shiki/themes/github-light-default.js +1 -0
  1129. package/src/shiki/themes/github-light-high-contrast.js +1 -0
  1130. package/src/shiki/themes/github-light.js +1 -0
  1131. package/src/shiki/themes/gruvbox-dark-hard.js +1 -0
  1132. package/src/shiki/themes/gruvbox-dark-medium.js +1 -0
  1133. package/src/shiki/themes/gruvbox-dark-soft.js +1 -0
  1134. package/src/shiki/themes/gruvbox-light-hard.js +1 -0
  1135. package/src/shiki/themes/gruvbox-light-medium.js +1 -0
  1136. package/src/shiki/themes/gruvbox-light-soft.js +1 -0
  1137. package/src/shiki/themes/houston.js +1 -0
  1138. package/src/shiki/themes/kanagawa-dragon.js +1 -0
  1139. package/src/shiki/themes/kanagawa-lotus.js +1 -0
  1140. package/src/shiki/themes/kanagawa-wave.js +1 -0
  1141. package/src/shiki/themes/laserwave.js +1 -0
  1142. package/src/shiki/themes/light-plus.js +1 -0
  1143. package/src/shiki/themes/material-theme-darker.js +1 -0
  1144. package/src/shiki/themes/material-theme-lighter.js +1 -0
  1145. package/src/shiki/themes/material-theme-ocean.js +1 -0
  1146. package/src/shiki/themes/material-theme-palenight.js +1 -0
  1147. package/src/shiki/themes/material-theme.js +1 -0
  1148. package/src/shiki/themes/min-dark.js +1 -0
  1149. package/src/shiki/themes/min-light.js +1 -0
  1150. package/src/shiki/themes/monokai.js +1 -0
  1151. package/src/shiki/themes/night-owl.js +1 -0
  1152. package/src/shiki/themes/nord.js +1 -0
  1153. package/src/shiki/themes/one-dark-pro.js +1 -0
  1154. package/src/shiki/themes/one-light.js +1 -0
  1155. package/src/shiki/themes/plastic.js +1 -0
  1156. package/src/shiki/themes/poimandres.js +1 -0
  1157. package/src/shiki/themes/red.js +1 -0
  1158. package/src/shiki/themes/rose-pine-dawn.js +1 -0
  1159. package/src/shiki/themes/rose-pine-moon.js +1 -0
  1160. package/src/shiki/themes/rose-pine.js +1 -0
  1161. package/src/shiki/themes/slack-dark.js +1 -0
  1162. package/src/shiki/themes/slack-ochin.js +1 -0
  1163. package/src/shiki/themes/snazzy-light.js +1 -0
  1164. package/src/shiki/themes/solarized-dark.js +1 -0
  1165. package/src/shiki/themes/solarized-light.js +1 -0
  1166. package/src/shiki/themes/synthwave-84.js +1 -0
  1167. package/src/shiki/themes/tokyo-night.js +1 -0
  1168. package/src/shiki/themes/vesper.js +1 -0
  1169. package/src/shiki/themes/vitesse-black.js +1 -0
  1170. package/src/shiki/themes/vitesse-dark.js +1 -0
  1171. package/src/shiki/themes/vitesse-light.js +1 -0
  1172. package/dist/app/tailwind.d.ts +0 -4
  1173. package/dist/app/tailwind.js +0 -97
  1174. package/dist/app/tailwind.js.map +0 -1
  1175. package/dist/config/common.d.ts +0 -10
  1176. package/dist/config/common.js +0 -2
  1177. package/dist/config/common.js.map +0 -1
  1178. package/dist/config/validators/InputSidebarSchema.d.ts +0 -217
  1179. package/dist/config/validators/InputSidebarSchema.js +0 -62
  1180. package/dist/config/validators/InputSidebarSchema.js.map +0 -1
  1181. package/dist/config/validators/SidebarSchema.d.ts +0 -46
  1182. package/dist/config/validators/SidebarSchema.js +0 -118
  1183. package/dist/config/validators/SidebarSchema.js.map +0 -1
  1184. package/dist/config/validators/common.d.ts +0 -7869
  1185. package/dist/config/validators/common.js +0 -404
  1186. package/dist/config/validators/common.js.map +0 -1
  1187. package/dist/lib/components/SlotletProvider.d.ts +0 -17
  1188. package/dist/lib/components/SlotletProvider.js +0 -18
  1189. package/dist/lib/components/SlotletProvider.js.map +0 -1
  1190. package/dist/lib/components/navigation/Sidebar.d.ts +0 -5
  1191. package/dist/lib/components/navigation/Sidebar.js +0 -10
  1192. package/dist/lib/components/navigation/Sidebar.js.map +0 -1
  1193. package/dist/lib/components/navigation/SidebarBadge.js.map +0 -1
  1194. package/dist/lib/components/navigation/SidebarCategory.d.ts +0 -5
  1195. package/dist/lib/components/navigation/SidebarCategory.js.map +0 -1
  1196. package/dist/lib/components/navigation/SidebarItem.d.ts +0 -11
  1197. package/dist/lib/components/navigation/SidebarItem.js +0 -49
  1198. package/dist/lib/components/navigation/SidebarItem.js.map +0 -1
  1199. package/dist/lib/components/navigation/SidebarWrapper.js.map +0 -1
  1200. package/dist/lib/plugins/custom-pages/CustomPage.d.ts +0 -2
  1201. package/dist/lib/plugins/custom-pages/CustomPage.js +0 -11
  1202. package/dist/lib/plugins/custom-pages/CustomPage.js.map +0 -1
  1203. package/dist/lib/plugins/markdown/resolver.d.ts +0 -32
  1204. package/dist/lib/plugins/markdown/resolver.js +0 -46
  1205. package/dist/lib/plugins/markdown/resolver.js.map +0 -1
  1206. package/dist/lib/plugins/openapi/playground/SubmitButton.d.ts +0 -7
  1207. package/dist/lib/plugins/openapi/playground/SubmitButton.js +0 -22
  1208. package/dist/lib/plugins/openapi/playground/SubmitButton.js.map +0 -1
  1209. package/dist/lib/plugins/openapi/playground/UrlDisplay.d.ts +0 -4
  1210. package/dist/lib/plugins/openapi/playground/UrlDisplay.js +0 -22
  1211. package/dist/lib/plugins/openapi/playground/UrlDisplay.js.map +0 -1
  1212. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.d.ts +0 -7
  1213. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js +0 -11
  1214. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js.map +0 -1
  1215. package/dist/lib/plugins/openapi/util/createSidebarCategory.d.ts +0 -9
  1216. package/dist/lib/plugins/openapi/util/createSidebarCategory.js.map +0 -1
  1217. package/dist/vite/plugin-docs.test.js +0 -22
  1218. package/dist/vite/plugin-docs.test.js.map +0 -1
  1219. package/dist/vite/plugin-sidebar.js.map +0 -1
  1220. package/dist/vite/plugin-theme-css.d.ts +0 -6
  1221. package/dist/vite/plugin-theme-css.js +0 -117
  1222. package/dist/vite/plugin-theme-css.js.map +0 -1
  1223. package/lib/AuthenticationPlugin-Bqlq5kRN.js +0 -99
  1224. package/lib/AuthenticationPlugin-Bqlq5kRN.js.map +0 -1
  1225. package/lib/Button-BBNrKpQd.js +0 -49
  1226. package/lib/Button-BBNrKpQd.js.map +0 -1
  1227. package/lib/Callout-D3Ja4OPX.js +0 -230
  1228. package/lib/Callout-D3Ja4OPX.js.map +0 -1
  1229. package/lib/CategoryHeading-D06WK_Wo.js +0 -10
  1230. package/lib/CategoryHeading-D06WK_Wo.js.map +0 -1
  1231. package/lib/Dialog-ByYz4ABw.js.map +0 -1
  1232. package/lib/Markdown-DvdVn1O7.js.map +0 -1
  1233. package/lib/MdxPage-_8H25sEU.js +0 -85
  1234. package/lib/MdxPage-_8H25sEU.js.map +0 -1
  1235. package/lib/OasProvider-hBA9fTDC.js +0 -33
  1236. package/lib/OasProvider-hBA9fTDC.js.map +0 -1
  1237. package/lib/OperationList-0n_9nYIg.js +0 -5147
  1238. package/lib/OperationList-0n_9nYIg.js.map +0 -1
  1239. package/lib/Pagination-B4iXKAzG.js +0 -48
  1240. package/lib/Pagination-B4iXKAzG.js.map +0 -1
  1241. package/lib/RouteGuard-D2gX29iI.js.map +0 -1
  1242. package/lib/SchemaList-DGOmVkot.js.map +0 -1
  1243. package/lib/SchemaView-DBar2RLi.js +0 -365
  1244. package/lib/SchemaView-DBar2RLi.js.map +0 -1
  1245. package/lib/Select-CYaEBIYK.js +0 -223
  1246. package/lib/Select-CYaEBIYK.js.map +0 -1
  1247. package/lib/SlotletProvider-wWbHYqWf.js +0 -340
  1248. package/lib/SlotletProvider-wWbHYqWf.js.map +0 -1
  1249. package/lib/SyntaxHighlight-o7q0acut.js +0 -2890
  1250. package/lib/SyntaxHighlight-o7q0acut.js.map +0 -1
  1251. package/lib/Toc-BnN4zBb3.js.map +0 -1
  1252. package/lib/_commonjsHelpers-B4e78b8K.js +0 -29
  1253. package/lib/_commonjsHelpers-B4e78b8K.js.map +0 -1
  1254. package/lib/chunk-BAXFHI7N-BLTsN6tl.js +0 -1846
  1255. package/lib/chunk-BAXFHI7N-BLTsN6tl.js.map +0 -1
  1256. package/lib/circular-WY7p7GWq.js.map +0 -1
  1257. package/lib/cn-qaFjX9_3.js.map +0 -1
  1258. package/lib/createServer-D3RtEIGE.js.map +0 -1
  1259. package/lib/hook-8GM2HXNM.js +0 -1478
  1260. package/lib/hook-8GM2HXNM.js.map +0 -1
  1261. package/lib/index-B1CQk2lf.js +0 -3208
  1262. package/lib/index-B1CQk2lf.js.map +0 -1
  1263. package/lib/index-Bn6Lc9tq.js +0 -9
  1264. package/lib/index-Bn6Lc9tq.js.map +0 -1
  1265. package/lib/index-DcHeSvkE.js.map +0 -1
  1266. package/lib/index-Dh-bWAb8.js +0 -5039
  1267. package/lib/index-Dh-bWAb8.js.map +0 -1
  1268. package/lib/index-DwT-v3zK.js +0 -86
  1269. package/lib/index-DwT-v3zK.js.map +0 -1
  1270. package/lib/index.esm-D2ZUREQN.js +0 -1216
  1271. package/lib/index.esm-D2ZUREQN.js.map +0 -1
  1272. package/lib/invariant-Caa8-XvF.js +0 -26
  1273. package/lib/invariant-Caa8-XvF.js.map +0 -1
  1274. package/lib/mutation-Bq5bn7Hf.js +0 -211
  1275. package/lib/mutation-Bq5bn7Hf.js.map +0 -1
  1276. package/lib/objectEntries-yMIkr2mI.js +0 -5
  1277. package/lib/objectEntries-yMIkr2mI.js.map +0 -1
  1278. package/lib/prism-bash.min-HHIMdNJ_.js +0 -7
  1279. package/lib/prism-bash.min-HHIMdNJ_.js.map +0 -1
  1280. package/lib/prism-csharp.min-C43x1RY2.js +0 -63
  1281. package/lib/prism-csharp.min-C43x1RY2.js.map +0 -1
  1282. package/lib/prism-java.min-CQzr40NQ.js +0 -35
  1283. package/lib/prism-java.min-CQzr40NQ.js.map +0 -1
  1284. package/lib/prism-javascript.min-CEqHqgbm.js +0 -9
  1285. package/lib/prism-javascript.min-CEqHqgbm.js.map +0 -1
  1286. package/lib/prism-json.min-B1GJqK1k.js +0 -2
  1287. package/lib/prism-json.min-B1GJqK1k.js.map +0 -1
  1288. package/lib/prism-jsstacktrace.min-BfobCF2F.js +0 -2
  1289. package/lib/prism-jsstacktrace.min-BfobCF2F.js.map +0 -1
  1290. package/lib/prism-markdown.min-C0Qn0m-5.js +0 -61
  1291. package/lib/prism-markdown.min-C0Qn0m-5.js.map +0 -1
  1292. package/lib/prism-markup-BNGj0Tvm.js +0 -174
  1293. package/lib/prism-markup-BNGj0Tvm.js.map +0 -1
  1294. package/lib/prism-objectivec.min-BXSWqpJJ.js +0 -2
  1295. package/lib/prism-objectivec.min-BXSWqpJJ.js.map +0 -1
  1296. package/lib/prism-ruby.min-L9OdQ6tU.js +0 -38
  1297. package/lib/prism-ruby.min-L9OdQ6tU.js.map +0 -1
  1298. package/lib/prism-typescript.min-qTySPvCh.js +0 -34
  1299. package/lib/prism-typescript.min-qTySPvCh.js.map +0 -1
  1300. package/lib/useExposedProps-DmTJxEXG.js +0 -9
  1301. package/lib/useExposedProps-DmTJxEXG.js.map +0 -1
  1302. package/lib/useLatest-hmRS46UF.js +0 -11
  1303. package/lib/useLatest-hmRS46UF.js.map +0 -1
  1304. package/src/app/tailwind.ts +0 -103
  1305. package/src/lib/components/SlotletProvider.tsx +0 -55
  1306. package/src/lib/components/navigation/Sidebar.tsx +0 -48
  1307. package/src/lib/components/navigation/SidebarItem.tsx +0 -117
  1308. package/src/lib/plugins/custom-pages/CustomPage.tsx +0 -18
  1309. package/src/lib/plugins/markdown/resolver.ts +0 -57
  1310. package/src/lib/plugins/openapi/playground/SubmitButton.tsx +0 -75
  1311. package/src/lib/plugins/openapi/playground/UrlDisplay.tsx +0 -32
  1312. package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +0 -73
  1313. /package/dist/{vite/plugin-docs.test.d.ts → config/validators/InputNavigationSchema.test-d.d.ts} +0 -0
@@ -1,20 +1,17 @@
1
- var xe = Object.defineProperty;
2
- var Ce = (t, e, n) => e in t ? xe(t, e, { enumerable: !0, configurable: !0, writable: !0, value: n }) : t[e] = n;
3
- var b = (t, e, n) => Ce(t, typeof e != "symbol" ? e + "" : e, n);
4
- import { j as q } from "./jsx-runtime-C5mzlN2N.js";
5
- import { g as Ie } from "./_commonjsHelpers-B4e78b8K.js";
6
- import { C as je } from "./ClientOnly-E7hGysn1.js";
7
- import { d as Oe, f as we, u as x } from "./hook-8GM2HXNM.js";
8
- import { A as ze } from "./AuthenticationPlugin-Bqlq5kRN.js";
9
- import { N as Je } from "./chunk-BAXFHI7N-BLTsN6tl.js";
10
- import { a as De } from "./index-Dh-bWAb8.js";
11
- import { Z as Ne } from "./invariant-Caa8-XvF.js";
12
- var D = { exports: {} }, We = D.exports, ie;
13
- function Ke() {
14
- return ie || (ie = 1, function(t) {
1
+ import { j as D } from "./jsx-runtime-C5mzlN2N.js";
2
+ import { g as Le } from "./invariant-Bm-FVUQE.js";
3
+ import { E as Ue } from "./index-B2tq8ySG.js";
4
+ import { C as xe } from "./ClientOnly-E7hGysn1.js";
5
+ import { j as Ce } from "./ZudokuContext-Coxa0DfE.js";
6
+ import { C as Ie, O as re, A as R } from "./errors-DekB3aZw.js";
7
+ import { C as je, O as Oe } from "./OAuthErrorPage-CNbVseNs.js";
8
+ import { u as S } from "./hook-DEPqwjke.js";
9
+ var J = { exports: {} }, De = J.exports, oe;
10
+ function Je() {
11
+ return oe || (oe = 1, function(t) {
15
12
  (function(e, n) {
16
13
  t.exports ? t.exports = n() : e.log = n();
17
- })(We, function() {
14
+ })(De, function() {
18
15
  var e = function() {
19
16
  }, n = "undefined", o = typeof window !== n && typeof window.navigator !== n && /Trident\/|MSIE /.test(window.navigator.userAgent), s = [
20
17
  "trace",
@@ -23,28 +20,28 @@ function Ke() {
23
20
  "warn",
24
21
  "error"
25
22
  ], r = {}, i = null;
26
- function c(l, m) {
27
- var u = l[m];
28
- if (typeof u.bind == "function")
29
- return u.bind(l);
23
+ function u(l, m) {
24
+ var c = l[m];
25
+ if (typeof c.bind == "function")
26
+ return c.bind(l);
30
27
  try {
31
- return Function.prototype.bind.call(u, l);
28
+ return Function.prototype.bind.call(c, l);
32
29
  } catch {
33
30
  return function() {
34
- return Function.prototype.apply.apply(u, [l, arguments]);
31
+ return Function.prototype.apply.apply(c, [l, arguments]);
35
32
  };
36
33
  }
37
34
  }
38
- function f() {
35
+ function d() {
39
36
  console.log && (console.log.apply ? console.log.apply(console, arguments) : Function.prototype.apply.apply(console.log, [console, arguments])), console.trace && console.trace();
40
37
  }
41
- function _(l) {
42
- return l === "debug" && (l = "log"), typeof console === n ? !1 : l === "trace" && o ? f : console[l] !== void 0 ? c(console, l) : console.log !== void 0 ? c(console, "log") : e;
38
+ function y(l) {
39
+ return l === "debug" && (l = "log"), typeof console === n ? !1 : l === "trace" && o ? d : console[l] !== void 0 ? u(console, l) : console.log !== void 0 ? u(console, "log") : e;
43
40
  }
44
41
  function p() {
45
42
  for (var l = this.getLevel(), m = 0; m < s.length; m++) {
46
- var u = s[m];
47
- this[u] = m < l ? e : this.methodFactory(u, l, this.name);
43
+ var c = s[m];
44
+ this[c] = m < l ? e : this.methodFactory(c, l, this.name);
48
45
  }
49
46
  if (this.log = this.debug, typeof console === n && l < this.levels.SILENT)
50
47
  return "No console available for logging";
@@ -54,99 +51,99 @@ function Ke() {
54
51
  typeof console !== n && (p.call(this), this[l].apply(this, arguments));
55
52
  };
56
53
  }
57
- function y(l, m, u) {
58
- return _(l) || k.apply(this, arguments);
54
+ function b(l, m, c) {
55
+ return y(l) || k.apply(this, arguments);
59
56
  }
60
57
  function h(l, m) {
61
- var u = this, O, $, U, v = "loglevel";
62
- typeof l == "string" ? v += ":" + l : typeof l == "symbol" && (v = void 0);
63
- function Pe(d) {
64
- var g = (s[d] || "silent").toUpperCase();
65
- if (!(typeof window === n || !v)) {
58
+ var c = this, j, H, L, _ = "loglevel";
59
+ typeof l == "string" ? _ += ":" + l : typeof l == "symbol" && (_ = void 0);
60
+ function Ee(f) {
61
+ var g = (s[f] || "silent").toUpperCase();
62
+ if (!(typeof window === n || !_)) {
66
63
  try {
67
- window.localStorage[v] = g;
64
+ window.localStorage[_] = g;
68
65
  return;
69
66
  } catch {
70
67
  }
71
68
  try {
72
- window.document.cookie = encodeURIComponent(v) + "=" + g + ";";
69
+ window.document.cookie = encodeURIComponent(_) + "=" + g + ";";
73
70
  } catch {
74
71
  }
75
72
  }
76
73
  }
77
- function ne() {
78
- var d;
79
- if (!(typeof window === n || !v)) {
74
+ function ee() {
75
+ var f;
76
+ if (!(typeof window === n || !_)) {
80
77
  try {
81
- d = window.localStorage[v];
78
+ f = window.localStorage[_];
82
79
  } catch {
83
80
  }
84
- if (typeof d === n)
81
+ if (typeof f === n)
85
82
  try {
86
- var g = window.document.cookie, z = encodeURIComponent(v), oe = g.indexOf(z + "=");
87
- oe !== -1 && (d = /^([^;]+)/.exec(
88
- g.slice(oe + z.length + 1)
83
+ var g = window.document.cookie, O = encodeURIComponent(_), ne = g.indexOf(O + "=");
84
+ ne !== -1 && (f = /^([^;]+)/.exec(
85
+ g.slice(ne + O.length + 1)
89
86
  )[1]);
90
87
  } catch {
91
88
  }
92
- return u.levels[d] === void 0 && (d = void 0), d;
89
+ return c.levels[f] === void 0 && (f = void 0), f;
93
90
  }
94
91
  }
95
- function Ue() {
96
- if (!(typeof window === n || !v)) {
92
+ function Re() {
93
+ if (!(typeof window === n || !_)) {
97
94
  try {
98
- window.localStorage.removeItem(v);
95
+ window.localStorage.removeItem(_);
99
96
  } catch {
100
97
  }
101
98
  try {
102
- window.document.cookie = encodeURIComponent(v) + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
99
+ window.document.cookie = encodeURIComponent(_) + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
103
100
  } catch {
104
101
  }
105
102
  }
106
103
  }
107
- function L(d) {
108
- var g = d;
109
- if (typeof g == "string" && u.levels[g.toUpperCase()] !== void 0 && (g = u.levels[g.toUpperCase()]), typeof g == "number" && g >= 0 && g <= u.levels.SILENT)
104
+ function U(f) {
105
+ var g = f;
106
+ if (typeof g == "string" && c.levels[g.toUpperCase()] !== void 0 && (g = c.levels[g.toUpperCase()]), typeof g == "number" && g >= 0 && g <= c.levels.SILENT)
110
107
  return g;
111
- throw new TypeError("log.setLevel() called with invalid level: " + d);
108
+ throw new TypeError("log.setLevel() called with invalid level: " + f);
112
109
  }
113
- u.name = l, u.levels = {
110
+ c.name = l, c.levels = {
114
111
  TRACE: 0,
115
112
  DEBUG: 1,
116
113
  INFO: 2,
117
114
  WARN: 3,
118
115
  ERROR: 4,
119
116
  SILENT: 5
120
- }, u.methodFactory = m || y, u.getLevel = function() {
121
- return U ?? $ ?? O;
122
- }, u.setLevel = function(d, g) {
123
- return U = L(d), g !== !1 && Pe(U), p.call(u);
124
- }, u.setDefaultLevel = function(d) {
125
- $ = L(d), ne() || u.setLevel(d, !1);
126
- }, u.resetLevel = function() {
127
- U = null, Ue(), p.call(u);
128
- }, u.enableAll = function(d) {
129
- u.setLevel(u.levels.TRACE, d);
130
- }, u.disableAll = function(d) {
131
- u.setLevel(u.levels.SILENT, d);
132
- }, u.rebuild = function() {
133
- if (i !== u && (O = L(i.getLevel())), p.call(u), i === u)
134
- for (var d in r)
135
- r[d].rebuild();
136
- }, O = L(
117
+ }, c.methodFactory = m || b, c.getLevel = function() {
118
+ return L ?? H ?? j;
119
+ }, c.setLevel = function(f, g) {
120
+ return L = U(f), g !== !1 && Ee(L), p.call(c);
121
+ }, c.setDefaultLevel = function(f) {
122
+ H = U(f), ee() || c.setLevel(f, !1);
123
+ }, c.resetLevel = function() {
124
+ L = null, Re(), p.call(c);
125
+ }, c.enableAll = function(f) {
126
+ c.setLevel(c.levels.TRACE, f);
127
+ }, c.disableAll = function(f) {
128
+ c.setLevel(c.levels.SILENT, f);
129
+ }, c.rebuild = function() {
130
+ if (i !== c && (j = U(i.getLevel())), p.call(c), i === c)
131
+ for (var f in r)
132
+ r[f].rebuild();
133
+ }, j = U(
137
134
  i ? i.getLevel() : "WARN"
138
135
  );
139
- var re = ne();
140
- re != null && (U = L(re)), p.call(u);
136
+ var te = ee();
137
+ te != null && (L = U(te)), p.call(c);
141
138
  }
142
139
  i = new h(), i.getLogger = function(m) {
143
140
  if (typeof m != "symbol" && typeof m != "string" || m === "")
144
141
  throw new TypeError("You must supply a name when creating a logger.");
145
- var u = r[m];
146
- return u || (u = r[m] = new h(
142
+ var c = r[m];
143
+ return c || (c = r[m] = new h(
147
144
  m,
148
145
  i.methodFactory
149
- )), u;
146
+ )), c;
150
147
  };
151
148
  var P = typeof window !== n ? window.log : void 0;
152
149
  return i.noConflict = function() {
@@ -155,14 +152,13 @@ function Ke() {
155
152
  return r;
156
153
  }, i.default = i, i;
157
154
  });
158
- }(D)), D.exports;
159
- }
160
- var He = Ke();
161
- const se = /* @__PURE__ */ Ie(He);
162
- let V;
163
- var J, pe;
164
- (typeof navigator > "u" || !((pe = (J = navigator.userAgent) == null ? void 0 : J.startsWith) != null && pe.call(J, "Mozilla/5.0 "))) && (V = "oauth4webapi/v2.17.0");
165
- function Z(t, e) {
155
+ }(J)), J.exports;
156
+ }
157
+ var ze = Je();
158
+ const ie = /* @__PURE__ */ Le(ze);
159
+ let B;
160
+ (typeof navigator > "u" || !navigator.userAgent?.startsWith?.("Mozilla/5.0 ")) && (B = "oauth4webapi/v2.17.0");
161
+ function V(t, e) {
166
162
  if (t == null)
167
163
  return !1;
168
164
  try {
@@ -171,19 +167,19 @@ function Z(t, e) {
171
167
  return !1;
172
168
  }
173
169
  }
174
- const W = Symbol(), $e = Symbol(), Y = Symbol(), Fe = Symbol(), Me = Symbol(), Be = Symbol(), qe = new TextEncoder(), Ve = new TextDecoder();
170
+ const N = Symbol(), Ne = Symbol(), G = Symbol(), We = Symbol(), Ke = Symbol(), He = Symbol(), $e = new TextEncoder(), Fe = new TextDecoder();
175
171
  function E(t) {
176
- return typeof t == "string" ? qe.encode(t) : Ve.decode(t);
172
+ return typeof t == "string" ? $e.encode(t) : Fe.decode(t);
177
173
  }
178
- const ae = 32768;
179
- function Ge(t) {
174
+ const se = 32768;
175
+ function Me(t) {
180
176
  t instanceof ArrayBuffer && (t = new Uint8Array(t));
181
177
  const e = [];
182
- for (let n = 0; n < t.byteLength; n += ae)
183
- e.push(String.fromCharCode.apply(null, t.subarray(n, n + ae)));
178
+ for (let n = 0; n < t.byteLength; n += se)
179
+ e.push(String.fromCharCode.apply(null, t.subarray(n, n + se)));
184
180
  return btoa(e.join("")).replace(/=/g, "").replace(/\+/g, "-").replace(/\//g, "_");
185
181
  }
186
- function Ze(t) {
182
+ function Be(t) {
187
183
  try {
188
184
  const e = atob(t.replace(/-/g, "+").replace(/_/g, "/").replace(/\s/g, "")), n = new Uint8Array(e.length);
189
185
  for (let o = 0; o < e.length; o++)
@@ -194,9 +190,9 @@ function Ze(t) {
194
190
  }
195
191
  }
196
192
  function A(t) {
197
- return typeof t == "string" ? Ze(t) : Ge(t);
193
+ return typeof t == "string" ? Be(t) : Me(t);
198
194
  }
199
- class Ye {
195
+ class qe {
200
196
  constructor(e) {
201
197
  this.cache = /* @__PURE__ */ new Map(), this._cache = /* @__PURE__ */ new Map(), this.maxSize = e;
202
198
  }
@@ -220,60 +216,58 @@ class Ye {
220
216
  this.cache.set(e, n), this.cache.size >= this.maxSize && (this._cache = this.cache, this.cache = /* @__PURE__ */ new Map());
221
217
  }
222
218
  }
223
- class S extends Error {
219
+ class v extends Error {
224
220
  constructor(e) {
225
- var n;
226
- super(e ?? "operation not supported"), this.name = this.constructor.name, (n = Error.captureStackTrace) == null || n.call(Error, this, this.constructor);
221
+ super(e ?? "operation not supported"), this.name = this.constructor.name, Error.captureStackTrace?.(this, this.constructor);
227
222
  }
228
223
  }
229
- class Qe extends Error {
224
+ class Ve extends Error {
230
225
  constructor(e, n) {
231
- var o;
232
- super(e, n), this.name = this.constructor.name, (o = Error.captureStackTrace) == null || o.call(Error, this, this.constructor);
226
+ super(e, n), this.name = this.constructor.name, Error.captureStackTrace?.(this, this.constructor);
233
227
  }
234
228
  }
235
- const a = Qe, me = new Ye(100);
236
- function ge(t) {
229
+ const a = Ve, we = new qe(100);
230
+ function me(t) {
237
231
  return t instanceof CryptoKey;
238
232
  }
239
- function Xe(t) {
240
- return ge(t) && t.type === "private";
233
+ function Ge(t) {
234
+ return me(t) && t.type === "private";
241
235
  }
242
- function et(t) {
243
- return ge(t) && t.type === "public";
236
+ function Ye(t) {
237
+ return me(t) && t.type === "public";
244
238
  }
245
- function Q(t) {
239
+ function Y(t) {
246
240
  try {
247
241
  const e = t.headers.get("dpop-nonce");
248
- e && me.set(new URL(t.url).origin, e);
242
+ e && we.set(new URL(t.url).origin, e);
249
243
  } catch {
250
244
  }
251
245
  return t;
252
246
  }
253
- function C(t) {
247
+ function x(t) {
254
248
  return !(t === null || typeof t != "object" || Array.isArray(t));
255
249
  }
256
- function K(t) {
257
- Z(t, Headers) && (t = Object.fromEntries(t.entries()));
250
+ function W(t) {
251
+ V(t, Headers) && (t = Object.fromEntries(t.entries()));
258
252
  const e = new Headers(t);
259
- if (V && !e.has("user-agent") && e.set("user-agent", V), e.has("authorization"))
253
+ if (B && !e.has("user-agent") && e.set("user-agent", B), e.has("authorization"))
260
254
  throw new TypeError('"options.headers" must not include the "authorization" header name');
261
255
  if (e.has("dpop"))
262
256
  throw new TypeError('"options.headers" must not include the "dpop" header name');
263
257
  return e;
264
258
  }
265
- function tt(t) {
259
+ function Ze(t) {
266
260
  if (typeof t == "function" && (t = t()), !(t instanceof AbortSignal))
267
261
  throw new TypeError('"options.signal" must return or be an instance of AbortSignal');
268
262
  return t;
269
263
  }
270
- async function nt(t, e) {
264
+ async function Qe(t, e) {
271
265
  if (!(t instanceof URL))
272
266
  throw new TypeError('"issuerIdentifier" must be an instance of URL');
273
267
  if (t.protocol !== "https:" && t.protocol !== "http:")
274
268
  throw new TypeError('"issuer.protocol" must be "https:" or "http:"');
275
269
  const n = new URL(t.href);
276
- switch (e == null ? void 0 : e.algorithm) {
270
+ switch (e?.algorithm) {
277
271
  case void 0:
278
272
  case "oidc":
279
273
  n.pathname = `${n.pathname}/.well-known/openid-configuration`.replace("//", "/");
@@ -284,32 +278,32 @@ async function nt(t, e) {
284
278
  default:
285
279
  throw new TypeError('"options.algorithm" must be "oidc" (default), or "oauth2"');
286
280
  }
287
- const o = K(e == null ? void 0 : e.headers);
288
- return o.set("accept", "application/json"), ((e == null ? void 0 : e[Y]) || fetch)(n.href, {
281
+ const o = W(e?.headers);
282
+ return o.set("accept", "application/json"), (e?.[G] || fetch)(n.href, {
289
283
  headers: Object.fromEntries(o.entries()),
290
284
  method: "GET",
291
285
  redirect: "manual",
292
286
  signal: null
293
- }).then(Q);
287
+ }).then(Y);
294
288
  }
295
289
  function w(t) {
296
290
  return typeof t == "string" && t.length !== 0;
297
291
  }
298
- async function rt(t, e) {
292
+ async function Xe(t, e) {
299
293
  if (!(t instanceof URL))
300
294
  throw new TypeError('"expectedIssuer" must be an instance of URL');
301
- if (!Z(e, Response))
295
+ if (!V(e, Response))
302
296
  throw new TypeError('"response" must be an instance of Response');
303
297
  if (e.status !== 200)
304
298
  throw new a('"response" is not a conform Authorization Server Metadata response');
305
- te(e);
299
+ X(e);
306
300
  let n;
307
301
  try {
308
302
  n = await e.json();
309
303
  } catch (o) {
310
304
  throw new a('failed to parse "response" body as JSON', { cause: o });
311
305
  }
312
- if (!C(n))
306
+ if (!x(n))
313
307
  throw new a('"response" body must be a top level object');
314
308
  if (!w(n.issuer))
315
309
  throw new a('"response" body "issuer" property must be a non-empty string');
@@ -317,28 +311,28 @@ async function rt(t, e) {
317
311
  throw new a('"response" body "issuer" does not match "expectedIssuer"');
318
312
  return n;
319
313
  }
320
- function X() {
314
+ function Z() {
321
315
  return A(crypto.getRandomValues(new Uint8Array(32)));
322
316
  }
323
- function ot() {
324
- return X();
317
+ function et() {
318
+ return Z();
325
319
  }
326
- function it() {
327
- return X();
320
+ function tt() {
321
+ return Z();
328
322
  }
329
- async function st(t) {
323
+ async function nt(t) {
330
324
  if (!w(t))
331
325
  throw new TypeError('"codeVerifier" must be a non-empty string');
332
326
  return A(await crypto.subtle.digest("SHA-256", E(t)));
333
327
  }
334
- function ce(t) {
328
+ function ae(t) {
335
329
  return encodeURIComponent(t).replace(/%20/g, "+");
336
330
  }
337
- function at(t, e) {
338
- const n = ce(t), o = ce(e);
331
+ function rt(t, e) {
332
+ const n = ae(t), o = ae(e);
339
333
  return `Basic ${btoa(`${n}:${o}`)}`;
340
334
  }
341
- function ct(t) {
335
+ function ot(t) {
342
336
  switch (t.algorithm.hash.name) {
343
337
  case "SHA-256":
344
338
  return "PS256";
@@ -347,10 +341,10 @@ function ct(t) {
347
341
  case "SHA-512":
348
342
  return "PS512";
349
343
  default:
350
- throw new S("unsupported RsaHashedKeyAlgorithm hash name");
344
+ throw new v("unsupported RsaHashedKeyAlgorithm hash name");
351
345
  }
352
346
  }
353
- function ut(t) {
347
+ function it(t) {
354
348
  switch (t.algorithm.hash.name) {
355
349
  case "SHA-256":
356
350
  return "RS256";
@@ -359,10 +353,10 @@ function ut(t) {
359
353
  case "SHA-512":
360
354
  return "RS512";
361
355
  default:
362
- throw new S("unsupported RsaHashedKeyAlgorithm hash name");
356
+ throw new v("unsupported RsaHashedKeyAlgorithm hash name");
363
357
  }
364
358
  }
365
- function lt(t) {
359
+ function st(t) {
366
360
  switch (t.algorithm.namedCurve) {
367
361
  case "P-256":
368
362
  return "ES256";
@@ -371,210 +365,209 @@ function lt(t) {
371
365
  case "P-521":
372
366
  return "ES512";
373
367
  default:
374
- throw new S("unsupported EcKeyAlgorithm namedCurve");
368
+ throw new v("unsupported EcKeyAlgorithm namedCurve");
375
369
  }
376
370
  }
377
- function dt(t) {
371
+ function at(t) {
378
372
  switch (t.algorithm.name) {
379
373
  case "RSA-PSS":
380
- return ct(t);
374
+ return ot(t);
381
375
  case "RSASSA-PKCS1-v1_5":
382
- return ut(t);
376
+ return it(t);
383
377
  case "ECDSA":
384
- return lt(t);
378
+ return st(t);
385
379
  case "Ed25519":
386
380
  case "Ed448":
387
381
  return "EdDSA";
388
382
  default:
389
- throw new S("unsupported CryptoKey algorithm name");
383
+ throw new v("unsupported CryptoKey algorithm name");
390
384
  }
391
385
  }
392
- function H(t) {
393
- const e = t == null ? void 0 : t[W];
386
+ function K(t) {
387
+ const e = t?.[N];
394
388
  return typeof e == "number" && Number.isFinite(e) ? e : 0;
395
389
  }
396
- function ye(t) {
397
- const e = t == null ? void 0 : t[$e];
390
+ function ge(t) {
391
+ const e = t?.[Ne];
398
392
  return typeof e == "number" && Number.isFinite(e) && Math.sign(e) !== -1 ? e : 30;
399
393
  }
400
- function ee() {
394
+ function Q() {
401
395
  return Math.floor(Date.now() / 1e3);
402
396
  }
403
- function I(t) {
397
+ function C(t) {
404
398
  if (typeof t != "object" || t === null)
405
399
  throw new TypeError('"as" must be an object');
406
400
  if (!w(t.issuer))
407
401
  throw new TypeError('"as.issuer" property must be a non-empty string');
408
402
  return !0;
409
403
  }
410
- function j(t) {
404
+ function I(t) {
411
405
  if (typeof t != "object" || t === null)
412
406
  throw new TypeError('"client" must be an object');
413
407
  if (!w(t.client_id))
414
408
  throw new TypeError('"client.client_id" property must be a non-empty string');
415
409
  return !0;
416
410
  }
417
- function ue(t) {
411
+ function ce(t) {
418
412
  if (!w(t))
419
413
  throw new TypeError('"client.client_secret" property must be a non-empty string');
420
414
  return t;
421
415
  }
422
- function le(t, e) {
416
+ function ue(t, e) {
423
417
  if (e !== void 0)
424
418
  throw new TypeError(`"client.client_secret" property must not be provided when ${t} client authentication method is used.`);
425
419
  }
426
- async function ht(t, e, n, o, s) {
420
+ async function ct(t, e, n, o, s) {
427
421
  switch (n.delete("client_secret"), n.delete("client_assertion_type"), n.delete("client_assertion"), e.token_endpoint_auth_method) {
428
422
  case void 0:
429
423
  case "client_secret_basic": {
430
- o.set("authorization", at(e.client_id, ue(e.client_secret)));
424
+ o.set("authorization", rt(e.client_id, ce(e.client_secret)));
431
425
  break;
432
426
  }
433
427
  case "client_secret_post": {
434
- n.set("client_id", e.client_id), n.set("client_secret", ue(e.client_secret));
428
+ n.set("client_id", e.client_id), n.set("client_secret", ce(e.client_secret));
435
429
  break;
436
430
  }
437
431
  case "private_key_jwt":
438
- throw le("private_key_jwt", e.client_secret), new TypeError('"options.clientPrivateKey" must be provided when "client.token_endpoint_auth_method" is "private_key_jwt"');
432
+ throw ue("private_key_jwt", e.client_secret), new TypeError('"options.clientPrivateKey" must be provided when "client.token_endpoint_auth_method" is "private_key_jwt"');
439
433
  case "tls_client_auth":
440
434
  case "self_signed_tls_client_auth":
441
435
  case "none": {
442
- le(e.token_endpoint_auth_method, e.client_secret), e.token_endpoint_auth_method, n.set("client_id", e.client_id);
436
+ ue(e.token_endpoint_auth_method, e.client_secret), e.token_endpoint_auth_method, n.set("client_id", e.client_id);
443
437
  break;
444
438
  }
445
439
  default:
446
- throw new S("unsupported client token_endpoint_auth_method");
440
+ throw new v("unsupported client token_endpoint_auth_method");
447
441
  }
448
442
  }
449
- async function ft(t, e, n) {
443
+ async function ut(t, e, n) {
450
444
  if (!n.usages.includes("sign"))
451
445
  throw new TypeError('CryptoKey instances used for signing assertions must include "sign" in their "usages"');
452
- const o = `${A(E(JSON.stringify(t)))}.${A(E(JSON.stringify(e)))}`, s = A(await crypto.subtle.sign(ke(n), n, E(o)));
446
+ const o = `${A(E(JSON.stringify(t)))}.${A(E(JSON.stringify(e)))}`, s = A(await crypto.subtle.sign(Ae(n), n, E(o)));
453
447
  return `${o}.${s}`;
454
448
  }
455
- async function pt(t, e, n, o, s, r) {
456
- var y;
457
- const { privateKey: i, publicKey: c, nonce: f = me.get(n.origin) } = e;
458
- if (!Xe(i))
449
+ async function lt(t, e, n, o, s, r) {
450
+ const { privateKey: i, publicKey: u, nonce: d = we.get(n.origin) } = e;
451
+ if (!Ge(i))
459
452
  throw new TypeError('"DPoP.privateKey" must be a private CryptoKey');
460
- if (!et(c))
453
+ if (!Ye(u))
461
454
  throw new TypeError('"DPoP.publicKey" must be a public CryptoKey');
462
- if (f !== void 0 && !w(f))
455
+ if (d !== void 0 && !w(d))
463
456
  throw new TypeError('"DPoP.nonce" must be a non-empty string or undefined');
464
- if (!c.extractable)
457
+ if (!u.extractable)
465
458
  throw new TypeError('"DPoP.publicKey.extractable" must be true');
466
- const _ = ee() + s, p = {
467
- alg: dt(i),
459
+ const y = Q() + s, p = {
460
+ alg: at(i),
468
461
  typ: "dpop+jwt",
469
- jwk: await mt(c)
462
+ jwk: await ft(u)
470
463
  }, k = {
471
- iat: _,
472
- jti: X(),
464
+ iat: y,
465
+ jti: Z(),
473
466
  htm: o,
474
- nonce: f,
467
+ nonce: d,
475
468
  htu: `${n.origin}${n.pathname}`,
476
469
  ath: r ? A(await crypto.subtle.digest("SHA-256", E(r))) : void 0
477
470
  };
478
- (y = e[Fe]) == null || y.call(e, p, k), t.set("dpop", await ft(p, k, i));
471
+ e[We]?.(p, k), t.set("dpop", await ut(p, k, i));
479
472
  }
480
- let N;
481
- async function wt(t) {
482
- const { kty: e, e: n, n: o, x: s, y: r, crv: i } = await crypto.subtle.exportKey("jwk", t), c = { kty: e, e: n, n: o, x: s, y: r, crv: i };
483
- return N.set(t, c), c;
473
+ let z;
474
+ async function dt(t) {
475
+ const { kty: e, e: n, n: o, x: s, y: r, crv: i } = await crypto.subtle.exportKey("jwk", t), u = { kty: e, e: n, n: o, x: s, y: r, crv: i };
476
+ return z.set(t, u), u;
484
477
  }
485
- async function mt(t) {
486
- return N || (N = /* @__PURE__ */ new WeakMap()), N.get(t) || wt(t);
478
+ async function ft(t) {
479
+ return z || (z = /* @__PURE__ */ new WeakMap()), z.get(t) || dt(t);
487
480
  }
488
- function de(t, e, n) {
481
+ function le(t, e, n) {
489
482
  if (typeof t != "string")
490
483
  throw n ? new TypeError(`"as.mtls_endpoint_aliases.${e}" must be a string`) : new TypeError(`"as.${e}" must be a string`);
491
484
  return new URL(t);
492
485
  }
493
- function be(t, e, n = !1) {
494
- return n && t.mtls_endpoint_aliases && e in t.mtls_endpoint_aliases ? de(t.mtls_endpoint_aliases[e], e, n) : de(t[e], e, n);
486
+ function ye(t, e, n = !1) {
487
+ return n && t.mtls_endpoint_aliases && e in t.mtls_endpoint_aliases ? le(t.mtls_endpoint_aliases[e], e, n) : le(t[e], e, n);
495
488
  }
496
- function _e(t, e) {
497
- return !!(t.use_mtls_endpoint_aliases || e != null && e[Be]);
489
+ function be(t, e) {
490
+ return !!(t.use_mtls_endpoint_aliases || e?.[He]);
498
491
  }
499
- function G(t) {
492
+ function q(t) {
500
493
  const e = t;
501
494
  return typeof e != "object" || Array.isArray(e) || e === null ? !1 : e.error !== void 0;
502
495
  }
503
- async function gt(t, e, n, o, s, r) {
496
+ async function ht(t, e, n, o, s, r) {
504
497
  if (!w(t))
505
498
  throw new TypeError('"accessToken" must be a non-empty string');
506
499
  if (!(n instanceof URL))
507
500
  throw new TypeError('"url" must be an instance of URL');
508
- return o = K(o), (r == null ? void 0 : r.DPoP) === void 0 ? o.set("authorization", `Bearer ${t}`) : (await pt(o, r.DPoP, n, e.toUpperCase(), H({ [W]: r == null ? void 0 : r[W] }), t), o.set("authorization", `DPoP ${t}`)), ((r == null ? void 0 : r[Y]) || fetch)(n.href, {
501
+ return o = W(o), r?.DPoP === void 0 ? o.set("authorization", `Bearer ${t}`) : (await lt(o, r.DPoP, n, e.toUpperCase(), K({ [N]: r?.[N] }), t), o.set("authorization", `DPoP ${t}`)), (r?.[G] || fetch)(n.href, {
509
502
  body: s,
510
503
  headers: Object.fromEntries(o.entries()),
511
504
  method: e,
512
505
  redirect: "manual",
513
- signal: r != null && r.signal ? tt(r.signal) : null
514
- }).then(Q);
506
+ signal: r?.signal ? Ze(r.signal) : null
507
+ }).then(Y);
515
508
  }
516
- async function yt(t, e, n, o) {
517
- I(t), j(e);
518
- const s = be(t, "userinfo_endpoint", _e(e, o)), r = K(o == null ? void 0 : o.headers);
519
- return e.userinfo_signed_response_alg ? r.set("accept", "application/jwt") : (r.set("accept", "application/json"), r.append("accept", "application/jwt")), gt(n, "GET", s, r, null, {
509
+ async function pt(t, e, n, o) {
510
+ C(t), I(e);
511
+ const s = ye(t, "userinfo_endpoint", be(e, o)), r = W(o?.headers);
512
+ return e.userinfo_signed_response_alg ? r.set("accept", "application/jwt") : (r.set("accept", "application/json"), r.append("accept", "application/jwt")), ht(n, "GET", s, r, null, {
520
513
  ...o,
521
- [W]: H(e)
514
+ [N]: K(e)
522
515
  });
523
516
  }
524
- async function bt(t, e, n, o, s, r, i) {
525
- return await ht(t, e, s, r), r.set("content-type", "application/x-www-form-urlencoded;charset=UTF-8"), ((i == null ? void 0 : i[Y]) || fetch)(o.href, {
517
+ async function wt(t, e, n, o, s, r, i) {
518
+ return await ct(t, e, s, r), r.set("content-type", "application/x-www-form-urlencoded;charset=UTF-8"), (i?.[G] || fetch)(o.href, {
526
519
  body: s,
527
520
  headers: Object.fromEntries(r.entries()),
528
521
  method: n,
529
522
  redirect: "manual",
530
523
  signal: null
531
- }).then(Q);
524
+ }).then(Y);
532
525
  }
533
- async function ve(t, e, n, o, s) {
534
- const r = be(t, "token_endpoint", _e(e, s));
526
+ async function _e(t, e, n, o, s) {
527
+ const r = ye(t, "token_endpoint", be(e, s));
535
528
  o.set("grant_type", n);
536
- const i = K(s == null ? void 0 : s.headers);
537
- return i.set("accept", "application/json"), bt(t, e, "POST", r, o, i, s);
529
+ const i = W(s?.headers);
530
+ return i.set("accept", "application/json"), wt(t, e, "POST", r, o, i, s);
538
531
  }
539
- async function _t(t, e, n, o) {
540
- if (I(t), j(e), !w(n))
532
+ async function de(t, e, n, o) {
533
+ if (C(t), I(e), !w(n))
541
534
  throw new TypeError('"refreshToken" must be a non-empty string');
542
- const s = new URLSearchParams(o == null ? void 0 : o.additionalParameters);
543
- return s.set("refresh_token", n), ve(t, e, "refresh_token", s, o);
535
+ const s = new URLSearchParams(o?.additionalParameters);
536
+ return s.set("refresh_token", n), _e(t, e, "refresh_token", s, o);
544
537
  }
545
- const Se = /* @__PURE__ */ new WeakMap();
546
- function vt(t) {
538
+ const ve = /* @__PURE__ */ new WeakMap();
539
+ function mt(t) {
547
540
  if (!t.id_token)
548
541
  return;
549
- const e = Se.get(t);
542
+ const e = ve.get(t);
550
543
  if (!e)
551
544
  throw new TypeError('"ref" was already garbage collected or did not resolve from the proper sources');
552
545
  return e[0];
553
546
  }
554
- async function Te(t, e, n, o = !1, s = !1) {
555
- if (I(t), j(e), !Z(n, Response))
547
+ async function Se(t, e, n, o = !1, s = !1) {
548
+ if (C(t), I(e), !V(n, Response))
556
549
  throw new TypeError('"response" must be an instance of Response');
557
550
  if (n.status !== 200) {
558
551
  let i;
559
- if (i = await xt(n))
552
+ if (i = await kt(n))
560
553
  return i;
561
554
  throw new a('"response" is not a conform Token Endpoint response');
562
555
  }
563
- te(n);
556
+ X(n);
564
557
  let r;
565
558
  try {
566
559
  r = await n.json();
567
560
  } catch (i) {
568
561
  throw new a('failed to parse "response" body as JSON', { cause: i });
569
562
  }
570
- if (!C(r))
563
+ if (!x(r))
571
564
  throw new a('"response" body must be a top level object');
572
565
  if (!w(r.access_token))
573
566
  throw new a('"response" body "access_token" property must be a non-empty string');
574
567
  if (!w(r.token_type))
575
568
  throw new a('"response" body "token_type" property must be a non-empty string');
576
569
  if (r.token_type = r.token_type.toLowerCase(), r.token_type !== "dpop" && r.token_type !== "bearer")
577
- throw new S("unsupported `token_type` value");
570
+ throw new v("unsupported `token_type` value");
578
571
  if (r.expires_in !== void 0 && (typeof r.expires_in != "number" || r.expires_in <= 0))
579
572
  throw new a('"response" body "expires_in" property must be a positive number');
580
573
  if (!s && r.refresh_token !== void 0 && !w(r.refresh_token))
@@ -585,7 +578,7 @@ async function Te(t, e, n, o = !1, s = !1) {
585
578
  if (r.id_token !== void 0 && !w(r.id_token))
586
579
  throw new a('"response" body "id_token" property must be a non-empty string');
587
580
  if (r.id_token) {
588
- const { claims: i, jwt: c } = await jt(r.id_token, Ot.bind(void 0, e.id_token_signed_response_alg, t.id_token_signing_alg_values_supported), Ee, H(e), ye(e), e[Me]).then(Pt.bind(void 0, ["aud", "exp", "iat", "iss", "sub"])).then(At.bind(void 0, t.issuer)).then(Tt.bind(void 0, e.client_id));
581
+ const { claims: i, jwt: u } = await Pt(r.id_token, Lt.bind(void 0, e.id_token_signed_response_alg, t.id_token_signing_alg_values_supported), ke, K(e), ge(e), e[Ke]).then(St.bind(void 0, ["aud", "exp", "iat", "iss", "sub"])).then(yt.bind(void 0, t.issuer)).then(gt.bind(void 0, e.client_id));
589
582
  if (Array.isArray(i.aud) && i.aud.length !== 1) {
590
583
  if (i.azp === void 0)
591
584
  throw new a('ID Token "aud" (audience) claim includes additional untrusted audiences');
@@ -594,15 +587,15 @@ async function Te(t, e, n, o = !1, s = !1) {
594
587
  }
595
588
  if (i.auth_time !== void 0 && (!Number.isFinite(i.auth_time) || Math.sign(i.auth_time) !== 1))
596
589
  throw new a('ID Token "auth_time" (authentication time) must be a positive number');
597
- Se.set(r, [i, c]);
590
+ ve.set(r, [i, u]);
598
591
  }
599
592
  }
600
593
  return r;
601
594
  }
602
- async function St(t, e, n) {
603
- return Te(t, e, n);
595
+ async function fe(t, e, n) {
596
+ return Se(t, e, n);
604
597
  }
605
- function Tt(t, e) {
598
+ function gt(t, e) {
606
599
  if (Array.isArray(e.claims.aud)) {
607
600
  if (!e.claims.aud.includes(t))
608
601
  throw new a('unexpected JWT "aud" (audience) claim value');
@@ -610,17 +603,17 @@ function Tt(t, e) {
610
603
  throw new a('unexpected JWT "aud" (audience) claim value');
611
604
  return e;
612
605
  }
613
- function At(t, e) {
606
+ function yt(t, e) {
614
607
  if (e.claims.iss !== t)
615
608
  throw new a('unexpected JWT "iss" (issuer) claim value');
616
609
  return e;
617
610
  }
618
- const Ae = /* @__PURE__ */ new WeakSet();
619
- function kt(t) {
620
- return Ae.add(t), t;
611
+ const Te = /* @__PURE__ */ new WeakSet();
612
+ function bt(t) {
613
+ return Te.add(t), t;
621
614
  }
622
- async function Et(t, e, n, o, s, r) {
623
- if (I(t), j(e), !Ae.has(n))
615
+ async function _t(t, e, n, o, s, r) {
616
+ if (C(t), I(e), !Te.has(n))
624
617
  throw new TypeError('"callbackParameters" must be an instance of URLSearchParams obtained from "validateAuthResponse()", or "validateJwtAuthResponse()');
625
618
  if (!w(o))
626
619
  throw new TypeError('"redirectUri" must be a non-empty string');
@@ -629,10 +622,10 @@ async function Et(t, e, n, o, s, r) {
629
622
  const i = T(n, "code");
630
623
  if (!i)
631
624
  throw new a('no authorization code in "callbackParameters"');
632
- const c = new URLSearchParams(r == null ? void 0 : r.additionalParameters);
633
- return c.set("redirect_uri", o), c.set("code_verifier", s), c.set("code", i), ve(t, e, "authorization_code", c, r);
625
+ const u = new URLSearchParams(r?.additionalParameters);
626
+ return u.set("redirect_uri", o), u.set("code_verifier", s), u.set("code", i), _e(t, e, "authorization_code", u, r);
634
627
  }
635
- const Rt = {
628
+ const vt = {
636
629
  aud: "audience",
637
630
  c_hash: "code hash",
638
631
  client_id: "client id",
@@ -648,33 +641,33 @@ const Rt = {
648
641
  htu: "http uri",
649
642
  cnf: "confirmation"
650
643
  };
651
- function Pt(t, e) {
644
+ function St(t, e) {
652
645
  for (const n of t)
653
646
  if (e.claims[n] === void 0)
654
- throw new a(`JWT "${n}" (${Rt[n]}) claim missing`);
647
+ throw new a(`JWT "${n}" (${vt[n]}) claim missing`);
655
648
  return e;
656
649
  }
657
- const Ut = Symbol(), F = Symbol();
658
- async function Lt(t, e, n, o, s) {
659
- const r = await Te(t, e, n);
660
- if (G(r))
650
+ const Tt = Symbol(), $ = Symbol();
651
+ async function At(t, e, n, o, s) {
652
+ const r = await Se(t, e, n);
653
+ if (q(r))
661
654
  return r;
662
655
  if (!w(r.id_token))
663
656
  throw new a('"response" body "id_token" property must be a non-empty string');
664
- s ?? (s = e.default_max_age ?? F);
665
- const i = vt(r);
666
- if ((e.require_auth_time || s !== F) && i.auth_time === void 0)
657
+ s ?? (s = e.default_max_age ?? $);
658
+ const i = mt(r);
659
+ if ((e.require_auth_time || s !== $) && i.auth_time === void 0)
667
660
  throw new a('ID Token "auth_time" (authentication time) claim missing');
668
- if (s !== F) {
661
+ if (s !== $) {
669
662
  if (typeof s != "number" || s < 0)
670
663
  throw new TypeError('"maxAge" must be a non-negative number');
671
- const c = ee() + H(e), f = ye(e);
672
- if (i.auth_time + s < c - f)
664
+ const u = Q() + K(e), d = ge(e);
665
+ if (i.auth_time + s < u - d)
673
666
  throw new a("too much time has elapsed since the last End-User authentication");
674
667
  }
675
668
  switch (o) {
676
669
  case void 0:
677
- case Ut:
670
+ case Tt:
678
671
  if (i.nonce !== void 0)
679
672
  throw new a('unexpected ID Token "nonce" claim value');
680
673
  break;
@@ -688,16 +681,16 @@ async function Lt(t, e, n, o, s) {
688
681
  }
689
682
  return r;
690
683
  }
691
- function te(t) {
684
+ function X(t) {
692
685
  if (t.bodyUsed)
693
686
  throw new TypeError('"response" body has been used already');
694
687
  }
695
- async function xt(t) {
688
+ async function kt(t) {
696
689
  if (t.status > 399 && t.status < 500) {
697
- te(t);
690
+ X(t);
698
691
  try {
699
692
  const e = await t.json();
700
- if (C(e) && typeof e.error == "string" && e.error.length)
693
+ if (x(e) && typeof e.error == "string" && e.error.length)
701
694
  return e.error_description !== void 0 && typeof e.error_description != "string" && delete e.error_description, e.error_uri !== void 0 && typeof e.error_uri != "string" && delete e.error_uri, e.algs !== void 0 && typeof e.algs != "string" && delete e.algs, e.scope !== void 0 && typeof e.scope != "string" && delete e.scope, e;
702
695
  } catch {
703
696
  }
@@ -707,7 +700,7 @@ function he(t) {
707
700
  if (typeof t.modulusLength != "number" || t.modulusLength < 2048)
708
701
  throw new a(`${t.name} modulusLength must be at least 2048 bits`);
709
702
  }
710
- function Ct(t) {
703
+ function Et(t) {
711
704
  switch (t) {
712
705
  case "P-256":
713
706
  return "SHA-256";
@@ -716,15 +709,15 @@ function Ct(t) {
716
709
  case "P-521":
717
710
  return "SHA-512";
718
711
  default:
719
- throw new S();
712
+ throw new v();
720
713
  }
721
714
  }
722
- function ke(t) {
715
+ function Ae(t) {
723
716
  switch (t.algorithm.name) {
724
717
  case "ECDSA":
725
718
  return {
726
719
  name: t.algorithm.name,
727
- hash: Ct(t.algorithm.namedCurve)
720
+ hash: Et(t.algorithm.namedCurve)
728
721
  };
729
722
  case "RSA-PSS":
730
723
  switch (he(t.algorithm), t.algorithm.hash.name) {
@@ -736,7 +729,7 @@ function ke(t) {
736
729
  saltLength: parseInt(t.algorithm.hash.name.slice(-3), 10) >> 3
737
730
  };
738
731
  default:
739
- throw new S();
732
+ throw new v();
740
733
  }
741
734
  case "RSASSA-PKCS1-v1_5":
742
735
  return he(t.algorithm), t.algorithm.name;
@@ -744,22 +737,22 @@ function ke(t) {
744
737
  case "Ed25519":
745
738
  return t.algorithm.name;
746
739
  }
747
- throw new S();
740
+ throw new v();
748
741
  }
749
- const Ee = Symbol();
750
- async function It(t, e, n, o) {
742
+ const ke = Symbol();
743
+ async function Rt(t, e, n, o) {
751
744
  const s = `${t}.${e}`;
752
- if (!await crypto.subtle.verify(ke(n), n, o, E(s)))
745
+ if (!await crypto.subtle.verify(Ae(n), n, o, E(s)))
753
746
  throw new a("JWT signature verification failed");
754
747
  }
755
- async function jt(t, e, n, o, s, r) {
756
- let { 0: i, 1: c, 2: f, length: _ } = t.split(".");
757
- if (_ === 5)
748
+ async function Pt(t, e, n, o, s, r) {
749
+ let { 0: i, 1: u, 2: d, length: y } = t.split(".");
750
+ if (y === 5)
758
751
  if (r !== void 0)
759
- t = await r(t), { 0: i, 1: c, 2: f, length: _ } = t.split(".");
752
+ t = await r(t), { 0: i, 1: u, 2: d, length: y } = t.split(".");
760
753
  else
761
- throw new S("JWE structure JWTs are not supported");
762
- if (_ !== 3)
754
+ throw new v("JWE structure JWTs are not supported");
755
+ if (y !== 3)
763
756
  throw new a("Invalid JWT");
764
757
  let p;
765
758
  try {
@@ -767,22 +760,22 @@ async function jt(t, e, n, o, s, r) {
767
760
  } catch (l) {
768
761
  throw new a("failed to parse JWT Header body as base64url encoded JSON", { cause: l });
769
762
  }
770
- if (!C(p))
763
+ if (!x(p))
771
764
  throw new a("JWT Header must be a top level object");
772
765
  if (e(p), p.crit !== void 0)
773
766
  throw new a('unexpected JWT "crit" header parameter');
774
- const k = A(f);
775
- let y;
776
- n !== Ee && (y = await n(p), await It(i, c, y, k));
767
+ const k = A(d);
768
+ let b;
769
+ n !== ke && (b = await n(p), await Rt(i, u, b, k));
777
770
  let h;
778
771
  try {
779
- h = JSON.parse(E(A(c)));
772
+ h = JSON.parse(E(A(u)));
780
773
  } catch (l) {
781
774
  throw new a("failed to parse JWT Payload body as base64url encoded JSON", { cause: l });
782
775
  }
783
- if (!C(h))
776
+ if (!x(h))
784
777
  throw new a("JWT Payload must be a top level object");
785
- const P = ee() + o;
778
+ const P = Q() + o;
786
779
  if (h.exp !== void 0) {
787
780
  if (typeof h.exp != "number")
788
781
  throw new a('unexpected JWT "exp" (expiration time) claim type');
@@ -801,9 +794,9 @@ async function jt(t, e, n, o, s, r) {
801
794
  }
802
795
  if (h.aud !== void 0 && typeof h.aud != "string" && !Array.isArray(h.aud))
803
796
  throw new a('unexpected JWT "aud" (audience) claim type');
804
- return { header: p, claims: h, signature: k, key: y, jwt: t };
797
+ return { header: p, claims: h, signature: k, key: b, jwt: t };
805
798
  }
806
- function Ot(t, e, n) {
799
+ function Lt(t, e, n) {
807
800
  if (t !== void 0) {
808
801
  if (n.alg !== t)
809
802
  throw new a('unexpected JWT "alg" header parameter');
@@ -823,9 +816,9 @@ function T(t, e) {
823
816
  throw new a(`"${e}" parameter must be provided only once`);
824
817
  return n;
825
818
  }
826
- const zt = Symbol(), Jt = Symbol();
827
- function Dt(t, e, n, o) {
828
- if (I(t), j(e), n instanceof URL && (n = n.searchParams), !(n instanceof URLSearchParams))
819
+ const Ut = Symbol(), xt = Symbol();
820
+ function Ct(t, e, n, o) {
821
+ if (C(t), I(e), n instanceof URL && (n = n.searchParams), !(n instanceof URLSearchParams))
829
822
  throw new TypeError('"parameters" must be an instance of URLSearchParams, or URL');
830
823
  if (T(n, "response"))
831
824
  throw new a('"parameters" contains a JARM response, use validateJwtAuthResponse() instead of validateAuthResponse()');
@@ -836,11 +829,11 @@ function Dt(t, e, n, o) {
836
829
  throw new a('unexpected "iss" (issuer) response parameter value');
837
830
  switch (o) {
838
831
  case void 0:
839
- case Jt:
832
+ case xt:
840
833
  if (r !== void 0)
841
834
  throw new a('unexpected "state" response parameter encountered');
842
835
  break;
843
- case zt:
836
+ case Ut:
844
837
  break;
845
838
  default:
846
839
  if (!w(o))
@@ -857,63 +850,23 @@ function Dt(t, e, n, o) {
857
850
  error_description: T(n, "error_description"),
858
851
  error_uri: T(n, "error_uri")
859
852
  };
860
- const c = T(n, "id_token"), f = T(n, "token");
861
- if (c !== void 0 || f !== void 0)
862
- throw new S("implicit and hybrid flows are not supported");
863
- return kt(new URLSearchParams(n));
864
- }
865
- function Nt(t, e, n = "/") {
866
- return t.startsWith(e) ? n !== "/" && t.startsWith(e + n) ? t.slice(e.length + n.length) : t.slice(e.length) : t;
867
- }
868
- function Wt({
869
- handleCallback: t
870
- }) {
871
- const { options: e } = De(), n = Oe({
872
- retry: !1,
873
- queryKey: ["oauth-callback"],
874
- queryFn: async () => {
875
- try {
876
- return we(
877
- Nt(
878
- await t(),
879
- window.location.origin,
880
- e.basePath
881
- )
882
- );
883
- } catch (o) {
884
- throw new Ne("Could not validate user", {
885
- cause: o,
886
- title: "Authentication Error",
887
- developerHint: "Check the configuration of your authorization provider and ensure all settings such as the callback URL are configured correctly."
888
- });
889
- }
890
- }
891
- });
892
- return /* @__PURE__ */ q.jsx(Je, { to: n.data });
893
- }
894
- class R extends Error {
895
- }
896
- class fe extends R {
897
- constructor(e, n, o) {
898
- super(e, o), this.error = n;
899
- }
900
- }
901
- const M = "code-verifier", B = "oauth-state", Re = "/oauth/callback";
902
- class Kt extends ze {
903
- constructor(e) {
904
- super(), this.handleCallback = e;
905
- }
906
- getRoutes() {
907
- return [
908
- ...super.getRoutes(),
909
- {
910
- path: Re,
911
- element: /* @__PURE__ */ q.jsx(je, { children: /* @__PURE__ */ q.jsx(Wt, { handleCallback: this.handleCallback }) })
912
- }
913
- ];
914
- }
915
- }
916
- class Ht {
853
+ const u = T(n, "id_token"), d = T(n, "token");
854
+ if (u !== void 0 || d !== void 0)
855
+ throw new v("implicit and hybrid flows are not supported");
856
+ return bt(new URLSearchParams(n));
857
+ }
858
+ const F = "code-verifier", M = "oauth-state", pe = "/oauth/callback";
859
+ class It extends Ie {
860
+ client;
861
+ issuer;
862
+ authorizationServer;
863
+ callbackUrlPath;
864
+ onAuthorizationUrl;
865
+ redirectToAfterSignUp;
866
+ redirectToAfterSignIn;
867
+ redirectToAfterSignOut;
868
+ audience;
869
+ scopes;
917
870
  constructor({
918
871
  issuer: e,
919
872
  audience: n,
@@ -921,100 +874,18 @@ class Ht {
921
874
  redirectToAfterSignUp: s,
922
875
  redirectToAfterSignIn: r,
923
876
  redirectToAfterSignOut: i = "/",
924
- basePath: c,
925
- scopes: f
877
+ basePath: u,
878
+ scopes: d
926
879
  }) {
927
- b(this, "client");
928
- b(this, "issuer");
929
- b(this, "authorizationServer");
930
- b(this, "callbackUrlPath");
931
- b(this, "onAuthorizationUrl");
932
- b(this, "redirectToAfterSignUp");
933
- b(this, "redirectToAfterSignIn");
934
- b(this, "redirectToAfterSignOut");
935
- b(this, "audience");
936
- b(this, "scopes");
937
- b(this, "signRequest", async (e) => {
938
- const n = await this.getAccessToken();
939
- return e.headers.set("Authorization", `Bearer ${n}`), e;
940
- });
941
- b(this, "signOut", async () => {
942
- x.setState({
943
- isAuthenticated: !1,
944
- isPending: !1,
945
- profile: void 0,
946
- providerData: void 0
947
- });
948
- const e = await this.getAuthServer(), n = new URL(
949
- window.location.origin + this.redirectToAfterSignOut
950
- );
951
- n.pathname = this.callbackUrlPath;
952
- let o;
953
- e.end_session_endpoint ? (o = new URL(e.end_session_endpoint), o.searchParams.set(
954
- "post_logout_redirect_uri",
955
- n.toString()
956
- )) : o = n;
957
- });
958
- b(this, "handleCallback", async () => {
959
- const e = new URL(window.location.href), n = e.searchParams.get("state"), o = sessionStorage.getItem(B);
960
- if (sessionStorage.removeItem(B), n !== o)
961
- throw new R("Invalid state parameter");
962
- const s = sessionStorage.getItem(M);
963
- if (sessionStorage.removeItem(M), !s)
964
- throw new R("No code verifier found in state.");
965
- const r = await this.getAuthServer(), i = Dt(
966
- r,
967
- this.client,
968
- e.searchParams,
969
- n ?? void 0
970
- );
971
- if (G(i))
972
- throw se.error("Error validating OAuth response", i), new fe(
973
- "Error validating OAuth response",
974
- i
975
- );
976
- const c = new URL(e);
977
- c.pathname = this.callbackUrlPath, c.search = "";
978
- const f = await Et(
979
- r,
980
- this.client,
981
- i,
982
- c.toString(),
983
- s
984
- ), _ = await Lt(
985
- r,
986
- this.client,
987
- f
988
- );
989
- this.setTokensFromResponse(_);
990
- const p = await this.getAccessToken(), y = await (await yt(
991
- r,
992
- this.client,
993
- p
994
- )).json(), h = {
995
- sub: y.sub,
996
- email: y.email,
997
- name: y.name,
998
- emailVerified: y.email_verified ?? !1,
999
- pictureUrl: y.picture
1000
- };
1001
- x.setState({
1002
- isAuthenticated: !0,
1003
- isPending: !1,
1004
- profile: h
1005
- });
1006
- const P = sessionStorage.getItem("redirect-to") ?? "/";
1007
- return sessionStorage.removeItem("redirect-to"), P;
1008
- });
1009
- this.client = {
880
+ super(), this.client = {
1010
881
  client_id: o,
1011
882
  token_endpoint_auth_method: "none"
1012
- }, this.audience = n, this.issuer = e, this.callbackUrlPath = we(c, Re), this.scopes = f ?? ["openid", "profile", "email"], this.redirectToAfterSignUp = s, this.redirectToAfterSignIn = r, this.redirectToAfterSignOut = i;
883
+ }, this.audience = n, this.issuer = e, this.callbackUrlPath = Ce(u, pe), this.scopes = d ?? ["openid", "profile", "email"], this.redirectToAfterSignUp = s, this.redirectToAfterSignIn = r, this.redirectToAfterSignOut = i;
1013
884
  }
1014
885
  async getAuthServer() {
1015
886
  if (!this.authorizationServer) {
1016
- const e = new URL(this.issuer), n = await nt(e);
1017
- this.authorizationServer = await rt(
887
+ const e = new URL(this.issuer), n = await Qe(e);
888
+ this.authorizationServer = await Xe(
1018
889
  e,
1019
890
  n
1020
891
  );
@@ -1026,8 +897,8 @@ class Ht {
1026
897
  * @param response
1027
898
  */
1028
899
  setTokensFromResponse(e) {
1029
- if (G(e))
1030
- throw se.error("Bad Token Response", e), new fe("Bad Token Response", e);
900
+ if (q(e))
901
+ throw ie.error("Bad Token Response", e), new re("Bad Token Response", e);
1031
902
  if (!e.expires_in)
1032
903
  throw new R("No expires_in in response");
1033
904
  const n = {
@@ -1037,64 +908,72 @@ class Ht {
1037
908
  expiresOn: new Date(Date.now() + e.expires_in * 1e3),
1038
909
  tokenType: e.token_type
1039
910
  };
1040
- x.setState({
911
+ S.setState({
1041
912
  providerData: n
1042
913
  });
1043
914
  }
1044
- async signUp({ redirectTo: e } = {}) {
915
+ async signUp({
916
+ redirectTo: e,
917
+ replace: n = !1
918
+ } = {}) {
1045
919
  return this.authorize({
1046
920
  redirectTo: this.redirectToAfterSignUp ?? e ?? "/",
921
+ replace: n,
1047
922
  isSignUp: !0
1048
923
  });
1049
924
  }
1050
- async signIn({ redirectTo: e } = {}) {
925
+ async signIn({
926
+ redirectTo: e,
927
+ replace: n = !1
928
+ } = {}) {
1051
929
  return this.authorize({
1052
- redirectTo: this.redirectToAfterSignIn ?? e ?? "/"
930
+ redirectTo: this.redirectToAfterSignIn ?? e ?? "/",
931
+ replace: n
1053
932
  });
1054
933
  }
1055
934
  async authorize({
1056
935
  redirectTo: e,
1057
- isSignUp: n = !1
936
+ isSignUp: n = !1,
937
+ replace: o = !1
1058
938
  }) {
1059
- var p;
1060
- const o = "S256", s = await this.getAuthServer();
1061
- if (!s.authorization_endpoint)
939
+ const s = "S256", r = await this.getAuthServer();
940
+ if (!r.authorization_endpoint)
1062
941
  throw new R("No authorization endpoint");
1063
- const r = ot(), i = await st(r);
1064
- sessionStorage.setItem(M, r);
1065
- const c = new URL(
1066
- s.authorization_endpoint
942
+ const i = et(), u = await nt(i);
943
+ sessionStorage.setItem(F, i);
944
+ const d = new URL(
945
+ r.authorization_endpoint
1067
946
  );
1068
947
  sessionStorage.setItem("redirect-to", e);
1069
- const f = new URL(window.location.origin);
1070
- f.pathname = this.callbackUrlPath, f.search = "", c.searchParams.set("client_id", this.client.client_id), c.searchParams.set("redirect_uri", f.toString()), c.searchParams.set("response_type", "code"), c.searchParams.set("scope", this.scopes.join(" ")), c.searchParams.set("code_challenge", i), c.searchParams.set(
948
+ const y = new URL(window.location.origin);
949
+ y.pathname = this.callbackUrlPath, y.search = "", d.searchParams.set("client_id", this.client.client_id), d.searchParams.set("redirect_uri", y.toString()), d.searchParams.set("response_type", "code"), d.searchParams.set("scope", this.scopes.join(" ")), d.searchParams.set("code_challenge", u), d.searchParams.set(
1071
950
  "code_challenge_method",
1072
- o
1073
- ), this.audience && c.searchParams.set("audience", this.audience), (p = this.onAuthorizationUrl) == null || p.call(this, c, {
951
+ s
952
+ ), this.audience && d.searchParams.set("audience", this.audience), this.onAuthorizationUrl?.(d, {
1074
953
  isSignIn: !n,
1075
954
  isSignUp: n
1076
955
  });
1077
- const _ = it();
1078
- sessionStorage.setItem(B, _), c.searchParams.set("state", _), location.href = c.href;
956
+ const p = tt();
957
+ sessionStorage.setItem(M, p), d.searchParams.set("state", p), o ? location.replace(d.href) : location.href = d.href;
1079
958
  }
1080
959
  async getAccessToken() {
1081
- const e = await this.getAuthServer(), { providerData: n } = x.getState();
960
+ const e = await this.getAuthServer(), { providerData: n } = S.getState();
1082
961
  if (!n)
1083
962
  throw new R("User is not authenticated");
1084
963
  const o = n;
1085
964
  if (new Date(o.expiresOn) < /* @__PURE__ */ new Date()) {
1086
965
  if (!o.refreshToken)
1087
- return x.setState({
966
+ return S.setState({
1088
967
  isAuthenticated: !1,
1089
968
  isPending: !1,
1090
969
  profile: null,
1091
970
  providerData: null
1092
971
  }), "";
1093
- const s = await _t(
972
+ const s = await de(
1094
973
  e,
1095
974
  this.client,
1096
975
  o.refreshToken
1097
- ), r = await St(
976
+ ), r = await fe(
1098
977
  e,
1099
978
  this.client,
1100
979
  s
@@ -1105,14 +984,140 @@ class Ht {
1105
984
  } else
1106
985
  return o.accessToken;
1107
986
  }
1108
- getAuthenticationPlugin() {
1109
- return new Kt(this.handleCallback);
987
+ signRequest = async (e) => {
988
+ const n = await this.getAccessToken();
989
+ return e.headers.set("Authorization", `Bearer ${n}`), e;
990
+ };
991
+ signOut = async () => {
992
+ S.setState({
993
+ isAuthenticated: !1,
994
+ isPending: !1,
995
+ profile: void 0,
996
+ providerData: void 0
997
+ });
998
+ const e = await this.getAuthServer(), n = new URL(
999
+ window.location.origin + this.redirectToAfterSignOut
1000
+ );
1001
+ n.pathname = this.callbackUrlPath;
1002
+ let o;
1003
+ e.end_session_endpoint ? (o = new URL(e.end_session_endpoint), o.searchParams.set(
1004
+ "post_logout_redirect_uri",
1005
+ n.toString()
1006
+ )) : o = n;
1007
+ };
1008
+ onPageLoad = async () => {
1009
+ const { providerData: e } = S.getState();
1010
+ if (!e) {
1011
+ S.setState({ isPending: !1 });
1012
+ return;
1013
+ }
1014
+ const n = e;
1015
+ if (new Date(n.expiresOn) < /* @__PURE__ */ new Date()) {
1016
+ if (!n.refreshToken) {
1017
+ S.setState({
1018
+ isAuthenticated: !1,
1019
+ isPending: !1,
1020
+ profile: null,
1021
+ providerData: null
1022
+ });
1023
+ return;
1024
+ }
1025
+ try {
1026
+ const o = await this.getAuthServer(), s = await de(
1027
+ o,
1028
+ this.client,
1029
+ n.refreshToken
1030
+ ), r = await fe(
1031
+ o,
1032
+ this.client,
1033
+ s
1034
+ );
1035
+ if (!r.access_token)
1036
+ throw new R("No access token in response");
1037
+ this.setTokensFromResponse(r);
1038
+ } catch {
1039
+ S.setState({
1040
+ isAuthenticated: !1,
1041
+ isPending: !1,
1042
+ profile: null,
1043
+ providerData: null
1044
+ });
1045
+ return;
1046
+ }
1047
+ }
1048
+ S.setState({ isPending: !1 });
1049
+ };
1050
+ handleCallback = async () => {
1051
+ const e = new URL(window.location.href), n = e.searchParams.get("state"), o = sessionStorage.getItem(M);
1052
+ if (sessionStorage.removeItem(M), n !== o)
1053
+ throw new R("Invalid state parameter");
1054
+ const s = sessionStorage.getItem(F);
1055
+ if (sessionStorage.removeItem(F), !s)
1056
+ throw new R("No code verifier found in state.");
1057
+ const r = await this.getAuthServer(), i = Ct(
1058
+ r,
1059
+ this.client,
1060
+ e.searchParams,
1061
+ n ?? void 0
1062
+ );
1063
+ if (q(i))
1064
+ throw ie.error("Error validating OAuth response", i), new re(
1065
+ "Error validating OAuth response",
1066
+ i
1067
+ );
1068
+ const u = new URL(e);
1069
+ u.pathname = this.callbackUrlPath, u.search = "";
1070
+ const d = await _t(
1071
+ r,
1072
+ this.client,
1073
+ i,
1074
+ u.toString(),
1075
+ s
1076
+ ), y = await At(
1077
+ r,
1078
+ this.client,
1079
+ d
1080
+ );
1081
+ this.setTokensFromResponse(y);
1082
+ const p = await this.getAccessToken(), b = await (await pt(
1083
+ r,
1084
+ this.client,
1085
+ p
1086
+ )).json(), h = {
1087
+ sub: b.sub,
1088
+ email: b.email,
1089
+ name: b.name,
1090
+ emailVerified: b.email_verified ?? !1,
1091
+ pictureUrl: b.picture
1092
+ };
1093
+ S.setState({
1094
+ isAuthenticated: !0,
1095
+ isPending: !1,
1096
+ profile: h
1097
+ });
1098
+ const P = sessionStorage.getItem("redirect-to") ?? "/";
1099
+ return sessionStorage.removeItem("redirect-to"), P;
1100
+ };
1101
+ getRoutes() {
1102
+ return [
1103
+ ...super.getRoutes(),
1104
+ {
1105
+ path: pe,
1106
+ element: /* @__PURE__ */ D.jsx(xe, { children: /* @__PURE__ */ D.jsx(
1107
+ Ue,
1108
+ {
1109
+ fallbackRender: ({ error: e }) => /* @__PURE__ */ D.jsx(Oe, { error: e }),
1110
+ children: /* @__PURE__ */ D.jsx(je, { handleCallback: this.handleCallback })
1111
+ }
1112
+ ) })
1113
+ }
1114
+ ];
1110
1115
  }
1111
1116
  }
1112
- const Qt = (t) => new Ht(t);
1117
+ const Ht = (t) => new It(t);
1113
1118
  export {
1114
- Re as OPENID_CALLBACK_PATH,
1115
- Ht as OpenIDAuthenticationProvider,
1116
- Qt as default
1119
+ pe as OPENID_CALLBACK_PATH,
1120
+ It as OpenIDAuthenticationProvider,
1121
+ Ht as default
1117
1122
  };
1118
1123
  //# sourceMappingURL=zudoku.auth-openid.js.map