zudoku 0.64.0 → 0.64.2
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/config/config.d.ts +15 -46
- package/dist/config/validators/InputNavigationSchema.d.ts +53 -53
- package/dist/config/validators/ProtectedRoutesSchema.d.ts +1 -1
- package/dist/config/validators/validate.d.ts +105 -1
- package/dist/config/validators/validate.js +30 -0
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/flat-config.d.ts +16 -0
- package/dist/lib/auth/issuer.js +3 -0
- package/dist/lib/auth/issuer.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +1 -1
- package/dist/lib/authentication/providers/firebase.d.ts +4 -0
- package/dist/lib/authentication/providers/firebase.js +215 -0
- package/dist/lib/authentication/providers/firebase.js.map +1 -0
- package/dist/lib/authentication/providers/supabase.js +1 -6
- package/dist/lib/authentication/providers/supabase.js.map +1 -1
- package/dist/lib/authentication/ui/ZudokuAuthUi.d.ts +24 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js +124 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Apple.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Apple.js +4 -0
- package/dist/lib/authentication/ui/icons/Apple.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Facebook.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Facebook.js +4 -0
- package/dist/lib/authentication/ui/icons/Facebook.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Github.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Github.js +4 -0
- package/dist/lib/authentication/ui/icons/Github.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Google.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Google.js +4 -0
- package/dist/lib/authentication/ui/icons/Google.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Microsoft.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js +4 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js.map +1 -0
- package/dist/lib/authentication/ui/icons/X.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/X.js +4 -0
- package/dist/lib/authentication/ui/icons/X.js.map +1 -0
- package/dist/lib/components/Heading.d.ts +1 -1
- package/dist/lib/core/RouteGuard.js +6 -6
- package/dist/lib/core/RouteGuard.js.map +1 -1
- package/dist/lib/oas/parser/index.js +7 -3
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js +4 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +1 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js +2 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -1
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.d.ts +5 -0
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.js +10 -0
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.js.map +1 -0
- package/dist/lib/plugins/openapi/OperationList.js +4 -1
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationListItem.d.ts +2 -1
- package/dist/lib/plugins/openapi/OperationListItem.js +2 -2
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +9 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +2 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +3 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +14 -2
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.d.ts +2 -1
- package/dist/lib/plugins/openapi/Sidecar.js +33 -30
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.d.ts +9 -2
- package/dist/lib/plugins/openapi/SidecarExamples.js +15 -33
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.d.ts +4 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js +5 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js.map +1 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.js +1 -1
- package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/InlineInput.d.ts +1 -1
- package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +2 -2
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +1 -2
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js +0 -4
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/union-helpers.js +0 -1
- package/dist/lib/plugins/openapi/schema/union-helpers.js.map +1 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +9 -11
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
- package/dist/lib/ui/CodeBlock.d.ts +0 -1
- package/dist/lib/ui/CodeBlock.js.map +1 -1
- package/dist/lib/ui/Command.d.ts +3 -3
- package/dist/lib/ui/EmbeddedCodeBlock.d.ts +0 -1
- package/dist/lib/ui/EmbeddedCodeBlock.js +1 -1
- package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/dist/lib/ui/Separator.d.ts +4 -0
- package/dist/lib/ui/Separator.js +8 -0
- package/dist/lib/ui/Separator.js.map +1 -0
- package/dist/lib/ui/Tooltip.d.ts +7 -7
- package/dist/lib/ui/Tooltip.js +16 -10
- package/dist/lib/ui/Tooltip.js.map +1 -1
- package/dist/lib/util/createVariantComponent.d.ts +5 -2
- package/dist/lib/util/createVariantComponent.js +5 -2
- package/dist/lib/util/createVariantComponent.js.map +1 -1
- package/dist/lib/util/flattenAllOf.d.ts +4 -0
- package/dist/lib/util/flattenAllOf.js +65 -0
- package/dist/lib/util/flattenAllOf.js.map +1 -0
- package/dist/lib/util/flattenAllOf.test.d.ts +1 -0
- package/dist/lib/util/flattenAllOf.test.js +532 -0
- package/dist/lib/util/flattenAllOf.test.js.map +1 -0
- package/dist/vite/api/SchemaManager.js +6 -18
- package/dist/vite/api/SchemaManager.js.map +1 -1
- package/dist/vite/plugin-theme.js +10 -1
- package/dist/vite/plugin-theme.js.map +1 -1
- package/lib/{ErrorAlert-DE3Sf66a.js → ErrorAlert--3alJ_-b.js} +1340 -1311
- package/lib/{ErrorAlert-DE3Sf66a.js.map → ErrorAlert--3alJ_-b.js.map} +1 -1
- package/lib/{MdxPage-DZfeC0QY.js → MdxPage-Bpa9tL63.js} +5 -5
- package/lib/{MdxPage-DZfeC0QY.js.map → MdxPage-Bpa9tL63.js.map} +1 -1
- package/lib/{OAuthErrorPage-BycMozgn.js → OAuthErrorPage-B79J86Fo.js} +4 -4
- package/lib/{OAuthErrorPage-BycMozgn.js.map → OAuthErrorPage-B79J86Fo.js.map} +1 -1
- package/lib/{OasProvider-Bf5zBDBY.js → OasProvider-jr0oDSFy.js} +2 -2
- package/lib/{OasProvider-Bf5zBDBY.js.map → OasProvider-jr0oDSFy.js.map} +1 -1
- package/lib/OperationList-DLEAg4qw.js +5465 -0
- package/lib/OperationList-DLEAg4qw.js.map +1 -0
- package/lib/{Pagination-CJszmeSA.js → Pagination-H2HW9-Er.js} +2 -2
- package/lib/{Pagination-CJszmeSA.js.map → Pagination-H2HW9-Er.js.map} +1 -1
- package/lib/RouteGuard-CjzxosTf.js +77 -0
- package/lib/RouteGuard-CjzxosTf.js.map +1 -0
- package/lib/{RouterError-VDLnrFqF.js → RouterError-DZS2d6Sc.js} +2 -2
- package/lib/{RouterError-VDLnrFqF.js.map → RouterError-DZS2d6Sc.js.map} +1 -1
- package/lib/{SchemaList-xZSf3IMh.js → SchemaList-CSDSazqV.js} +6 -6
- package/lib/{SchemaList-xZSf3IMh.js.map → SchemaList-CSDSazqV.js.map} +1 -1
- package/lib/SchemaView-DJiBd0_5.js +397 -0
- package/lib/SchemaView-DJiBd0_5.js.map +1 -0
- package/lib/{SignUp-6SGx9Yyq.js → SignUp-Fycafbyg.js} +2 -2
- package/lib/{SignUp-6SGx9Yyq.js.map → SignUp-Fycafbyg.js.map} +1 -1
- package/lib/{SyntaxHighlight-zvlnSnHB.js → SyntaxHighlight-C19vH0V_.js} +525 -509
- package/lib/SyntaxHighlight-C19vH0V_.js.map +1 -0
- package/lib/{Toc-Da9yp7lo.js → Toc-ChkOg2UU.js} +2 -2
- package/lib/{Toc-Da9yp7lo.js.map → Toc-ChkOg2UU.js.map} +1 -1
- package/lib/{circular-DvuimBGQ.js → circular-DGfd8SGc.js} +2 -2
- package/lib/{circular-DvuimBGQ.js.map → circular-DGfd8SGc.js.map} +1 -1
- package/lib/{createServer-D9UvCoDf.js → createServer-DGD8hEzT.js} +4662 -4238
- package/lib/createServer-DGD8hEzT.js.map +1 -0
- package/lib/{errors-CuGgh3hf.js → errors-BTpjwHS6.js} +2 -2
- package/lib/{errors-CuGgh3hf.js.map → errors-BTpjwHS6.js.map} +1 -1
- package/lib/{index-rYHsvtTo.js → index-Bvas0H4x.js} +2 -2
- package/lib/{index-rYHsvtTo.js.map → index-Bvas0H4x.js.map} +1 -1
- package/lib/{index-Cr9_YzOZ.js → index-DP1xZgfJ.js} +9 -9
- package/lib/index-DP1xZgfJ.js.map +1 -0
- package/lib/{index-B1rmok4X.js → index-FNRZUtwo.js} +2 -2
- package/lib/{index-B1rmok4X.js.map → index-FNRZUtwo.js.map} +1 -1
- package/lib/ui/CodeBlock.js.map +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +9 -9
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/lib/ui/Separator.js +27 -0
- package/lib/ui/Separator.js.map +1 -0
- package/lib/ui/SyntaxHighlight.js +1 -1
- package/lib/ui/Tooltip.js +55 -28
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/zudoku.__internal.js +4 -4
- package/lib/zudoku.auth-azureb2c.js +3 -3
- package/lib/zudoku.auth-clerk.js +1 -1
- package/lib/zudoku.auth-openid.js +3 -3
- package/lib/zudoku.auth-supabase.js +30 -33
- package/lib/zudoku.auth-supabase.js.map +1 -1
- package/lib/zudoku.components.js +2 -2
- package/lib/zudoku.plugin-api-catalog.js +3 -3
- package/lib/zudoku.plugin-api-keys.js +3 -3
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-markdown.js +1 -1
- package/lib/zudoku.plugin-openapi.js +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +1 -1
- package/package.json +16 -11
- package/src/app/main.css +1 -1
- package/src/lib/auth/issuer.ts +3 -0
- package/src/lib/authentication/authentication.ts +1 -1
- package/src/lib/authentication/providers/firebase.tsx +284 -0
- package/src/lib/authentication/providers/supabase.tsx +2 -7
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +335 -0
- package/src/lib/authentication/ui/icons/Apple.tsx +10 -0
- package/src/lib/authentication/ui/icons/Facebook.tsx +15 -0
- package/src/lib/authentication/ui/icons/Github.tsx +16 -0
- package/src/lib/authentication/ui/icons/Google.tsx +16 -0
- package/src/lib/authentication/ui/icons/Microsoft.tsx +12 -0
- package/src/lib/authentication/ui/icons/X.tsx +10 -0
- package/src/lib/core/RouteGuard.tsx +8 -8
- package/src/lib/oas/parser/index.ts +8 -3
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +11 -7
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +5 -3
- package/src/lib/plugins/openapi/GeneratedExampleSidecarBox.tsx +52 -0
- package/src/lib/plugins/openapi/OperationList.tsx +5 -0
- package/src/lib/plugins/openapi/OperationListItem.tsx +3 -0
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +20 -2
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +26 -1
- package/src/lib/plugins/openapi/Sidecar.tsx +84 -63
- package/src/lib/plugins/openapi/SidecarExamples.tsx +38 -48
- package/src/lib/plugins/openapi/components/NonHighlightedCode.tsx +22 -0
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +1 -1
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +1 -4
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +0 -5
- package/src/lib/plugins/openapi/schema/union-helpers.ts +0 -1
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +11 -11
- package/src/lib/ui/CodeBlock.tsx +0 -1
- package/src/lib/ui/EmbeddedCodeBlock.tsx +1 -2
- package/src/lib/ui/Separator.tsx +25 -0
- package/src/lib/ui/Tooltip.tsx +54 -32
- package/src/lib/util/createVariantComponent.tsx +31 -5
- package/src/lib/util/flattenAllOf.test.ts +637 -0
- package/src/lib/util/flattenAllOf.ts +101 -0
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.d.ts +0 -5
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.js +0 -7
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.d.ts +0 -4
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.js +0 -10
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.d.ts +0 -5
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.js +0 -16
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.js.map +0 -1
- package/lib/OperationList-Cmiw1xm2.js +0 -5446
- package/lib/OperationList-Cmiw1xm2.js.map +0 -1
- package/lib/RouteGuard-DhU3LRr1.js +0 -81
- package/lib/RouteGuard-DhU3LRr1.js.map +0 -1
- package/lib/SchemaView-tHXTm5oM.js +0 -458
- package/lib/SchemaView-tHXTm5oM.js.map +0 -1
- package/lib/SyntaxHighlight-zvlnSnHB.js.map +0 -1
- package/lib/createServer-D9UvCoDf.js.map +0 -1
- package/lib/index-Cr9_YzOZ.js.map +0 -1
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.tsx +0 -36
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.tsx +0 -25
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.tsx +0 -42
package/dist/config/config.d.ts
CHANGED
|
@@ -1,55 +1,24 @@
|
|
|
1
|
-
import type { Provider } from "@supabase/supabase-js";
|
|
2
1
|
import type { ConfigWithMeta } from "./loader.js";
|
|
3
2
|
import type { BuildConfig } from "./validators/BuildSchema.js";
|
|
4
|
-
import type { ZudokuConfig } from "./validators/validate.js";
|
|
5
|
-
export type { ZudokuConfig };
|
|
3
|
+
import type { AuthenticationConfig, ZudokuConfig } from "./validators/validate.js";
|
|
6
4
|
export type ZudokuBuildConfig = BuildConfig;
|
|
7
5
|
export type LoadedConfig = ConfigWithMeta;
|
|
8
|
-
type
|
|
9
|
-
|
|
10
|
-
redirectToAfterSignIn?: string;
|
|
11
|
-
redirectToAfterSignOut?: string;
|
|
12
|
-
};
|
|
13
|
-
export type ClerkAuthenticationConfig = {
|
|
6
|
+
export type { ZudokuConfig };
|
|
7
|
+
export type ClerkAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
14
8
|
type: "clerk";
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
} & RedirectOptions;
|
|
18
|
-
export type OpenIDAuthenticationConfig = {
|
|
9
|
+
}>;
|
|
10
|
+
export type OpenIDAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
19
11
|
type: "openid";
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
scopes?: string[];
|
|
23
|
-
audience?: string;
|
|
24
|
-
basePath?: string;
|
|
25
|
-
} & RedirectOptions;
|
|
26
|
-
export type Auth0AuthenticationConfig = {
|
|
12
|
+
}>;
|
|
13
|
+
export type Auth0AuthenticationConfig = Extract<AuthenticationConfig, {
|
|
27
14
|
type: "auth0";
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
audience?: string;
|
|
31
|
-
scopes?: string[];
|
|
32
|
-
options?: {
|
|
33
|
-
alwaysPromptLogin?: boolean;
|
|
34
|
-
};
|
|
35
|
-
} & RedirectOptions;
|
|
36
|
-
export type SupabaseAuthenticationConfig = {
|
|
15
|
+
}>;
|
|
16
|
+
export type SupabaseAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
37
17
|
type: "supabase";
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
onlyThirdPartyProviders?: boolean;
|
|
44
|
-
} & RedirectOptions;
|
|
45
|
-
export type AzureB2CAuthenticationConfig = {
|
|
18
|
+
}>;
|
|
19
|
+
export type FirebaseAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
20
|
+
type: "firebase";
|
|
21
|
+
}>;
|
|
22
|
+
export type AzureB2CAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
46
23
|
type: "azureb2c";
|
|
47
|
-
|
|
48
|
-
tenantName: string;
|
|
49
|
-
policyName: string;
|
|
50
|
-
scopes?: string[];
|
|
51
|
-
basePath?: string;
|
|
52
|
-
redirectToAfterSignUp?: string;
|
|
53
|
-
redirectToAfterSignIn?: string;
|
|
54
|
-
redirectToAfterSignOut?: string;
|
|
55
|
-
} & RedirectOptions;
|
|
24
|
+
}>;
|
|
@@ -8,9 +8,9 @@ declare const InputNavigationCategoryLinkDocSchema: z.ZodUnion<readonly [z.ZodSt
|
|
|
8
8
|
}, z.core.$strip>]>;
|
|
9
9
|
export declare const DisplaySchema: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10
10
|
hide: "hide";
|
|
11
|
-
always: "always";
|
|
12
11
|
auth: "auth";
|
|
13
12
|
anon: "anon";
|
|
13
|
+
always: "always";
|
|
14
14
|
}>, z.ZodCustom<(params: {
|
|
15
15
|
context: ZudokuContext;
|
|
16
16
|
auth: UseAuthReturn;
|
|
@@ -23,10 +23,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
23
23
|
file: z.ZodString;
|
|
24
24
|
path: z.ZodOptional<z.ZodString>;
|
|
25
25
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
26
|
+
info: "info";
|
|
26
27
|
slice: "slice";
|
|
27
28
|
map: "map";
|
|
28
29
|
filter: "filter";
|
|
29
|
-
key: "key";
|
|
30
30
|
replace: "replace";
|
|
31
31
|
search: "search";
|
|
32
32
|
split: "split";
|
|
@@ -34,30 +34,23 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
34
34
|
anchor: "anchor";
|
|
35
35
|
bold: "bold";
|
|
36
36
|
link: "link";
|
|
37
|
-
info: "info";
|
|
38
|
-
tags: "tags";
|
|
39
|
-
contact: "contact";
|
|
40
|
-
type: "type";
|
|
41
|
-
binary: "binary";
|
|
42
|
-
cookie: "cookie";
|
|
43
|
-
list: "list";
|
|
44
|
-
server: "server";
|
|
45
|
-
tag: "tag";
|
|
46
37
|
file: "file";
|
|
47
|
-
delete: "delete";
|
|
48
38
|
code: "code";
|
|
49
39
|
copy: "copy";
|
|
50
40
|
focus: "focus";
|
|
51
41
|
pause: "pause";
|
|
52
42
|
play: "play";
|
|
53
43
|
scroll: "scroll";
|
|
44
|
+
key: "key";
|
|
54
45
|
merge: "merge";
|
|
55
46
|
ghost: "ghost";
|
|
56
47
|
expand: "expand";
|
|
48
|
+
type: "type";
|
|
57
49
|
send: "send";
|
|
58
50
|
grid: "grid";
|
|
59
51
|
group: "group";
|
|
60
52
|
heading: "heading";
|
|
53
|
+
list: "list";
|
|
61
54
|
menu: "menu";
|
|
62
55
|
navigation: "navigation";
|
|
63
56
|
option: "option";
|
|
@@ -80,7 +73,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
80
73
|
baseline: "baseline";
|
|
81
74
|
terminal: "terminal";
|
|
82
75
|
square: "square";
|
|
83
|
-
move: "move";
|
|
84
76
|
"a-arrow-down": "a-arrow-down";
|
|
85
77
|
"a-arrow-up": "a-arrow-up";
|
|
86
78
|
"a-large-small": "a-large-small";
|
|
@@ -296,6 +288,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
296
288
|
"between-vertical-start": "between-vertical-start";
|
|
297
289
|
"biceps-flexed": "biceps-flexed";
|
|
298
290
|
bike: "bike";
|
|
291
|
+
binary: "binary";
|
|
299
292
|
binoculars: "binoculars";
|
|
300
293
|
biohazard: "biohazard";
|
|
301
294
|
bird: "bird";
|
|
@@ -608,10 +601,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
608
601
|
"concierge-bell": "concierge-bell";
|
|
609
602
|
cone: "cone";
|
|
610
603
|
construction: "construction";
|
|
604
|
+
contact: "contact";
|
|
611
605
|
"contact-2": "contact-2";
|
|
612
606
|
"contact-round": "contact-round";
|
|
613
607
|
container: "container";
|
|
614
608
|
contrast: "contrast";
|
|
609
|
+
cookie: "cookie";
|
|
615
610
|
"cooking-pot": "cooking-pot";
|
|
616
611
|
"copy-check": "copy-check";
|
|
617
612
|
"copy-minus": "copy-minus";
|
|
@@ -647,6 +642,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
647
642
|
"database-zap": "database-zap";
|
|
648
643
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
649
644
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
645
|
+
delete: "delete";
|
|
650
646
|
dessert: "dessert";
|
|
651
647
|
diameter: "diameter";
|
|
652
648
|
diamond: "diamond";
|
|
@@ -1210,6 +1206,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1210
1206
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
1211
1207
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
1212
1208
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
1209
|
+
move: "move";
|
|
1213
1210
|
"move-3-d": "move-3-d";
|
|
1214
1211
|
"move-3d": "move-3d";
|
|
1215
1212
|
"move-diagonal": "move-diagonal";
|
|
@@ -1485,6 +1482,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1485
1482
|
"send-to-back": "send-to-back";
|
|
1486
1483
|
"separator-horizontal": "separator-horizontal";
|
|
1487
1484
|
"separator-vertical": "separator-vertical";
|
|
1485
|
+
server: "server";
|
|
1488
1486
|
"server-cog": "server-cog";
|
|
1489
1487
|
"server-crash": "server-crash";
|
|
1490
1488
|
"server-off": "server-off";
|
|
@@ -1687,6 +1685,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1687
1685
|
tablet: "tablet";
|
|
1688
1686
|
"tablet-smartphone": "tablet-smartphone";
|
|
1689
1687
|
tablets: "tablets";
|
|
1688
|
+
tag: "tag";
|
|
1689
|
+
tags: "tags";
|
|
1690
1690
|
"tally-1": "tally-1";
|
|
1691
1691
|
"tally-2": "tally-2";
|
|
1692
1692
|
"tally-3": "tally-3";
|
|
@@ -1911,9 +1911,9 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1911
1911
|
}, z.core.$strip>>;
|
|
1912
1912
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1913
1913
|
hide: "hide";
|
|
1914
|
-
always: "always";
|
|
1915
1914
|
auth: "auth";
|
|
1916
1915
|
anon: "anon";
|
|
1916
|
+
always: "always";
|
|
1917
1917
|
}>, z.ZodCustom<(params: {
|
|
1918
1918
|
context: ZudokuContext;
|
|
1919
1919
|
auth: UseAuthReturn;
|
|
@@ -1931,10 +1931,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1931
1931
|
_blank: "_blank";
|
|
1932
1932
|
}>>;
|
|
1933
1933
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1934
|
+
info: "info";
|
|
1934
1935
|
slice: "slice";
|
|
1935
1936
|
map: "map";
|
|
1936
1937
|
filter: "filter";
|
|
1937
|
-
key: "key";
|
|
1938
1938
|
replace: "replace";
|
|
1939
1939
|
search: "search";
|
|
1940
1940
|
split: "split";
|
|
@@ -1942,30 +1942,23 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1942
1942
|
anchor: "anchor";
|
|
1943
1943
|
bold: "bold";
|
|
1944
1944
|
link: "link";
|
|
1945
|
-
info: "info";
|
|
1946
|
-
tags: "tags";
|
|
1947
|
-
contact: "contact";
|
|
1948
|
-
type: "type";
|
|
1949
|
-
binary: "binary";
|
|
1950
|
-
cookie: "cookie";
|
|
1951
|
-
list: "list";
|
|
1952
|
-
server: "server";
|
|
1953
|
-
tag: "tag";
|
|
1954
1945
|
file: "file";
|
|
1955
|
-
delete: "delete";
|
|
1956
1946
|
code: "code";
|
|
1957
1947
|
copy: "copy";
|
|
1958
1948
|
focus: "focus";
|
|
1959
1949
|
pause: "pause";
|
|
1960
1950
|
play: "play";
|
|
1961
1951
|
scroll: "scroll";
|
|
1952
|
+
key: "key";
|
|
1962
1953
|
merge: "merge";
|
|
1963
1954
|
ghost: "ghost";
|
|
1964
1955
|
expand: "expand";
|
|
1956
|
+
type: "type";
|
|
1965
1957
|
send: "send";
|
|
1966
1958
|
grid: "grid";
|
|
1967
1959
|
group: "group";
|
|
1968
1960
|
heading: "heading";
|
|
1961
|
+
list: "list";
|
|
1969
1962
|
menu: "menu";
|
|
1970
1963
|
navigation: "navigation";
|
|
1971
1964
|
option: "option";
|
|
@@ -1988,7 +1981,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1988
1981
|
baseline: "baseline";
|
|
1989
1982
|
terminal: "terminal";
|
|
1990
1983
|
square: "square";
|
|
1991
|
-
move: "move";
|
|
1992
1984
|
"a-arrow-down": "a-arrow-down";
|
|
1993
1985
|
"a-arrow-up": "a-arrow-up";
|
|
1994
1986
|
"a-large-small": "a-large-small";
|
|
@@ -2204,6 +2196,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2204
2196
|
"between-vertical-start": "between-vertical-start";
|
|
2205
2197
|
"biceps-flexed": "biceps-flexed";
|
|
2206
2198
|
bike: "bike";
|
|
2199
|
+
binary: "binary";
|
|
2207
2200
|
binoculars: "binoculars";
|
|
2208
2201
|
biohazard: "biohazard";
|
|
2209
2202
|
bird: "bird";
|
|
@@ -2516,10 +2509,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2516
2509
|
"concierge-bell": "concierge-bell";
|
|
2517
2510
|
cone: "cone";
|
|
2518
2511
|
construction: "construction";
|
|
2512
|
+
contact: "contact";
|
|
2519
2513
|
"contact-2": "contact-2";
|
|
2520
2514
|
"contact-round": "contact-round";
|
|
2521
2515
|
container: "container";
|
|
2522
2516
|
contrast: "contrast";
|
|
2517
|
+
cookie: "cookie";
|
|
2523
2518
|
"cooking-pot": "cooking-pot";
|
|
2524
2519
|
"copy-check": "copy-check";
|
|
2525
2520
|
"copy-minus": "copy-minus";
|
|
@@ -2555,6 +2550,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2555
2550
|
"database-zap": "database-zap";
|
|
2556
2551
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
2557
2552
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
2553
|
+
delete: "delete";
|
|
2558
2554
|
dessert: "dessert";
|
|
2559
2555
|
diameter: "diameter";
|
|
2560
2556
|
diamond: "diamond";
|
|
@@ -3118,6 +3114,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3118
3114
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
3119
3115
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
3120
3116
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
3117
|
+
move: "move";
|
|
3121
3118
|
"move-3-d": "move-3-d";
|
|
3122
3119
|
"move-3d": "move-3d";
|
|
3123
3120
|
"move-diagonal": "move-diagonal";
|
|
@@ -3393,6 +3390,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3393
3390
|
"send-to-back": "send-to-back";
|
|
3394
3391
|
"separator-horizontal": "separator-horizontal";
|
|
3395
3392
|
"separator-vertical": "separator-vertical";
|
|
3393
|
+
server: "server";
|
|
3396
3394
|
"server-cog": "server-cog";
|
|
3397
3395
|
"server-crash": "server-crash";
|
|
3398
3396
|
"server-off": "server-off";
|
|
@@ -3595,6 +3593,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3595
3593
|
tablet: "tablet";
|
|
3596
3594
|
"tablet-smartphone": "tablet-smartphone";
|
|
3597
3595
|
tablets: "tablets";
|
|
3596
|
+
tag: "tag";
|
|
3597
|
+
tags: "tags";
|
|
3598
3598
|
"tally-1": "tally-1";
|
|
3599
3599
|
"tally-2": "tally-2";
|
|
3600
3600
|
"tally-3": "tally-3";
|
|
@@ -3818,9 +3818,9 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3818
3818
|
}, z.core.$strip>>;
|
|
3819
3819
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3820
3820
|
hide: "hide";
|
|
3821
|
-
always: "always";
|
|
3822
3821
|
auth: "auth";
|
|
3823
3822
|
anon: "anon";
|
|
3823
|
+
always: "always";
|
|
3824
3824
|
}>, z.ZodCustom<(params: {
|
|
3825
3825
|
context: ZudokuContext;
|
|
3826
3826
|
auth: UseAuthReturn;
|
|
@@ -3835,10 +3835,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3835
3835
|
label: z.ZodOptional<z.ZodString>;
|
|
3836
3836
|
element: z.ZodAny;
|
|
3837
3837
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3838
|
+
info: "info";
|
|
3838
3839
|
slice: "slice";
|
|
3839
3840
|
map: "map";
|
|
3840
3841
|
filter: "filter";
|
|
3841
|
-
key: "key";
|
|
3842
3842
|
replace: "replace";
|
|
3843
3843
|
search: "search";
|
|
3844
3844
|
split: "split";
|
|
@@ -3846,30 +3846,23 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3846
3846
|
anchor: "anchor";
|
|
3847
3847
|
bold: "bold";
|
|
3848
3848
|
link: "link";
|
|
3849
|
-
info: "info";
|
|
3850
|
-
tags: "tags";
|
|
3851
|
-
contact: "contact";
|
|
3852
|
-
type: "type";
|
|
3853
|
-
binary: "binary";
|
|
3854
|
-
cookie: "cookie";
|
|
3855
|
-
list: "list";
|
|
3856
|
-
server: "server";
|
|
3857
|
-
tag: "tag";
|
|
3858
3849
|
file: "file";
|
|
3859
|
-
delete: "delete";
|
|
3860
3850
|
code: "code";
|
|
3861
3851
|
copy: "copy";
|
|
3862
3852
|
focus: "focus";
|
|
3863
3853
|
pause: "pause";
|
|
3864
3854
|
play: "play";
|
|
3865
3855
|
scroll: "scroll";
|
|
3856
|
+
key: "key";
|
|
3866
3857
|
merge: "merge";
|
|
3867
3858
|
ghost: "ghost";
|
|
3868
3859
|
expand: "expand";
|
|
3860
|
+
type: "type";
|
|
3869
3861
|
send: "send";
|
|
3870
3862
|
grid: "grid";
|
|
3871
3863
|
group: "group";
|
|
3872
3864
|
heading: "heading";
|
|
3865
|
+
list: "list";
|
|
3873
3866
|
menu: "menu";
|
|
3874
3867
|
navigation: "navigation";
|
|
3875
3868
|
option: "option";
|
|
@@ -3892,7 +3885,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3892
3885
|
baseline: "baseline";
|
|
3893
3886
|
terminal: "terminal";
|
|
3894
3887
|
square: "square";
|
|
3895
|
-
move: "move";
|
|
3896
3888
|
"a-arrow-down": "a-arrow-down";
|
|
3897
3889
|
"a-arrow-up": "a-arrow-up";
|
|
3898
3890
|
"a-large-small": "a-large-small";
|
|
@@ -4108,6 +4100,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4108
4100
|
"between-vertical-start": "between-vertical-start";
|
|
4109
4101
|
"biceps-flexed": "biceps-flexed";
|
|
4110
4102
|
bike: "bike";
|
|
4103
|
+
binary: "binary";
|
|
4111
4104
|
binoculars: "binoculars";
|
|
4112
4105
|
biohazard: "biohazard";
|
|
4113
4106
|
bird: "bird";
|
|
@@ -4420,10 +4413,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4420
4413
|
"concierge-bell": "concierge-bell";
|
|
4421
4414
|
cone: "cone";
|
|
4422
4415
|
construction: "construction";
|
|
4416
|
+
contact: "contact";
|
|
4423
4417
|
"contact-2": "contact-2";
|
|
4424
4418
|
"contact-round": "contact-round";
|
|
4425
4419
|
container: "container";
|
|
4426
4420
|
contrast: "contrast";
|
|
4421
|
+
cookie: "cookie";
|
|
4427
4422
|
"cooking-pot": "cooking-pot";
|
|
4428
4423
|
"copy-check": "copy-check";
|
|
4429
4424
|
"copy-minus": "copy-minus";
|
|
@@ -4459,6 +4454,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4459
4454
|
"database-zap": "database-zap";
|
|
4460
4455
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
4461
4456
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
4457
|
+
delete: "delete";
|
|
4462
4458
|
dessert: "dessert";
|
|
4463
4459
|
diameter: "diameter";
|
|
4464
4460
|
diamond: "diamond";
|
|
@@ -5022,6 +5018,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5022
5018
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
5023
5019
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
5024
5020
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
5021
|
+
move: "move";
|
|
5025
5022
|
"move-3-d": "move-3-d";
|
|
5026
5023
|
"move-3d": "move-3d";
|
|
5027
5024
|
"move-diagonal": "move-diagonal";
|
|
@@ -5297,6 +5294,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5297
5294
|
"send-to-back": "send-to-back";
|
|
5298
5295
|
"separator-horizontal": "separator-horizontal";
|
|
5299
5296
|
"separator-vertical": "separator-vertical";
|
|
5297
|
+
server: "server";
|
|
5300
5298
|
"server-cog": "server-cog";
|
|
5301
5299
|
"server-crash": "server-crash";
|
|
5302
5300
|
"server-off": "server-off";
|
|
@@ -5499,6 +5497,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5499
5497
|
tablet: "tablet";
|
|
5500
5498
|
"tablet-smartphone": "tablet-smartphone";
|
|
5501
5499
|
tablets: "tablets";
|
|
5500
|
+
tag: "tag";
|
|
5501
|
+
tags: "tags";
|
|
5502
5502
|
"tally-1": "tally-1";
|
|
5503
5503
|
"tally-2": "tally-2";
|
|
5504
5504
|
"tally-3": "tally-3";
|
|
@@ -5722,9 +5722,9 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5722
5722
|
}, z.core.$strip>>;
|
|
5723
5723
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5724
5724
|
hide: "hide";
|
|
5725
|
-
always: "always";
|
|
5726
5725
|
auth: "auth";
|
|
5727
5726
|
anon: "anon";
|
|
5727
|
+
always: "always";
|
|
5728
5728
|
}>, z.ZodCustom<(params: {
|
|
5729
5729
|
context: ZudokuContext;
|
|
5730
5730
|
auth: UseAuthReturn;
|
|
@@ -5740,10 +5740,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5740
5740
|
declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
5741
5741
|
type: z.ZodLiteral<"category">;
|
|
5742
5742
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
5743
|
+
info: "info";
|
|
5743
5744
|
slice: "slice";
|
|
5744
5745
|
map: "map";
|
|
5745
5746
|
filter: "filter";
|
|
5746
|
-
key: "key";
|
|
5747
5747
|
replace: "replace";
|
|
5748
5748
|
search: "search";
|
|
5749
5749
|
split: "split";
|
|
@@ -5751,30 +5751,23 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5751
5751
|
anchor: "anchor";
|
|
5752
5752
|
bold: "bold";
|
|
5753
5753
|
link: "link";
|
|
5754
|
-
info: "info";
|
|
5755
|
-
tags: "tags";
|
|
5756
|
-
contact: "contact";
|
|
5757
|
-
type: "type";
|
|
5758
|
-
binary: "binary";
|
|
5759
|
-
cookie: "cookie";
|
|
5760
|
-
list: "list";
|
|
5761
|
-
server: "server";
|
|
5762
|
-
tag: "tag";
|
|
5763
5754
|
file: "file";
|
|
5764
|
-
delete: "delete";
|
|
5765
5755
|
code: "code";
|
|
5766
5756
|
copy: "copy";
|
|
5767
5757
|
focus: "focus";
|
|
5768
5758
|
pause: "pause";
|
|
5769
5759
|
play: "play";
|
|
5770
5760
|
scroll: "scroll";
|
|
5761
|
+
key: "key";
|
|
5771
5762
|
merge: "merge";
|
|
5772
5763
|
ghost: "ghost";
|
|
5773
5764
|
expand: "expand";
|
|
5765
|
+
type: "type";
|
|
5774
5766
|
send: "send";
|
|
5775
5767
|
grid: "grid";
|
|
5776
5768
|
group: "group";
|
|
5777
5769
|
heading: "heading";
|
|
5770
|
+
list: "list";
|
|
5778
5771
|
menu: "menu";
|
|
5779
5772
|
navigation: "navigation";
|
|
5780
5773
|
option: "option";
|
|
@@ -5797,7 +5790,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5797
5790
|
baseline: "baseline";
|
|
5798
5791
|
terminal: "terminal";
|
|
5799
5792
|
square: "square";
|
|
5800
|
-
move: "move";
|
|
5801
5793
|
"a-arrow-down": "a-arrow-down";
|
|
5802
5794
|
"a-arrow-up": "a-arrow-up";
|
|
5803
5795
|
"a-large-small": "a-large-small";
|
|
@@ -6013,6 +6005,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6013
6005
|
"between-vertical-start": "between-vertical-start";
|
|
6014
6006
|
"biceps-flexed": "biceps-flexed";
|
|
6015
6007
|
bike: "bike";
|
|
6008
|
+
binary: "binary";
|
|
6016
6009
|
binoculars: "binoculars";
|
|
6017
6010
|
biohazard: "biohazard";
|
|
6018
6011
|
bird: "bird";
|
|
@@ -6325,10 +6318,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6325
6318
|
"concierge-bell": "concierge-bell";
|
|
6326
6319
|
cone: "cone";
|
|
6327
6320
|
construction: "construction";
|
|
6321
|
+
contact: "contact";
|
|
6328
6322
|
"contact-2": "contact-2";
|
|
6329
6323
|
"contact-round": "contact-round";
|
|
6330
6324
|
container: "container";
|
|
6331
6325
|
contrast: "contrast";
|
|
6326
|
+
cookie: "cookie";
|
|
6332
6327
|
"cooking-pot": "cooking-pot";
|
|
6333
6328
|
"copy-check": "copy-check";
|
|
6334
6329
|
"copy-minus": "copy-minus";
|
|
@@ -6364,6 +6359,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6364
6359
|
"database-zap": "database-zap";
|
|
6365
6360
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
6366
6361
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
6362
|
+
delete: "delete";
|
|
6367
6363
|
dessert: "dessert";
|
|
6368
6364
|
diameter: "diameter";
|
|
6369
6365
|
diamond: "diamond";
|
|
@@ -6927,6 +6923,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6927
6923
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
6928
6924
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
6929
6925
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
6926
|
+
move: "move";
|
|
6930
6927
|
"move-3-d": "move-3-d";
|
|
6931
6928
|
"move-3d": "move-3d";
|
|
6932
6929
|
"move-diagonal": "move-diagonal";
|
|
@@ -7202,6 +7199,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7202
7199
|
"send-to-back": "send-to-back";
|
|
7203
7200
|
"separator-horizontal": "separator-horizontal";
|
|
7204
7201
|
"separator-vertical": "separator-vertical";
|
|
7202
|
+
server: "server";
|
|
7205
7203
|
"server-cog": "server-cog";
|
|
7206
7204
|
"server-crash": "server-crash";
|
|
7207
7205
|
"server-off": "server-off";
|
|
@@ -7404,6 +7402,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7404
7402
|
tablet: "tablet";
|
|
7405
7403
|
"tablet-smartphone": "tablet-smartphone";
|
|
7406
7404
|
tablets: "tablets";
|
|
7405
|
+
tag: "tag";
|
|
7406
|
+
tags: "tags";
|
|
7407
7407
|
"tally-1": "tally-1";
|
|
7408
7408
|
"tally-2": "tally-2";
|
|
7409
7409
|
"tally-3": "tally-3";
|
|
@@ -7620,9 +7620,9 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7620
7620
|
}, z.core.$strip>]>>;
|
|
7621
7621
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7622
7622
|
hide: "hide";
|
|
7623
|
-
always: "always";
|
|
7624
7623
|
auth: "auth";
|
|
7625
7624
|
anon: "anon";
|
|
7625
|
+
always: "always";
|
|
7626
7626
|
}>, z.ZodCustom<(params: {
|
|
7627
7627
|
context: ZudokuContext;
|
|
7628
7628
|
auth: UseAuthReturn;
|
|
@@ -9,5 +9,5 @@ type ProtectedRouteCallback = (c: CallbackContext) => boolean;
|
|
|
9
9
|
export type ProtectedRoutesInput = z.input<typeof ProtectedRoutesInputSchema>;
|
|
10
10
|
export type ProtectedRoutes = z.output<typeof ProtectedRoutesInputSchema>;
|
|
11
11
|
export declare const ProtectedRoutesInputSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodRecord<z.ZodString, z.ZodCustom<ProtectedRouteCallback, ProtectedRouteCallback>>]>>;
|
|
12
|
-
export declare const ProtectedRoutesSchema: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodRecord<z.ZodString, z.ZodCustom<ProtectedRouteCallback, ProtectedRouteCallback>>]>>, z.ZodTransform<Record<string, (c: CallbackContext) => boolean> | undefined,
|
|
12
|
+
export declare const ProtectedRoutesSchema: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodRecord<z.ZodString, z.ZodCustom<ProtectedRouteCallback, ProtectedRouteCallback>>]>>, z.ZodTransform<Record<string, (c: CallbackContext) => boolean> | undefined, Record<string, ProtectedRouteCallback> | string[] | undefined>>;
|
|
13
13
|
export {};
|