zudoku 0.0.0-z6bcd96da → 0.0.0-z6e949a6d

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 (212) hide show
  1. package/dist/config/loader.js +3 -1
  2. package/dist/config/loader.js.map +1 -1
  3. package/dist/config/validators/InputNavigationSchema.d.ts +170 -120
  4. package/dist/config/validators/InputNavigationSchema.js +17 -0
  5. package/dist/config/validators/InputNavigationSchema.js.map +1 -1
  6. package/dist/config/validators/NavigationSchema.d.ts +10 -2
  7. package/dist/config/validators/NavigationSchema.js +6 -0
  8. package/dist/config/validators/NavigationSchema.js.map +1 -1
  9. package/dist/config/validators/ProtectedRoutesSchema.d.ts +1 -1
  10. package/dist/config/validators/validate.d.ts +7 -7
  11. package/dist/flat-config.d.ts +35 -24
  12. package/dist/lib/components/Heading.d.ts +1 -1
  13. package/dist/lib/components/MobileTopNavigation.js +2 -1
  14. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  15. package/dist/lib/components/TopNavigation.d.ts +7 -1
  16. package/dist/lib/components/TopNavigation.js +7 -2
  17. package/dist/lib/components/TopNavigation.js.map +1 -1
  18. package/dist/lib/components/context/ZudokuContext.d.ts +8 -1
  19. package/dist/lib/components/context/ZudokuContext.js +2 -0
  20. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  21. package/dist/lib/components/index.d.ts +18 -74
  22. package/dist/lib/components/index.js +19 -36
  23. package/dist/lib/components/index.js.map +1 -1
  24. package/dist/lib/components/navigation/Navigation.js +4 -3
  25. package/dist/lib/components/navigation/Navigation.js.map +1 -1
  26. package/dist/lib/components/navigation/NavigationCategory.js +8 -0
  27. package/dist/lib/components/navigation/NavigationCategory.js.map +1 -1
  28. package/dist/lib/components/navigation/NavigationFilterContext.d.ts +8 -0
  29. package/dist/lib/components/navigation/NavigationFilterContext.js +12 -0
  30. package/dist/lib/components/navigation/NavigationFilterContext.js.map +1 -0
  31. package/dist/lib/components/navigation/NavigationFilterInput.d.ts +3 -0
  32. package/dist/lib/components/navigation/NavigationFilterInput.js +9 -0
  33. package/dist/lib/components/navigation/NavigationFilterInput.js.map +1 -0
  34. package/dist/lib/components/navigation/NavigationItem.js +11 -1
  35. package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
  36. package/dist/lib/components/navigation/utils.d.ts +2 -1
  37. package/dist/lib/components/navigation/utils.js +22 -1
  38. package/dist/lib/components/navigation/utils.js.map +1 -1
  39. package/dist/lib/core/plugins.d.ts +11 -1
  40. package/dist/lib/core/plugins.js +1 -0
  41. package/dist/lib/core/plugins.js.map +1 -1
  42. package/dist/lib/core/transform-config.d.ts +2 -0
  43. package/dist/lib/core/transform-config.js +22 -0
  44. package/dist/lib/core/transform-config.js.map +1 -0
  45. package/dist/lib/hooks/index.d.ts +7 -30
  46. package/dist/lib/hooks/index.js +7 -15
  47. package/dist/lib/hooks/index.js.map +1 -1
  48. package/dist/lib/oas/graphql/circular.d.ts +1 -1
  49. package/dist/lib/oas/graphql/circular.js +18 -35
  50. package/dist/lib/oas/graphql/circular.js.map +1 -1
  51. package/dist/lib/oas/graphql/circular.test.js +33 -2
  52. package/dist/lib/oas/graphql/circular.test.js.map +1 -1
  53. package/dist/lib/oas/parser/index.js +14 -5
  54. package/dist/lib/oas/parser/index.js.map +1 -1
  55. package/dist/lib/plugins/openapi/playground/fileUtils.d.ts +1 -0
  56. package/dist/lib/plugins/openapi/playground/fileUtils.js +3 -0
  57. package/dist/lib/plugins/openapi/playground/fileUtils.js.map +1 -1
  58. package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.d.ts +6 -0
  59. package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.js +20 -0
  60. package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.js.map +1 -0
  61. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +7 -2
  62. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
  63. package/dist/lib/ui/Command.d.ts +3 -3
  64. package/dist/lib/ui/InputGroup.d.ts +16 -0
  65. package/dist/lib/ui/InputGroup.js +65 -0
  66. package/dist/lib/ui/InputGroup.js.map +1 -0
  67. package/dist/lib/util/flattenAllOf.d.ts +0 -2
  68. package/dist/lib/util/flattenAllOf.js +0 -46
  69. package/dist/lib/util/flattenAllOf.js.map +1 -1
  70. package/dist/lib/util/flattenAllOf.test.js +2 -1
  71. package/dist/lib/util/flattenAllOf.test.js.map +1 -1
  72. package/dist/lib/util/flattenAllOfProcessor.d.ts +2 -0
  73. package/dist/lib/util/flattenAllOfProcessor.js +48 -0
  74. package/dist/lib/util/flattenAllOfProcessor.js.map +1 -0
  75. package/dist/lib/util/readFrontmatter.js +2 -1
  76. package/dist/lib/util/readFrontmatter.js.map +1 -1
  77. package/dist/vite/api/SchemaManager.js +1 -1
  78. package/dist/vite/api/SchemaManager.js.map +1 -1
  79. package/dist/vite/api/SchemaManager.test.js +1 -1
  80. package/dist/vite/api/SchemaManager.test.js.map +1 -1
  81. package/dist/vite/build.js +91 -73
  82. package/dist/vite/build.js.map +1 -1
  83. package/dist/vite/mdx/remark-inject-filepath.js +5 -1
  84. package/dist/vite/mdx/remark-inject-filepath.js.map +1 -1
  85. package/dist/vite/mdx/remark-link-rewrite.js +3 -2
  86. package/dist/vite/mdx/remark-link-rewrite.js.map +1 -1
  87. package/dist/vite/plugin-docs.js +9 -7
  88. package/dist/vite/plugin-docs.js.map +1 -1
  89. package/dist/vite/plugin-markdown-export.js +4 -2
  90. package/dist/vite/plugin-markdown-export.js.map +1 -1
  91. package/lib/{ClaudeLogo-DJ9bU-sO.js → ClaudeLogo-OpUSMQJe.js} +26 -22
  92. package/lib/{ClaudeLogo-DJ9bU-sO.js.map → ClaudeLogo-OpUSMQJe.js.map} +1 -1
  93. package/lib/{MdxPage-stpAoBtx.js → MdxPage-dzCPGdvD.js} +8 -8
  94. package/lib/{MdxPage-stpAoBtx.js.map → MdxPage-dzCPGdvD.js.map} +1 -1
  95. package/lib/{Mermaid-Koc3z8mU.js → Mermaid-JEnWyK0s.js} +3 -2
  96. package/lib/{Mermaid-Koc3z8mU.js.map → Mermaid-JEnWyK0s.js.map} +1 -1
  97. package/lib/{OAuthErrorPage-DJ811Bn_.js → OAuthErrorPage-D7n-_cqN.js} +20 -18
  98. package/lib/{OAuthErrorPage-DJ811Bn_.js.map → OAuthErrorPage-D7n-_cqN.js.map} +1 -1
  99. package/lib/{OasProvider-CS_ASmBB.js → OasProvider-DPPdikt_.js} +3 -3
  100. package/lib/{OasProvider-CS_ASmBB.js.map → OasProvider-DPPdikt_.js.map} +1 -1
  101. package/lib/{OperationList-Dq_AB4W9.js → OperationList-cEveQ_l5.js} +948 -946
  102. package/lib/OperationList-cEveQ_l5.js.map +1 -0
  103. package/lib/{RouteGuard--A04ESy8.js → RouteGuard-BMbu_Yb7.js} +5 -5
  104. package/lib/{RouteGuard--A04ESy8.js.map → RouteGuard-BMbu_Yb7.js.map} +1 -1
  105. package/lib/{SchemaList-BJZJv1gD.js → SchemaList-CRC8n5co.js} +7 -7
  106. package/lib/{SchemaList-BJZJv1gD.js.map → SchemaList-CRC8n5co.js.map} +1 -1
  107. package/lib/{SchemaView-U4JMYB3N.js → SchemaView-BR6dtnPg.js} +3 -3
  108. package/lib/{SchemaView-U4JMYB3N.js.map → SchemaView-BR6dtnPg.js.map} +1 -1
  109. package/lib/{SignUp-DCBViNUi.js → SignUp-ChqXj9vd.js} +31 -26
  110. package/lib/{SignUp-DCBViNUi.js.map → SignUp-ChqXj9vd.js.map} +1 -1
  111. package/lib/{SyntaxHighlight-Dshjn3Zf.js → SyntaxHighlight-O-IZOPLg.js} +3 -3
  112. package/lib/{SyntaxHighlight-Dshjn3Zf.js.map → SyntaxHighlight-O-IZOPLg.js.map} +1 -1
  113. package/lib/{Toc-Cgz6CPiE.js → Toc-DQF7trHT.js} +2 -2
  114. package/lib/{Toc-Cgz6CPiE.js.map → Toc-DQF7trHT.js.map} +1 -1
  115. package/lib/{index-CL8eDnQW.js → Zudoku-DA1yA-te.js} +2609 -2452
  116. package/lib/Zudoku-DA1yA-te.js.map +1 -0
  117. package/lib/{ZudokuContext-BZB1TWdT.js → ZudokuContext-C6wlLMUH.js} +137 -135
  118. package/lib/{ZudokuContext-BZB1TWdT.js.map → ZudokuContext-C6wlLMUH.js.map} +1 -1
  119. package/lib/{circular-BmMJjG1v.js → circular-C4l1Kj1N.js} +1327 -1346
  120. package/lib/{circular-BmMJjG1v.js.map → circular-C4l1Kj1N.js.map} +1 -1
  121. package/lib/createServer-DoRZ6tMa.js +13036 -0
  122. package/lib/createServer-DoRZ6tMa.js.map +1 -0
  123. package/lib/{errors-b9I-fAOY.js → errors-CYLN8SNc.js} +3 -3
  124. package/lib/{errors-b9I-fAOY.js.map → errors-CYLN8SNc.js.map} +1 -1
  125. package/lib/{firebase-BCXX7Qv5.js → firebase-DF-VVKB7.js} +14 -14
  126. package/lib/firebase-DF-VVKB7.js.map +1 -0
  127. package/lib/{hook-BGlHBdET.js → hook-C35h0YhF.js} +2 -2
  128. package/lib/{hook-BGlHBdET.js.map → hook-C35h0YhF.js.map} +1 -1
  129. package/lib/{index-O9RHI87z.js → index-Ck4TmzTO.js} +574 -538
  130. package/lib/index-Ck4TmzTO.js.map +1 -0
  131. package/lib/index-DAWHN3cH.js +86 -0
  132. package/lib/index-DAWHN3cH.js.map +1 -0
  133. package/lib/{index-UOLtazB8.js → index-DrAVvbXa.js} +2 -2
  134. package/lib/{index-UOLtazB8.js.map → index-DrAVvbXa.js.map} +1 -1
  135. package/lib/{index.esm-C5CBsVzN.js → index.esm-B2cLXwjS.js} +2 -2
  136. package/lib/index.esm-B2cLXwjS.js.map +1 -0
  137. package/lib/{index.esm-B_0dvNjB.js → index.esm-Ca5zvoff.js} +20 -20
  138. package/lib/{index.esm-B_0dvNjB.js.map → index.esm-Ca5zvoff.js.map} +1 -1
  139. package/lib/{invariant-BJAl77rw.js → invariant-B_t_F2s_.js} +3 -3
  140. package/lib/{invariant-BJAl77rw.js.map → invariant-B_t_F2s_.js.map} +1 -1
  141. package/lib/ui/InputGroup.js +155 -0
  142. package/lib/ui/InputGroup.js.map +1 -0
  143. package/lib/ui/SyntaxHighlight.js +3 -3
  144. package/lib/useExposedProps-CzTDfXfq.js +30 -0
  145. package/lib/useExposedProps-CzTDfXfq.js.map +1 -0
  146. package/lib/zudoku.__internal.js +1493 -1031
  147. package/lib/zudoku.__internal.js.map +1 -1
  148. package/lib/zudoku.auth-auth0.js +1 -1
  149. package/lib/zudoku.auth-azureb2c.js +4 -4
  150. package/lib/zudoku.auth-clerk.js +2 -2
  151. package/lib/zudoku.auth-firebase.js +5 -5
  152. package/lib/zudoku.auth-openid.js +5 -5
  153. package/lib/zudoku.auth-supabase.js +4 -4
  154. package/lib/zudoku.components.js +31 -29
  155. package/lib/zudoku.components.js.map +1 -1
  156. package/lib/zudoku.hooks.js +24 -11
  157. package/lib/zudoku.hooks.js.map +1 -1
  158. package/lib/zudoku.mermaid.js +4 -3
  159. package/lib/zudoku.mermaid.js.map +1 -1
  160. package/lib/zudoku.plugin-api-catalog.js +36 -32
  161. package/lib/zudoku.plugin-api-catalog.js.map +1 -1
  162. package/lib/zudoku.plugin-api-keys.js +131 -130
  163. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  164. package/lib/zudoku.plugin-custom-pages.js +1 -1
  165. package/lib/zudoku.plugin-markdown.js +1 -1
  166. package/lib/zudoku.plugin-openapi.js +2 -2
  167. package/lib/zudoku.plugin-search-pagefind.js +2 -2
  168. package/lib/zudoku.plugins.js +9 -8
  169. package/lib/zudoku.plugins.js.map +1 -1
  170. package/package.json +6 -4
  171. package/src/lib/components/MobileTopNavigation.tsx +13 -8
  172. package/src/lib/components/TopNavigation.tsx +25 -7
  173. package/src/lib/components/context/ZudokuContext.ts +1 -0
  174. package/src/lib/components/index.ts +19 -39
  175. package/src/lib/components/navigation/Navigation.tsx +4 -3
  176. package/src/lib/components/navigation/NavigationCategory.tsx +9 -0
  177. package/src/lib/components/navigation/NavigationFilterContext.tsx +28 -0
  178. package/src/lib/components/navigation/NavigationFilterInput.tsx +35 -0
  179. package/src/lib/components/navigation/NavigationItem.tsx +17 -1
  180. package/src/lib/components/navigation/utils.ts +32 -1
  181. package/src/lib/core/plugins.ts +21 -1
  182. package/src/lib/core/transform-config.ts +29 -0
  183. package/src/lib/hooks/index.ts +7 -16
  184. package/src/lib/oas/graphql/circular.test.ts +37 -2
  185. package/src/lib/oas/graphql/circular.ts +25 -51
  186. package/src/lib/oas/parser/index.ts +17 -6
  187. package/src/lib/plugins/openapi/playground/fileUtils.ts +4 -0
  188. package/src/lib/plugins/openapi/playground/result-panel/AudioPlayer.tsx +50 -0
  189. package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +33 -17
  190. package/src/lib/ui/InputGroup.tsx +168 -0
  191. package/src/lib/util/flattenAllOf.test.ts +2 -1
  192. package/src/lib/util/flattenAllOf.ts +0 -57
  193. package/src/lib/util/flattenAllOfProcessor.ts +58 -0
  194. package/src/lib/util/readFrontmatter.ts +2 -1
  195. package/src/zuplo/enrich-with-zuplo-mcp.ts +168 -0
  196. package/src/zuplo/enrich-with-zuplo.ts +254 -0
  197. package/src/zuplo/policy-types.ts +46 -0
  198. package/src/zuplo/with-zuplo-processors.ts +35 -0
  199. package/src/zuplo/with-zuplo.ts +14 -0
  200. package/lib/OperationList-Dq_AB4W9.js.map +0 -1
  201. package/lib/Separator-BXt1LYnm.js +0 -27
  202. package/lib/Separator-BXt1LYnm.js.map +0 -1
  203. package/lib/___vite-browser-external_commonjs-proxy-BttVsNON.js +0 -9
  204. package/lib/___vite-browser-external_commonjs-proxy-BttVsNON.js.map +0 -1
  205. package/lib/createServer-CLSZ7hWJ.js +0 -16693
  206. package/lib/createServer-CLSZ7hWJ.js.map +0 -1
  207. package/lib/firebase-BCXX7Qv5.js.map +0 -1
  208. package/lib/index-CL8eDnQW.js.map +0 -1
  209. package/lib/index-DBjOT2H1.js +0 -133
  210. package/lib/index-DBjOT2H1.js.map +0 -1
  211. package/lib/index-O9RHI87z.js.map +0 -1
  212. package/lib/index.esm-C5CBsVzN.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";
