zudoku 0.0.0-z7b86faab → 0.0.0-z8ac421f0

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 (321) hide show
  1. package/dist/app/main.js +1 -1
  2. package/dist/app/main.js.map +1 -1
  3. package/dist/config/create-plugin.d.ts +2 -0
  4. package/dist/config/create-plugin.js +55 -0
  5. package/dist/config/create-plugin.js.map +1 -0
  6. package/dist/config/loader.js +2 -2
  7. package/dist/config/loader.js.map +1 -1
  8. package/dist/config/validators/InputNavigationSchema.d.ts +174 -124
  9. package/dist/config/validators/InputNavigationSchema.js +17 -0
  10. package/dist/config/validators/InputNavigationSchema.js.map +1 -1
  11. package/dist/config/validators/NavigationSchema.d.ts +10 -2
  12. package/dist/config/validators/NavigationSchema.js +7 -0
  13. package/dist/config/validators/NavigationSchema.js.map +1 -1
  14. package/dist/config/validators/ProtectedRoutesSchema.d.ts +1 -1
  15. package/dist/config/validators/validate.d.ts +6 -5
  16. package/dist/config/validators/validate.js +2 -0
  17. package/dist/config/validators/validate.js.map +1 -1
  18. package/dist/flat-config.d.ts +36 -24
  19. package/dist/index.d.ts +2 -1
  20. package/dist/index.js +1 -0
  21. package/dist/index.js.map +1 -1
  22. package/dist/lib/components/Bootstrap.js +1 -2
  23. package/dist/lib/components/Bootstrap.js.map +1 -1
  24. package/dist/lib/components/Heading.d.ts +1 -1
  25. package/dist/lib/components/MobileTopNavigation.js +2 -1
  26. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  27. package/dist/lib/components/Slot.test.js +1 -1
  28. package/dist/lib/components/Slot.test.js.map +1 -1
  29. package/dist/lib/components/TopNavigation.d.ts +7 -1
  30. package/dist/lib/components/TopNavigation.js +7 -2
  31. package/dist/lib/components/TopNavigation.js.map +1 -1
  32. package/dist/lib/components/Zudoku.d.ts +4 -1
  33. package/dist/lib/components/Zudoku.js +4 -7
  34. package/dist/lib/components/Zudoku.js.map +1 -1
  35. package/dist/lib/components/context/ZudokuContext.d.ts +9 -4
  36. package/dist/lib/components/context/ZudokuContext.js +4 -2
  37. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  38. package/dist/lib/components/context/ZudokuProvider.js +1 -1
  39. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  40. package/dist/lib/components/context/ZudokuReactContext.d.ts +11 -0
  41. package/dist/lib/components/context/ZudokuReactContext.js +4 -0
  42. package/dist/lib/components/context/ZudokuReactContext.js.map +1 -0
  43. package/dist/lib/components/index.d.ts +18 -74
  44. package/dist/lib/components/index.js +19 -36
  45. package/dist/lib/components/index.js.map +1 -1
  46. package/dist/lib/components/navigation/Navigation.js +4 -3
  47. package/dist/lib/components/navigation/Navigation.js.map +1 -1
  48. package/dist/lib/components/navigation/NavigationCategory.js +8 -0
  49. package/dist/lib/components/navigation/NavigationCategory.js.map +1 -1
  50. package/dist/lib/components/navigation/NavigationFilterContext.d.ts +8 -0
  51. package/dist/lib/components/navigation/NavigationFilterContext.js +12 -0
  52. package/dist/lib/components/navigation/NavigationFilterContext.js.map +1 -0
  53. package/dist/lib/components/navigation/NavigationFilterInput.d.ts +3 -0
  54. package/dist/lib/components/navigation/NavigationFilterInput.js +9 -0
  55. package/dist/lib/components/navigation/NavigationFilterInput.js.map +1 -0
  56. package/dist/lib/components/navigation/NavigationItem.js +11 -1
  57. package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
  58. package/dist/lib/components/navigation/utils.d.ts +2 -1
  59. package/dist/lib/components/navigation/utils.js +22 -1
  60. package/dist/lib/components/navigation/utils.js.map +1 -1
  61. package/dist/lib/core/ZudokuContext.d.ts +2 -1
  62. package/dist/lib/core/ZudokuContext.js +3 -1
  63. package/dist/lib/core/ZudokuContext.js.map +1 -1
  64. package/dist/lib/core/__internal.d.ts +1 -0
  65. package/dist/lib/core/__internal.js +2 -0
  66. package/dist/lib/core/__internal.js.map +1 -1
  67. package/dist/lib/core/plugins.d.ts +5 -1
  68. package/dist/lib/core/plugins.js.map +1 -1
  69. package/dist/lib/core/transform-config.d.ts +4 -2
  70. package/dist/lib/core/transform-config.js +33 -13
  71. package/dist/lib/core/transform-config.js.map +1 -1
  72. package/dist/lib/core/transform-config.test.d.ts +1 -0
  73. package/dist/lib/core/transform-config.test.js +83 -0
  74. package/dist/lib/core/transform-config.test.js.map +1 -0
  75. package/dist/lib/errors/ErrorAlert.js +1 -2
  76. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  77. package/dist/lib/hooks/index.d.ts +7 -30
  78. package/dist/lib/hooks/index.js +7 -15
  79. package/dist/lib/hooks/index.js.map +1 -1
  80. package/dist/lib/hooks/useEvent.test.js +1 -1
  81. package/dist/lib/hooks/useEvent.test.js.map +1 -1
  82. package/dist/lib/oas/graphql/circular.d.ts +1 -1
  83. package/dist/lib/oas/graphql/circular.js +18 -35
  84. package/dist/lib/oas/graphql/circular.js.map +1 -1
  85. package/dist/lib/oas/graphql/circular.test.js +33 -2
  86. package/dist/lib/oas/graphql/circular.test.js.map +1 -1
  87. package/dist/lib/oas/parser/index.js +14 -5
  88. package/dist/lib/oas/parser/index.js.map +1 -1
  89. package/dist/lib/plugins/openapi/ParamInfos.js +8 -5
  90. package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -1
  91. package/dist/lib/plugins/openapi/ParameterListItem.js +1 -1
  92. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  93. package/dist/lib/plugins/openapi/playground/fileUtils.d.ts +1 -0
  94. package/dist/lib/plugins/openapi/playground/fileUtils.js +3 -0
  95. package/dist/lib/plugins/openapi/playground/fileUtils.js.map +1 -1
  96. package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.d.ts +6 -0
  97. package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.js +20 -0
  98. package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.js.map +1 -0
  99. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +7 -2
  100. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
  101. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +2 -2
  102. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
  103. package/dist/lib/ui/Alert.d.ts +3 -2
  104. package/dist/lib/ui/Alert.js +9 -5
  105. package/dist/lib/ui/Alert.js.map +1 -1
  106. package/dist/lib/ui/InputGroup.d.ts +16 -0
  107. package/dist/lib/ui/InputGroup.js +65 -0
  108. package/dist/lib/ui/InputGroup.js.map +1 -0
  109. package/dist/lib/ui/Secret.js +2 -2
  110. package/dist/lib/ui/Secret.js.map +1 -1
  111. package/dist/lib/util/flattenAllOf.d.ts +0 -2
  112. package/dist/lib/util/flattenAllOf.js +6 -46
  113. package/dist/lib/util/flattenAllOf.js.map +1 -1
  114. package/dist/lib/util/flattenAllOf.test.js +28 -1
  115. package/dist/lib/util/flattenAllOf.test.js.map +1 -1
  116. package/dist/lib/util/flattenAllOfProcessor.d.ts +2 -0
  117. package/dist/lib/util/flattenAllOfProcessor.js +48 -0
  118. package/dist/lib/util/flattenAllOfProcessor.js.map +1 -0
  119. package/dist/lib/util/readFrontmatter.js +2 -1
  120. package/dist/lib/util/readFrontmatter.js.map +1 -1
  121. package/dist/vite/api/SchemaManager.js +1 -1
  122. package/dist/vite/api/SchemaManager.js.map +1 -1
  123. package/dist/vite/api/SchemaManager.test.js +1 -1
  124. package/dist/vite/api/SchemaManager.test.js.map +1 -1
  125. package/dist/vite/build.js +91 -73
  126. package/dist/vite/build.js.map +1 -1
  127. package/dist/vite/config.js +5 -2
  128. package/dist/vite/config.js.map +1 -1
  129. package/dist/vite/mdx/remark-inject-filepath.js +5 -1
  130. package/dist/vite/mdx/remark-inject-filepath.js.map +1 -1
  131. package/dist/vite/mdx/remark-link-rewrite.js +3 -2
  132. package/dist/vite/mdx/remark-link-rewrite.js.map +1 -1
  133. package/dist/vite/plugin-config.js +16 -4
  134. package/dist/vite/plugin-config.js.map +1 -1
  135. package/dist/vite/plugin-docs.js +9 -7
  136. package/dist/vite/plugin-docs.js.map +1 -1
  137. package/dist/vite/plugin-markdown-export.js +4 -2
  138. package/dist/vite/plugin-markdown-export.js.map +1 -1
  139. package/dist/vite/plugin-theme.js +2 -1
  140. package/dist/vite/plugin-theme.js.map +1 -1
  141. package/dist/vite/prerender/prerender.js +3 -1
  142. package/dist/vite/prerender/prerender.js.map +1 -1
  143. package/dist/vite/prerender/worker.js +3 -1
  144. package/dist/vite/prerender/worker.js.map +1 -1
  145. package/lib/{ClaudeLogo-DJ9bU-sO.js → ClaudeLogo-Br8C_vTq.js} +26 -22
  146. package/lib/{ClaudeLogo-DJ9bU-sO.js.map → ClaudeLogo-Br8C_vTq.js.map} +1 -1
  147. package/lib/Drawer-Ch7927PF.js.map +1 -1
  148. package/lib/{HydrationBoundary-CNF2ZV3E.js → HydrationBoundary-CJu4vUlG.js} +6 -6
  149. package/lib/{HydrationBoundary-CNF2ZV3E.js.map → HydrationBoundary-CJu4vUlG.js.map} +1 -1
  150. package/lib/{MdxPage-stpAoBtx.js → MdxPage-C0QFAsgv.js} +8 -8
  151. package/lib/{MdxPage-stpAoBtx.js.map → MdxPage-C0QFAsgv.js.map} +1 -1
  152. package/lib/Mermaid-Chx5BPHn.js +104 -0
  153. package/lib/Mermaid-Chx5BPHn.js.map +1 -0
  154. package/lib/{OAuthErrorPage-DJ811Bn_.js → OAuthErrorPage-CFz_gBFx.js} +22 -19
  155. package/lib/{OAuthErrorPage-DJ811Bn_.js.map → OAuthErrorPage-CFz_gBFx.js.map} +1 -1
  156. package/lib/{OasProvider-CS_ASmBB.js → OasProvider-BwIOIlky.js} +3 -3
  157. package/lib/{OasProvider-CS_ASmBB.js.map → OasProvider-BwIOIlky.js.map} +1 -1
  158. package/lib/OperationList-DYRzbPJu.js +5908 -0
  159. package/lib/OperationList-DYRzbPJu.js.map +1 -0
  160. package/lib/{RouteGuard--A04ESy8.js → RouteGuard-CVs3yvEs.js} +5 -5
  161. package/lib/{RouteGuard--A04ESy8.js.map → RouteGuard-CVs3yvEs.js.map} +1 -1
  162. package/lib/{SchemaList-BJZJv1gD.js → SchemaList-D4FEyoDV.js} +8 -8
  163. package/lib/{SchemaList-BJZJv1gD.js.map → SchemaList-D4FEyoDV.js.map} +1 -1
  164. package/lib/{SchemaView-U4JMYB3N.js → SchemaView-ScvkhsYE.js} +116 -110
  165. package/lib/SchemaView-ScvkhsYE.js.map +1 -0
  166. package/lib/{Secret-BDBqq4p3.js → Secret-DUpgv4V3.js} +92 -72
  167. package/lib/Secret-DUpgv4V3.js.map +1 -0
  168. package/lib/{SignUp-DCBViNUi.js → SignUp-Dug1jAGC.js} +31 -26
  169. package/lib/{SignUp-DCBViNUi.js.map → SignUp-Dug1jAGC.js.map} +1 -1
  170. package/lib/{SyntaxHighlight-Dshjn3Zf.js → SyntaxHighlight-BMu0b_hF.js} +9 -9
  171. package/lib/{SyntaxHighlight-Dshjn3Zf.js.map → SyntaxHighlight-BMu0b_hF.js.map} +1 -1
  172. package/lib/{Toc-Cgz6CPiE.js → Toc-BiJ2YL0O.js} +2 -2
  173. package/lib/{Toc-Cgz6CPiE.js.map → Toc-BiJ2YL0O.js.map} +1 -1
  174. package/lib/{index-CL8eDnQW.js → Zudoku-iyiXgWFY.js} +2996 -2859
  175. package/lib/Zudoku-iyiXgWFY.js.map +1 -0
  176. package/lib/ZudokuContext-CYyb_PB_.js +175 -0
  177. package/lib/ZudokuContext-CYyb_PB_.js.map +1 -0
  178. package/lib/ZudokuReactContext-DGJAP1sN.js +222 -0
  179. package/lib/ZudokuReactContext-DGJAP1sN.js.map +1 -0
  180. package/lib/chunk-EPOLDU6W-C6C8jAwd.js.map +1 -1
  181. package/lib/{circular-BmMJjG1v.js → circular-BOpxmAie.js} +1327 -1346
  182. package/lib/{circular-BmMJjG1v.js.map → circular-BOpxmAie.js.map} +1 -1
  183. package/lib/createServer-BunbJzB5.js +13038 -0
  184. package/lib/createServer-BunbJzB5.js.map +1 -0
  185. package/lib/{errors-b9I-fAOY.js → errors-B77S9iOc.js} +3 -3
  186. package/lib/{errors-b9I-fAOY.js.map → errors-B77S9iOc.js.map} +1 -1
  187. package/lib/{firebase-BCXX7Qv5.js → firebase-C7XKRGLf.js} +26 -25
  188. package/lib/{firebase-BCXX7Qv5.js.map → firebase-C7XKRGLf.js.map} +1 -1
  189. package/lib/{hook-BGlHBdET.js → hook-Dz_n9SoE.js} +16 -15
  190. package/lib/{hook-BGlHBdET.js.map → hook-Dz_n9SoE.js.map} +1 -1
  191. package/lib/{index-UOLtazB8.js → index-BDp2MTiq.js} +2 -2
  192. package/lib/{index-UOLtazB8.js.map → index-BDp2MTiq.js.map} +1 -1
  193. package/lib/{index-O9RHI87z.js → index-Bx29qHVi.js} +589 -551
  194. package/lib/index-Bx29qHVi.js.map +1 -0
  195. package/lib/index-CrcNWbel.js.map +1 -1
  196. package/lib/index-DAWHN3cH.js +86 -0
  197. package/lib/index-DAWHN3cH.js.map +1 -0
  198. package/lib/index.esm-BYObtETB.js.map +1 -1
  199. package/lib/{index.esm-B_0dvNjB.js → index.esm-Ca5zvoff.js} +20 -20
  200. package/lib/{index.esm-B_0dvNjB.js.map → index.esm-Ca5zvoff.js.map} +1 -1
  201. package/lib/{index.esm-C5CBsVzN.js → index.esm-Cth49JBv.js} +2 -2
  202. package/lib/index.esm-Cth49JBv.js.map +1 -0
  203. package/lib/{invariant-BJAl77rw.js → invariant-B_t_F2s_.js} +3 -3
  204. package/lib/{invariant-BJAl77rw.js.map → invariant-B_t_F2s_.js.map} +1 -1
  205. package/lib/jsx-runtime-BzflLqGi.js.map +1 -1
  206. package/lib/{mutation-BISOc7OM.js → mutation-B7eFBLZY.js} +2 -2
  207. package/lib/{mutation-BISOc7OM.js.map → mutation-B7eFBLZY.js.map} +1 -1
  208. package/lib/ui/Alert.js +32 -20
  209. package/lib/ui/Alert.js.map +1 -1
  210. package/lib/ui/Carousel.js.map +1 -1
  211. package/lib/ui/InputGroup.js +155 -0
  212. package/lib/ui/InputGroup.js.map +1 -0
  213. package/lib/ui/Secret.js +2 -2
  214. package/lib/ui/Secret.js.map +1 -1
  215. package/lib/ui/SyntaxHighlight.js +3 -3
  216. package/lib/useExposedProps-CzTDfXfq.js +30 -0
  217. package/lib/useExposedProps-CzTDfXfq.js.map +1 -0
  218. package/lib/{useMutation-CFMGlAMW.js → useMutation-CErliDZ9.js} +5 -5
  219. package/lib/{useMutation-CFMGlAMW.js.map → useMutation-CErliDZ9.js.map} +1 -1
  220. package/lib/{useSuspenseQuery-CSB_rVek.js → useQuery-ht7aWJ3S.js} +432 -446
  221. package/lib/useQuery-ht7aWJ3S.js.map +1 -0
  222. package/lib/useSuspenseQuery-DQH4Bmc2.js +18 -0
  223. package/lib/useSuspenseQuery-DQH4Bmc2.js.map +1 -0
  224. package/lib/zudoku.__internal.js +1519 -1033
  225. package/lib/zudoku.__internal.js.map +1 -1
  226. package/lib/zudoku.auth-auth0.js +6 -5
  227. package/lib/zudoku.auth-auth0.js.map +1 -1
  228. package/lib/zudoku.auth-azureb2c.js +14 -13
  229. package/lib/zudoku.auth-azureb2c.js.map +1 -1
  230. package/lib/zudoku.auth-clerk.js +2 -2
  231. package/lib/zudoku.auth-firebase.js +5 -5
  232. package/lib/zudoku.auth-openid.js +8 -7
  233. package/lib/zudoku.auth-openid.js.map +1 -1
  234. package/lib/zudoku.auth-supabase.js +4 -4
  235. package/lib/zudoku.components.js +31 -29
  236. package/lib/zudoku.components.js.map +1 -1
  237. package/lib/zudoku.hooks.js +24 -11
  238. package/lib/zudoku.hooks.js.map +1 -1
  239. package/lib/zudoku.mermaid.js +5 -4
  240. package/lib/zudoku.mermaid.js.map +1 -1
  241. package/lib/zudoku.plugin-api-catalog.js +41 -36
  242. package/lib/zudoku.plugin-api-catalog.js.map +1 -1
  243. package/lib/zudoku.plugin-api-keys.js +156 -153
  244. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  245. package/lib/zudoku.plugin-custom-pages.js +1 -1
  246. package/lib/zudoku.plugin-markdown.js +1 -1
  247. package/lib/zudoku.plugin-openapi.js +2 -2
  248. package/lib/zudoku.plugin-search-pagefind.js +19 -18
  249. package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
  250. package/lib/zudoku.plugins.js.map +1 -1
  251. package/lib/zudoku.react-query.js +26 -25
  252. package/lib/zudoku.react-query.js.map +1 -1
  253. package/lib/zudoku.router.js.map +1 -1
  254. package/package.json +17 -10
  255. package/src/app/defaultTheme.css +4 -0
  256. package/src/app/main.css +2 -0
  257. package/src/app/main.tsx +1 -1
  258. package/src/lib/components/Bootstrap.tsx +1 -4
  259. package/src/lib/components/MobileTopNavigation.tsx +13 -8
  260. package/src/lib/components/Slot.test.tsx +1 -1
  261. package/src/lib/components/TopNavigation.tsx +25 -7
  262. package/src/lib/components/Zudoku.tsx +18 -14
  263. package/src/lib/components/context/ZudokuContext.ts +3 -6
  264. package/src/lib/components/context/ZudokuProvider.tsx +1 -1
  265. package/src/lib/components/context/ZudokuReactContext.tsx +17 -0
  266. package/src/lib/components/index.ts +19 -39
  267. package/src/lib/components/navigation/Navigation.tsx +4 -3
  268. package/src/lib/components/navigation/NavigationCategory.tsx +9 -0
  269. package/src/lib/components/navigation/NavigationFilterContext.tsx +28 -0
  270. package/src/lib/components/navigation/NavigationFilterInput.tsx +35 -0
  271. package/src/lib/components/navigation/NavigationItem.tsx +17 -1
  272. package/src/lib/components/navigation/utils.ts +32 -1
  273. package/src/lib/core/ZudokuContext.ts +7 -1
  274. package/src/lib/core/__internal.tsx +2 -0
  275. package/src/lib/core/plugins.ts +7 -3
  276. package/src/lib/core/transform-config.test.tsx +99 -0
  277. package/src/lib/core/transform-config.ts +57 -19
  278. package/src/lib/errors/ErrorAlert.tsx +1 -6
  279. package/src/lib/hooks/index.ts +7 -16
  280. package/src/lib/hooks/useEvent.test.tsx +1 -1
  281. package/src/lib/oas/graphql/circular.test.ts +37 -2
  282. package/src/lib/oas/graphql/circular.ts +25 -51
  283. package/src/lib/oas/parser/index.ts +17 -6
  284. package/src/lib/plugins/openapi/ParamInfos.tsx +10 -5
  285. package/src/lib/plugins/openapi/ParameterListItem.tsx +1 -0
  286. package/src/lib/plugins/openapi/playground/fileUtils.ts +4 -0
  287. package/src/lib/plugins/openapi/playground/result-panel/AudioPlayer.tsx +50 -0
  288. package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +33 -17
  289. package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +2 -0
  290. package/src/lib/ui/Alert.tsx +17 -5
  291. package/src/lib/ui/InputGroup.tsx +168 -0
  292. package/src/lib/ui/Secret.tsx +2 -2
  293. package/src/lib/util/flattenAllOf.test.ts +34 -1
  294. package/src/lib/util/flattenAllOf.ts +7 -57
  295. package/src/lib/util/flattenAllOfProcessor.ts +58 -0
  296. package/src/lib/util/readFrontmatter.ts +2 -1
  297. package/src/zuplo/enrich-with-zuplo-mcp.ts +168 -0
  298. package/src/zuplo/enrich-with-zuplo.ts +254 -0
  299. package/src/zuplo/policy-types.ts +46 -0
  300. package/src/zuplo/with-zuplo-processors.ts +35 -0
  301. package/src/zuplo/with-zuplo.ts +14 -0
  302. package/lib/Mermaid-Koc3z8mU.js +0 -102
  303. package/lib/Mermaid-Koc3z8mU.js.map +0 -1
  304. package/lib/OperationList-Dq_AB4W9.js +0 -5820
  305. package/lib/OperationList-Dq_AB4W9.js.map +0 -1
  306. package/lib/SchemaView-U4JMYB3N.js.map +0 -1
  307. package/lib/Secret-BDBqq4p3.js.map +0 -1
  308. package/lib/Separator-BXt1LYnm.js +0 -27
  309. package/lib/Separator-BXt1LYnm.js.map +0 -1
  310. package/lib/ZudokuContext-BZB1TWdT.js +0 -387
  311. package/lib/ZudokuContext-BZB1TWdT.js.map +0 -1
  312. package/lib/___vite-browser-external_commonjs-proxy-BttVsNON.js +0 -9
  313. package/lib/___vite-browser-external_commonjs-proxy-BttVsNON.js.map +0 -1
  314. package/lib/createServer-CLSZ7hWJ.js +0 -16693
  315. package/lib/createServer-CLSZ7hWJ.js.map +0 -1
  316. package/lib/index-CL8eDnQW.js.map +0 -1
  317. package/lib/index-DBjOT2H1.js +0 -133
  318. package/lib/index-DBjOT2H1.js.map +0 -1
  319. package/lib/index-O9RHI87z.js.map +0 -1
  320. package/lib/index.esm-C5CBsVzN.js.map +0 -1
  321. package/lib/useSuspenseQuery-CSB_rVek.js.map +0 -1
