zudoku 0.0.0-z25d5d85c → 0.0.0-z2f55b5ae
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.js +1 -1
- package/dist/app/main.js.map +1 -1
- package/dist/config/create-plugin.d.ts +2 -0
- package/dist/config/create-plugin.js +55 -0
- package/dist/config/create-plugin.js.map +1 -0
- package/dist/config/loader.js +2 -2
- package/dist/config/loader.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +118 -68
- package/dist/config/validators/InputNavigationSchema.js +17 -0
- package/dist/config/validators/InputNavigationSchema.js.map +1 -1
- package/dist/config/validators/NavigationSchema.d.ts +10 -2
- package/dist/config/validators/NavigationSchema.js +7 -0
- package/dist/config/validators/NavigationSchema.js.map +1 -1
- package/dist/config/validators/validate.d.ts +5 -4
- package/dist/config/validators/validate.js +2 -0
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/flat-config.d.ts +36 -24
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/components/Bootstrap.js +1 -2
- package/dist/lib/components/Bootstrap.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +2 -1
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/Slot.test.js +1 -1
- package/dist/lib/components/Slot.test.js.map +1 -1
- package/dist/lib/components/TopNavigation.d.ts +7 -1
- package/dist/lib/components/TopNavigation.js +7 -2
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/Zudoku.d.ts +4 -1
- package/dist/lib/components/Zudoku.js +4 -7
- package/dist/lib/components/Zudoku.js.map +1 -1
- package/dist/lib/components/context/ZudokuContext.d.ts +9 -4
- package/dist/lib/components/context/ZudokuContext.js +4 -2
- package/dist/lib/components/context/ZudokuContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuProvider.js +1 -1
- package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
- package/dist/lib/components/context/ZudokuReactContext.d.ts +11 -0
- package/dist/lib/components/context/ZudokuReactContext.js +4 -0
- package/dist/lib/components/context/ZudokuReactContext.js.map +1 -0
- package/dist/lib/components/navigation/Navigation.js +4 -3
- package/dist/lib/components/navigation/Navigation.js.map +1 -1
- package/dist/lib/components/navigation/NavigationCategory.js +8 -0
- package/dist/lib/components/navigation/NavigationCategory.js.map +1 -1
- package/dist/lib/components/navigation/NavigationFilterContext.d.ts +8 -0
- package/dist/lib/components/navigation/NavigationFilterContext.js +12 -0
- package/dist/lib/components/navigation/NavigationFilterContext.js.map +1 -0
- package/dist/lib/components/navigation/NavigationFilterInput.d.ts +3 -0
- package/dist/lib/components/navigation/NavigationFilterInput.js +9 -0
- package/dist/lib/components/navigation/NavigationFilterInput.js.map +1 -0
- package/dist/lib/components/navigation/NavigationItem.js +11 -1
- package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
- package/dist/lib/components/navigation/utils.d.ts +2 -1
- package/dist/lib/components/navigation/utils.js +22 -1
- package/dist/lib/components/navigation/utils.js.map +1 -1
- package/dist/lib/core/ZudokuContext.d.ts +2 -1
- package/dist/lib/core/ZudokuContext.js +3 -1
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/__internal.d.ts +1 -0
- package/dist/lib/core/__internal.js +2 -0
- package/dist/lib/core/__internal.js.map +1 -1
- package/dist/lib/core/plugins.d.ts +5 -1
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/core/transform-config.d.ts +4 -2
- package/dist/lib/core/transform-config.js +33 -13
- package/dist/lib/core/transform-config.js.map +1 -1
- package/dist/lib/core/transform-config.test.d.ts +1 -0
- package/dist/lib/core/transform-config.test.js +83 -0
- package/dist/lib/core/transform-config.test.js.map +1 -0
- package/dist/lib/errors/ErrorAlert.js +1 -2
- package/dist/lib/errors/ErrorAlert.js.map +1 -1
- package/dist/lib/hooks/useEvent.test.js +1 -1
- package/dist/lib/hooks/useEvent.test.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/fileUtils.d.ts +1 -0
- package/dist/lib/plugins/openapi/playground/fileUtils.js +3 -0
- package/dist/lib/plugins/openapi/playground/fileUtils.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.d.ts +6 -0
- package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.js +20 -0
- package/dist/lib/plugins/openapi/playground/result-panel/AudioPlayer.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +7 -2
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
- package/dist/lib/ui/Alert.d.ts +3 -2
- package/dist/lib/ui/Alert.js +9 -5
- package/dist/lib/ui/Alert.js.map +1 -1
- package/dist/lib/ui/InputGroup.d.ts +16 -0
- package/dist/lib/ui/InputGroup.js +65 -0
- package/dist/lib/ui/InputGroup.js.map +1 -0
- package/dist/lib/ui/Secret.js +2 -2
- package/dist/lib/ui/Secret.js.map +1 -1
- package/dist/vite/config.js +5 -2
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/plugin-config.js +16 -4
- package/dist/vite/plugin-config.js.map +1 -1
- package/dist/vite/plugin-theme.js +2 -1
- package/dist/vite/plugin-theme.js.map +1 -1
- package/dist/vite/prerender/prerender.js +3 -1
- package/dist/vite/prerender/prerender.js.map +1 -1
- package/dist/vite/prerender/worker.js +3 -1
- package/dist/vite/prerender/worker.js.map +1 -1
- package/lib/{ClaudeLogo-C6q-Xn_l.js → ClaudeLogo-Br8C_vTq.js} +3 -3
- package/lib/{ClaudeLogo-C6q-Xn_l.js.map → ClaudeLogo-Br8C_vTq.js.map} +1 -1
- package/lib/Drawer-Ch7927PF.js.map +1 -1
- package/lib/{HydrationBoundary-CNF2ZV3E.js → HydrationBoundary-CJu4vUlG.js} +6 -6
- package/lib/{HydrationBoundary-CNF2ZV3E.js.map → HydrationBoundary-CJu4vUlG.js.map} +1 -1
- package/lib/{MdxPage-B1G4W1TK.js → MdxPage-C0QFAsgv.js} +6 -6
- package/lib/{MdxPage-B1G4W1TK.js.map → MdxPage-C0QFAsgv.js.map} +1 -1
- package/lib/Mermaid-Chx5BPHn.js +104 -0
- package/lib/Mermaid-Chx5BPHn.js.map +1 -0
- package/lib/{OAuthErrorPage-01Ke086W.js → OAuthErrorPage-CFz_gBFx.js} +11 -10
- package/lib/{OAuthErrorPage-01Ke086W.js.map → OAuthErrorPage-CFz_gBFx.js.map} +1 -1
- package/lib/{OasProvider-oHPiMJZg.js → OasProvider-BnQ1_ehf.js} +3 -3
- package/lib/{OasProvider-oHPiMJZg.js.map → OasProvider-BnQ1_ehf.js.map} +1 -1
- package/lib/OperationList-Bw-3OS_8.js +5907 -0
- package/lib/OperationList-Bw-3OS_8.js.map +1 -0
- package/lib/{RouteGuard-B1lCR0C_.js → RouteGuard-CVs3yvEs.js} +3 -3
- package/lib/{RouteGuard-B1lCR0C_.js.map → RouteGuard-CVs3yvEs.js.map} +1 -1
- package/lib/{SchemaList-DoQFkJgM.js → SchemaList-IehIWcDV.js} +7 -7
- package/lib/{SchemaList-DoQFkJgM.js.map → SchemaList-IehIWcDV.js.map} +1 -1
- package/lib/{SchemaView-D2k6ZJck.js → SchemaView-BZLyoQRI.js} +3 -3
- package/lib/{SchemaView-D2k6ZJck.js.map → SchemaView-BZLyoQRI.js.map} +1 -1
- package/lib/{Secret-BDBqq4p3.js → Secret-DUpgv4V3.js} +92 -72
- package/lib/Secret-DUpgv4V3.js.map +1 -0
- package/lib/{SignUp-8kDBaLbO.js → SignUp-Dug1jAGC.js} +4 -4
- package/lib/{SignUp-8kDBaLbO.js.map → SignUp-Dug1jAGC.js.map} +1 -1
- package/lib/{SyntaxHighlight-hZOFnYl0.js → SyntaxHighlight-BMu0b_hF.js} +8 -8
- package/lib/{SyntaxHighlight-hZOFnYl0.js.map → SyntaxHighlight-BMu0b_hF.js.map} +1 -1
- package/lib/{Toc-qEIii_-W.js → Toc-BiJ2YL0O.js} +2 -2
- package/lib/{Toc-qEIii_-W.js.map → Toc-BiJ2YL0O.js.map} +1 -1
- package/lib/{Zudoku-DUsdmPME.js → Zudoku-iyiXgWFY.js} +2777 -2622
- package/lib/Zudoku-iyiXgWFY.js.map +1 -0
- package/lib/ZudokuContext-CYyb_PB_.js +175 -0
- package/lib/ZudokuContext-CYyb_PB_.js.map +1 -0
- package/lib/ZudokuReactContext-DGJAP1sN.js +222 -0
- package/lib/ZudokuReactContext-DGJAP1sN.js.map +1 -0
- package/lib/chunk-EPOLDU6W-C6C8jAwd.js.map +1 -1
- package/lib/{circular-D9tSKG2c.js → circular-CfBNz-Ot.js} +2 -2
- package/lib/{circular-D9tSKG2c.js.map → circular-CfBNz-Ot.js.map} +1 -1
- package/lib/{createServer-BprC4n85.js → createServer-BtZPTSEO.js} +4 -4
- package/lib/{createServer-BprC4n85.js.map → createServer-BtZPTSEO.js.map} +1 -1
- package/lib/{errors-7hgPDs1h.js → errors-B77S9iOc.js} +2 -2
- package/lib/{errors-7hgPDs1h.js.map → errors-B77S9iOc.js.map} +1 -1
- package/lib/{firebase-Dwn-2ju-.js → firebase-C7XKRGLf.js} +25 -24
- package/lib/{firebase-Dwn-2ju-.js.map → firebase-C7XKRGLf.js.map} +1 -1
- package/lib/{hook-ZEd1Es7D.js → hook-Dz_n9SoE.js} +16 -15
- package/lib/{hook-ZEd1Es7D.js.map → hook-Dz_n9SoE.js.map} +1 -1
- package/lib/{index-Dxdhrp-I.js → index-BDp2MTiq.js} +2 -2
- package/lib/{index-Dxdhrp-I.js.map → index-BDp2MTiq.js.map} +1 -1
- package/lib/{index-CyIW9rHv.js → index-CQ-p1wyT.js} +642 -606
- package/lib/index-CQ-p1wyT.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/index-DAWHN3cH.js.map +1 -1
- package/lib/index.esm-BYObtETB.js.map +1 -1
- package/lib/index.esm-Ca5zvoff.js.map +1 -1
- package/lib/{index.esm-DG4KaDKR.js → index.esm-Cth49JBv.js} +2 -2
- package/lib/index.esm-Cth49JBv.js.map +1 -0
- package/lib/jsx-runtime-BzflLqGi.js.map +1 -1
- package/lib/{mutation-BISOc7OM.js → mutation-B7eFBLZY.js} +2 -2
- package/lib/{mutation-BISOc7OM.js.map → mutation-B7eFBLZY.js.map} +1 -1
- package/lib/ui/Alert.js +32 -20
- package/lib/ui/Alert.js.map +1 -1
- package/lib/ui/Carousel.js.map +1 -1
- package/lib/ui/InputGroup.js +155 -0
- package/lib/ui/InputGroup.js.map +1 -0
- package/lib/ui/Secret.js +2 -2
- package/lib/ui/Secret.js.map +1 -1
- package/lib/ui/SyntaxHighlight.js +2 -2
- package/lib/useExposedProps-CzTDfXfq.js.map +1 -1
- package/lib/{useMutation-CFMGlAMW.js → useMutation-CErliDZ9.js} +5 -5
- package/lib/{useMutation-CFMGlAMW.js.map → useMutation-CErliDZ9.js.map} +1 -1
- package/lib/{useSuspenseQuery-CSB_rVek.js → useQuery-ht7aWJ3S.js} +432 -446
- package/lib/useQuery-ht7aWJ3S.js.map +1 -0
- package/lib/useSuspenseQuery-DQH4Bmc2.js +18 -0
- package/lib/useSuspenseQuery-DQH4Bmc2.js.map +1 -0
- package/lib/zudoku.__internal.js +1518 -1033
- package/lib/zudoku.__internal.js.map +1 -1
- package/lib/zudoku.auth-auth0.js +6 -5
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-azureb2c.js +14 -13
- package/lib/zudoku.auth-azureb2c.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +2 -2
- package/lib/zudoku.auth-firebase.js +4 -4
- package/lib/zudoku.auth-openid.js +7 -6
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.auth-supabase.js +4 -4
- package/lib/zudoku.components.js +3 -3
- package/lib/zudoku.hooks.js +3 -3
- package/lib/zudoku.mermaid.js +3 -3
- package/lib/zudoku.plugin-api-catalog.js +28 -27
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +98 -96
- 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 +2 -2
- package/lib/zudoku.plugin-search-pagefind.js +19 -18
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js.map +1 -1
- package/lib/zudoku.react-query.js +26 -25
- package/lib/zudoku.react-query.js.map +1 -1
- package/lib/zudoku.router.js.map +1 -1
- package/package.json +15 -9
- package/src/app/defaultTheme.css +4 -0
- package/src/app/main.css +2 -0
- package/src/app/main.tsx +1 -1
- package/src/lib/components/Bootstrap.tsx +1 -4
- package/src/lib/components/MobileTopNavigation.tsx +13 -8
- package/src/lib/components/Slot.test.tsx +1 -1
- package/src/lib/components/TopNavigation.tsx +25 -7
- package/src/lib/components/Zudoku.tsx +18 -14
- package/src/lib/components/context/ZudokuContext.ts +3 -6
- package/src/lib/components/context/ZudokuProvider.tsx +1 -1
- package/src/lib/components/context/ZudokuReactContext.tsx +17 -0
- package/src/lib/components/navigation/Navigation.tsx +4 -3
- package/src/lib/components/navigation/NavigationCategory.tsx +9 -0
- package/src/lib/components/navigation/NavigationFilterContext.tsx +28 -0
- package/src/lib/components/navigation/NavigationFilterInput.tsx +35 -0
- package/src/lib/components/navigation/NavigationItem.tsx +17 -1
- package/src/lib/components/navigation/utils.ts +32 -1
- package/src/lib/core/ZudokuContext.ts +7 -1
- package/src/lib/core/__internal.tsx +2 -0
- package/src/lib/core/plugins.ts +7 -3
- package/src/lib/core/transform-config.test.tsx +99 -0
- package/src/lib/core/transform-config.ts +57 -19
- package/src/lib/errors/ErrorAlert.tsx +1 -6
- package/src/lib/hooks/useEvent.test.tsx +1 -1
- package/src/lib/plugins/openapi/playground/fileUtils.ts +4 -0
- package/src/lib/plugins/openapi/playground/result-panel/AudioPlayer.tsx +50 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +33 -17
- package/src/lib/ui/Alert.tsx +17 -5
- package/src/lib/ui/InputGroup.tsx +168 -0
- package/src/lib/ui/Secret.tsx +2 -2
- package/lib/Mermaid-B1xNo-pf.js +0 -103
- package/lib/Mermaid-B1xNo-pf.js.map +0 -1
- package/lib/OperationList-CZ4OK8Pm.js +0 -5823
- package/lib/OperationList-CZ4OK8Pm.js.map +0 -1
- package/lib/Secret-BDBqq4p3.js.map +0 -1
- package/lib/Separator-BXt1LYnm.js +0 -27
- package/lib/Separator-BXt1LYnm.js.map +0 -1
- package/lib/Zudoku-DUsdmPME.js.map +0 -1
- package/lib/ZudokuContext-BBI06sOx.js +0 -387
- package/lib/ZudokuContext-BBI06sOx.js.map +0 -1
- package/lib/index-CyIW9rHv.js.map +0 -1
- package/lib/index.esm-DG4KaDKR.js.map +0 -1
- package/lib/useSuspenseQuery-CSB_rVek.js.map +0 -1
|
@@ -46,13 +46,13 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
46
46
|
tag: "tag";
|
|
47
47
|
file: "file";
|
|
48
48
|
delete: "delete";
|
|
49
|
+
code: "code";
|
|
49
50
|
copy: "copy";
|
|
50
51
|
focus: "focus";
|
|
51
52
|
pause: "pause";
|
|
52
53
|
play: "play";
|
|
53
54
|
scroll: "scroll";
|
|
54
55
|
merge: "merge";
|
|
55
|
-
code: "code";
|
|
56
56
|
ghost: "ghost";
|
|
57
57
|
expand: "expand";
|
|
58
58
|
send: "send";
|
|
@@ -69,26 +69,15 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
69
69
|
text: "text";
|
|
70
70
|
mouse: "mouse";
|
|
71
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";
|
|
86
72
|
section: "section";
|
|
87
73
|
video: "video";
|
|
88
74
|
circle: "circle";
|
|
89
75
|
image: "image";
|
|
90
76
|
view: "view";
|
|
91
|
-
|
|
77
|
+
target: "target";
|
|
78
|
+
radius: "radius";
|
|
79
|
+
scale: "scale";
|
|
80
|
+
x: "x";
|
|
92
81
|
baseline: "baseline";
|
|
93
82
|
terminal: "terminal";
|
|
94
83
|
square: "square";
|
|
@@ -230,6 +219,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
230
219
|
asterisk: "asterisk";
|
|
231
220
|
"asterisk-square": "asterisk-square";
|
|
232
221
|
"at-sign": "at-sign";
|
|
222
|
+
atom: "atom";
|
|
233
223
|
"audio-lines": "audio-lines";
|
|
234
224
|
"audio-waveform": "audio-waveform";
|
|
235
225
|
award: "award";
|
|
@@ -601,6 +591,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
601
591
|
"code-xml": "code-xml";
|
|
602
592
|
codepen: "codepen";
|
|
603
593
|
codesandbox: "codesandbox";
|
|
594
|
+
coffee: "coffee";
|
|
604
595
|
cog: "cog";
|
|
605
596
|
coins: "coins";
|
|
606
597
|
columns: "columns";
|
|
@@ -669,6 +660,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
669
660
|
"dice-5": "dice-5";
|
|
670
661
|
"dice-6": "dice-6";
|
|
671
662
|
dices: "dices";
|
|
663
|
+
diff: "diff";
|
|
672
664
|
disc: "disc";
|
|
673
665
|
"disc-2": "disc-2";
|
|
674
666
|
"disc-3": "disc-3";
|
|
@@ -807,6 +799,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
807
799
|
"filter-x": "filter-x";
|
|
808
800
|
fingerprint: "fingerprint";
|
|
809
801
|
"fire-extinguisher": "fire-extinguisher";
|
|
802
|
+
fish: "fish";
|
|
810
803
|
"fish-off": "fish-off";
|
|
811
804
|
"fish-symbol": "fish-symbol";
|
|
812
805
|
flag: "flag";
|
|
@@ -894,6 +887,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
894
887
|
gift: "gift";
|
|
895
888
|
"git-branch": "git-branch";
|
|
896
889
|
"git-branch-plus": "git-branch-plus";
|
|
890
|
+
"git-commit": "git-commit";
|
|
897
891
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
898
892
|
"git-commit-vertical": "git-commit-vertical";
|
|
899
893
|
"git-compare": "git-compare";
|
|
@@ -1216,6 +1210,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1216
1210
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
1217
1211
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
1218
1212
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
1213
|
+
move: "move";
|
|
1219
1214
|
"move-3-d": "move-3-d";
|
|
1220
1215
|
"move-3d": "move-3d";
|
|
1221
1216
|
"move-diagonal": "move-diagonal";
|
|
@@ -1420,6 +1415,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1420
1415
|
"refresh-cw": "refresh-cw";
|
|
1421
1416
|
"refresh-cw-off": "refresh-cw-off";
|
|
1422
1417
|
refrigerator: "refrigerator";
|
|
1418
|
+
regex: "regex";
|
|
1423
1419
|
"remove-formatting": "remove-formatting";
|
|
1424
1420
|
"repeat-1": "repeat-1";
|
|
1425
1421
|
"repeat-2": "repeat-2";
|
|
@@ -1446,6 +1442,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1446
1442
|
"rows-2": "rows-2";
|
|
1447
1443
|
"rows-3": "rows-3";
|
|
1448
1444
|
"rows-4": "rows-4";
|
|
1445
|
+
rss: "rss";
|
|
1449
1446
|
ruler: "ruler";
|
|
1450
1447
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
1451
1448
|
"russian-ruble": "russian-ruble";
|
|
@@ -1492,11 +1489,13 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1492
1489
|
"server-cog": "server-cog";
|
|
1493
1490
|
"server-crash": "server-crash";
|
|
1494
1491
|
"server-off": "server-off";
|
|
1492
|
+
settings: "settings";
|
|
1495
1493
|
"settings-2": "settings-2";
|
|
1496
1494
|
shapes: "shapes";
|
|
1497
1495
|
share: "share";
|
|
1498
1496
|
"share-2": "share-2";
|
|
1499
1497
|
sheet: "sheet";
|
|
1498
|
+
shell: "shell";
|
|
1500
1499
|
shield: "shield";
|
|
1501
1500
|
"shield-alert": "shield-alert";
|
|
1502
1501
|
"shield-ban": "shield-ban";
|
|
@@ -1769,6 +1768,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1769
1768
|
"truck-electric": "truck-electric";
|
|
1770
1769
|
"turkish-lira": "turkish-lira";
|
|
1771
1770
|
turntable: "turntable";
|
|
1771
|
+
turtle: "turtle";
|
|
1772
1772
|
tv: "tv";
|
|
1773
1773
|
"tv-2": "tv-2";
|
|
1774
1774
|
"tv-minimal": "tv-minimal";
|
|
@@ -1899,10 +1899,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1899
1899
|
label: z.ZodString;
|
|
1900
1900
|
color: z.ZodEnum<{
|
|
1901
1901
|
outline: "outline";
|
|
1902
|
-
red: "red";
|
|
1903
1902
|
green: "green";
|
|
1904
1903
|
blue: "blue";
|
|
1905
1904
|
yellow: "yellow";
|
|
1905
|
+
red: "red";
|
|
1906
1906
|
purple: "purple";
|
|
1907
1907
|
indigo: "indigo";
|
|
1908
1908
|
gray: "gray";
|
|
@@ -1954,13 +1954,13 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1954
1954
|
tag: "tag";
|
|
1955
1955
|
file: "file";
|
|
1956
1956
|
delete: "delete";
|
|
1957
|
+
code: "code";
|
|
1957
1958
|
copy: "copy";
|
|
1958
1959
|
focus: "focus";
|
|
1959
1960
|
pause: "pause";
|
|
1960
1961
|
play: "play";
|
|
1961
1962
|
scroll: "scroll";
|
|
1962
1963
|
merge: "merge";
|
|
1963
|
-
code: "code";
|
|
1964
1964
|
ghost: "ghost";
|
|
1965
1965
|
expand: "expand";
|
|
1966
1966
|
send: "send";
|
|
@@ -1977,26 +1977,15 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1977
1977
|
text: "text";
|
|
1978
1978
|
mouse: "mouse";
|
|
1979
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";
|
|
1994
1980
|
section: "section";
|
|
1995
1981
|
video: "video";
|
|
1996
1982
|
circle: "circle";
|
|
1997
1983
|
image: "image";
|
|
1998
1984
|
view: "view";
|
|
1999
|
-
|
|
1985
|
+
target: "target";
|
|
1986
|
+
radius: "radius";
|
|
1987
|
+
scale: "scale";
|
|
1988
|
+
x: "x";
|
|
2000
1989
|
baseline: "baseline";
|
|
2001
1990
|
terminal: "terminal";
|
|
2002
1991
|
square: "square";
|
|
@@ -2138,6 +2127,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2138
2127
|
asterisk: "asterisk";
|
|
2139
2128
|
"asterisk-square": "asterisk-square";
|
|
2140
2129
|
"at-sign": "at-sign";
|
|
2130
|
+
atom: "atom";
|
|
2141
2131
|
"audio-lines": "audio-lines";
|
|
2142
2132
|
"audio-waveform": "audio-waveform";
|
|
2143
2133
|
award: "award";
|
|
@@ -2509,6 +2499,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2509
2499
|
"code-xml": "code-xml";
|
|
2510
2500
|
codepen: "codepen";
|
|
2511
2501
|
codesandbox: "codesandbox";
|
|
2502
|
+
coffee: "coffee";
|
|
2512
2503
|
cog: "cog";
|
|
2513
2504
|
coins: "coins";
|
|
2514
2505
|
columns: "columns";
|
|
@@ -2577,6 +2568,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2577
2568
|
"dice-5": "dice-5";
|
|
2578
2569
|
"dice-6": "dice-6";
|
|
2579
2570
|
dices: "dices";
|
|
2571
|
+
diff: "diff";
|
|
2580
2572
|
disc: "disc";
|
|
2581
2573
|
"disc-2": "disc-2";
|
|
2582
2574
|
"disc-3": "disc-3";
|
|
@@ -2715,6 +2707,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2715
2707
|
"filter-x": "filter-x";
|
|
2716
2708
|
fingerprint: "fingerprint";
|
|
2717
2709
|
"fire-extinguisher": "fire-extinguisher";
|
|
2710
|
+
fish: "fish";
|
|
2718
2711
|
"fish-off": "fish-off";
|
|
2719
2712
|
"fish-symbol": "fish-symbol";
|
|
2720
2713
|
flag: "flag";
|
|
@@ -2802,6 +2795,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2802
2795
|
gift: "gift";
|
|
2803
2796
|
"git-branch": "git-branch";
|
|
2804
2797
|
"git-branch-plus": "git-branch-plus";
|
|
2798
|
+
"git-commit": "git-commit";
|
|
2805
2799
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
2806
2800
|
"git-commit-vertical": "git-commit-vertical";
|
|
2807
2801
|
"git-compare": "git-compare";
|
|
@@ -3124,6 +3118,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3124
3118
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
3125
3119
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
3126
3120
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
3121
|
+
move: "move";
|
|
3127
3122
|
"move-3-d": "move-3-d";
|
|
3128
3123
|
"move-3d": "move-3d";
|
|
3129
3124
|
"move-diagonal": "move-diagonal";
|
|
@@ -3328,6 +3323,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3328
3323
|
"refresh-cw": "refresh-cw";
|
|
3329
3324
|
"refresh-cw-off": "refresh-cw-off";
|
|
3330
3325
|
refrigerator: "refrigerator";
|
|
3326
|
+
regex: "regex";
|
|
3331
3327
|
"remove-formatting": "remove-formatting";
|
|
3332
3328
|
"repeat-1": "repeat-1";
|
|
3333
3329
|
"repeat-2": "repeat-2";
|
|
@@ -3354,6 +3350,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3354
3350
|
"rows-2": "rows-2";
|
|
3355
3351
|
"rows-3": "rows-3";
|
|
3356
3352
|
"rows-4": "rows-4";
|
|
3353
|
+
rss: "rss";
|
|
3357
3354
|
ruler: "ruler";
|
|
3358
3355
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
3359
3356
|
"russian-ruble": "russian-ruble";
|
|
@@ -3400,11 +3397,13 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3400
3397
|
"server-cog": "server-cog";
|
|
3401
3398
|
"server-crash": "server-crash";
|
|
3402
3399
|
"server-off": "server-off";
|
|
3400
|
+
settings: "settings";
|
|
3403
3401
|
"settings-2": "settings-2";
|
|
3404
3402
|
shapes: "shapes";
|
|
3405
3403
|
share: "share";
|
|
3406
3404
|
"share-2": "share-2";
|
|
3407
3405
|
sheet: "sheet";
|
|
3406
|
+
shell: "shell";
|
|
3408
3407
|
shield: "shield";
|
|
3409
3408
|
"shield-alert": "shield-alert";
|
|
3410
3409
|
"shield-ban": "shield-ban";
|
|
@@ -3677,6 +3676,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3677
3676
|
"truck-electric": "truck-electric";
|
|
3678
3677
|
"turkish-lira": "turkish-lira";
|
|
3679
3678
|
turntable: "turntable";
|
|
3679
|
+
turtle: "turtle";
|
|
3680
3680
|
tv: "tv";
|
|
3681
3681
|
"tv-2": "tv-2";
|
|
3682
3682
|
"tv-minimal": "tv-minimal";
|
|
@@ -3806,10 +3806,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3806
3806
|
label: z.ZodString;
|
|
3807
3807
|
color: z.ZodEnum<{
|
|
3808
3808
|
outline: "outline";
|
|
3809
|
-
red: "red";
|
|
3810
3809
|
green: "green";
|
|
3811
3810
|
blue: "blue";
|
|
3812
3811
|
yellow: "yellow";
|
|
3812
|
+
red: "red";
|
|
3813
3813
|
purple: "purple";
|
|
3814
3814
|
indigo: "indigo";
|
|
3815
3815
|
gray: "gray";
|
|
@@ -3858,13 +3858,13 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3858
3858
|
tag: "tag";
|
|
3859
3859
|
file: "file";
|
|
3860
3860
|
delete: "delete";
|
|
3861
|
+
code: "code";
|
|
3861
3862
|
copy: "copy";
|
|
3862
3863
|
focus: "focus";
|
|
3863
3864
|
pause: "pause";
|
|
3864
3865
|
play: "play";
|
|
3865
3866
|
scroll: "scroll";
|
|
3866
3867
|
merge: "merge";
|
|
3867
|
-
code: "code";
|
|
3868
3868
|
ghost: "ghost";
|
|
3869
3869
|
expand: "expand";
|
|
3870
3870
|
send: "send";
|
|
@@ -3881,26 +3881,15 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3881
3881
|
text: "text";
|
|
3882
3882
|
mouse: "mouse";
|
|
3883
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";
|
|
3898
3884
|
section: "section";
|
|
3899
3885
|
video: "video";
|
|
3900
3886
|
circle: "circle";
|
|
3901
3887
|
image: "image";
|
|
3902
3888
|
view: "view";
|
|
3903
|
-
|
|
3889
|
+
target: "target";
|
|
3890
|
+
radius: "radius";
|
|
3891
|
+
scale: "scale";
|
|
3892
|
+
x: "x";
|
|
3904
3893
|
baseline: "baseline";
|
|
3905
3894
|
terminal: "terminal";
|
|
3906
3895
|
square: "square";
|
|
@@ -4042,6 +4031,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4042
4031
|
asterisk: "asterisk";
|
|
4043
4032
|
"asterisk-square": "asterisk-square";
|
|
4044
4033
|
"at-sign": "at-sign";
|
|
4034
|
+
atom: "atom";
|
|
4045
4035
|
"audio-lines": "audio-lines";
|
|
4046
4036
|
"audio-waveform": "audio-waveform";
|
|
4047
4037
|
award: "award";
|
|
@@ -4413,6 +4403,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4413
4403
|
"code-xml": "code-xml";
|
|
4414
4404
|
codepen: "codepen";
|
|
4415
4405
|
codesandbox: "codesandbox";
|
|
4406
|
+
coffee: "coffee";
|
|
4416
4407
|
cog: "cog";
|
|
4417
4408
|
coins: "coins";
|
|
4418
4409
|
columns: "columns";
|
|
@@ -4481,6 +4472,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4481
4472
|
"dice-5": "dice-5";
|
|
4482
4473
|
"dice-6": "dice-6";
|
|
4483
4474
|
dices: "dices";
|
|
4475
|
+
diff: "diff";
|
|
4484
4476
|
disc: "disc";
|
|
4485
4477
|
"disc-2": "disc-2";
|
|
4486
4478
|
"disc-3": "disc-3";
|
|
@@ -4619,6 +4611,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4619
4611
|
"filter-x": "filter-x";
|
|
4620
4612
|
fingerprint: "fingerprint";
|
|
4621
4613
|
"fire-extinguisher": "fire-extinguisher";
|
|
4614
|
+
fish: "fish";
|
|
4622
4615
|
"fish-off": "fish-off";
|
|
4623
4616
|
"fish-symbol": "fish-symbol";
|
|
4624
4617
|
flag: "flag";
|
|
@@ -4706,6 +4699,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4706
4699
|
gift: "gift";
|
|
4707
4700
|
"git-branch": "git-branch";
|
|
4708
4701
|
"git-branch-plus": "git-branch-plus";
|
|
4702
|
+
"git-commit": "git-commit";
|
|
4709
4703
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
4710
4704
|
"git-commit-vertical": "git-commit-vertical";
|
|
4711
4705
|
"git-compare": "git-compare";
|
|
@@ -5028,6 +5022,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5028
5022
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
5029
5023
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
5030
5024
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
5025
|
+
move: "move";
|
|
5031
5026
|
"move-3-d": "move-3-d";
|
|
5032
5027
|
"move-3d": "move-3d";
|
|
5033
5028
|
"move-diagonal": "move-diagonal";
|
|
@@ -5232,6 +5227,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5232
5227
|
"refresh-cw": "refresh-cw";
|
|
5233
5228
|
"refresh-cw-off": "refresh-cw-off";
|
|
5234
5229
|
refrigerator: "refrigerator";
|
|
5230
|
+
regex: "regex";
|
|
5235
5231
|
"remove-formatting": "remove-formatting";
|
|
5236
5232
|
"repeat-1": "repeat-1";
|
|
5237
5233
|
"repeat-2": "repeat-2";
|
|
@@ -5258,6 +5254,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5258
5254
|
"rows-2": "rows-2";
|
|
5259
5255
|
"rows-3": "rows-3";
|
|
5260
5256
|
"rows-4": "rows-4";
|
|
5257
|
+
rss: "rss";
|
|
5261
5258
|
ruler: "ruler";
|
|
5262
5259
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
5263
5260
|
"russian-ruble": "russian-ruble";
|
|
@@ -5304,11 +5301,13 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5304
5301
|
"server-cog": "server-cog";
|
|
5305
5302
|
"server-crash": "server-crash";
|
|
5306
5303
|
"server-off": "server-off";
|
|
5304
|
+
settings: "settings";
|
|
5307
5305
|
"settings-2": "settings-2";
|
|
5308
5306
|
shapes: "shapes";
|
|
5309
5307
|
share: "share";
|
|
5310
5308
|
"share-2": "share-2";
|
|
5311
5309
|
sheet: "sheet";
|
|
5310
|
+
shell: "shell";
|
|
5312
5311
|
shield: "shield";
|
|
5313
5312
|
"shield-alert": "shield-alert";
|
|
5314
5313
|
"shield-ban": "shield-ban";
|
|
@@ -5581,6 +5580,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5581
5580
|
"truck-electric": "truck-electric";
|
|
5582
5581
|
"turkish-lira": "turkish-lira";
|
|
5583
5582
|
turntable: "turntable";
|
|
5583
|
+
turtle: "turtle";
|
|
5584
5584
|
tv: "tv";
|
|
5585
5585
|
"tv-2": "tv-2";
|
|
5586
5586
|
"tv-minimal": "tv-minimal";
|
|
@@ -5710,10 +5710,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5710
5710
|
label: z.ZodString;
|
|
5711
5711
|
color: z.ZodEnum<{
|
|
5712
5712
|
outline: "outline";
|
|
5713
|
-
red: "red";
|
|
5714
5713
|
green: "green";
|
|
5715
5714
|
blue: "blue";
|
|
5716
5715
|
yellow: "yellow";
|
|
5716
|
+
red: "red";
|
|
5717
5717
|
purple: "purple";
|
|
5718
5718
|
indigo: "indigo";
|
|
5719
5719
|
gray: "gray";
|
|
@@ -5738,6 +5738,53 @@ 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<{
|
|
@@ -5763,13 +5810,13 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5763
5810
|
tag: "tag";
|
|
5764
5811
|
file: "file";
|
|
5765
5812
|
delete: "delete";
|
|
5813
|
+
code: "code";
|
|
5766
5814
|
copy: "copy";
|
|
5767
5815
|
focus: "focus";
|
|
5768
5816
|
pause: "pause";
|
|
5769
5817
|
play: "play";
|
|
5770
5818
|
scroll: "scroll";
|
|
5771
5819
|
merge: "merge";
|
|
5772
|
-
code: "code";
|
|
5773
5820
|
ghost: "ghost";
|
|
5774
5821
|
expand: "expand";
|
|
5775
5822
|
send: "send";
|
|
@@ -5786,26 +5833,15 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5786
5833
|
text: "text";
|
|
5787
5834
|
mouse: "mouse";
|
|
5788
5835
|
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";
|
|
5803
5836
|
section: "section";
|
|
5804
5837
|
video: "video";
|
|
5805
5838
|
circle: "circle";
|
|
5806
5839
|
image: "image";
|
|
5807
5840
|
view: "view";
|
|
5808
|
-
|
|
5841
|
+
target: "target";
|
|
5842
|
+
radius: "radius";
|
|
5843
|
+
scale: "scale";
|
|
5844
|
+
x: "x";
|
|
5809
5845
|
baseline: "baseline";
|
|
5810
5846
|
terminal: "terminal";
|
|
5811
5847
|
square: "square";
|
|
@@ -5947,6 +5983,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5947
5983
|
asterisk: "asterisk";
|
|
5948
5984
|
"asterisk-square": "asterisk-square";
|
|
5949
5985
|
"at-sign": "at-sign";
|
|
5986
|
+
atom: "atom";
|
|
5950
5987
|
"audio-lines": "audio-lines";
|
|
5951
5988
|
"audio-waveform": "audio-waveform";
|
|
5952
5989
|
award: "award";
|
|
@@ -6318,6 +6355,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6318
6355
|
"code-xml": "code-xml";
|
|
6319
6356
|
codepen: "codepen";
|
|
6320
6357
|
codesandbox: "codesandbox";
|
|
6358
|
+
coffee: "coffee";
|
|
6321
6359
|
cog: "cog";
|
|
6322
6360
|
coins: "coins";
|
|
6323
6361
|
columns: "columns";
|
|
@@ -6386,6 +6424,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6386
6424
|
"dice-5": "dice-5";
|
|
6387
6425
|
"dice-6": "dice-6";
|
|
6388
6426
|
dices: "dices";
|
|
6427
|
+
diff: "diff";
|
|
6389
6428
|
disc: "disc";
|
|
6390
6429
|
"disc-2": "disc-2";
|
|
6391
6430
|
"disc-3": "disc-3";
|
|
@@ -6524,6 +6563,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6524
6563
|
"filter-x": "filter-x";
|
|
6525
6564
|
fingerprint: "fingerprint";
|
|
6526
6565
|
"fire-extinguisher": "fire-extinguisher";
|
|
6566
|
+
fish: "fish";
|
|
6527
6567
|
"fish-off": "fish-off";
|
|
6528
6568
|
"fish-symbol": "fish-symbol";
|
|
6529
6569
|
flag: "flag";
|
|
@@ -6611,6 +6651,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6611
6651
|
gift: "gift";
|
|
6612
6652
|
"git-branch": "git-branch";
|
|
6613
6653
|
"git-branch-plus": "git-branch-plus";
|
|
6654
|
+
"git-commit": "git-commit";
|
|
6614
6655
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
6615
6656
|
"git-commit-vertical": "git-commit-vertical";
|
|
6616
6657
|
"git-compare": "git-compare";
|
|
@@ -6933,6 +6974,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6933
6974
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
6934
6975
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
6935
6976
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
6977
|
+
move: "move";
|
|
6936
6978
|
"move-3-d": "move-3-d";
|
|
6937
6979
|
"move-3d": "move-3d";
|
|
6938
6980
|
"move-diagonal": "move-diagonal";
|
|
@@ -7137,6 +7179,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7137
7179
|
"refresh-cw": "refresh-cw";
|
|
7138
7180
|
"refresh-cw-off": "refresh-cw-off";
|
|
7139
7181
|
refrigerator: "refrigerator";
|
|
7182
|
+
regex: "regex";
|
|
7140
7183
|
"remove-formatting": "remove-formatting";
|
|
7141
7184
|
"repeat-1": "repeat-1";
|
|
7142
7185
|
"repeat-2": "repeat-2";
|
|
@@ -7163,6 +7206,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7163
7206
|
"rows-2": "rows-2";
|
|
7164
7207
|
"rows-3": "rows-3";
|
|
7165
7208
|
"rows-4": "rows-4";
|
|
7209
|
+
rss: "rss";
|
|
7166
7210
|
ruler: "ruler";
|
|
7167
7211
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
7168
7212
|
"russian-ruble": "russian-ruble";
|
|
@@ -7209,11 +7253,13 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7209
7253
|
"server-cog": "server-cog";
|
|
7210
7254
|
"server-crash": "server-crash";
|
|
7211
7255
|
"server-off": "server-off";
|
|
7256
|
+
settings: "settings";
|
|
7212
7257
|
"settings-2": "settings-2";
|
|
7213
7258
|
shapes: "shapes";
|
|
7214
7259
|
share: "share";
|
|
7215
7260
|
"share-2": "share-2";
|
|
7216
7261
|
sheet: "sheet";
|
|
7262
|
+
shell: "shell";
|
|
7217
7263
|
shield: "shield";
|
|
7218
7264
|
"shield-alert": "shield-alert";
|
|
7219
7265
|
"shield-ban": "shield-ban";
|
|
@@ -7486,6 +7532,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7486
7532
|
"truck-electric": "truck-electric";
|
|
7487
7533
|
"turkish-lira": "turkish-lira";
|
|
7488
7534
|
turntable: "turntable";
|
|
7535
|
+
turtle: "turtle";
|
|
7489
7536
|
tv: "tv";
|
|
7490
7537
|
"tv-2": "tv-2";
|
|
7491
7538
|
"tv-minimal": "tv-minimal";
|
|
@@ -7633,13 +7680,16 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7633
7680
|
auth: UseAuthReturn;
|
|
7634
7681
|
}) => boolean>]>>>;
|
|
7635
7682
|
}, z.core.$strip>;
|
|
7636
|
-
export type InputNavigationItem = z.infer<typeof InputNavigationDocSchema> | z.infer<typeof InputNavigationLinkSchema> | z.infer<typeof InputNavigationCustomPageSchema> | (z.infer<typeof BaseInputNavigationCategorySchema> & {
|
|
7683
|
+
export type InputNavigationItem = z.infer<typeof InputNavigationDocSchema> | z.infer<typeof InputNavigationLinkSchema> | z.infer<typeof InputNavigationCustomPageSchema> | z.infer<typeof InputNavigationSeparatorSchema> | z.infer<typeof InputNavigationSectionSchema> | z.infer<typeof InputNavigationFilterSchema> | (z.infer<typeof BaseInputNavigationCategorySchema> & {
|
|
7637
7684
|
items: InputNavigationItem[];
|
|
7638
7685
|
});
|
|
7639
7686
|
export declare const InputNavigationSchema: z.ZodArray<z.ZodType<InputNavigationItem, unknown, z.core.$ZodTypeInternals<InputNavigationItem, unknown>>>;
|
|
7640
7687
|
export type InputNavigationDoc = z.infer<typeof InputNavigationDocSchema>;
|
|
7641
7688
|
export type InputNavigationLink = z.infer<typeof InputNavigationLinkSchema>;
|
|
7642
7689
|
export type InputNavigationCustomPage = z.infer<typeof InputNavigationCustomPageSchema>;
|
|
7690
|
+
export type InputNavigationSeparator = z.infer<typeof InputNavigationSeparatorSchema>;
|
|
7691
|
+
export type InputNavigationSection = z.infer<typeof InputNavigationSectionSchema>;
|
|
7692
|
+
export type InputNavigationFilter = z.infer<typeof InputNavigationFilterSchema>;
|
|
7643
7693
|
export type InputNavigationCategory = z.infer<typeof BaseInputNavigationCategorySchema> & {
|
|
7644
7694
|
items: InputNavigationItem[];
|
|
7645
7695
|
};
|
|
@@ -56,6 +56,20 @@ const InputNavigationCustomPageSchema = z.object({
|
|
|
56
56
|
display: DisplaySchema,
|
|
57
57
|
layout: z.enum(["default", "none"]).optional(),
|
|
58
58
|
});
|
|
59
|
+
const InputNavigationSeparatorSchema = z.object({
|
|
60
|
+
type: z.literal("separator"),
|
|
61
|
+
display: DisplaySchema,
|
|
62
|
+
});
|
|
63
|
+
const InputNavigationSectionSchema = z.object({
|
|
64
|
+
type: z.literal("section"),
|
|
65
|
+
label: z.string(),
|
|
66
|
+
display: DisplaySchema,
|
|
67
|
+
});
|
|
68
|
+
const InputNavigationFilterSchema = z.object({
|
|
69
|
+
type: z.literal("filter"),
|
|
70
|
+
placeholder: z.string().optional(),
|
|
71
|
+
display: DisplaySchema,
|
|
72
|
+
});
|
|
59
73
|
// Base category schema without items
|
|
60
74
|
const BaseInputNavigationCategorySchema = z.object({
|
|
61
75
|
type: z.literal("category"),
|
|
@@ -73,6 +87,9 @@ const InputNavigationItemSchema = z.union([
|
|
|
73
87
|
InputNavigationDocSchema,
|
|
74
88
|
InputNavigationLinkSchema,
|
|
75
89
|
InputNavigationCustomPageSchema,
|
|
90
|
+
InputNavigationSeparatorSchema,
|
|
91
|
+
InputNavigationSectionSchema,
|
|
92
|
+
InputNavigationFilterSchema,
|
|
76
93
|
InputNavigationCategorySchema,
|
|
77
94
|
]);
|
|
78
95
|
export const InputNavigationSchema = InputNavigationItemSchema.array();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputNavigationSchema.js","sourceRoot":"","sources":["../../../src/config/validators/InputNavigationSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,MAAM,UAAU,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;AAErC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,uCAAuC;IACvC,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC;IACxF,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEH,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CAAC;IACnD,CAAC,CAAC,MAAM,EAAE;IACV,CAAC,CAAC,MAAM,CAAC;QACP,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;QACtB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC5B,CAAC;CACH,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC;KAC3B,KAAK,CAAC;IACL,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAC;IAC1C,CAAC,CAAC,MAAM,CAEN,CAAC,GAAG,EAAE,EAAE,CAAC,OAAO,GAAG,KAAK,UAAU,CAAC;CACtC,CAAC;KACD,OAAO,CAAC,QAAQ,CAAC;KACjB,QAAQ,EAAE,CAAC;AAEd,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC;IACvC,CAAC,CAAC,MAAM,EAAE;IACV,CAAC,CAAC,MAAM,CAAC;QACP,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;QACtB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,gEAAgE;QAChE,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC3B,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;QAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,KAAK,EAAE,WAAW,CAAC,QAAQ,EAAE;QAC7B,OAAO,EAAE,aAAa;KACvB,CAAC;CACH,CAAC,CAAC;AAEH,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC;IACvB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC9C,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,WAAW,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,aAAa;CACvB,CAAC,CAAC;AAEH,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;IAC9B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,OAAO,EAAE,CAAC,CAAC,GAAG,EAAE;IAChB,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,WAAW,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,aAAa;IACtB,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAC;AAEH,qCAAqC;AACrC,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC;IAC3B,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACnC,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACjC,IAAI,EAAE,oCAAoC,CAAC,QAAQ,EAAE;IACrD,OAAO,EAAE,aAAa;CACvB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"InputNavigationSchema.js","sourceRoot":"","sources":["../../../src/config/validators/InputNavigationSchema.ts"],"names":[],"mappings":"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"}
|