zudoku 0.0.0-fix-firebase-export.f8270825 → 0.0.0-fix-warnings.z053d4e27
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.
- package/dist/app/main.d.ts +6 -6
- package/dist/cli/common/version-check.js +12 -3
- package/dist/cli/common/version-check.js.map +1 -1
- package/dist/config/loader.js +3 -1
- package/dist/config/loader.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +121 -119
- package/dist/config/validators/InputNavigationSchema.js +1 -0
- package/dist/config/validators/InputNavigationSchema.js.map +1 -1
- package/dist/config/validators/NavigationSchema.js +6 -1
- package/dist/config/validators/NavigationSchema.js.map +1 -1
- package/dist/config/validators/ProtectedRoutesSchema.d.ts +1 -1
- package/dist/config/validators/validate.d.ts +60 -13
- package/dist/config/validators/validate.js +7 -4
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/flat-config.d.ts +28 -26
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/auth/issuer.js +1 -1
- package/dist/lib/auth/issuer.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +3 -2
- package/dist/lib/authentication/components/CallbackHandler.js +1 -1
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.js +4 -2
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/components/SignUp.js +4 -2
- package/dist/lib/authentication/components/SignUp.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +2 -0
- package/dist/lib/authentication/hook.js +10 -0
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/auth0.js +11 -7
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/providers/clerk.js +0 -22
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/firebase.js +67 -9
- package/dist/lib/authentication/providers/firebase.js.map +1 -1
- package/dist/lib/authentication/providers/supabase.js +6 -15
- package/dist/lib/authentication/providers/supabase.js.map +1 -1
- package/dist/lib/authentication/ui/EmailVerificationUi.d.ts +4 -0
- package/dist/lib/authentication/ui/EmailVerificationUi.js +34 -0
- package/dist/lib/authentication/ui/EmailVerificationUi.js.map +1 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.d.ts +7 -2
- package/dist/lib/authentication/ui/ZudokuAuthUi.js +43 -11
- package/dist/lib/authentication/ui/ZudokuAuthUi.js.map +1 -1
- package/dist/lib/authentication/utils/relativeRedirectUrl.d.ts +1 -0
- package/dist/lib/authentication/utils/relativeRedirectUrl.js +8 -0
- package/dist/lib/authentication/utils/relativeRedirectUrl.js.map +1 -0
- package/dist/lib/components/Heading.d.ts +1 -1
- package/dist/lib/components/Pagination.js +2 -2
- package/dist/lib/components/Pagination.js.map +1 -1
- package/dist/lib/components/index.d.ts +18 -69
- package/dist/lib/components/index.js +19 -32
- package/dist/lib/components/index.js.map +1 -1
- package/dist/lib/components/navigation/NavigationItem.js +2 -2
- package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
- package/dist/lib/core/RouteGuard.js +12 -7
- package/dist/lib/core/RouteGuard.js.map +1 -1
- package/dist/lib/core/plugins.d.ts +11 -1
- package/dist/lib/core/plugins.js +1 -0
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/core/react-query.d.ts +1 -0
- package/dist/lib/core/react-query.js +2 -0
- package/dist/lib/core/react-query.js.map +1 -0
- package/dist/lib/core/transform-config.d.ts +2 -0
- package/dist/lib/core/transform-config.js +22 -0
- package/dist/lib/core/transform-config.js.map +1 -0
- package/dist/lib/errors/ErrorMessage.d.ts +3 -0
- package/dist/lib/errors/ErrorMessage.js +16 -0
- package/dist/lib/errors/ErrorMessage.js.map +1 -0
- package/dist/lib/hooks/index.d.ts +7 -28
- package/dist/lib/hooks/index.js +7 -15
- package/dist/lib/hooks/index.js.map +1 -1
- package/dist/lib/oas/graphql/circular.d.ts +2 -0
- package/dist/lib/oas/graphql/circular.js +32 -10
- package/dist/lib/oas/graphql/circular.js.map +1 -1
- package/dist/lib/oas/graphql/circular.test.d.ts +1 -0
- package/dist/lib/oas/graphql/circular.test.js +152 -0
- package/dist/lib/oas/graphql/circular.test.js.map +1 -0
- package/dist/lib/oas/graphql/index.js +7 -3
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/index.js +14 -5
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js +9 -172
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +11 -4
- package/dist/lib/plugins/api-keys/index.js +36 -22
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.d.ts +12 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.js +133 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.js.map +1 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.d.ts +4 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.js +33 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.js.map +1 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.d.ts +6 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.js +39 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.js.map +1 -0
- package/dist/lib/plugins/openapi/OasProvider.js +6 -2
- package/dist/lib/plugins/openapi/OasProvider.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.js +4 -4
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/ParamInfos.js +1 -0
- package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.js +3 -2
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +3 -0
- package/dist/lib/plugins/openapi/schema/SchemaView.js +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/utils.js +11 -3
- package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js +24 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js.map +1 -1
- package/dist/lib/plugins/openapi/util/getRoutes.d.ts +3 -0
- package/dist/lib/plugins/openapi/util/getRoutes.js +2 -1
- package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -1
- package/dist/lib/ui/Button.js +1 -1
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/Command.d.ts +3 -3
- package/dist/lib/util/flattenAllOf.d.ts +0 -2
- package/dist/lib/util/flattenAllOf.js +0 -46
- package/dist/lib/util/flattenAllOf.js.map +1 -1
- package/dist/lib/util/flattenAllOf.test.js +2 -1
- package/dist/lib/util/flattenAllOf.test.js.map +1 -1
- package/dist/lib/util/flattenAllOfProcessor.d.ts +2 -0
- package/dist/lib/util/flattenAllOfProcessor.js +48 -0
- package/dist/lib/util/flattenAllOfProcessor.js.map +1 -0
- package/dist/lib/util/invariant.d.ts +1 -1
- package/dist/lib/util/invariant.js +2 -2
- package/dist/lib/util/invariant.js.map +1 -1
- package/dist/lib/util/readFrontmatter.js +2 -1
- package/dist/lib/util/readFrontmatter.js.map +1 -1
- package/dist/vite/api/SchemaManager.d.ts +12 -1
- package/dist/vite/api/SchemaManager.js +32 -15
- package/dist/vite/api/SchemaManager.js.map +1 -1
- package/dist/vite/api/SchemaManager.test.js +45 -1
- package/dist/vite/api/SchemaManager.test.js.map +1 -1
- package/dist/vite/build.js +91 -73
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.js +10 -4
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/error-handler.js +1 -5
- package/dist/vite/error-handler.js.map +1 -1
- package/dist/vite/mdx/remark-inject-filepath.js +5 -1
- package/dist/vite/mdx/remark-inject-filepath.js.map +1 -1
- package/dist/vite/mdx/remark-link-rewrite.js +4 -3
- package/dist/vite/mdx/remark-link-rewrite.js.map +1 -1
- package/dist/vite/plugin-api-keys.js +5 -1
- package/dist/vite/plugin-api-keys.js.map +1 -1
- package/dist/vite/plugin-api.js +5 -3
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-docs.js +9 -7
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-markdown-export.js +5 -3
- package/dist/vite/plugin-markdown-export.js.map +1 -1
- package/dist/vite/prerender/utils.js +9 -3
- package/dist/vite/prerender/utils.js.map +1 -1
- package/dist/vite/prerender/worker.js +3 -0
- package/dist/vite/prerender/worker.js.map +1 -1
- package/dist/vite/zuplo.d.ts +13 -0
- package/dist/vite/zuplo.js +15 -0
- package/dist/vite/zuplo.js.map +1 -0
- package/lib/{ActionButton-DUgvSylL.js → ActionButton-B0CXL1Lq.js} +3 -3
- package/lib/{ActionButton-DUgvSylL.js.map → ActionButton-B0CXL1Lq.js.map} +1 -1
- package/lib/{Button-CynVW1JV.js → Button-GUVe7pmt.js} +8 -7
- package/lib/{Button-CynVW1JV.js.map → Button-GUVe7pmt.js.map} +1 -1
- package/lib/{Card-KFniaZn5.js → Card-DCdq37aA.js} +2 -2
- package/lib/{Card-KFniaZn5.js.map → Card-DCdq37aA.js.map} +1 -1
- package/lib/{ClaudeLogo-B4Xxt-x_.js → ClaudeLogo-C6q-Xn_l.js} +21 -17
- package/lib/ClaudeLogo-C6q-Xn_l.js.map +1 -0
- package/lib/{Command-BpT1iBE6.js → Command-N6VujV30.js} +3 -3
- package/lib/{Command-BpT1iBE6.js.map → Command-N6VujV30.js.map} +1 -1
- package/lib/{Dialog-BQciPiHN.js → Dialog-hlvmmQ_c.js} +2 -2
- package/lib/{Dialog-BQciPiHN.js.map → Dialog-hlvmmQ_c.js.map} +1 -1
- package/lib/{Drawer-Ci7XwhqT.js → Drawer-Ch7927PF.js} +7 -7
- package/lib/{Drawer-Ci7XwhqT.js.map → Drawer-Ch7927PF.js.map} +1 -1
- package/lib/{DropdownMenu-C8SX_-S_.js → DropdownMenu-DN0jNrjj.js} +2 -2
- package/lib/{DropdownMenu-C8SX_-S_.js.map → DropdownMenu-DN0jNrjj.js.map} +1 -1
- package/lib/Frame-DKlOmSkU.js +205 -0
- package/lib/Frame-DKlOmSkU.js.map +1 -0
- package/lib/HydrationBoundary-CNF2ZV3E.js +601 -0
- package/lib/HydrationBoundary-CNF2ZV3E.js.map +1 -0
- package/lib/{IndexingDialog-B5zCiUKr.js → IndexingDialog-D0YdGfbn.js} +3 -3
- package/lib/{IndexingDialog-B5zCiUKr.js.map → IndexingDialog-D0YdGfbn.js.map} +1 -1
- package/lib/Input-Cx-GeKoF.js +22 -0
- package/lib/Input-Cx-GeKoF.js.map +1 -0
- package/lib/{MdxPage-BagO2c-n.js → MdxPage-B1G4W1TK.js} +11 -11
- package/lib/{MdxPage-BagO2c-n.js.map → MdxPage-B1G4W1TK.js.map} +1 -1
- package/lib/{Mermaid-D_VSX7_Q.js → Mermaid-B1xNo-pf.js} +5 -4
- package/lib/{Mermaid-D_VSX7_Q.js.map → Mermaid-B1xNo-pf.js.map} +1 -1
- package/lib/{OAuthErrorPage-Fq54RLgt.js → OAuthErrorPage-01Ke086W.js} +25 -23
- package/lib/OAuthErrorPage-01Ke086W.js.map +1 -0
- package/lib/OasProvider-BG-FWDIq.js +48 -0
- package/lib/OasProvider-BG-FWDIq.js.map +1 -0
- package/lib/{OperationList-C0jiEaG5.js → OperationList-GGkJ1vac.js} +1983 -1965
- package/lib/OperationList-GGkJ1vac.js.map +1 -0
- package/lib/RouteGuard-B1lCR0C_.js +77 -0
- package/lib/RouteGuard-B1lCR0C_.js.map +1 -0
- package/lib/{SchemaList-BU0zCHn9.js → SchemaList-CNVdC9f-.js} +9 -9
- package/lib/{SchemaList-BU0zCHn9.js.map → SchemaList-CNVdC9f-.js.map} +1 -1
- package/lib/SchemaView-CrV0yIwR.js +438 -0
- package/lib/SchemaView-CrV0yIwR.js.map +1 -0
- package/lib/{Select-CkxXP5I7.js → Secret-BDBqq4p3.js} +122 -122
- package/lib/Secret-BDBqq4p3.js.map +1 -0
- package/lib/{Separator-CTPSeW1S.js → Separator-BXt1LYnm.js} +2 -2
- package/lib/{Separator-CTPSeW1S.js.map → Separator-BXt1LYnm.js.map} +1 -1
- package/lib/SignUp-8kDBaLbO.js +55 -0
- package/lib/SignUp-8kDBaLbO.js.map +1 -0
- package/lib/{SyntaxHighlight-Kdyskw3C.js → SyntaxHighlight-hZOFnYl0.js} +1749 -1723
- package/lib/SyntaxHighlight-hZOFnYl0.js.map +1 -0
- package/lib/{Toc-DJxFPfcS.js → Toc-qEIii_-W.js} +3 -3
- package/lib/{Toc-DJxFPfcS.js.map → Toc-qEIii_-W.js.map} +1 -1
- package/lib/{ErrorAlert-DrOR8w3f.js → Zudoku-DUsdmPME.js} +5449 -4427
- package/lib/Zudoku-DUsdmPME.js.map +1 -0
- package/lib/ZudokuContext-BBI06sOx.js +387 -0
- package/lib/ZudokuContext-BBI06sOx.js.map +1 -0
- package/lib/chunk-EPOLDU6W-C6C8jAwd.js +8558 -0
- package/lib/chunk-EPOLDU6W-C6C8jAwd.js.map +1 -0
- package/lib/{circular-CzWF1hj5.js → circular-bbWO95zs.js} +771 -749
- package/lib/{circular-CzWF1hj5.js.map → circular-bbWO95zs.js.map} +1 -1
- package/lib/{cn-dYga0KKN.js → cn-5-Gd1Dss.js} +531 -498
- package/lib/cn-5-Gd1Dss.js.map +1 -0
- package/lib/createServer-B7POuwZp.js +13036 -0
- package/lib/createServer-B7POuwZp.js.map +1 -0
- package/lib/createVariantComponent-Dc0vtOvr.js +18 -0
- package/lib/createVariantComponent-Dc0vtOvr.js.map +1 -0
- package/lib/{errors-Bs4duWDy.js → errors-7hgPDs1h.js} +3 -3
- package/lib/{errors-Bs4duWDy.js.map → errors-7hgPDs1h.js.map} +1 -1
- package/lib/{firebase-qUdSEL1p.js → firebase-Dwn-2ju-.js} +1590 -1342
- package/lib/firebase-Dwn-2ju-.js.map +1 -0
- package/lib/hook-ZEd1Es7D.js +52 -0
- package/lib/hook-ZEd1Es7D.js.map +1 -0
- package/lib/{index-0oT9beQN.js → index-CTCT4jlW.js} +499 -493
- package/lib/{index-0oT9beQN.js.map → index-CTCT4jlW.js.map} +1 -1
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/index-DAWHN3cH.js +86 -0
- package/lib/index-DAWHN3cH.js.map +1 -0
- package/lib/{index-Bh-MffiL.js → index-Dxdhrp-I.js} +2 -2
- package/lib/{index-Bh-MffiL.js.map → index-Dxdhrp-I.js.map} +1 -1
- package/lib/index.esm-BYObtETB.js.map +1 -1
- package/lib/{index.esm-DtzT_KoE.js → index.esm-Ca5zvoff.js} +20 -20
- package/lib/{index.esm-DtzT_KoE.js.map → index.esm-Ca5zvoff.js.map} +1 -1
- package/lib/{index.esm-kW-Utcsi.js → index.esm-DG4KaDKR.js} +16 -14
- package/lib/index.esm-DG4KaDKR.js.map +1 -0
- package/lib/{invariant-CGOLuIIz.js → invariant-B_t_F2s_.js} +6 -6
- package/lib/invariant-B_t_F2s_.js.map +1 -0
- package/lib/jsx-runtime-BzflLqGi.js.map +1 -1
- package/lib/{mutation-BoVlx8yA.js → mutation-BISOc7OM.js} +70 -44
- package/lib/mutation-BISOc7OM.js.map +1 -0
- package/lib/ui/Accordion.js +1 -1
- package/lib/ui/ActionButton.js +2 -2
- package/lib/ui/Alert.js +1 -1
- package/lib/ui/AlertDialog.js +1 -1
- package/lib/ui/Badge.js +1 -1
- package/lib/ui/Breadcrumb.js +1 -1
- package/lib/ui/Button.js +7 -6
- package/lib/ui/Button.js.map +1 -1
- package/lib/ui/ButtonGroup.js +1 -1
- package/lib/ui/Callout.js +1 -1
- package/lib/ui/Card.js +1 -1
- package/lib/ui/Carousel.js +1 -1
- package/lib/ui/Carousel.js.map +1 -1
- package/lib/ui/Checkbox.js +1 -1
- package/lib/ui/CodeBlock.js +1 -1
- package/lib/ui/Command.js +2 -2
- package/lib/ui/Dialog.js +1 -1
- package/lib/ui/Drawer.js +3 -3
- package/lib/ui/DropdownMenu.js +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +1 -1
- package/lib/ui/Form.js +1 -1
- package/lib/ui/Frame.js +1 -1
- package/lib/ui/HoverCard.js +1 -1
- package/lib/ui/Input.js +1 -1
- package/lib/ui/Item.js +1 -1
- package/lib/ui/Label.js +1 -1
- package/lib/ui/NativeSelect.js +1 -1
- package/lib/ui/Pagination.js +1 -1
- package/lib/ui/Popover.js +1 -1
- package/lib/ui/Progress.js +1 -1
- package/lib/ui/RadioGroup.js +1 -1
- package/lib/ui/ScrollArea.js +1 -1
- package/lib/ui/Secret.js +1 -1
- package/lib/ui/Separator.js +1 -1
- package/lib/ui/Skeleton.js +1 -1
- package/lib/ui/Slider.js +1 -1
- package/lib/ui/Switch.js +1 -1
- package/lib/ui/SyntaxHighlight.js +3 -3
- package/lib/ui/Tabs.js +1 -1
- package/lib/ui/Textarea.js +1 -1
- package/lib/ui/Toggle.js +1 -1
- package/lib/ui/ToggleGroup.js +1 -1
- package/lib/ui/Value.js +1 -1
- package/lib/ui/util.js +1 -1
- package/lib/useExposedProps-CzTDfXfq.js +30 -0
- package/lib/useExposedProps-CzTDfXfq.js.map +1 -0
- package/lib/{useMutation-C6RqWmTS.js → useMutation-CFMGlAMW.js} +39 -17
- package/lib/useMutation-CFMGlAMW.js.map +1 -0
- package/lib/useSuspenseQuery-CSB_rVek.js +1226 -0
- package/lib/useSuspenseQuery-CSB_rVek.js.map +1 -0
- package/lib/zudoku.__internal.js +827 -1325
- package/lib/zudoku.__internal.js.map +1 -1
- package/lib/zudoku.auth-auth0.js +16 -16
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-azureb2c.js +4 -4
- package/lib/zudoku.auth-clerk.js +52 -75
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-firebase.js +6 -5
- package/lib/zudoku.auth-firebase.js.map +1 -1
- package/lib/zudoku.auth-openid.js +5 -5
- package/lib/zudoku.auth-supabase.js +31 -40
- package/lib/zudoku.auth-supabase.js.map +1 -1
- package/lib/zudoku.components.js +29 -25
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +24 -11
- package/lib/zudoku.hooks.js.map +1 -1
- package/lib/zudoku.mermaid.js +5 -4
- package/lib/zudoku.mermaid.js.map +1 -1
- package/lib/zudoku.plugin-api-catalog.js +35 -31
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +607 -551
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +1 -1
- package/lib/zudoku.plugin-markdown.js +1 -1
- package/lib/zudoku.plugin-openapi.js +3 -3
- package/lib/zudoku.plugin-redirect.js +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +30 -29
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js +9 -8
- package/lib/zudoku.plugins.js.map +1 -1
- package/lib/zudoku.react-query.js +440 -0
- package/lib/zudoku.react-query.js.map +1 -0
- package/lib/zudoku.router.js +1130 -1404
- package/lib/zudoku.router.js.map +1 -1
- package/package.json +30 -22
- package/src/lib/auth/issuer.ts +1 -1
- package/src/lib/authentication/authentication.ts +8 -2
- package/src/lib/authentication/components/CallbackHandler.tsx +1 -1
- package/src/lib/authentication/components/SignIn.tsx +5 -2
- package/src/lib/authentication/components/SignUp.tsx +5 -2
- package/src/lib/authentication/hook.ts +16 -0
- package/src/lib/authentication/providers/auth0.tsx +15 -9
- package/src/lib/authentication/providers/clerk.tsx +0 -26
- package/src/lib/authentication/providers/firebase.tsx +98 -6
- package/src/lib/authentication/providers/supabase.tsx +6 -15
- package/src/lib/authentication/ui/EmailVerificationUi.tsx +129 -0
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +170 -38
- package/src/lib/authentication/utils/relativeRedirectUrl.ts +12 -0
- package/src/lib/components/Pagination.tsx +4 -5
- package/src/lib/components/index.ts +19 -35
- package/src/lib/components/navigation/NavigationItem.tsx +9 -3
- package/src/lib/core/RouteGuard.tsx +30 -24
- package/src/lib/core/plugins.ts +21 -1
- package/src/lib/core/react-query.ts +1 -0
- package/src/lib/core/transform-config.ts +29 -0
- package/src/lib/errors/ErrorMessage.tsx +38 -0
- package/src/lib/hooks/index.ts +7 -16
- package/src/lib/oas/graphql/circular.test.ts +186 -0
- package/src/lib/oas/graphql/circular.ts +49 -10
- package/src/lib/oas/graphql/index.ts +7 -3
- package/src/lib/oas/parser/index.ts +17 -6
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +36 -476
- package/src/lib/plugins/api-keys/index.tsx +76 -32
- package/src/lib/plugins/api-keys/settings/ApiKeyItem.tsx +342 -0
- package/src/lib/plugins/api-keys/settings/ApiKeyList.tsx +67 -0
- package/src/lib/plugins/api-keys/settings/RevealApiKey.tsx +124 -0
- package/src/lib/plugins/openapi/OasProvider.tsx +10 -2
- package/src/lib/plugins/openapi/OperationList.tsx +4 -4
- package/src/lib/plugins/openapi/ParamInfos.tsx +1 -0
- package/src/lib/plugins/openapi/Sidecar.tsx +3 -2
- package/src/lib/plugins/openapi/interfaces.ts +6 -1
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +6 -4
- package/src/lib/plugins/openapi/schema/utils.ts +15 -4
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +29 -1
- package/src/lib/plugins/openapi/util/getRoutes.tsx +4 -1
- package/src/lib/ui/Button.tsx +1 -0
- package/src/lib/util/flattenAllOf.test.ts +2 -1
- package/src/lib/util/flattenAllOf.ts +0 -57
- package/src/lib/util/flattenAllOfProcessor.ts +58 -0
- package/src/lib/util/invariant.ts +2 -1
- package/src/lib/util/readFrontmatter.ts +2 -1
- package/src/shiki/langs/c3.js +1 -0
- package/src/shiki/langs/gn.js +1 -0
- package/src/shiki/langs/moonbit.js +1 -0
- package/src/zuplo/enrich-with-zuplo-mcp.ts +168 -0
- package/src/zuplo/enrich-with-zuplo.ts +254 -0
- package/src/zuplo/policy-types.ts +46 -0
- package/src/zuplo/with-zuplo-processors.ts +35 -0
- package/src/zuplo/with-zuplo.ts +14 -0
- package/lib/ClaudeLogo-B4Xxt-x_.js.map +0 -1
- package/lib/ErrorAlert-DrOR8w3f.js.map +0 -1
- package/lib/OAuthErrorPage-Fq54RLgt.js.map +0 -1
- package/lib/OasProvider-DPH8mwDa.js +0 -40
- package/lib/OasProvider-DPH8mwDa.js.map +0 -1
- package/lib/OperationList-C0jiEaG5.js.map +0 -1
- package/lib/RouteGuard-9wjejsKm.js +0 -77
- package/lib/RouteGuard-9wjejsKm.js.map +0 -1
- package/lib/RouterError-DSLXagd5.js +0 -42
- package/lib/RouterError-DSLXagd5.js.map +0 -1
- package/lib/SchemaView-DVae4RO2.js +0 -597
- package/lib/SchemaView-DVae4RO2.js.map +0 -1
- package/lib/Select-CkxXP5I7.js.map +0 -1
- package/lib/SignUp-BjS4ozA7.js +0 -50
- package/lib/SignUp-BjS4ozA7.js.map +0 -1
- package/lib/SyntaxHighlight-Kdyskw3C.js.map +0 -1
- package/lib/ZudokuContext-BXldanA8.js +0 -1508
- package/lib/ZudokuContext-BXldanA8.js.map +0 -1
- package/lib/___vite-browser-external_commonjs-proxy-Cga3HsWk.js +0 -9
- package/lib/___vite-browser-external_commonjs-proxy-Cga3HsWk.js.map +0 -1
- package/lib/chunk-PVWAREVJ-dLIqswPy.js +0 -7965
- package/lib/chunk-PVWAREVJ-dLIqswPy.js.map +0 -1
- package/lib/cn-dYga0KKN.js.map +0 -1
- package/lib/createServer-BIr2_tGn.js +0 -16693
- package/lib/createServer-BIr2_tGn.js.map +0 -1
- package/lib/createVariantComponent-B9_dVBvu.js +0 -35
- package/lib/createVariantComponent-B9_dVBvu.js.map +0 -1
- package/lib/firebase-qUdSEL1p.js.map +0 -1
- package/lib/hook-BNxidGQq.js +0 -40
- package/lib/hook-BNxidGQq.js.map +0 -1
- package/lib/index-CCmMJp02.js +0 -1059
- package/lib/index-CCmMJp02.js.map +0 -1
- package/lib/index-Css56y3F.js +0 -133
- package/lib/index-Css56y3F.js.map +0 -1
- package/lib/index.esm-kW-Utcsi.js.map +0 -1
- package/lib/invariant-CGOLuIIz.js.map +0 -1
- package/lib/mutation-BoVlx8yA.js.map +0 -1
- package/lib/useMutation-C6RqWmTS.js.map +0 -1
|
@@ -5,6 +5,7 @@ declare const InputNavigationCategoryLinkDocSchema: z.ZodUnion<readonly [z.ZodSt
|
|
|
5
5
|
type: z.ZodLiteral<"doc">;
|
|
6
6
|
file: z.ZodString;
|
|
7
7
|
label: z.ZodOptional<z.ZodString>;
|
|
8
|
+
path: z.ZodOptional<z.ZodString>;
|
|
8
9
|
}, z.core.$strip>]>;
|
|
9
10
|
export declare const DisplaySchema: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10
11
|
hide: "hide";
|
|
@@ -23,35 +24,41 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
23
24
|
file: z.ZodString;
|
|
24
25
|
path: z.ZodOptional<z.ZodString>;
|
|
25
26
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
26
|
-
|
|
27
|
+
slice: "slice";
|
|
28
|
+
map: "map";
|
|
29
|
+
filter: "filter";
|
|
30
|
+
key: "key";
|
|
27
31
|
replace: "replace";
|
|
28
32
|
search: "search";
|
|
29
|
-
slice: "slice";
|
|
30
33
|
split: "split";
|
|
31
34
|
repeat: "repeat";
|
|
32
35
|
anchor: "anchor";
|
|
33
36
|
bold: "bold";
|
|
34
37
|
link: "link";
|
|
38
|
+
info: "info";
|
|
39
|
+
tags: "tags";
|
|
40
|
+
contact: "contact";
|
|
41
|
+
type: "type";
|
|
35
42
|
binary: "binary";
|
|
36
|
-
|
|
37
|
-
|
|
43
|
+
cookie: "cookie";
|
|
44
|
+
list: "list";
|
|
45
|
+
server: "server";
|
|
46
|
+
tag: "tag";
|
|
38
47
|
file: "file";
|
|
39
|
-
|
|
48
|
+
delete: "delete";
|
|
40
49
|
copy: "copy";
|
|
41
50
|
focus: "focus";
|
|
42
51
|
pause: "pause";
|
|
43
52
|
play: "play";
|
|
44
53
|
scroll: "scroll";
|
|
45
|
-
key: "key";
|
|
46
54
|
merge: "merge";
|
|
55
|
+
code: "code";
|
|
47
56
|
ghost: "ghost";
|
|
48
57
|
expand: "expand";
|
|
49
|
-
type: "type";
|
|
50
58
|
send: "send";
|
|
51
59
|
grid: "grid";
|
|
52
60
|
group: "group";
|
|
53
61
|
heading: "heading";
|
|
54
|
-
list: "list";
|
|
55
62
|
menu: "menu";
|
|
56
63
|
navigation: "navigation";
|
|
57
64
|
option: "option";
|
|
@@ -62,15 +69,26 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
62
69
|
text: "text";
|
|
63
70
|
mouse: "mouse";
|
|
64
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";
|
|
65
86
|
section: "section";
|
|
66
87
|
video: "video";
|
|
67
88
|
circle: "circle";
|
|
68
89
|
image: "image";
|
|
69
90
|
view: "view";
|
|
70
|
-
|
|
71
|
-
radius: "radius";
|
|
72
|
-
scale: "scale";
|
|
73
|
-
x: "x";
|
|
91
|
+
settings: "settings";
|
|
74
92
|
baseline: "baseline";
|
|
75
93
|
terminal: "terminal";
|
|
76
94
|
square: "square";
|
|
@@ -212,7 +230,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
212
230
|
asterisk: "asterisk";
|
|
213
231
|
"asterisk-square": "asterisk-square";
|
|
214
232
|
"at-sign": "at-sign";
|
|
215
|
-
atom: "atom";
|
|
216
233
|
"audio-lines": "audio-lines";
|
|
217
234
|
"audio-waveform": "audio-waveform";
|
|
218
235
|
award: "award";
|
|
@@ -584,7 +601,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
584
601
|
"code-xml": "code-xml";
|
|
585
602
|
codepen: "codepen";
|
|
586
603
|
codesandbox: "codesandbox";
|
|
587
|
-
coffee: "coffee";
|
|
588
604
|
cog: "cog";
|
|
589
605
|
coins: "coins";
|
|
590
606
|
columns: "columns";
|
|
@@ -601,12 +617,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
601
617
|
"concierge-bell": "concierge-bell";
|
|
602
618
|
cone: "cone";
|
|
603
619
|
construction: "construction";
|
|
604
|
-
contact: "contact";
|
|
605
620
|
"contact-2": "contact-2";
|
|
606
621
|
"contact-round": "contact-round";
|
|
607
622
|
container: "container";
|
|
608
623
|
contrast: "contrast";
|
|
609
|
-
cookie: "cookie";
|
|
610
624
|
"cooking-pot": "cooking-pot";
|
|
611
625
|
"copy-check": "copy-check";
|
|
612
626
|
"copy-minus": "copy-minus";
|
|
@@ -642,7 +656,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
642
656
|
"database-zap": "database-zap";
|
|
643
657
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
644
658
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
645
|
-
delete: "delete";
|
|
646
659
|
dessert: "dessert";
|
|
647
660
|
diameter: "diameter";
|
|
648
661
|
diamond: "diamond";
|
|
@@ -656,7 +669,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
656
669
|
"dice-5": "dice-5";
|
|
657
670
|
"dice-6": "dice-6";
|
|
658
671
|
dices: "dices";
|
|
659
|
-
diff: "diff";
|
|
660
672
|
disc: "disc";
|
|
661
673
|
"disc-2": "disc-2";
|
|
662
674
|
"disc-3": "disc-3";
|
|
@@ -795,7 +807,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
795
807
|
"filter-x": "filter-x";
|
|
796
808
|
fingerprint: "fingerprint";
|
|
797
809
|
"fire-extinguisher": "fire-extinguisher";
|
|
798
|
-
fish: "fish";
|
|
799
810
|
"fish-off": "fish-off";
|
|
800
811
|
"fish-symbol": "fish-symbol";
|
|
801
812
|
flag: "flag";
|
|
@@ -883,7 +894,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
883
894
|
gift: "gift";
|
|
884
895
|
"git-branch": "git-branch";
|
|
885
896
|
"git-branch-plus": "git-branch-plus";
|
|
886
|
-
"git-commit": "git-commit";
|
|
887
897
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
888
898
|
"git-commit-vertical": "git-commit-vertical";
|
|
889
899
|
"git-compare": "git-compare";
|
|
@@ -1206,7 +1216,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1206
1216
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
1207
1217
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
1208
1218
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
1209
|
-
move: "move";
|
|
1210
1219
|
"move-3-d": "move-3-d";
|
|
1211
1220
|
"move-3d": "move-3d";
|
|
1212
1221
|
"move-diagonal": "move-diagonal";
|
|
@@ -1411,7 +1420,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1411
1420
|
"refresh-cw": "refresh-cw";
|
|
1412
1421
|
"refresh-cw-off": "refresh-cw-off";
|
|
1413
1422
|
refrigerator: "refrigerator";
|
|
1414
|
-
regex: "regex";
|
|
1415
1423
|
"remove-formatting": "remove-formatting";
|
|
1416
1424
|
"repeat-1": "repeat-1";
|
|
1417
1425
|
"repeat-2": "repeat-2";
|
|
@@ -1438,7 +1446,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1438
1446
|
"rows-2": "rows-2";
|
|
1439
1447
|
"rows-3": "rows-3";
|
|
1440
1448
|
"rows-4": "rows-4";
|
|
1441
|
-
rss: "rss";
|
|
1442
1449
|
ruler: "ruler";
|
|
1443
1450
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
1444
1451
|
"russian-ruble": "russian-ruble";
|
|
@@ -1482,17 +1489,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1482
1489
|
"send-to-back": "send-to-back";
|
|
1483
1490
|
"separator-horizontal": "separator-horizontal";
|
|
1484
1491
|
"separator-vertical": "separator-vertical";
|
|
1485
|
-
server: "server";
|
|
1486
1492
|
"server-cog": "server-cog";
|
|
1487
1493
|
"server-crash": "server-crash";
|
|
1488
1494
|
"server-off": "server-off";
|
|
1489
|
-
settings: "settings";
|
|
1490
1495
|
"settings-2": "settings-2";
|
|
1491
1496
|
shapes: "shapes";
|
|
1492
1497
|
share: "share";
|
|
1493
1498
|
"share-2": "share-2";
|
|
1494
1499
|
sheet: "sheet";
|
|
1495
|
-
shell: "shell";
|
|
1496
1500
|
shield: "shield";
|
|
1497
1501
|
"shield-alert": "shield-alert";
|
|
1498
1502
|
"shield-ban": "shield-ban";
|
|
@@ -1685,8 +1689,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1685
1689
|
tablet: "tablet";
|
|
1686
1690
|
"tablet-smartphone": "tablet-smartphone";
|
|
1687
1691
|
tablets: "tablets";
|
|
1688
|
-
tag: "tag";
|
|
1689
|
-
tags: "tags";
|
|
1690
1692
|
"tally-1": "tally-1";
|
|
1691
1693
|
"tally-2": "tally-2";
|
|
1692
1694
|
"tally-3": "tally-3";
|
|
@@ -1767,7 +1769,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1767
1769
|
"truck-electric": "truck-electric";
|
|
1768
1770
|
"turkish-lira": "turkish-lira";
|
|
1769
1771
|
turntable: "turntable";
|
|
1770
|
-
turtle: "turtle";
|
|
1771
1772
|
tv: "tv";
|
|
1772
1773
|
"tv-2": "tv-2";
|
|
1773
1774
|
"tv-minimal": "tv-minimal";
|
|
@@ -1898,10 +1899,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1898
1899
|
label: z.ZodString;
|
|
1899
1900
|
color: z.ZodEnum<{
|
|
1900
1901
|
outline: "outline";
|
|
1902
|
+
red: "red";
|
|
1901
1903
|
green: "green";
|
|
1902
1904
|
blue: "blue";
|
|
1903
1905
|
yellow: "yellow";
|
|
1904
|
-
red: "red";
|
|
1905
1906
|
purple: "purple";
|
|
1906
1907
|
indigo: "indigo";
|
|
1907
1908
|
gray: "gray";
|
|
@@ -1931,35 +1932,41 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1931
1932
|
_blank: "_blank";
|
|
1932
1933
|
}>>;
|
|
1933
1934
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1934
|
-
|
|
1935
|
+
slice: "slice";
|
|
1936
|
+
map: "map";
|
|
1937
|
+
filter: "filter";
|
|
1938
|
+
key: "key";
|
|
1935
1939
|
replace: "replace";
|
|
1936
1940
|
search: "search";
|
|
1937
|
-
slice: "slice";
|
|
1938
1941
|
split: "split";
|
|
1939
1942
|
repeat: "repeat";
|
|
1940
1943
|
anchor: "anchor";
|
|
1941
1944
|
bold: "bold";
|
|
1942
1945
|
link: "link";
|
|
1946
|
+
info: "info";
|
|
1947
|
+
tags: "tags";
|
|
1948
|
+
contact: "contact";
|
|
1949
|
+
type: "type";
|
|
1943
1950
|
binary: "binary";
|
|
1944
|
-
|
|
1945
|
-
|
|
1951
|
+
cookie: "cookie";
|
|
1952
|
+
list: "list";
|
|
1953
|
+
server: "server";
|
|
1954
|
+
tag: "tag";
|
|
1946
1955
|
file: "file";
|
|
1947
|
-
|
|
1956
|
+
delete: "delete";
|
|
1948
1957
|
copy: "copy";
|
|
1949
1958
|
focus: "focus";
|
|
1950
1959
|
pause: "pause";
|
|
1951
1960
|
play: "play";
|
|
1952
1961
|
scroll: "scroll";
|
|
1953
|
-
key: "key";
|
|
1954
1962
|
merge: "merge";
|
|
1963
|
+
code: "code";
|
|
1955
1964
|
ghost: "ghost";
|
|
1956
1965
|
expand: "expand";
|
|
1957
|
-
type: "type";
|
|
1958
1966
|
send: "send";
|
|
1959
1967
|
grid: "grid";
|
|
1960
1968
|
group: "group";
|
|
1961
1969
|
heading: "heading";
|
|
1962
|
-
list: "list";
|
|
1963
1970
|
menu: "menu";
|
|
1964
1971
|
navigation: "navigation";
|
|
1965
1972
|
option: "option";
|
|
@@ -1970,15 +1977,26 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1970
1977
|
text: "text";
|
|
1971
1978
|
mouse: "mouse";
|
|
1972
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";
|
|
1973
1994
|
section: "section";
|
|
1974
1995
|
video: "video";
|
|
1975
1996
|
circle: "circle";
|
|
1976
1997
|
image: "image";
|
|
1977
1998
|
view: "view";
|
|
1978
|
-
|
|
1979
|
-
radius: "radius";
|
|
1980
|
-
scale: "scale";
|
|
1981
|
-
x: "x";
|
|
1999
|
+
settings: "settings";
|
|
1982
2000
|
baseline: "baseline";
|
|
1983
2001
|
terminal: "terminal";
|
|
1984
2002
|
square: "square";
|
|
@@ -2120,7 +2138,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2120
2138
|
asterisk: "asterisk";
|
|
2121
2139
|
"asterisk-square": "asterisk-square";
|
|
2122
2140
|
"at-sign": "at-sign";
|
|
2123
|
-
atom: "atom";
|
|
2124
2141
|
"audio-lines": "audio-lines";
|
|
2125
2142
|
"audio-waveform": "audio-waveform";
|
|
2126
2143
|
award: "award";
|
|
@@ -2492,7 +2509,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2492
2509
|
"code-xml": "code-xml";
|
|
2493
2510
|
codepen: "codepen";
|
|
2494
2511
|
codesandbox: "codesandbox";
|
|
2495
|
-
coffee: "coffee";
|
|
2496
2512
|
cog: "cog";
|
|
2497
2513
|
coins: "coins";
|
|
2498
2514
|
columns: "columns";
|
|
@@ -2509,12 +2525,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2509
2525
|
"concierge-bell": "concierge-bell";
|
|
2510
2526
|
cone: "cone";
|
|
2511
2527
|
construction: "construction";
|
|
2512
|
-
contact: "contact";
|
|
2513
2528
|
"contact-2": "contact-2";
|
|
2514
2529
|
"contact-round": "contact-round";
|
|
2515
2530
|
container: "container";
|
|
2516
2531
|
contrast: "contrast";
|
|
2517
|
-
cookie: "cookie";
|
|
2518
2532
|
"cooking-pot": "cooking-pot";
|
|
2519
2533
|
"copy-check": "copy-check";
|
|
2520
2534
|
"copy-minus": "copy-minus";
|
|
@@ -2550,7 +2564,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2550
2564
|
"database-zap": "database-zap";
|
|
2551
2565
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
2552
2566
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
2553
|
-
delete: "delete";
|
|
2554
2567
|
dessert: "dessert";
|
|
2555
2568
|
diameter: "diameter";
|
|
2556
2569
|
diamond: "diamond";
|
|
@@ -2564,7 +2577,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2564
2577
|
"dice-5": "dice-5";
|
|
2565
2578
|
"dice-6": "dice-6";
|
|
2566
2579
|
dices: "dices";
|
|
2567
|
-
diff: "diff";
|
|
2568
2580
|
disc: "disc";
|
|
2569
2581
|
"disc-2": "disc-2";
|
|
2570
2582
|
"disc-3": "disc-3";
|
|
@@ -2703,7 +2715,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2703
2715
|
"filter-x": "filter-x";
|
|
2704
2716
|
fingerprint: "fingerprint";
|
|
2705
2717
|
"fire-extinguisher": "fire-extinguisher";
|
|
2706
|
-
fish: "fish";
|
|
2707
2718
|
"fish-off": "fish-off";
|
|
2708
2719
|
"fish-symbol": "fish-symbol";
|
|
2709
2720
|
flag: "flag";
|
|
@@ -2791,7 +2802,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2791
2802
|
gift: "gift";
|
|
2792
2803
|
"git-branch": "git-branch";
|
|
2793
2804
|
"git-branch-plus": "git-branch-plus";
|
|
2794
|
-
"git-commit": "git-commit";
|
|
2795
2805
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
2796
2806
|
"git-commit-vertical": "git-commit-vertical";
|
|
2797
2807
|
"git-compare": "git-compare";
|
|
@@ -3114,7 +3124,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3114
3124
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
3115
3125
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
3116
3126
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
3117
|
-
move: "move";
|
|
3118
3127
|
"move-3-d": "move-3-d";
|
|
3119
3128
|
"move-3d": "move-3d";
|
|
3120
3129
|
"move-diagonal": "move-diagonal";
|
|
@@ -3319,7 +3328,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3319
3328
|
"refresh-cw": "refresh-cw";
|
|
3320
3329
|
"refresh-cw-off": "refresh-cw-off";
|
|
3321
3330
|
refrigerator: "refrigerator";
|
|
3322
|
-
regex: "regex";
|
|
3323
3331
|
"remove-formatting": "remove-formatting";
|
|
3324
3332
|
"repeat-1": "repeat-1";
|
|
3325
3333
|
"repeat-2": "repeat-2";
|
|
@@ -3346,7 +3354,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3346
3354
|
"rows-2": "rows-2";
|
|
3347
3355
|
"rows-3": "rows-3";
|
|
3348
3356
|
"rows-4": "rows-4";
|
|
3349
|
-
rss: "rss";
|
|
3350
3357
|
ruler: "ruler";
|
|
3351
3358
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
3352
3359
|
"russian-ruble": "russian-ruble";
|
|
@@ -3390,17 +3397,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3390
3397
|
"send-to-back": "send-to-back";
|
|
3391
3398
|
"separator-horizontal": "separator-horizontal";
|
|
3392
3399
|
"separator-vertical": "separator-vertical";
|
|
3393
|
-
server: "server";
|
|
3394
3400
|
"server-cog": "server-cog";
|
|
3395
3401
|
"server-crash": "server-crash";
|
|
3396
3402
|
"server-off": "server-off";
|
|
3397
|
-
settings: "settings";
|
|
3398
3403
|
"settings-2": "settings-2";
|
|
3399
3404
|
shapes: "shapes";
|
|
3400
3405
|
share: "share";
|
|
3401
3406
|
"share-2": "share-2";
|
|
3402
3407
|
sheet: "sheet";
|
|
3403
|
-
shell: "shell";
|
|
3404
3408
|
shield: "shield";
|
|
3405
3409
|
"shield-alert": "shield-alert";
|
|
3406
3410
|
"shield-ban": "shield-ban";
|
|
@@ -3593,8 +3597,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3593
3597
|
tablet: "tablet";
|
|
3594
3598
|
"tablet-smartphone": "tablet-smartphone";
|
|
3595
3599
|
tablets: "tablets";
|
|
3596
|
-
tag: "tag";
|
|
3597
|
-
tags: "tags";
|
|
3598
3600
|
"tally-1": "tally-1";
|
|
3599
3601
|
"tally-2": "tally-2";
|
|
3600
3602
|
"tally-3": "tally-3";
|
|
@@ -3675,7 +3677,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3675
3677
|
"truck-electric": "truck-electric";
|
|
3676
3678
|
"turkish-lira": "turkish-lira";
|
|
3677
3679
|
turntable: "turntable";
|
|
3678
|
-
turtle: "turtle";
|
|
3679
3680
|
tv: "tv";
|
|
3680
3681
|
"tv-2": "tv-2";
|
|
3681
3682
|
"tv-minimal": "tv-minimal";
|
|
@@ -3805,10 +3806,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3805
3806
|
label: z.ZodString;
|
|
3806
3807
|
color: z.ZodEnum<{
|
|
3807
3808
|
outline: "outline";
|
|
3809
|
+
red: "red";
|
|
3808
3810
|
green: "green";
|
|
3809
3811
|
blue: "blue";
|
|
3810
3812
|
yellow: "yellow";
|
|
3811
|
-
red: "red";
|
|
3812
3813
|
purple: "purple";
|
|
3813
3814
|
indigo: "indigo";
|
|
3814
3815
|
gray: "gray";
|
|
@@ -3835,35 +3836,41 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3835
3836
|
label: z.ZodOptional<z.ZodString>;
|
|
3836
3837
|
element: z.ZodAny;
|
|
3837
3838
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3838
|
-
|
|
3839
|
+
slice: "slice";
|
|
3840
|
+
map: "map";
|
|
3841
|
+
filter: "filter";
|
|
3842
|
+
key: "key";
|
|
3839
3843
|
replace: "replace";
|
|
3840
3844
|
search: "search";
|
|
3841
|
-
slice: "slice";
|
|
3842
3845
|
split: "split";
|
|
3843
3846
|
repeat: "repeat";
|
|
3844
3847
|
anchor: "anchor";
|
|
3845
3848
|
bold: "bold";
|
|
3846
3849
|
link: "link";
|
|
3850
|
+
info: "info";
|
|
3851
|
+
tags: "tags";
|
|
3852
|
+
contact: "contact";
|
|
3853
|
+
type: "type";
|
|
3847
3854
|
binary: "binary";
|
|
3848
|
-
|
|
3849
|
-
|
|
3855
|
+
cookie: "cookie";
|
|
3856
|
+
list: "list";
|
|
3857
|
+
server: "server";
|
|
3858
|
+
tag: "tag";
|
|
3850
3859
|
file: "file";
|
|
3851
|
-
|
|
3860
|
+
delete: "delete";
|
|
3852
3861
|
copy: "copy";
|
|
3853
3862
|
focus: "focus";
|
|
3854
3863
|
pause: "pause";
|
|
3855
3864
|
play: "play";
|
|
3856
3865
|
scroll: "scroll";
|
|
3857
|
-
key: "key";
|
|
3858
3866
|
merge: "merge";
|
|
3867
|
+
code: "code";
|
|
3859
3868
|
ghost: "ghost";
|
|
3860
3869
|
expand: "expand";
|
|
3861
|
-
type: "type";
|
|
3862
3870
|
send: "send";
|
|
3863
3871
|
grid: "grid";
|
|
3864
3872
|
group: "group";
|
|
3865
3873
|
heading: "heading";
|
|
3866
|
-
list: "list";
|
|
3867
3874
|
menu: "menu";
|
|
3868
3875
|
navigation: "navigation";
|
|
3869
3876
|
option: "option";
|
|
@@ -3874,15 +3881,26 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3874
3881
|
text: "text";
|
|
3875
3882
|
mouse: "mouse";
|
|
3876
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";
|
|
3877
3898
|
section: "section";
|
|
3878
3899
|
video: "video";
|
|
3879
3900
|
circle: "circle";
|
|
3880
3901
|
image: "image";
|
|
3881
3902
|
view: "view";
|
|
3882
|
-
|
|
3883
|
-
radius: "radius";
|
|
3884
|
-
scale: "scale";
|
|
3885
|
-
x: "x";
|
|
3903
|
+
settings: "settings";
|
|
3886
3904
|
baseline: "baseline";
|
|
3887
3905
|
terminal: "terminal";
|
|
3888
3906
|
square: "square";
|
|
@@ -4024,7 +4042,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4024
4042
|
asterisk: "asterisk";
|
|
4025
4043
|
"asterisk-square": "asterisk-square";
|
|
4026
4044
|
"at-sign": "at-sign";
|
|
4027
|
-
atom: "atom";
|
|
4028
4045
|
"audio-lines": "audio-lines";
|
|
4029
4046
|
"audio-waveform": "audio-waveform";
|
|
4030
4047
|
award: "award";
|
|
@@ -4396,7 +4413,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4396
4413
|
"code-xml": "code-xml";
|
|
4397
4414
|
codepen: "codepen";
|
|
4398
4415
|
codesandbox: "codesandbox";
|
|
4399
|
-
coffee: "coffee";
|
|
4400
4416
|
cog: "cog";
|
|
4401
4417
|
coins: "coins";
|
|
4402
4418
|
columns: "columns";
|
|
@@ -4413,12 +4429,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4413
4429
|
"concierge-bell": "concierge-bell";
|
|
4414
4430
|
cone: "cone";
|
|
4415
4431
|
construction: "construction";
|
|
4416
|
-
contact: "contact";
|
|
4417
4432
|
"contact-2": "contact-2";
|
|
4418
4433
|
"contact-round": "contact-round";
|
|
4419
4434
|
container: "container";
|
|
4420
4435
|
contrast: "contrast";
|
|
4421
|
-
cookie: "cookie";
|
|
4422
4436
|
"cooking-pot": "cooking-pot";
|
|
4423
4437
|
"copy-check": "copy-check";
|
|
4424
4438
|
"copy-minus": "copy-minus";
|
|
@@ -4454,7 +4468,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4454
4468
|
"database-zap": "database-zap";
|
|
4455
4469
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
4456
4470
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
4457
|
-
delete: "delete";
|
|
4458
4471
|
dessert: "dessert";
|
|
4459
4472
|
diameter: "diameter";
|
|
4460
4473
|
diamond: "diamond";
|
|
@@ -4468,7 +4481,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4468
4481
|
"dice-5": "dice-5";
|
|
4469
4482
|
"dice-6": "dice-6";
|
|
4470
4483
|
dices: "dices";
|
|
4471
|
-
diff: "diff";
|
|
4472
4484
|
disc: "disc";
|
|
4473
4485
|
"disc-2": "disc-2";
|
|
4474
4486
|
"disc-3": "disc-3";
|
|
@@ -4607,7 +4619,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4607
4619
|
"filter-x": "filter-x";
|
|
4608
4620
|
fingerprint: "fingerprint";
|
|
4609
4621
|
"fire-extinguisher": "fire-extinguisher";
|
|
4610
|
-
fish: "fish";
|
|
4611
4622
|
"fish-off": "fish-off";
|
|
4612
4623
|
"fish-symbol": "fish-symbol";
|
|
4613
4624
|
flag: "flag";
|
|
@@ -4695,7 +4706,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4695
4706
|
gift: "gift";
|
|
4696
4707
|
"git-branch": "git-branch";
|
|
4697
4708
|
"git-branch-plus": "git-branch-plus";
|
|
4698
|
-
"git-commit": "git-commit";
|
|
4699
4709
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
4700
4710
|
"git-commit-vertical": "git-commit-vertical";
|
|
4701
4711
|
"git-compare": "git-compare";
|
|
@@ -5018,7 +5028,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5018
5028
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
5019
5029
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
5020
5030
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
5021
|
-
move: "move";
|
|
5022
5031
|
"move-3-d": "move-3-d";
|
|
5023
5032
|
"move-3d": "move-3d";
|
|
5024
5033
|
"move-diagonal": "move-diagonal";
|
|
@@ -5223,7 +5232,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5223
5232
|
"refresh-cw": "refresh-cw";
|
|
5224
5233
|
"refresh-cw-off": "refresh-cw-off";
|
|
5225
5234
|
refrigerator: "refrigerator";
|
|
5226
|
-
regex: "regex";
|
|
5227
5235
|
"remove-formatting": "remove-formatting";
|
|
5228
5236
|
"repeat-1": "repeat-1";
|
|
5229
5237
|
"repeat-2": "repeat-2";
|
|
@@ -5250,7 +5258,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5250
5258
|
"rows-2": "rows-2";
|
|
5251
5259
|
"rows-3": "rows-3";
|
|
5252
5260
|
"rows-4": "rows-4";
|
|
5253
|
-
rss: "rss";
|
|
5254
5261
|
ruler: "ruler";
|
|
5255
5262
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
5256
5263
|
"russian-ruble": "russian-ruble";
|
|
@@ -5294,17 +5301,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5294
5301
|
"send-to-back": "send-to-back";
|
|
5295
5302
|
"separator-horizontal": "separator-horizontal";
|
|
5296
5303
|
"separator-vertical": "separator-vertical";
|
|
5297
|
-
server: "server";
|
|
5298
5304
|
"server-cog": "server-cog";
|
|
5299
5305
|
"server-crash": "server-crash";
|
|
5300
5306
|
"server-off": "server-off";
|
|
5301
|
-
settings: "settings";
|
|
5302
5307
|
"settings-2": "settings-2";
|
|
5303
5308
|
shapes: "shapes";
|
|
5304
5309
|
share: "share";
|
|
5305
5310
|
"share-2": "share-2";
|
|
5306
5311
|
sheet: "sheet";
|
|
5307
|
-
shell: "shell";
|
|
5308
5312
|
shield: "shield";
|
|
5309
5313
|
"shield-alert": "shield-alert";
|
|
5310
5314
|
"shield-ban": "shield-ban";
|
|
@@ -5497,8 +5501,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5497
5501
|
tablet: "tablet";
|
|
5498
5502
|
"tablet-smartphone": "tablet-smartphone";
|
|
5499
5503
|
tablets: "tablets";
|
|
5500
|
-
tag: "tag";
|
|
5501
|
-
tags: "tags";
|
|
5502
5504
|
"tally-1": "tally-1";
|
|
5503
5505
|
"tally-2": "tally-2";
|
|
5504
5506
|
"tally-3": "tally-3";
|
|
@@ -5579,7 +5581,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5579
5581
|
"truck-electric": "truck-electric";
|
|
5580
5582
|
"turkish-lira": "turkish-lira";
|
|
5581
5583
|
turntable: "turntable";
|
|
5582
|
-
turtle: "turtle";
|
|
5583
5584
|
tv: "tv";
|
|
5584
5585
|
"tv-2": "tv-2";
|
|
5585
5586
|
"tv-minimal": "tv-minimal";
|
|
@@ -5709,10 +5710,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5709
5710
|
label: z.ZodString;
|
|
5710
5711
|
color: z.ZodEnum<{
|
|
5711
5712
|
outline: "outline";
|
|
5713
|
+
red: "red";
|
|
5712
5714
|
green: "green";
|
|
5713
5715
|
blue: "blue";
|
|
5714
5716
|
yellow: "yellow";
|
|
5715
|
-
red: "red";
|
|
5716
5717
|
purple: "purple";
|
|
5717
5718
|
indigo: "indigo";
|
|
5718
5719
|
gray: "gray";
|
|
@@ -5740,35 +5741,41 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5740
5741
|
declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
5741
5742
|
type: z.ZodLiteral<"category">;
|
|
5742
5743
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
5743
|
-
|
|
5744
|
+
slice: "slice";
|
|
5745
|
+
map: "map";
|
|
5746
|
+
filter: "filter";
|
|
5747
|
+
key: "key";
|
|
5744
5748
|
replace: "replace";
|
|
5745
5749
|
search: "search";
|
|
5746
|
-
slice: "slice";
|
|
5747
5750
|
split: "split";
|
|
5748
5751
|
repeat: "repeat";
|
|
5749
5752
|
anchor: "anchor";
|
|
5750
5753
|
bold: "bold";
|
|
5751
5754
|
link: "link";
|
|
5755
|
+
info: "info";
|
|
5756
|
+
tags: "tags";
|
|
5757
|
+
contact: "contact";
|
|
5758
|
+
type: "type";
|
|
5752
5759
|
binary: "binary";
|
|
5753
|
-
|
|
5754
|
-
|
|
5760
|
+
cookie: "cookie";
|
|
5761
|
+
list: "list";
|
|
5762
|
+
server: "server";
|
|
5763
|
+
tag: "tag";
|
|
5755
5764
|
file: "file";
|
|
5756
|
-
|
|
5765
|
+
delete: "delete";
|
|
5757
5766
|
copy: "copy";
|
|
5758
5767
|
focus: "focus";
|
|
5759
5768
|
pause: "pause";
|
|
5760
5769
|
play: "play";
|
|
5761
5770
|
scroll: "scroll";
|
|
5762
|
-
key: "key";
|
|
5763
5771
|
merge: "merge";
|
|
5772
|
+
code: "code";
|
|
5764
5773
|
ghost: "ghost";
|
|
5765
5774
|
expand: "expand";
|
|
5766
|
-
type: "type";
|
|
5767
5775
|
send: "send";
|
|
5768
5776
|
grid: "grid";
|
|
5769
5777
|
group: "group";
|
|
5770
5778
|
heading: "heading";
|
|
5771
|
-
list: "list";
|
|
5772
5779
|
menu: "menu";
|
|
5773
5780
|
navigation: "navigation";
|
|
5774
5781
|
option: "option";
|
|
@@ -5779,15 +5786,26 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5779
5786
|
text: "text";
|
|
5780
5787
|
mouse: "mouse";
|
|
5781
5788
|
pen: "pen";
|
|
5789
|
+
target: "target";
|
|
5790
|
+
radius: "radius";
|
|
5791
|
+
scale: "scale";
|
|
5792
|
+
x: "x";
|
|
5793
|
+
atom: "atom";
|
|
5794
|
+
rss: "rss";
|
|
5795
|
+
coffee: "coffee";
|
|
5796
|
+
diff: "diff";
|
|
5797
|
+
fish: "fish";
|
|
5798
|
+
"git-commit": "git-commit";
|
|
5799
|
+
move: "move";
|
|
5800
|
+
regex: "regex";
|
|
5801
|
+
shell: "shell";
|
|
5802
|
+
turtle: "turtle";
|
|
5782
5803
|
section: "section";
|
|
5783
5804
|
video: "video";
|
|
5784
5805
|
circle: "circle";
|
|
5785
5806
|
image: "image";
|
|
5786
5807
|
view: "view";
|
|
5787
|
-
|
|
5788
|
-
radius: "radius";
|
|
5789
|
-
scale: "scale";
|
|
5790
|
-
x: "x";
|
|
5808
|
+
settings: "settings";
|
|
5791
5809
|
baseline: "baseline";
|
|
5792
5810
|
terminal: "terminal";
|
|
5793
5811
|
square: "square";
|
|
@@ -5929,7 +5947,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5929
5947
|
asterisk: "asterisk";
|
|
5930
5948
|
"asterisk-square": "asterisk-square";
|
|
5931
5949
|
"at-sign": "at-sign";
|
|
5932
|
-
atom: "atom";
|
|
5933
5950
|
"audio-lines": "audio-lines";
|
|
5934
5951
|
"audio-waveform": "audio-waveform";
|
|
5935
5952
|
award: "award";
|
|
@@ -6301,7 +6318,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6301
6318
|
"code-xml": "code-xml";
|
|
6302
6319
|
codepen: "codepen";
|
|
6303
6320
|
codesandbox: "codesandbox";
|
|
6304
|
-
coffee: "coffee";
|
|
6305
6321
|
cog: "cog";
|
|
6306
6322
|
coins: "coins";
|
|
6307
6323
|
columns: "columns";
|
|
@@ -6318,12 +6334,10 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6318
6334
|
"concierge-bell": "concierge-bell";
|
|
6319
6335
|
cone: "cone";
|
|
6320
6336
|
construction: "construction";
|
|
6321
|
-
contact: "contact";
|
|
6322
6337
|
"contact-2": "contact-2";
|
|
6323
6338
|
"contact-round": "contact-round";
|
|
6324
6339
|
container: "container";
|
|
6325
6340
|
contrast: "contrast";
|
|
6326
|
-
cookie: "cookie";
|
|
6327
6341
|
"cooking-pot": "cooking-pot";
|
|
6328
6342
|
"copy-check": "copy-check";
|
|
6329
6343
|
"copy-minus": "copy-minus";
|
|
@@ -6359,7 +6373,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6359
6373
|
"database-zap": "database-zap";
|
|
6360
6374
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
6361
6375
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
6362
|
-
delete: "delete";
|
|
6363
6376
|
dessert: "dessert";
|
|
6364
6377
|
diameter: "diameter";
|
|
6365
6378
|
diamond: "diamond";
|
|
@@ -6373,7 +6386,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6373
6386
|
"dice-5": "dice-5";
|
|
6374
6387
|
"dice-6": "dice-6";
|
|
6375
6388
|
dices: "dices";
|
|
6376
|
-
diff: "diff";
|
|
6377
6389
|
disc: "disc";
|
|
6378
6390
|
"disc-2": "disc-2";
|
|
6379
6391
|
"disc-3": "disc-3";
|
|
@@ -6512,7 +6524,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6512
6524
|
"filter-x": "filter-x";
|
|
6513
6525
|
fingerprint: "fingerprint";
|
|
6514
6526
|
"fire-extinguisher": "fire-extinguisher";
|
|
6515
|
-
fish: "fish";
|
|
6516
6527
|
"fish-off": "fish-off";
|
|
6517
6528
|
"fish-symbol": "fish-symbol";
|
|
6518
6529
|
flag: "flag";
|
|
@@ -6600,7 +6611,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6600
6611
|
gift: "gift";
|
|
6601
6612
|
"git-branch": "git-branch";
|
|
6602
6613
|
"git-branch-plus": "git-branch-plus";
|
|
6603
|
-
"git-commit": "git-commit";
|
|
6604
6614
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
6605
6615
|
"git-commit-vertical": "git-commit-vertical";
|
|
6606
6616
|
"git-compare": "git-compare";
|
|
@@ -6923,7 +6933,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6923
6933
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
6924
6934
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
6925
6935
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
6926
|
-
move: "move";
|
|
6927
6936
|
"move-3-d": "move-3-d";
|
|
6928
6937
|
"move-3d": "move-3d";
|
|
6929
6938
|
"move-diagonal": "move-diagonal";
|
|
@@ -7128,7 +7137,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7128
7137
|
"refresh-cw": "refresh-cw";
|
|
7129
7138
|
"refresh-cw-off": "refresh-cw-off";
|
|
7130
7139
|
refrigerator: "refrigerator";
|
|
7131
|
-
regex: "regex";
|
|
7132
7140
|
"remove-formatting": "remove-formatting";
|
|
7133
7141
|
"repeat-1": "repeat-1";
|
|
7134
7142
|
"repeat-2": "repeat-2";
|
|
@@ -7155,7 +7163,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7155
7163
|
"rows-2": "rows-2";
|
|
7156
7164
|
"rows-3": "rows-3";
|
|
7157
7165
|
"rows-4": "rows-4";
|
|
7158
|
-
rss: "rss";
|
|
7159
7166
|
ruler: "ruler";
|
|
7160
7167
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
7161
7168
|
"russian-ruble": "russian-ruble";
|
|
@@ -7199,17 +7206,14 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7199
7206
|
"send-to-back": "send-to-back";
|
|
7200
7207
|
"separator-horizontal": "separator-horizontal";
|
|
7201
7208
|
"separator-vertical": "separator-vertical";
|
|
7202
|
-
server: "server";
|
|
7203
7209
|
"server-cog": "server-cog";
|
|
7204
7210
|
"server-crash": "server-crash";
|
|
7205
7211
|
"server-off": "server-off";
|
|
7206
|
-
settings: "settings";
|
|
7207
7212
|
"settings-2": "settings-2";
|
|
7208
7213
|
shapes: "shapes";
|
|
7209
7214
|
share: "share";
|
|
7210
7215
|
"share-2": "share-2";
|
|
7211
7216
|
sheet: "sheet";
|
|
7212
|
-
shell: "shell";
|
|
7213
7217
|
shield: "shield";
|
|
7214
7218
|
"shield-alert": "shield-alert";
|
|
7215
7219
|
"shield-ban": "shield-ban";
|
|
@@ -7402,8 +7406,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7402
7406
|
tablet: "tablet";
|
|
7403
7407
|
"tablet-smartphone": "tablet-smartphone";
|
|
7404
7408
|
tablets: "tablets";
|
|
7405
|
-
tag: "tag";
|
|
7406
|
-
tags: "tags";
|
|
7407
7409
|
"tally-1": "tally-1";
|
|
7408
7410
|
"tally-2": "tally-2";
|
|
7409
7411
|
"tally-3": "tally-3";
|
|
@@ -7484,7 +7486,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7484
7486
|
"truck-electric": "truck-electric";
|
|
7485
7487
|
"turkish-lira": "turkish-lira";
|
|
7486
7488
|
turntable: "turntable";
|
|
7487
|
-
turtle: "turtle";
|
|
7488
7489
|
tv: "tv";
|
|
7489
7490
|
"tv-2": "tv-2";
|
|
7490
7491
|
"tv-minimal": "tv-minimal";
|
|
@@ -7617,6 +7618,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7617
7618
|
type: z.ZodLiteral<"doc">;
|
|
7618
7619
|
file: z.ZodString;
|
|
7619
7620
|
label: z.ZodOptional<z.ZodString>;
|
|
7621
|
+
path: z.ZodOptional<z.ZodString>;
|
|
7620
7622
|
}, z.core.$strip>]>>;
|
|
7621
7623
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7622
7624
|
hide: "hide";
|