39
47
  file: "file";
40
- code: "code";
48
+ delete: "delete";
41
49
  copy: "copy";
42
50
  focus: "focus";
43
51
  pause: "pause";
44
52
  play: "play";
45
53
  scroll: "scroll";
46
- key: "key";
47
54
  merge: "merge";
55
+ 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,15 +69,26 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
63
69
  text: "text";
64
70
  mouse: "mouse";
65
71
  pen: "pen";
72
+ target: "target";
73
+ radius: "radius";
74
+ scale: "scale";
75
+ x: "x";
76
+ atom: "atom";
77
+ rss: "rss";
78
+ coffee: "coffee";
79
+ diff: "diff";
80
+ fish: "fish";
81
+ "git-commit": "git-commit";
82
+ move: "move";
83
+ regex: "regex";
84
+ shell: "shell";
85
+ turtle: "turtle";
66
86
  section: "section";
67
87
  video: "video";
68
88
  circle: "circle";
69
89
  image: "image";
70
90
  view: "view";
71
- target: "target";
72
- radius: "radius";
73
- scale: "scale";
74
- x: "x";
91
+ settings: "settings";
75
92
  baseline: "baseline";
76
93
  terminal: "terminal";
77
94
  square: "square";
@@ -213,7 +230,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
213
230
  asterisk: "asterisk";