@@ -24,35 +24,41 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
24
24
  file: z.ZodString;
25
25
  path: z.ZodOptional<z.ZodString>;
26
26
  icon: z.ZodOptional<z.ZodEnum<{
27
- info: "info";
27
+ slice: "slice";
28
+ map: "map";
29
+ filter: "filter";
30
+ key: "key";
28
31
  replace: "replace";
29
32
  search: "search";
30
- slice: "slice";
31
33
  split: "split";
32
34
  repeat: "repeat";
33
35
  anchor: "anchor";
34
36
  bold: "bold";
35
37
  link: "link";
38
+ info: "info";
39
+ tags: "tags";
40
+ contact: "contact";
41
+ type: "type";
36
42
  binary: "binary";
37
- map: "map";
38
- filter: "filter";
43
+ cookie: "cookie";
44
+ list: "list";
45
+ server: "server";
46
+ tag: "tag";
47
+ file: "file";
48
+ delete: "delete";
49
+ code: "code";
39
50
  copy: "copy";
40
51
  focus: "focus";
41
52
  pause: "pause";
42
53
  play: "play";
43
54
  scroll: "scroll";
44
- key: "key";
45
55
  merge: "merge";
46
- file: "file";
47
- code: "code";
48
56
  ghost: "ghost";
49
57
  expand: "expand";
50
- type: "type";
51
58
  send: "send";
52
59
  grid: "grid";
53
60
  group: "group";
54
61
  heading: "heading";
55
- list: "list";
56
62
  menu: "menu";
57
63
  navigation: "navigation";
58
64
  option: "option";
@@ -63,27 +69,15 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
63
69
  text: "text";
64
70
  mouse: "mouse";
65
71
  pen: "pen";
66
- target: "target";
67
- radius: "radius";
68
- scale: "scale";
69
- x: "x";
70
- server: "server";
71
- atom: "atom";
72
- rss: "rss";
73
- coffee: "coffee";
74
- diff: "diff";
75
- fish: "fish";
76
- "git-commit": "git-commit";
77
- move: "move";
78
- regex: "regex";
79
- shell: "shell";
80
- turtle: "turtle";
81
72
  section: "section";
82
73
  video: "video";
83
74
  circle: "circle";
84
75
  image: "image";
85
76
  view: "view";
86
- settings: "settings";
77
+ target: "target";
78
+ radius: "radius";
79
+ scale: "scale";
80
+ x: "x";
87
81
  baseline: "baseline";
88
82
  terminal: "terminal";
89
83
  square: "square";
@@ -225,6 +219,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
225
219
  asterisk: "asterisk";
226
220
  "asterisk-square": "asterisk-square";
227
221
  "at-sign": "at-sign";
222
+ atom: "atom";
228
223
  "audio-lines": "audio-lines";
229
224
  "audio-waveform": "audio-waveform";
230
225
  award: "award";
@@ -596,6 +591,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
596
591
  "code-xml": "code-xml";
597
592
  codepen: "codepen";
598
593
  codesandbox: "codesandbox";
594
+ coffee: "coffee";
599
595
  cog: "cog";
600
596
  coins: "coins";
601
597
  columns: "columns";
@@ -612,12 +608,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
612
608
  "concierge-bell": "concierge-bell";
613
609
  cone: "cone";
614
610
  construction: "construction";
615
- contact: "contact";
616
611
  "contact-2": "contact-2";
617
612
  "contact-round": "contact-round";
618
613
  container: "container";
619
614
  contrast: "contrast";
620
- cookie: "cookie";
621
615
  "cooking-pot": "cooking-pot";
622
616
  "copy-check": "copy-check";
623
617
  "copy-minus": "copy-minus";
@@ -653,7 +647,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
653
647
  "database-zap": "database-zap";
654
648
  "decimals-arrow-left": "decimals-arrow-left";
655
649
  "decimals-arrow-right": "decimals-arrow-right";
656
- delete: "delete";
657
650
  dessert: "dessert";
658
651
  diameter: "diameter";
659
652
  diamond: "diamond";
@@ -667,6 +660,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
667
660
  "dice-5": "dice-5";
668
661
  "dice-6": "dice-6";
669
662
  dices: "dices";
663
+ diff: "diff";
670
664
  disc: "disc";
671
665
  "disc-2": "disc-2";
672
666
  "disc-3": "disc-3";
@@ -805,6 +799,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
805
799
  "filter-x": "filter-x";
806
800
  fingerprint: "fingerprint";
807
801
  "fire-extinguisher": "fire-extinguisher";
802
+ fish: "fish";
808
803
  "fish-off": "fish-off";
809
804
  "fish-symbol": "fish-symbol";
810
805
  flag: "flag";
@@ -892,6 +887,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
892
887
  gift: "gift";
893
888
  "git-branch": "git-branch";
894
889
  "git-branch-plus": "git-branch-plus";
890
+ "git-commit": "git-commit";
895
891
  "git-commit-horizontal": "git-commit-horizontal";
896
892
  "git-commit-vertical": "git-commit-vertical";
897
893
  "git-compare": "git-compare";
@@ -1214,6 +1210,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1214
1210
  "mouse-pointer-ban": "mouse-pointer-ban";
1215
1211
  "mouse-pointer-click": "mouse-pointer-click";
1216
1212
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
1213
+ move: "move";
1217
1214
  "move-3-d": "move-3-d";
1218
1215
  "move-3d": "move-3d";
1219
1216
  "move-diagonal": "move-diagonal";
@@ -1418,6 +1415,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1418
1415
  "refresh-cw": "refresh-cw";
1419
1416
  "refresh-cw-off": "refresh-cw-off";
1420
1417
  refrigerator: "refrigerator";
1418
+ regex: "regex";
1421
1419
  "remove-formatting": "remove-formatting";
1422
1420
  "repeat-1": "repeat-1";
1423
1421
  "repeat-2": "repeat-2";
@@ -1444,6 +1442,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1444
1442
  "rows-2": "rows-2";
1445
1443
  "rows-3": "rows-3";
1446
1444
  "rows-4": "rows-4";
1445
+ rss: "rss";
1447
1446
  ruler: "ruler";
1448
1447
  "ruler-dimension-line": "ruler-dimension-line";
1449
1448
  "russian-ruble": "russian-ruble";
@@ -1490,11 +1489,13 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1490
1489
  "server-cog": "server-cog";
1491
1490
  "server-crash": "server-crash";
1492
1491
  "server-off": "server-off";
1492
+ settings: "settings";
1493
1493
  "settings-2": "settings-2";
1494
1494
  shapes: "shapes";
1495
1495
  share: "share";
1496
1496
  "share-2": "share-2";
1497
1497
  sheet: "sheet";
1498
+ shell: "shell";
1498
1499
  shield: "shield";
1499
1500
  "shield-alert": "shield-alert";
1500
1501
  "shield-ban": "shield-ban";
@@ -1687,8 +1688,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1687
1688
  tablet: "tablet";
1688
1689
  "tablet-smartphone": "tablet-smartphone";
1689
1690
  tablets: "tablets";
1690
- tag: "tag";
1691
- tags: "tags";
1692
1691
  "tally-1": "tally-1";
1693
1692
  "tally-2": "tally-2";
1694
1693
  "tally-3": "tally-3";
@@ -1769,6 +1768,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1769
1768
  "truck-electric": "truck-electric";
1770
1769
  "turkish-lira": "turkish-lira";
1771
1770
  turntable: "turntable";
1771
+ turtle: "turtle";
1772
1772
  tv: "tv";
1773
1773
  "tv-2": "tv-2";
1774
1774
  "tv-minimal": "tv-minimal";
@@ -1899,10 +1899,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1899
1899
  label: z.ZodString;
1900
1900
  color: z.ZodEnum<{
1901
1901
  outline: "outline";
1902
- red: "red";
1903
1902
  green: "green";
1904
1903
  blue: "blue";
1905
1904
  yellow: "yellow";
1905
+ red: "red";
1906
1906
  purple: "purple";
1907
1907
  indigo: "indigo";
1908
1908
  gray: "gray";
@@ -1932,35 +1932,41 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
1932
1932
  _blank: "_blank";
1933
1933
  }>>;
1934
1934
  icon: z.ZodOptional<z.ZodEnum<{
1935
- info: "info";
1935
+ slice: "slice";
1936
+ map: "map";
1937
+ filter: "filter";
1938
+ key: "key";
1936
1939
  replace: "replace";
1937
1940
  search: "search";
1938
- slice: "slice";
1939
1941
  split: "split";
1940
1942
  repeat: "repeat";
1941
1943
  anchor: "anchor";
1942
1944
  bold: "bold";
1943
1945
  link: "link";
1946
+ info: "info";
1947
+ tags: "tags";
1948
+ contact: "contact";
1949
+ type: "type";
1944
1950
  binary: "binary";
1945
- map: "map";
1946
- filter: "filter";
1951
+ cookie: "cookie";
1952
+ list: "list";
1953
+ server: "server";
1954
+ tag: "tag";
1955
+ file: "file";
1956
+ delete: "delete";
1957
+ code: "code";
1947
1958
  copy: "copy";
1948
1959
  focus: "focus";
1949
1960
  pause: "pause";
1950
1961
  play: "play";
1951
1962
  scroll: "scroll";
1952
- key: "key";
1953
1963
  merge: "merge";
1954
- file: "file";
1955
- code: "code";
1956
1964
  ghost: "ghost";
1957
1965
  expand: "expand";
1958
- type: "type";
1959
1966
  send: "send";
1960
1967
  grid: "grid";
1961
1968
  group: "group";
1962
1969
  heading: "heading";
1963
- list: "list";
1964
1970
  menu: "menu";
1965
1971
  navigation: "navigation";
1966
1972
  option: "option";
@@ -1971,27 +1977,15 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
1971
1977
  text: "text";
1972
1978
  mouse: "mouse";
1973
1979
  pen: "pen";
1974
- target: "target";
1975
- radius: "radius";
1976
- scale: "scale";
1977
- x: "x";
1978
- server: "server";
1979
- atom: "atom";
1980
- rss: "rss";
1981
- coffee: "coffee";
1982
- diff: "diff";
1983
- fish: "fish";
1984
- "git-commit": "git-commit";
1985
- move: "move";
1986
- regex: "regex";
1987
- shell: "shell";
1988
- turtle: "turtle";
1989
1980
  section: "section";
1990
1981
  video: "video";
1991
1982
  circle: "circle";
1992
1983
  image: "image";
1993
1984
  view: "view";
1994
- settings: "settings";
1985
+ target: "target";
1986
+ radius: "radius";
1987
+ scale: "scale";
1988
+ x: "x";
1995
1989
  baseline: "baseline";
1996
1990
  terminal: "terminal";
1997
1991
  square: "square";
@@ -2133,6 +2127,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2133
2127
  asterisk: "asterisk";
2134
2128
  "asterisk-square": "asterisk-square";
2135
2129
  "at-sign": "at-sign";
2130
+ atom: "atom";
2136
2131
  "audio-lines": "audio-lines";
2137
2132
  "audio-waveform": "audio-waveform";
2138
2133
  award: "award";
@@ -2504,6 +2499,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2504
2499
  "code-xml": "code-xml";
2505
2500
  codepen: "codepen";
2506
2501
  codesandbox: "codesandbox";
2502
+ coffee: "coffee";
2507
2503
  cog: "cog";
2508
2504
  coins: "coins";
2509
2505
  columns: "columns";
@@ -2520,12 +2516,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2520
2516
  "concierge-bell": "concierge-bell";
2521
2517
  cone: "cone";
2522
2518
  construction: "construction";
2523
- contact: "contact";
2524
2519
  "contact-2": "contact-2";
2525
2520
  "contact-round": "contact-round";
2526
2521
  container: "container";
2527
2522
  contrast: "contrast";
2528
- cookie: "cookie";
2529
2523
  "cooking-pot": "cooking-pot";
2530
2524
  "copy-check": "copy-check";
2531
2525
  "copy-minus": "copy-minus";
@@ -2561,7 +2555,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2561
2555
  "database-zap": "database-zap";
2562
2556
  "decimals-arrow-left": "decimals-arrow-left";
2563
2557
  "decimals-arrow-right": "decimals-arrow-right";
2564
- delete: "delete";
2565
2558
  dessert: "dessert";
2566
2559
  diameter: "diameter";
2567
2560
  diamond: "diamond";
@@ -2575,6 +2568,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2575
2568
  "dice-5": "dice-5";
2576
2569
  "dice-6": "dice-6";
2577
2570
  dices: "dices";
2571
+ diff: "diff";
2578
2572
  disc: "disc";
2579
2573
  "disc-2": "disc-2";
2580
2574
  "disc-3": "disc-3";
@@ -2713,6 +2707,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2713
2707
  "filter-x": "filter-x";
2714
2708
  fingerprint: "fingerprint";
2715
2709
  "fire-extinguisher": "fire-extinguisher";
2710
+ fish: "fish";
2716
2711
  "fish-off": "fish-off";
2717
2712
  "fish-symbol": "fish-symbol";
2718
2713
  flag: "flag";
@@ -2800,6 +2795,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2800
2795
  gift: "gift";
2801
2796
  "git-branch": "git-branch";
2802
2797
  "git-branch-plus": "git-branch-plus";
2798
+ "git-commit": "git-commit";
2803
2799
  "git-commit-horizontal": "git-commit-horizontal";
2804
2800
  "git-commit-vertical": "git-commit-vertical";
2805
2801
  "git-compare": "git-compare";
@@ -3122,6 +3118,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3122
3118
  "mouse-pointer-ban": "mouse-pointer-ban";
3123
3119
  "mouse-pointer-click": "mouse-pointer-click";
3124
3120
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
3121
+ move: "move";
3125
3122
  "move-3-d": "move-3-d";
3126
3123
  "move-3d": "move-3d";
3127
3124
  "move-diagonal": "move-diagonal";
@@ -3326,6 +3323,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3326
3323
  "refresh-cw": "refresh-cw";
3327
3324
  "refresh-cw-off": "refresh-cw-off";
3328
3325
  refrigerator: "refrigerator";
3326
+ regex: "regex";
3329
3327
  "remove-formatting": "remove-formatting";
3330
3328
  "repeat-1": "repeat-1";
3331
3329
  "repeat-2": "repeat-2";
@@ -3352,6 +3350,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3352
3350
  "rows-2": "rows-2";
3353
3351
  "rows-3": "rows-3";
3354
3352
  "rows-4": "rows-4";
3353
+ rss: "rss";
3355
3354
  ruler: "ruler";
3356
3355
  "ruler-dimension-line": "ruler-dimension-line";
3357
3356
  "russian-ruble": "russian-ruble";
@@ -3398,11 +3397,13 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3398
3397
  "server-cog": "server-cog";
3399
3398
  "server-crash": "server-crash";
3400
3399
  "server-off": "server-off";
3400
+ settings: "settings";
3401
3401
  "settings-2": "settings-2";
3402
3402
  shapes: "shapes";
3403
3403
  share: "share";
3404
3404
  "share-2": "share-2";
3405
3405
  sheet: "sheet";
3406
+ shell: "shell";
3406
3407
  shield: "shield";
3407
3408
  "shield-alert": "shield-alert";
3408
3409
  "shield-ban": "shield-ban";
@@ -3595,8 +3596,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3595
3596
  tablet: "tablet";
3596
3597
  "tablet-smartphone": "tablet-smartphone";
3597
3598
  tablets: "tablets";
3598
- tag: "tag";
3599
- tags: "tags";
3600
3599
  "tally-1": "tally-1";
3601
3600
  "tally-2": "tally-2";
3602
3601
  "tally-3": "tally-3";
@@ -3677,6 +3676,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3677
3676
  "truck-electric": "truck-electric";
3678
3677
  "turkish-lira": "turkish-lira";
3679
3678
  turntable: "turntable";
3679
+ turtle: "turtle";
3680
3680
  tv: "tv";
3681
3681
  "tv-2": "tv-2";
3682
3682
  "tv-minimal": "tv-minimal";
@@ -3806,10 +3806,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3806
3806
  label: z.ZodString;
3807
3807
  color: z.ZodEnum<{
3808
3808
  outline: "outline";
3809
- red: "red";
3810
3809
  green: "green";
3811
3810
  blue: "blue";
3812
3811
  yellow: "yellow";
3812
+ red: "red";
3813
3813
  purple: "purple";
3814
3814
  indigo: "indigo";
3815
3815
  gray: "gray";
@@ -3836,35 +3836,41 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
3836
3836
  label: z.ZodOptional<z.ZodString>;
3837
3837
  element: z.ZodAny;
3838
3838
  icon: z.ZodOptional<z.ZodEnum<{
3839
- info: "info";
3839
+ slice: "slice";
3840
+ map: "map";
3841
+ filter: "filter";
3842
+ key: "key";
3840
3843
  replace: "replace";
3841
3844
  search: "search";
3842
- slice: "slice";
3843
3845
  split: "split";
3844
3846
  repeat: "repeat";
3845
3847
  anchor: "anchor";
3846
3848
  bold: "bold";
3847
3849
  link: "link";
3850
+ info: "info";
3851
+ tags: "tags";
3852
+ contact: "contact";
3853
+ type: "type";
3848
3854
  binary: "binary";
3849
- map: "map";
3850
- filter: "filter";
3855
+ cookie: "cookie";
3856
+ list: "list";
3857
+ server: "server";
3858
+ tag: "tag";
3859
+ file: "file";
3860
+ delete: "delete";
3861
+ code: "code";
3851
3862
  copy: "copy";
3852
3863
  focus: "focus";
3853
3864
  pause: "pause";
3854
3865
  play: "play";
3855
3866
  scroll: "scroll";
3856
- key: "key";
3857
3867
  merge: "merge";
3858
- file: "file";
3859
- code: "code";
3860
3868
  ghost: "ghost";
3861
3869
  expand: "expand";
3862
- type: "type";
3863
3870
  send: "send";
3864
3871
  grid: "grid";
3865
3872
  group: "group";
3866
3873
  heading: "heading";
3867
- list: "list";
3868
3874
  menu: "menu";
3869
3875
  navigation: "navigation";
3870
3876
  option: "option";
@@ -3875,27 +3881,15 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
3875
3881
  text: "text";
3876
3882
  mouse: "mouse";
3877
3883
  pen: "pen";
3878
- target: "target";
3879
- radius: "radius";
3880
- scale: "scale";
3881
- x: "x";
3882
- server: "server";
3883
- atom: "atom";
3884
- rss: "rss";
3885
- coffee: "coffee";
3886
- diff: "diff";
3887
- fish: "fish";
3888
- "git-commit": "git-commit";
3889
- move: "move";
3890
- regex: "regex";
3891
- shell: "shell";
3892
- turtle: "turtle";
3893
3884
  section: "section";
3894
3885
  video: "video";
3895
3886
  circle: "circle";
3896
3887
  image: "image";
3897
3888
  view: "view";
3898
- settings: "settings";
3889
+ target: "target";
3890
+ radius: "radius";
3891
+ scale: "scale";
3892
+ x: "x";
3899
3893
  baseline: "baseline";
3900
3894
  terminal: "terminal";
3901
3895
  square: "square";
@@ -4037,6 +4031,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4037
4031
  asterisk: "asterisk";
4038
4032
  "asterisk-square": "asterisk-square";
4039
4033
  "at-sign": "at-sign";
4034
+ atom: "atom";
4040
4035
  "audio-lines": "audio-lines";
4041
4036
  "audio-waveform": "audio-waveform";
4042
4037
  award: "award";
@@ -4408,6 +4403,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4408
4403
  "code-xml": "code-xml";
4409
4404
  codepen: "codepen";
4410
4405
  codesandbox: "codesandbox";
4406
+ coffee: "coffee";
4411
4407
  cog: "cog";
4412
4408
  coins: "coins";
4413
4409
  columns: "columns";
@@ -4424,12 +4420,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4424
4420
  "concierge-bell": "concierge-bell";
4425
4421
  cone: "cone";
4426
4422
  construction: "construction";
4427
- contact: "contact";
4428
4423
  "contact-2": "contact-2";
4429
4424
  "contact-round": "contact-round";
4430
4425
  container: "container";
4431
4426
  contrast: "contrast";
4432
- cookie: "cookie";
4433
4427
  "cooking-pot": "cooking-pot";
4434
4428
  "copy-check": "copy-check";
4435
4429
  "copy-minus": "copy-minus";
@@ -4465,7 +4459,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4465
4459
  "database-zap": "database-zap";
4466
4460
  "decimals-arrow-left": "decimals-arrow-left";
4467
4461
  "decimals-arrow-right": "decimals-arrow-right";
4468
- delete: "delete";
4469
4462
  dessert: "dessert";
4470
4463
  diameter: "diameter";
4471
4464
  diamond: "diamond";
@@ -4479,6 +4472,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4479
4472
  "dice-5": "dice-5";
4480
4473
  "dice-6": "dice-6";
4481
4474
  dices: "dices";
4475
+ diff: "diff";
4482
4476
  disc: "disc";
4483
4477
  "disc-2": "disc-2";
4484
4478
  "disc-3": "disc-3";
@@ -4617,6 +4611,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4617
4611
  "filter-x": "filter-x";
4618
4612
  fingerprint: "fingerprint";
4619
4613
  "fire-extinguisher": "fire-extinguisher";
4614
+ fish: "fish";
4620
4615
  "fish-off": "fish-off";
4621
4616
  "fish-symbol": "fish-symbol";
4622
4617
  flag: "flag";
@@ -4704,6 +4699,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4704
4699
  gift: "gift";
4705
4700
  "git-branch": "git-branch";
4706
4701
  "git-branch-plus": "git-branch-plus";
4702
+ "git-commit": "git-commit";
4707
4703
  "git-commit-horizontal": "git-commit-horizontal";
4708
4704
  "git-commit-vertical": "git-commit-vertical";
4709
4705
  "git-compare": "git-compare";
@@ -5026,6 +5022,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5026
5022
  "mouse-pointer-ban": "mouse-pointer-ban";
5027
5023
  "mouse-pointer-click": "mouse-pointer-click";
5028
5024
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
5025
+ move: "move";
5029
5026
  "move-3-d": "move-3-d";
5030
5027
  "move-3d": "move-3d";
5031
5028
  "move-diagonal": "move-diagonal";
@@ -5230,6 +5227,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5230
5227
  "refresh-cw": "refresh-cw";
5231
5228
  "refresh-cw-off": "refresh-cw-off";
5232
5229
  refrigerator: "refrigerator";
5230
+ regex: "regex";
5233
5231
  "remove-formatting": "remove-formatting";
5234
5232
  "repeat-1": "repeat-1";
5235
5233
  "repeat-2": "repeat-2";
@@ -5256,6 +5254,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5256
5254
  "rows-2": "rows-2";
5257
5255
  "rows-3": "rows-3";
5258
5256
  "rows-4": "rows-4";
5257
+ rss: "rss";
5259
5258
  ruler: "ruler";
5260
5259
  "ruler-dimension-line": "ruler-dimension-line";
5261
5260
  "russian-ruble": "russian-ruble";
@@ -5302,11 +5301,13 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5302
5301
  "server-cog": "server-cog";
5303
5302
  "server-crash": "server-crash";
5304
5303
  "server-off": "server-off";
5304
+ settings: "settings";
5305
5305
  "settings-2": "settings-2";
5306
5306
  shapes: "shapes";
5307
5307
  share: "share";
5308
5308
  "share-2": "share-2";
5309
5309
  sheet: "sheet";
5310
+ shell: "shell";
5310
5311
  shield: "shield";
5311
5312
  "shield-alert": "shield-alert";
5312
5313
  "shield-ban": "shield-ban";
@@ -5499,8 +5500,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5499
5500
  tablet: "tablet";
5500
5501
  "tablet-smartphone": "tablet-smartphone";
5501
5502
  tablets: "tablets";
5502
- tag: "tag";
5503
- tags: "tags";
5504
5503
  "tally-1": "tally-1";
5505
5504
  "tally-2": "tally-2";
5506
5505
  "tally-3": "tally-3";
@@ -5581,6 +5580,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5581
5580
  "truck-electric": "truck-electric";
5582
5581
  "turkish-lira": "turkish-lira";
5583
5582
  turntable: "turntable";
5583
+ turtle: "turtle";
5584
5584
  tv: "tv";
5585
5585
  "tv-2": "tv-2";
5586
5586
  "tv-minimal": "tv-minimal";
@@ -5710,10 +5710,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5710
5710
  label: z.ZodString;
5711
5711
  color: z.ZodEnum<{
5712
5712
  outline: "outline";
5713
- red: "red";
5714
5713
  green: "green";
5715
5714
  blue: "blue";
5716
5715
  yellow: "yellow";
5716
+ red: "red";
5717
5717
  purple: "purple";
5718
5718
  indigo: "indigo";
5719
5719
  gray: "gray";
@@ -5738,38 +5738,91 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5738
5738
  none: "none";
5739
5739
  }>>;
5740
5740
  }, z.core.$strip>;
5741
+ declare const InputNavigationSeparatorSchema: z.ZodObject<{
5742
+ type: z.ZodLiteral<"separator">;
5743
+ display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
5744
+ hide: "hide";
5745
+ auth: "auth";
5746
+ anon: "anon";
5747
+ always: "always";
5748
+ }>, z.ZodCustom<(params: {
5749
+ context: ZudokuContext;
5750
+ auth: UseAuthReturn;
5751
+ }) => boolean, (params: {
5752
+ context: ZudokuContext;
5753
+ auth: UseAuthReturn;
5754
+ }) => boolean>]>>>;
5755
+ }, z.core.$strip>;
5756
+ declare const InputNavigationSectionSchema: z.ZodObject<{
5757
+ type: z.ZodLiteral<"section">;
5758
+ label: z.ZodString;
5759
+ display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
5760
+ hide: "hide";
5761
+ auth: "auth";
5762
+ anon: "anon";
5763
+ always: "always";
5764
+ }>, z.ZodCustom<(params: {
5765
+ context: ZudokuContext;
5766
+ auth: UseAuthReturn;
5767
+ }) => boolean, (params: {
5768
+ context: ZudokuContext;
5769
+ auth: UseAuthReturn;
5770
+ }) => boolean>]>>>;
5771
+ }, z.core.$strip>;
5772
+ declare const InputNavigationFilterSchema: z.ZodObject<{
5773
+ type: z.ZodLiteral<"filter">;
5774
+ placeholder: z.ZodOptional<z.ZodString>;
5775
+ display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
5776
+ hide: "hide";
5777
+ auth: "auth";
5778
+ anon: "anon";
5779
+ always: "always";
5780
+ }>, z.ZodCustom<(params: {
5781
+ context: ZudokuContext;
5782
+ auth: UseAuthReturn;
5783
+ }) => boolean, (params: {
5784
+ context: ZudokuContext;
5785
+ auth: UseAuthReturn;
5786
+ }) => boolean>]>>>;
5787
+ }, z.core.$strip>;
5741
5788
  declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5742