214
231
  "asterisk-square": "asterisk-square";
215
232
  "at-sign": "at-sign";
216
- atom: "atom";
217
233
  "audio-lines": "audio-lines";
218
234
  "audio-waveform": "audio-waveform";
219
235
  award: "award";
@@ -585,7 +601,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
585
601
  "code-xml": "code-xml";
586
602
  codepen: "codepen";
587
603
  codesandbox: "codesandbox";
588
- coffee: "coffee";
589
604
  cog: "cog";
590
605
  coins: "coins";
591
606
  columns: "columns";
@@ -602,12 +617,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
602
617
  "concierge-bell": "concierge-bell";
603
618
  cone: "cone";
604
619
  construction: "construction";
605
- contact: "contact";
606
620
  "contact-2": "contact-2";
607
621
  "contact-round": "contact-round";
608
622
  container: "container";
609
623
  contrast: "contrast";
610
- cookie: "cookie";
611
624
  "cooking-pot": "cooking-pot";
612
625
  "copy-check": "copy-check";
613
626
  "copy-minus": "copy-minus";
@@ -643,7 +656,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
643
656
  "database-zap": "database-zap";
644
657
  "decimals-arrow-left": "decimals-arrow-left";
645
658
  "decimals-arrow-right": "decimals-arrow-right";
646
- delete: "delete";
647
659
  dessert: "dessert";
648
660
  diameter: "diameter";
649
661
  diamond: "diamond";
@@ -657,7 +669,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
657
669
  "dice-5": "dice-5";
658
670
  "dice-6": "dice-6";
659
671
  dices: "dices";
660
- diff: "diff";
661
672
  disc: "disc";
662
673
  "disc-2": "disc-2";
663
674
  "disc-3": "disc-3";
@@ -796,7 +807,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
796
807
  "filter-x": "filter-x";
797
808
  fingerprint: "fingerprint";
798
809
  "fire-extinguisher": "fire-extinguisher";
799
- fish: "fish";
800
810
  "fish-off": "fish-off";
801
811
  "fish-symbol": "fish-symbol";
802
812
  flag: "flag";
@@ -884,7 +894,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
884
894
  gift: "gift";
885
895
  "git-branch": "git-branch";
886
896
  "git-branch-plus": "git-branch-plus";
887
- "git-commit": "git-commit";
888
897
  "git-commit-horizontal": "git-commit-horizontal";
889
898
  "git-commit-vertical": "git-commit-vertical";
890
899
  "git-compare": "git-compare";
@@ -1207,7 +1216,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1207
1216
  "mouse-pointer-ban": "mouse-pointer-ban";
1208
1217
  "mouse-pointer-click": "mouse-pointer-click";
1209
1218
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
1210
- move: "move";
1211
1219
  "move-3-d": "move-3-d";
1212
1220
  "move-3d": "move-3d";
1213
1221
  "move-diagonal": "move-diagonal";
@@ -1412,7 +1420,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1412
1420
  "refresh-cw": "refresh-cw";
1413
1421
  "refresh-cw-off": "refresh-cw-off";
1414
1422
  refrigerator: "refrigerator";
1415
- regex: "regex";
1416
1423
  "remove-formatting": "remove-formatting";
1417
1424
  "repeat-1": "repeat-1";
1418
1425
  "repeat-2": "repeat-2";
@@ -1439,7 +1446,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1439
1446
  "rows-2": "rows-2";
1440
1447
  "rows-3": "rows-3";
1441
1448
  "rows-4": "rows-4";
1442
- rss: "rss";
1443
1449
  ruler: "ruler";
1444
1450
  "ruler-dimension-line": "ruler-dimension-line";
1445
1451
  "russian-ruble": "russian-ruble";