5789
  type: z.ZodLiteral<"category">;
5743
5790
  icon: z.ZodOptional<z.ZodEnum<{
5744
- info: "info";
5791
+ slice: "slice";
5792
+ map: "map";
5793
+ filter: "filter";
5794
+ key: "key";
5745
5795
  replace: "replace";
5746
5796
  search: "search";
5747
- slice: "slice";
5748
5797
  split: "split";
5749
5798
  repeat: "repeat";
5750
5799
  anchor: "anchor";
5751
5800
  bold: "bold";
5752
5801
  link: "link";
5802
+ info: "info";
5803
+ tags: "tags";
5804
+ contact: "contact";
5805
+ type: "type";
5753
5806
  binary: "binary";
5754
- map: "map";
5755
- filter: "filter";
5807
+ cookie: "cookie";
5808
+ list: "list";
5809
+ server: "server";
5810
+ tag: "tag";
5811
+ file: "file";
5812
+ delete: "delete";
5813
+ code: "code";
5756
5814
  copy: "copy";
5757
5815
  focus: "focus";
5758
5816
  pause: "pause";
5759
5817
  play: "play";
5760
5818
  scroll: "scroll";
5761
- key: "key";
5762
5819
  merge: "merge";
5763
- file: "file";
5764
- code: "code";
5765
5820
  ghost: "ghost";
5766
5821
  expand: "expand";
5767
- type: "type";
5768
5822
  send: "send";
5769
5823
  grid: "grid";
5770
5824
  group: "group";
5771
5825
  heading: "heading";
5772
- list: "list";
5773
5826
  menu: "menu";
5774
5827
  navigation: "navigation";
5775
5828
  option: "option";
@@ -5780,27 +5833,15 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5780
5833
  text: "text";
5781
5834
  mouse: "mouse";
5782
5835
  pen: "pen";
5783
- target: "target";
5784
- radius: "radius";
5785
- scale: "scale";
5786
- x: "x";
5787
- server: "server";
5788
- atom: "atom";
5789
- rss: "rss";
5790
- coffee: "coffee";
5791
- diff: "diff";
5792
- fish: "fish";
5793
- "git-commit": "git-commit";
5794
- move: "move";
5795
- regex: "regex";
5796
- shell: "shell";
5797
- turtle: "turtle";
5798
5836
  section: "section";
5799
5837
  video: "video";
5800
5838
  circle: "circle";
5801
5839
  image: "image";
5802
5840
  view: "view";
5803
- settings: "settings";
5841
+ target: "target";
5842
+ radius: "radius";
5843
+ scale: "scale";
5844
+ x: "x";
5804
5845
  baseline: "baseline";
5805
5846
  terminal: "terminal";
5806
5847
  square: "square";
@@ -5942,6 +5983,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5942
5983
  asterisk: "asterisk";
5943
5984
  "asterisk-square": "asterisk-square";
5944
5985
  "at-sign": "at-sign";
5986
+ atom: "atom";
5945
5987
  "audio-lines": "audio-lines";
5946
5988
  "audio-waveform": "audio-waveform";
5947
5989
  award: "award";
@@ -6313,6 +6355,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6313
6355
  "code-xml": "code-xml";
6314
6356
  codepen: "codepen";
6315
6357
  codesandbox: "codesandbox";
6358
+ coffee: "coffee";
6316
6359
  cog: "cog";
6317
6360
  coins: "coins";
6318
6361
  columns: "columns";
@@ -6329,12 +6372,10 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6329
6372
  "concierge-bell": "concierge-bell";
6330
6373
  cone: "cone";
6331
6374
  construction: "construction";
6332
- contact: "contact";
6333
6375
  "contact-2": "contact-2";
6334
6376
  "contact-round": "contact-round";
6335
6377
  container: "container";
6336
6378
  contrast: "contrast";
6337
- cookie: "cookie";
6338
6379
  "cooking-pot": "cooking-pot";
6339
6380
  "copy-check": "copy-check";
6340
6381
  "copy-minus": "copy-minus";
@@ -6370,7 +6411,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6370
6411
  "database-zap": "database-zap";
6371
6412
  "decimals-arrow-left": "decimals-arrow-left";
6372
6413
  "decimals-arrow-right": "decimals-arrow-right";
6373
- delete: "delete";
6374
6414
  dessert: "dessert";
6375
6415
  diameter: "diameter";
6376
6416
  diamond: "diamond";
@@ -6384,6 +6424,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6384
6424
  "dice-5": "dice-5";
6385
6425
  "dice-6": "dice-6";
6386
6426
  dices: "dices";
6427
+ diff: "diff";
6387
6428
  disc: "disc";
6388
6429
  "disc-2": "disc-2";
6389
6430
  "disc-3": "disc-3";
@@ -6522,6 +6563,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6522
6563
  "filter-x": "filter-x";
6523
6564
  fingerprint: "fingerprint";
6524
6565
  "fire-extinguisher": "fire-extinguisher";
6566
+ fish: "fish";
6525
6567
  "fish-off": "fish-off";
6526
6568
  "fish-symbol": "fish-symbol";
6527
6569
  flag: "flag";
@@ -6609,6 +6651,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6609
6651
  gift: "gift";
6610
6652
  "git-branch": "git-branch";
6611
6653
  "git-branch-plus": "git-branch-plus";
6654
+ "git-commit": "git-commit";
6612
6655
  "git-commit-horizontal": "git-commit-horizontal";
6613
6656
  "git-commit-vertical": "git-commit-vertical";
6614
6657
  "git-compare": "git-compare";
@@ -6931,6 +6974,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6931
6974
  "mouse-pointer-ban": "mouse-pointer-ban";
6932
6975
  "mouse-pointer-click": "mouse-pointer-click";
6933
6976
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
6977
+ move: "move";
6934
6978
  "move-3-d": "move-3-d";
6935
6979
  "move-3d": "move-3d";
6936
6980
  "move-diagonal": "move-diagonal";
@@ -7135,6 +7179,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7135
7179
  "refresh-cw": "refresh-cw";
7136
7180
  "refresh-cw-off": "refresh-cw-off";
7137
7181
  refrigerator: "refrigerator";
7182
+ regex: "regex";
7138
7183
  "remove-formatting": "remove-formatting";
7139
7184
  "repeat-1": "repeat-1";
7140
7185
  "repeat-2": "repeat-2";
@@ -7161,6 +7206,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7161
7206
  "rows-2": "rows-2";
7162
7207
  "rows-3": "rows-3";
7163
7208
  "rows-4": "rows-4";
7209
+ rss: "rss";
7164
7210
  ruler: "ruler";
7165
7211
  "ruler-dimension-line": "ruler-dimension-line";
7166
7212
  "russian-ruble": "russian-ruble";
@@ -7207,11 +7253,13 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7207
7253
  "server-cog": "server-cog";
7208
7254
  "server-crash": "server-crash";
7209
7255
  "server-off": "server-off";
7256
+ settings: "settings";
7210
7257
  "settings-2": "settings-2";
7211
7258
  shapes: "shapes";
7212
7259
  share: "share";
7213
7260
  "share-2": "share-2";
7214
7261
  sheet: "sheet";
7262
+ shell: "shell";
7215
7263
  shield: "shield";
7216
7264
  "shield-alert": "shield-alert";
7217
7265
  "shield-ban": "shield-ban";
@@ -7404,8 +7452,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7404
7452
  tablet: "tablet";
7405
7453
  "tablet-smartphone": "tablet-smartphone";
7406
7454
  tablets: "tablets";
7407
- tag: "tag";
7408
- tags: "tags";
7409
7455
  "tally-1": "tally-1";
7410
7456
  "tally-2": "tally-2";
7411
7457
  "tally-3": "tally-3";
@@ -7486,6 +7532,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7486
7532
  "truck-electric": "truck-electric";
7487
7533
  "turkish-lira": "turkish-lira";
7488
7534
  turntable: "turntable";
7535
+ turtle: "turtle";
7489
7536
  tv: "tv";
7490
7537
  "tv-2": "tv-2";
7491
7538
  "tv-minimal": "tv-minimal";
@@ -7633,13 +7680,16 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7633
7680
  auth: UseAuthReturn;
7634
7681
  }) => boolean>]>>>;