@@ -1483,17 +1489,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1483
1489
  "send-to-back": "send-to-back";
1484
1490
  "separator-horizontal": "separator-horizontal";
1485
1491
  "separator-vertical": "separator-vertical";
1486
- server: "server";
1487
1492
  "server-cog": "server-cog";
1488
1493
  "server-crash": "server-crash";
1489
1494
  "server-off": "server-off";
1490
- settings: "settings";
1491
1495
  "settings-2": "settings-2";
1492
1496
  shapes: "shapes";
1493
1497
  share: "share";
1494
1498
  "share-2": "share-2";
1495
1499
  sheet: "sheet";
1496
- shell: "shell";
1497
1500
  shield: "shield";
1498
1501
  "shield-alert": "shield-alert";
1499
1502
  "shield-ban": "shield-ban";
@@ -1686,8 +1689,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1686
1689
  tablet: "tablet";
1687
1690
  "tablet-smartphone": "tablet-smartphone";
1688
1691
  tablets: "tablets";
1689
- tag: "tag";
1690
- tags: "tags";
1691
1692
  "tally-1": "tally-1";
1692
1693
  "tally-2": "tally-2";
1693
1694
  "tally-3": "tally-3";
@@ -1768,7 +1769,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1768
1769
  "truck-electric": "truck-electric";
1769
1770
  "turkish-lira": "turkish-lira";
1770
1771
  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";
1902
1903
  green: "green";
1903
1904
  blue: "blue";
1904
1905
  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";
1947
1955
  file: "file";
1948
- code: "code";
1956
+ delete: "delete";
1949
1957
  copy: "copy";
1950
1958
  focus: "focus";
1951
1959
  pause: "pause";
1952
1960
  play: "play";
1953
1961
  scroll: "scroll";
1954
- key: "key";
1955
1962
  merge: "merge";
1963
+ 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,15 +1977,26 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
1971
1977
  text: "text";
1972
1978
  mouse: "mouse";
1973
1979
  pen: "pen";
1980
+ target: "target";
1981
+ radius: "radius";
1982
+ scale: "scale";
1983
+ x: "x";
1984
+ atom: "atom";
1985
+ rss: "rss";
1986
+ coffee: "coffee";
1987
+ diff: "diff";
1988
+ fish: "fish";
1989
+ "git-commit": "git-commit";
1990
+ move: "move";
1991
+ regex: "regex";
1992
+ shell: "shell";
1993
+ turtle: "turtle";
1974
1994
  section: "section";
1975
1995
  video: "video";
1976
1996
  circle: "circle";
1977
1997
  image: "image";
1978
1998
  view: "view";
1979
- target: "target";
1980
- radius: "radius";
1981
- scale: "scale";
1982
- x: "x";
1999
+ settings: "settings";
1983
2000
  baseline: "baseline";
1984
2001
  terminal: "terminal";
1985
2002
  square: "square";
@@ -2121,7 +2138,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2121
2138
  asterisk: "asterisk";
2122
2139
  "asterisk-square": "asterisk-square";
2123
2140
  "at-sign": "at-sign";
2124
- atom: "atom";
2125
2141
  "audio-lines": "audio-lines";
2126
2142
  "audio-waveform": "audio-waveform";
2127
2143
  award: "award";
@@ -2493,7 +2509,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2493
2509
  "code-xml": "code-xml";
2494
2510
  codepen: "codepen";
2495
2511
  codesandbox: "codesandbox";
2496
- coffee: "coffee";
2497
2512
  cog: "cog";
2498
2513
  coins: "coins";
2499
2514
  columns: "columns";
@@ -2510,12 +2525,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2510
2525
  "concierge-bell": "concierge-bell";
2511
2526
  cone: "cone";
2512
2527
  construction: "construction";
2513
- contact: "contact";
2514
2528
  "contact-2": "contact-2";
2515
2529
  "contact-round": "contact-round";
2516
2530
  container: "container";
2517
2531
  contrast: "contrast";
2518
- cookie: "cookie";
2519
2532
  "cooking-pot": "cooking-pot";
2520
2533
  "copy-check": "copy-check";
2521
2534
  "copy-minus": "copy-minus";
@@ -2551,7 +2564,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2551
2564
  "database-zap": "database-zap";
2552
2565
  "decimals-arrow-left": "decimals-arrow-left";
2553
2566
  "decimals-arrow-right": "decimals-arrow-right";
2554
- delete: "delete";
2555
2567
  dessert: "dessert";
2556
2568
  diameter: "diameter";
2557
2569
  diamond: "diamond";
@@ -2565,7 +2577,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2565
2577
  "dice-5": "dice-5";
2566
2578
  "dice-6": "dice-6";
2567
2579
  dices: "dices";
2568
- diff: "diff";
2569
2580
  disc: "disc";
2570
2581
  "disc-2": "disc-2";
2571
2582
  "disc-3": "disc-3";
@@ -2704,7 +2715,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2704
2715
  "filter-x": "filter-x";
2705
2716
  fingerprint: "fingerprint";
2706
2717
  "fire-extinguisher": "fire-extinguisher";
2707
- fish: "fish";
2708
2718
  "fish-off": "fish-off";
2709
2719
  "fish-symbol": "fish-symbol";
2710
2720
  flag: "flag";
@@ -2792,7 +2802,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2792
2802
  gift: "gift";
2793
2803
  "git-branch": "git-branch";
2794
2804
  "git-branch-plus": "git-branch-plus";
2795
- "git-commit": "git-commit";
2796
2805
  "git-commit-horizontal": "git-commit-horizontal";
2797
2806
  "git-commit-vertical": "git-commit-vertical";
2798
2807
  "git-compare": "git-compare";
@@ -3115,7 +3124,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3115
3124
  "mouse-pointer-ban": "mouse-pointer-ban";
3116
3125
  "mouse-pointer-click": "mouse-pointer-click";
3117
3126
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
3118
- move: "move";
3119
3127
  "move-3-d": "move-3-d";
3120
3128
  "move-3d": "move-3d";
3121
3129
  "move-diagonal": "move-diagonal";
@@ -3320,7 +3328,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3320
3328
  "refresh-cw": "refresh-cw";
3321
3329
  "refresh-cw-off": "refresh-cw-off";
3322
3330
  refrigerator: "refrigerator";
3323
- regex: "regex";
3324
3331
  "remove-formatting": "remove-formatting";
3325
3332
  "repeat-1": "repeat-1";
3326
3333
  "repeat-2": "repeat-2";
@@ -3347,7 +3354,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3347
3354
  "rows-2": "rows-2";
3348
3355
  "rows-3": "rows-3";
3349
3356
  "rows-4": "rows-4";
3350
- rss: "rss";
3351
3357
  ruler: "ruler";
3352
3358
  "ruler-dimension-line": "ruler-dimension-line";
3353
3359
  "russian-ruble": "russian-ruble";
@@ -3391,17 +3397,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3391
3397
  "send-to-back": "send-to-back";
3392
3398
  "separator-horizontal": "separator-horizontal";
3393
3399
  "separator-vertical": "separator-vertical";
3394
- server: "server";
3395
3400
  "server-cog": "server-cog";
3396
3401
  "server-crash": "server-crash";
3397
3402
  "server-off": "server-off";
3398
- settings: "settings";
3399
3403
  "settings-2": "settings-2";
3400
3404
  shapes: "shapes";
3401
3405
  share: "share";
3402
3406
  "share-2": "share-2";
3403
3407
  sheet: "sheet";
3404
- shell: "shell";
3405
3408
  shield: "shield";
3406
3409
  "shield-alert": "shield-alert";
3407
3410
  "shield-ban": "shield-ban";
@@ -3594,8 +3597,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3594
3597
  tablet: "tablet";
3595
3598
  "tablet-smartphone": "tablet-smartphone";
3596
3599
  tablets: "tablets";
3597
- tag: "tag";
3598
- tags: "tags";
3599
3600
  "tally-1": "tally-1";
3600
3601
  "tally-2": "tally-2";
3601
3602
  "tally-3": "tally-3";
@@ -3676,7 +3677,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3676
3677
  "truck-electric": "truck-electric";
3677
3678
  "turkish-lira": "turkish-lira";
3678
3679
  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";
3809
3810
  green: "green";
3810
3811
  blue: "blue";
3811
3812
  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";
3851
3859
  file: "file";
3852
- code: "code";
3860
+ delete: "delete";
3853
3861
  copy: "copy";
3854
3862
  focus: "focus";
3855
3863
  pause: "pause";
3856
3864
  play: "play";
3857
3865
  scroll: "scroll";
3858
- key: "key";
3859
3866
  merge: "merge";
3867
+ 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,15 +3881,26 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
3875
3881
  text: "text";
3876
3882
  mouse: "mouse";
3877
3883
  pen: "pen";
3884
+ target: "target";
3885
+ radius: "radius";
3886
+ scale: "scale";
3887
+ x: "x";
3888
+ atom: "atom";
3889
+ rss: "rss";
3890
+ coffee: "coffee";
3891
+ diff: "diff";
3892
+ fish: "fish";
3893
+ "git-commit": "git-commit";
3894
+ move: "move";
3895
+ regex: "regex";
3896
+ shell: "shell";
3897
+ turtle: "turtle";
3878
3898
  section: "section";
3879
3899
  video: "video";
3880
3900
  circle: "circle";
3881
3901
  image: "image";
3882
3902
  view: "view";
3883
- target: "target";
3884
- radius: "radius";
3885
- scale: "scale";
3886
- x: "x";
3903
+ settings: "settings";
3887
3904
  baseline: "baseline";
3888
3905
  terminal: "terminal";
3889
3906
  square: "square";
@@ -4025,7 +4042,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4025
4042
  asterisk: "asterisk";
4026
4043
  "asterisk-square": "asterisk-square";
4027
4044
  "at-sign": "at-sign";
4028
- atom: "atom";
4029
4045
  "audio-lines": "audio-lines";
4030
4046
  "audio-waveform": "audio-waveform";
4031
4047
  award: "award";
@@ -4397,7 +4413,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4397
4413
  "code-xml": "code-xml";
4398
4414
  codepen: "codepen";
4399
4415
  codesandbox: "codesandbox";
4400
- coffee: "coffee";
4401
4416
  cog: "cog";
4402
4417
  coins: "coins";
4403
4418
  columns: "columns";
@@ -4414,12 +4429,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4414
4429
  "concierge-bell": "concierge-bell";
4415
4430
  cone: "cone";
4416
4431
  construction: "construction";
4417
- contact: "contact";
4418
4432
  "contact-2": "contact-2";
4419
4433
  "contact-round": "contact-round";
4420
4434
  container: "container";
4421
4435
  contrast: "contrast";
4422
- cookie: "cookie";
4423
4436
  "cooking-pot": "cooking-pot";
4424
4437
  "copy-check": "copy-check";
4425
4438
  "copy-minus": "copy-minus";