7635
7682
  }, z.core.$strip>;
7636
- export type InputNavigationItem = z.infer<typeof InputNavigationDocSchema> | z.infer<typeof InputNavigationLinkSchema> | z.infer<typeof InputNavigationCustomPageSchema> | (z.infer<typeof BaseInputNavigationCategorySchema> & {
7683
+ export type InputNavigationItem = z.infer<typeof InputNavigationDocSchema> | z.infer<typeof InputNavigationLinkSchema> | z.infer<typeof InputNavigationCustomPageSchema> | z.infer<typeof InputNavigationSeparatorSchema> | z.infer<typeof InputNavigationSectionSchema> | z.infer<typeof InputNavigationFilterSchema> | (z.infer<typeof BaseInputNavigationCategorySchema> & {
7637
7684
  items: InputNavigationItem[];
7638
7685
  });
7639
7686
  export declare const InputNavigationSchema: z.ZodArray<z.ZodType<InputNavigationItem, unknown, z.core.$ZodTypeInternals<InputNavigationItem, unknown>>>;
7640
7687
  export type InputNavigationDoc = z.infer<typeof InputNavigationDocSchema>;
7641
7688
  export type InputNavigationLink = z.infer<typeof InputNavigationLinkSchema>;
7642
7689
  export type InputNavigationCustomPage = z.infer<typeof InputNavigationCustomPageSchema>;
7690
+ export type InputNavigationSeparator = z.infer<typeof InputNavigationSeparatorSchema>;
7691
+ export type InputNavigationSection = z.infer<typeof InputNavigationSectionSchema>;
7692
+ export type InputNavigationFilter = z.infer<typeof InputNavigationFilterSchema>;
7643
7693
  export type InputNavigationCategory = z.infer<typeof BaseInputNavigationCategorySchema> & {
7644
7694
  items: InputNavigationItem[];
7645
7695
  };