@@ -4455,7 +4468,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4455
4468
  "database-zap": "database-zap";
4456
4469
  "decimals-arrow-left": "decimals-arrow-left";
4457
4470
  "decimals-arrow-right": "decimals-arrow-right";
4458
- delete: "delete";
4459
4471
  dessert: "dessert";
4460
4472
  diameter: "diameter";
4461
4473
  diamond: "diamond";
@@ -4469,7 +4481,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4469
4481
  "dice-5": "dice-5";
4470
4482
  "dice-6": "dice-6";
4471
4483
  dices: "dices";
4472
- diff: "diff";
4473
4484
  disc: "disc";
4474
4485
  "disc-2": "disc-2";
4475
4486
  "disc-3": "disc-3";
@@ -4608,7 +4619,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4608
4619
  "filter-x": "filter-x";
4609
4620
  fingerprint: "fingerprint";
4610
4621
  "fire-extinguisher": "fire-extinguisher";
4611
- fish: "fish";
4612
4622
  "fish-off": "fish-off";
4613
4623
  "fish-symbol": "fish-symbol";
4614
4624
  flag: "flag";
@@ -4696,7 +4706,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4696
4706
  gift: "gift";
4697
4707
  "git-branch": "git-branch";
4698
4708
  "git-branch-plus": "git-branch-plus";
4699
- "git-commit": "git-commit";
4700
4709
  "git-commit-horizontal": "git-commit-horizontal";
4701
4710
  "git-commit-vertical": "git-commit-vertical";
4702
4711
  "git-compare": "git-compare";
@@ -5019,7 +5028,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5019
5028
  "mouse-pointer-ban": "mouse-pointer-ban";
5020
5029
  "mouse-pointer-click": "mouse-pointer-click";
5021
5030
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
5022
- move: "move";
5023
5031
  "move-3-d": "move-3-d";
5024
5032
  "move-3d": "move-3d";
5025
5033
  "move-diagonal": "move-diagonal";
@@ -5224,7 +5232,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5224
5232
  "refresh-cw": "refresh-cw";
5225
5233
  "refresh-cw-off": "refresh-cw-off";
5226
5234
  refrigerator: "refrigerator";
5227
- regex: "regex";
5228
5235
  "remove-formatting": "remove-formatting";
5229
5236
  "repeat-1": "repeat-1";
5230
5237
  "repeat-2": "repeat-2";
@@ -5251,7 +5258,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5251
5258
  "rows-2": "rows-2";
5252
5259
  "rows-3": "rows-3";
5253
5260
  "rows-4": "rows-4";
5254
- rss: "rss";
5255
5261
  ruler: "ruler";
5256
5262
  "ruler-dimension-line": "ruler-dimension-line";
5257
5263
  "russian-ruble": "russian-ruble";
@@ -5295,17 +5301,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5295
5301
  "send-to-back": "send-to-back";
5296
5302
  "separator-horizontal": "separator-horizontal";
5297
5303
  "separator-vertical": "separator-vertical";
5298
- server: "server";
5299
5304
  "server-cog": "server-cog";
5300
5305
  "server-crash": "server-crash";
5301
5306
  "server-off": "server-off";
5302
- settings: "settings";
5303
5307
  "settings-2": "settings-2";
5304
5308
  shapes: "shapes";
5305
5309
  share: "share";
5306
5310
  "share-2": "share-2";
5307
5311
  sheet: "sheet";
5308
- shell: "shell";
5309
5312
  shield: "shield";
5310
5313
  "shield-alert": "shield-alert";
5311
5314
  "shield-ban": "shield-ban";
@@ -5498,8 +5501,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5498
5501
  tablet: "tablet";
5499
5502
  "tablet-smartphone": "tablet-smartphone";
5500
5503
  tablets: "tablets";
5501
- tag: "tag";
5502
- tags: "tags";
5503
5504
  "tally-1": "tally-1";
5504
5505
  "tally-2": "tally-2";
5505
5506
  "tally-3": "tally-3";
@@ -5580,7 +5581,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5580
5581
  "truck-electric": "truck-electric";
5581
5582
  "turkish-lira": "turkish-lira";
5582
5583
  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";
5713
5714
  green: "green";
5714
5715
  blue: "blue";
5715
5716
  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";
5756
5811
  file: "file";
5757
- code: "code";
5812
+ delete: "delete";
5758
5813
  copy: "copy";
5759
5814
  focus: "focus";
5760
5815
  pause: "pause";
5761
5816
  play: "play";
5762
5817
  scroll: "scroll";
5763
- key: "key";
5764
5818
  merge: "merge";
5819
+ 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,15 +5833,26 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5780
5833
  text: "text";
5781
5834
  mouse: "mouse";
5782
5835
  pen: "pen";
5836
+ target: "target";
5837
+ radius: "radius";
5838
+ scale: "scale";
5839
+ x: "x";
5840
+ atom: "atom";
5841
+ rss: "rss";
5842
+ coffee: "coffee";
5843
+ diff: "diff";
5844
+ fish: "fish";
5845
+ "git-commit": "git-commit";
5846
+ move: "move";
5847
+ regex: "regex";
5848
+ shell: "shell";
5849
+ turtle: "turtle";
5783
5850
  section: "section";
5784
5851
  video: "video";
5785
5852
  circle: "circle";
5786
5853
  image: "image";
5787
5854
  view: "view";
5788
- target: "target";
5789
- radius: "radius";
5790
- scale: "scale";
5791
- x: "x";
5855
+ settings: "settings";
5792
5856
  baseline: "baseline";
5793
5857
  terminal: "terminal";
5794
5858
  square: "square";
@@ -5930,7 +5994,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5930
5994
  asterisk: "asterisk";
5931
5995
  "asterisk-square": "asterisk-square";
5932
5996
  "at-sign": "at-sign";
5933
- atom: "atom";
5934
5997
  "audio-lines": "audio-lines";
5935
5998
  "audio-waveform": "audio-waveform";
5936
5999
  award: "award";
@@ -6302,7 +6365,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6302
6365
  "code-xml": "code-xml";
6303
6366
  codepen: "codepen";
6304
6367
  codesandbox: "codesandbox";
6305
- coffee: "coffee";
6306
6368
  cog: "cog";
6307
6369
  coins: "coins";
6308
6370
  columns: "columns";
@@ -6319,12 +6381,10 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6319
6381
  "concierge-bell": "concierge-bell";
6320
6382
  cone: "cone";
6321
6383
  construction: "construction";
6322
- contact: "contact";
6323
6384
  "contact-2": "contact-2";
6324
6385
  "contact-round": "contact-round";
6325
6386
  container: "container";
6326
6387
  contrast: "contrast";
6327
- cookie: "cookie";
6328
6388
  "cooking-pot": "cooking-pot";
6329
6389
  "copy-check": "copy-check";
6330
6390
  "copy-minus": "copy-minus";
@@ -6360,7 +6420,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6360
6420
  "database-zap": "database-zap";
6361
6421
  "decimals-arrow-left": "decimals-arrow-left";
6362
6422
  "decimals-arrow-right": "decimals-arrow-right";
6363
- delete: "delete";
6364
6423
  dessert: "dessert";
6365
6424
  diameter: "diameter";
6366
6425
  diamond: "diamond";
@@ -6374,7 +6433,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6374
6433
  "dice-5": "dice-5";
6375
6434
  "dice-6": "dice-6";
6376
6435
  dices: "dices";
6377
- diff: "diff";
6378
6436
  disc: "disc";
6379
6437
  "disc-2": "disc-2";
6380
6438
  "disc-3": "disc-3";
@@ -6513,7 +6571,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6513
6571
  "filter-x": "filter-x";
6514
6572
  fingerprint: "fingerprint";
6515
6573
  "fire-extinguisher": "fire-extinguisher";
6516
- fish: "fish";
6517
6574
  "fish-off": "fish-off";
6518
6575
  "fish-symbol": "fish-symbol";
6519
6576
  flag: "flag";
@@ -6601,7 +6658,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6601
6658
  gift: "gift";
6602
6659
  "git-branch": "git-branch";
6603
6660
  "git-branch-plus": "git-branch-plus";
6604
- "git-commit": "git-commit";
6605
6661
  "git-commit-horizontal": "git-commit-horizontal";
6606
6662
  "git-commit-vertical": "git-commit-vertical";
6607
6663
  "git-compare": "git-compare";
@@ -6924,7 +6980,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6924
6980
  "mouse-pointer-ban": "mouse-pointer-ban";
6925
6981
  "mouse-pointer-click": "mouse-pointer-click";
6926
6982
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
6927
- move: "move";
6928
6983
  "move-3-d": "move-3-d";
6929
6984
  "move-3d": "move-3d";
6930
6985
  "move-diagonal": "move-diagonal";
@@ -7129,7 +7184,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7129
7184
  "refresh-cw": "refresh-cw";
7130
7185
  "refresh-cw-off": "refresh-cw-off";
7131
7186
  refrigerator: "refrigerator";
7132
- regex: "regex";
7133
7187
  "remove-formatting": "remove-formatting";
7134
7188
  "repeat-1": "repeat-1";
7135
7189
  "repeat-2": "repeat-2";
@@ -7156,7 +7210,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7156
7210
  "rows-2": "rows-2";
7157
7211
  "rows-3": "rows-3";
7158
7212
  "rows-4": "rows-4";
7159
- rss: "rss";
7160
7213
  ruler: "ruler";
7161
7214
  "ruler-dimension-line": "ruler-dimension-line";
7162
7215
  "russian-ruble": "russian-ruble";
@@ -7200,17 +7253,14 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7200
7253
  "send-to-back": "send-to-back";
7201
7254
  "separator-horizontal": "separator-horizontal";
7202
7255
  "separator-vertical": "separator-vertical";
7203
- server: "server";
7204
7256
  "server-cog": "server-cog";
7205
7257
  "server-crash": "server-crash";
7206
7258
  "server-off": "server-off";
7207
- settings: "settings";
7208
7259
  "settings-2": "settings-2";
7209
7260
  shapes: "shapes";
7210
7261
  share: "share";
7211
7262
  "share-2": "share-2";
7212
7263
  sheet: "sheet";
7213
- shell: "shell";
7214
7264
  shield: "shield";
7215
7265
  "shield-alert": "shield-alert";
7216
7266
  "shield-ban": "shield-ban";
@@ -7403,8 +7453,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7403
7453
  tablet: "tablet";
7404
7454
  "tablet-smartphone": "tablet-smartphone";
7405
7455
  tablets: "tablets";
7406
- tag: "tag";
7407
- tags: "tags";
7408
7456
  "tally-1": "tally-1";
7409
7457
  "tally-2": "tally-2";
7410
7458
  "tally-3": "tally-3";
@@ -7485,7 +7533,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7485
7533
  "truck-electric": "truck-electric";
7486
7534
  "turkish-lira": "turkish-lira";
7487
7535
  turntable: "turntable";
7488
- 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
  };