@mintlify/validation 0.1.659 → 0.1.661
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/mint-config/schemas/v2/index.d.ts +520 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +2 -7
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +2 -8
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +10 -19
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +43 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +3 -3
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +2 -9
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/menu.js +2 -7
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/products.js +2 -9
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +2 -7
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +2 -7
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +32 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +52 -0
- package/dist/mint-config/validateConfig.d.ts +180 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -5,14 +5,9 @@ import { hrefSchema } from '../reusable/href.js';
|
|
|
5
5
|
import { iconSchema } from '../reusable/icon.js';
|
|
6
6
|
import { openApiSchema } from '../reusable/openapi.js';
|
|
7
7
|
import { globalSchema } from './global.js';
|
|
8
|
-
import { decoratedGroupsSchema, groupsSchema } from './groups.js';
|
|
8
|
+
import { decoratedGroupsSchema, directoryField, groupsSchema } from './groups.js';
|
|
9
9
|
import { decoratedPagesSchema, pagesSchema } from './pages.js';
|
|
10
|
-
export const baseMenuItemSchema = z.object({
|
|
11
|
-
item: z.string().nonempty().describe('The name of the menu item'),
|
|
12
|
-
icon: iconSchema.optional(),
|
|
13
|
-
description: z.string().optional().describe('The description of the menu item'),
|
|
14
|
-
hidden: hiddenSchema.optional(),
|
|
15
|
-
});
|
|
10
|
+
export const baseMenuItemSchema = z.object(Object.assign({ item: z.string().nonempty().describe('The name of the menu item'), icon: iconSchema.optional(), description: z.string().optional().describe('The description of the menu item'), hidden: hiddenSchema.optional() }, directoryField));
|
|
16
11
|
export const nonRecursiveMenuItemSchema = baseMenuItemSchema.extend({ href: hrefSchema });
|
|
17
12
|
export const menuItemSchema = z.union([
|
|
18
13
|
baseMenuItemSchema.extend({
|
|
@@ -12,6 +12,7 @@ export declare const pagesSchema: z.ZodArray<z.ZodType<string | ({
|
|
|
12
12
|
} | undefined;
|
|
13
13
|
expanded?: boolean | undefined;
|
|
14
14
|
public?: boolean | undefined;
|
|
15
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
15
16
|
tag?: string | undefined;
|
|
16
17
|
hidden?: boolean | undefined;
|
|
17
18
|
root?: string | undefined;
|
|
@@ -35,6 +36,7 @@ export declare const pagesSchema: z.ZodArray<z.ZodType<string | ({
|
|
|
35
36
|
} | undefined;
|
|
36
37
|
expanded?: boolean | undefined;
|
|
37
38
|
public?: boolean | undefined;
|
|
39
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
38
40
|
tag?: string | undefined;
|
|
39
41
|
hidden?: boolean | undefined;
|
|
40
42
|
root?: string | undefined;
|
|
@@ -107,6 +109,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
|
|
|
107
109
|
} | undefined;
|
|
108
110
|
expanded?: boolean | undefined;
|
|
109
111
|
public?: boolean | undefined;
|
|
112
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
110
113
|
tag?: string | undefined;
|
|
111
114
|
hidden?: boolean | undefined;
|
|
112
115
|
root?: string | undefined;
|
|
@@ -170,6 +173,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
|
|
|
170
173
|
} | undefined;
|
|
171
174
|
expanded?: boolean | undefined;
|
|
172
175
|
public?: boolean | undefined;
|
|
176
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
173
177
|
tag?: string | undefined;
|
|
174
178
|
hidden?: boolean | undefined;
|
|
175
179
|
root?: string | undefined;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { ProductNavigation } from './divisionNav.js';
|
|
3
3
|
export declare const baseProductSchema: z.ZodObject<{
|
|
4
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
4
5
|
product: z.ZodString;
|
|
5
6
|
name: z.ZodOptional<z.ZodString>;
|
|
6
7
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
@@ -40,6 +41,7 @@ export declare const baseProductSchema: z.ZodObject<{
|
|
|
40
41
|
light?: string | undefined;
|
|
41
42
|
dark?: string | undefined;
|
|
42
43
|
} | undefined;
|
|
44
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
43
45
|
description?: string | undefined;
|
|
44
46
|
hidden?: boolean | undefined;
|
|
45
47
|
}, {
|
|
@@ -54,6 +56,7 @@ export declare const baseProductSchema: z.ZodObject<{
|
|
|
54
56
|
light?: string | undefined;
|
|
55
57
|
dark?: string | undefined;
|
|
56
58
|
} | undefined;
|
|
59
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
57
60
|
description?: string | undefined;
|
|
58
61
|
hidden?: boolean | undefined;
|
|
59
62
|
}>;
|
|
@@ -63,6 +66,7 @@ export declare const productsSchema: z.ZodArray<z.ZodType<ProductNavigation<"def
|
|
|
63
66
|
export declare const decoratedProductsSchema: z.ZodArray<z.ZodType<ProductNavigation<"decorated">, z.ZodTypeDef, ProductNavigation<"decorated">>, "many">;
|
|
64
67
|
export type BaseProductSchema = z.infer<typeof baseProductSchema>;
|
|
65
68
|
export declare const nonRecursiveProductSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
69
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
66
70
|
product: z.ZodString;
|
|
67
71
|
name: z.ZodOptional<z.ZodString>;
|
|
68
72
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
@@ -105,6 +109,7 @@ export declare const nonRecursiveProductSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
105
109
|
light?: string | undefined;
|
|
106
110
|
dark?: string | undefined;
|
|
107
111
|
} | undefined;
|
|
112
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
108
113
|
description?: string | undefined;
|
|
109
114
|
hidden?: boolean | undefined;
|
|
110
115
|
}, {
|
|
@@ -120,6 +125,7 @@ export declare const nonRecursiveProductSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
120
125
|
light?: string | undefined;
|
|
121
126
|
dark?: string | undefined;
|
|
122
127
|
} | undefined;
|
|
128
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
123
129
|
description?: string | undefined;
|
|
124
130
|
hidden?: boolean | undefined;
|
|
125
131
|
}>;
|
|
@@ -8,19 +8,12 @@ import { openApiSchema } from '../reusable/openapi.js';
|
|
|
8
8
|
import { anchorsSchema, decoratedAnchorsSchema } from './anchors.js';
|
|
9
9
|
import { decoratedDropdownsSchema, dropdownsSchema } from './dropdown.js';
|
|
10
10
|
import { globalSchema } from './global.js';
|
|
11
|
-
import {
|
|
11
|
+
import { decoratedGroupsSchema, directoryField, groupsSchema } from './groups.js';
|
|
12
12
|
import { languagesSchema, decoratedLanguagesSchema } from './languages.js';
|
|
13
13
|
import { pagesSchema, decoratedPagesSchema } from './pages.js';
|
|
14
14
|
import { tabsSchema, decoratedTabsSchema } from './tabs.js';
|
|
15
15
|
import { versionsSchema, decoratedVersionsSchema } from './version.js';
|
|
16
|
-
export const baseProductSchema = z.object({
|
|
17
|
-
product: z.string().nonempty().describe('The name of the product'),
|
|
18
|
-
name: z.string().optional().describe('Display name for the product'),
|
|
19
|
-
icon: iconSchema.optional(),
|
|
20
|
-
color: colorSchemaWithOptionalLightAndDark.optional(),
|
|
21
|
-
description: z.string().optional().describe('The description of the product'),
|
|
22
|
-
hidden: hiddenSchema.optional(),
|
|
23
|
-
});
|
|
16
|
+
export const baseProductSchema = z.object(Object.assign({ product: z.string().nonempty().describe('The name of the product'), name: z.string().optional().describe('Display name for the product'), icon: iconSchema.optional(), color: colorSchemaWithOptionalLightAndDark.optional(), description: z.string().optional().describe('The description of the product'), hidden: hiddenSchema.optional() }, directoryField));
|
|
24
17
|
export const productSchema = z.union([
|
|
25
18
|
baseProductSchema.extend({
|
|
26
19
|
href: hrefSchema,
|
|
@@ -3,6 +3,7 @@ import { TabNavigation } from './divisionNav.js';
|
|
|
3
3
|
export declare const tabAlignSchema: z.ZodEnum<["start", "end"]>;
|
|
4
4
|
export type TabAlign = z.infer<typeof tabAlignSchema>;
|
|
5
5
|
export declare const baseTabSchema: z.ZodObject<{
|
|
6
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
6
7
|
tab: z.ZodString;
|
|
7
8
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
8
9
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -26,6 +27,7 @@ export declare const baseTabSchema: z.ZodObject<{
|
|
|
26
27
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
27
28
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
28
29
|
} | undefined;
|
|
30
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
29
31
|
hidden?: boolean | undefined;
|
|
30
32
|
align?: "start" | "end" | undefined;
|
|
31
33
|
}, {
|
|
@@ -35,11 +37,13 @@ export declare const baseTabSchema: z.ZodObject<{
|
|
|
35
37
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
36
38
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
37
39
|
} | undefined;
|
|
40
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
38
41
|
hidden?: boolean | undefined;
|
|
39
42
|
align?: "start" | "end" | undefined;
|
|
40
43
|
}>;
|
|
41
44
|
export type BaseTabSchema = z.infer<typeof baseTabSchema>;
|
|
42
45
|
export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
46
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
43
47
|
tab: z.ZodString;
|
|
44
48
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
45
49
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -66,6 +70,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
66
70
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
67
71
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
68
72
|
} | undefined;
|
|
73
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
69
74
|
hidden?: boolean | undefined;
|
|
70
75
|
align?: "start" | "end" | undefined;
|
|
71
76
|
}, {
|
|
@@ -76,6 +81,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
76
81
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
77
82
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
78
83
|
} | undefined;
|
|
84
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
79
85
|
hidden?: boolean | undefined;
|
|
80
86
|
align?: "start" | "end" | undefined;
|
|
81
87
|
}>;
|
|
@@ -7,19 +7,14 @@ import { openApiSchema } from '../reusable/openapi.js';
|
|
|
7
7
|
import { anchorsSchema, decoratedAnchorsSchema } from './anchors.js';
|
|
8
8
|
import { decoratedDropdownsSchema, dropdownsSchema } from './dropdown.js';
|
|
9
9
|
import { globalSchema } from './global.js';
|
|
10
|
-
import { decoratedGroupsSchema, groupsSchema } from './groups.js';
|
|
10
|
+
import { decoratedGroupsSchema, directoryField, groupsSchema } from './groups.js';
|
|
11
11
|
import { decoratedLanguagesSchema, languagesSchema } from './languages.js';
|
|
12
12
|
import { decoratedMenuSchema, menuSchema } from './menu.js';
|
|
13
13
|
import { decoratedPagesSchema, pagesSchema } from './pages.js';
|
|
14
14
|
import { decoratedProductsSchema, productsSchema } from './products.js';
|
|
15
15
|
import { decoratedVersionsSchema, versionsSchema } from './version.js';
|
|
16
16
|
export const tabAlignSchema = z.enum(['start', 'end']).describe('Tab alignment in the navigation');
|
|
17
|
-
export const baseTabSchema = z.object({
|
|
18
|
-
tab: z.string().nonempty().describe('The name of the tab'),
|
|
19
|
-
icon: iconSchema.optional(),
|
|
20
|
-
hidden: hiddenSchema.optional(),
|
|
21
|
-
align: tabAlignSchema.optional(),
|
|
22
|
-
});
|
|
17
|
+
export const baseTabSchema = z.object(Object.assign({ tab: z.string().nonempty().describe('The name of the tab'), icon: iconSchema.optional(), hidden: hiddenSchema.optional(), align: tabAlignSchema.optional() }, directoryField));
|
|
23
18
|
export const nonRecursiveTabSchema = baseTabSchema.extend({ href: hrefSchema });
|
|
24
19
|
export const tabSchema = z.union([
|
|
25
20
|
baseTabSchema.extend({
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { VersionNavigation } from './divisionNav.js';
|
|
3
3
|
export declare const baseVersionSchema: z.ZodObject<{
|
|
4
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
4
5
|
version: z.ZodString;
|
|
5
6
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
6
7
|
tag: z.ZodOptional<z.ZodString>;
|
|
@@ -8,16 +9,19 @@ export declare const baseVersionSchema: z.ZodObject<{
|
|
|
8
9
|
}, "strip", z.ZodTypeAny, {
|
|
9
10
|
version: string;
|
|
10
11
|
default?: boolean | undefined;
|
|
12
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
11
13
|
tag?: string | undefined;
|
|
12
14
|
hidden?: boolean | undefined;
|
|
13
15
|
}, {
|
|
14
16
|
version: string;
|
|
15
17
|
default?: boolean | undefined;
|
|
18
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
16
19
|
tag?: string | undefined;
|
|
17
20
|
hidden?: boolean | undefined;
|
|
18
21
|
}>;
|
|
19
22
|
export type BaseVersionSchema = z.infer<typeof baseVersionSchema>;
|
|
20
23
|
export declare const nonRecursiveVersionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
24
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
21
25
|
version: z.ZodString;
|
|
22
26
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
23
27
|
tag: z.ZodOptional<z.ZodString>;
|
|
@@ -28,12 +32,14 @@ export declare const nonRecursiveVersionSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
28
32
|
version: string;
|
|
29
33
|
href: string;
|
|
30
34
|
default?: boolean | undefined;
|
|
35
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
31
36
|
tag?: string | undefined;
|
|
32
37
|
hidden?: boolean | undefined;
|
|
33
38
|
}, {
|
|
34
39
|
version: string;
|
|
35
40
|
href: string;
|
|
36
41
|
default?: boolean | undefined;
|
|
42
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
37
43
|
tag?: string | undefined;
|
|
38
44
|
hidden?: boolean | undefined;
|
|
39
45
|
}>;
|
|
@@ -6,17 +6,12 @@ import { openApiSchema } from '../reusable/openapi.js';
|
|
|
6
6
|
import { anchorsSchema, decoratedAnchorsSchema } from './anchors.js';
|
|
7
7
|
import { decoratedDropdownsSchema, dropdownsSchema } from './dropdown.js';
|
|
8
8
|
import { globalSchema } from './global.js';
|
|
9
|
-
import { decoratedGroupsSchema, groupsSchema } from './groups.js';
|
|
9
|
+
import { decoratedGroupsSchema, directoryField, groupsSchema } from './groups.js';
|
|
10
10
|
import { decoratedLanguagesSchema, languagesSchema } from './languages.js';
|
|
11
11
|
import { decoratedPagesSchema, pagesSchema } from './pages.js';
|
|
12
12
|
import { decoratedProductsSchema, productsSchema } from './products.js';
|
|
13
13
|
import { decoratedTabsSchema, tabsSchema } from './tabs.js';
|
|
14
|
-
export const baseVersionSchema = z.object({
|
|
15
|
-
version: z.string().nonempty().describe('The name of the version'),
|
|
16
|
-
default: z.boolean().optional().describe('Whether this version is the default version'),
|
|
17
|
-
tag: z.string().optional().describe('Tag for the version'),
|
|
18
|
-
hidden: hiddenSchema.optional(),
|
|
19
|
-
});
|
|
14
|
+
export const baseVersionSchema = z.object(Object.assign({ version: z.string().nonempty().describe('The name of the version'), default: z.boolean().optional().describe('Whether this version is the default version'), tag: z.string().optional().describe('Tag for the version'), hidden: hiddenSchema.optional() }, directoryField));
|
|
20
15
|
export const nonRecursiveVersionSchema = baseVersionSchema.extend({ href: hrefSchema });
|
|
21
16
|
export const versionSchema = z.union([
|
|
22
17
|
baseVersionSchema.extend({
|
|
@@ -472,66 +472,85 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
472
472
|
})[] | undefined;
|
|
473
473
|
}>>;
|
|
474
474
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
475
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
475
476
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
476
477
|
}, {
|
|
477
478
|
products: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
478
479
|
}>, "strip", z.ZodTypeAny, {
|
|
479
480
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
481
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
480
482
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
481
483
|
}, {
|
|
482
484
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
485
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
483
486
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
484
487
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
488
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
485
489
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
486
490
|
}, {
|
|
487
491
|
languages: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
488
492
|
}>, "strip", z.ZodTypeAny, {
|
|
489
493
|
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
494
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
490
495
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
491
496
|
}, {
|
|
492
497
|
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
498
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
493
499
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
494
500
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
501
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
495
502
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
496
503
|
}, {
|
|
497
504
|
versions: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
498
505
|
}>, "strip", z.ZodTypeAny, {
|
|
499
506
|
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
507
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
500
508
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
501
509
|
}, {
|
|
502
510
|
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
511
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
503
512
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
504
513
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
514
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
505
515
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
506
516
|
}, {
|
|
507
517
|
tabs: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
508
518
|
}>, "strip", z.ZodTypeAny, {
|
|
509
519
|
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
520
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
510
521
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
511
522
|
}, {
|
|
512
523
|
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
524
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
513
525
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
514
526
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
527
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
515
528
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
516
529
|
}, {
|
|
517
530
|
dropdowns: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
518
531
|
}>, "strip", z.ZodTypeAny, {
|
|
519
532
|
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
533
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
520
534
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
521
535
|
}, {
|
|
522
536
|
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
537
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
523
538
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
524
539
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
540
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
525
541
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
526
542
|
}, {
|
|
527
543
|
anchors: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
528
544
|
}>, "strip", z.ZodTypeAny, {
|
|
529
545
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
546
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
530
547
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
531
548
|
}, {
|
|
532
549
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
550
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
533
551
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
534
552
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
553
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
535
554
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
536
555
|
}, {
|
|
537
556
|
groups: z.ZodArray<z.ZodType<{
|
|
@@ -543,6 +562,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
543
562
|
} | undefined;
|
|
544
563
|
expanded?: boolean | undefined;
|
|
545
564
|
public?: boolean | undefined;
|
|
565
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
546
566
|
tag?: string | undefined;
|
|
547
567
|
hidden?: boolean | undefined;
|
|
548
568
|
root?: string | undefined;
|
|
@@ -566,6 +586,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
566
586
|
} | undefined;
|
|
567
587
|
expanded?: boolean | undefined;
|
|
568
588
|
public?: boolean | undefined;
|
|
589
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
569
590
|
tag?: string | undefined;
|
|
570
591
|
hidden?: boolean | undefined;
|
|
571
592
|
root?: string | undefined;
|
|
@@ -591,6 +612,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
591
612
|
} | undefined;
|
|
592
613
|
expanded?: boolean | undefined;
|
|
593
614
|
public?: boolean | undefined;
|
|
615
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
594
616
|
tag?: string | undefined;
|
|
595
617
|
hidden?: boolean | undefined;
|
|
596
618
|
root?: string | undefined;
|
|
@@ -606,6 +628,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
606
628
|
} & {
|
|
607
629
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
608
630
|
})[];
|
|
631
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
609
632
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
610
633
|
}, {
|
|
611
634
|
groups: ({
|
|
@@ -617,6 +640,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
617
640
|
} | undefined;
|
|
618
641
|
expanded?: boolean | undefined;
|
|
619
642
|
public?: boolean | undefined;
|
|
643
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
620
644
|
tag?: string | undefined;
|
|
621
645
|
hidden?: boolean | undefined;
|
|
622
646
|
root?: string | undefined;
|
|
@@ -632,8 +656,10 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
632
656
|
} & {
|
|
633
657
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
634
658
|
})[];
|
|
659
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
635
660
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
636
661
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
662
|
+
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
637
663
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
638
664
|
}, {
|
|
639
665
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
@@ -645,6 +671,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
645
671
|
} | undefined;
|
|
646
672
|
expanded?: boolean | undefined;
|
|
647
673
|
public?: boolean | undefined;
|
|
674
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
648
675
|
tag?: string | undefined;
|
|
649
676
|
hidden?: boolean | undefined;
|
|
650
677
|
root?: string | undefined;
|
|
@@ -668,6 +695,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
668
695
|
} | undefined;
|
|
669
696
|
expanded?: boolean | undefined;
|
|
670
697
|
public?: boolean | undefined;
|
|
698
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
671
699
|
tag?: string | undefined;
|
|
672
700
|
hidden?: boolean | undefined;
|
|
673
701
|
root?: string | undefined;
|
|
@@ -693,6 +721,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
693
721
|
} | undefined;
|
|
694
722
|
expanded?: boolean | undefined;
|
|
695
723
|
public?: boolean | undefined;
|
|
724
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
696
725
|
tag?: string | undefined;
|
|
697
726
|
hidden?: boolean | undefined;
|
|
698
727
|
root?: string | undefined;
|
|
@@ -708,6 +737,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
708
737
|
} & {
|
|
709
738
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
710
739
|
}))[];
|
|
740
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
711
741
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
712
742
|
}, {
|
|
713
743
|
pages: (string | ({
|
|
@@ -719,6 +749,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
719
749
|
} | undefined;
|
|
720
750
|
expanded?: boolean | undefined;
|
|
721
751
|
public?: boolean | undefined;
|
|
752
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
722
753
|
tag?: string | undefined;
|
|
723
754
|
hidden?: boolean | undefined;
|
|
724
755
|
root?: string | undefined;
|
|
@@ -734,6 +765,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
734
765
|
} & {
|
|
735
766
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
736
767
|
}))[];
|
|
768
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
737
769
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
738
770
|
}>]>;
|
|
739
771
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1530,21 +1562,27 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1530
1562
|
};
|
|
1531
1563
|
navigation: {
|
|
1532
1564
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1565
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1533
1566
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1534
1567
|
} | {
|
|
1535
1568
|
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1569
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1536
1570
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1537
1571
|
} | {
|
|
1538
1572
|
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1573
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1539
1574
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1540
1575
|
} | {
|
|
1541
1576
|
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1577
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1542
1578
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1543
1579
|
} | {
|
|
1544
1580
|
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1581
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1545
1582
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1546
1583
|
} | {
|
|
1547
1584
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1585
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1548
1586
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1549
1587
|
} | {
|
|
1550
1588
|
groups: ({
|
|
@@ -1556,6 +1594,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1556
1594
|
} | undefined;
|
|
1557
1595
|
expanded?: boolean | undefined;
|
|
1558
1596
|
public?: boolean | undefined;
|
|
1597
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1559
1598
|
tag?: string | undefined;
|
|
1560
1599
|
hidden?: boolean | undefined;
|
|
1561
1600
|
root?: string | undefined;
|
|
@@ -1571,6 +1610,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1571
1610
|
} & {
|
|
1572
1611
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1573
1612
|
})[];
|
|
1613
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1574
1614
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1575
1615
|
} | {
|
|
1576
1616
|
pages: (string | ({
|
|
@@ -1582,6 +1622,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1582
1622
|
} | undefined;
|
|
1583
1623
|
expanded?: boolean | undefined;
|
|
1584
1624
|
public?: boolean | undefined;
|
|
1625
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1585
1626
|
tag?: string | undefined;
|
|
1586
1627
|
hidden?: boolean | undefined;
|
|
1587
1628
|
root?: string | undefined;
|
|
@@ -1597,6 +1638,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1597
1638
|
} & {
|
|
1598
1639
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1599
1640
|
}))[];
|
|
1641
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1600
1642
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1601
1643
|
};
|
|
1602
1644
|
background?: {
|
|
@@ -1882,21 +1924,27 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1882
1924
|
};
|
|
1883
1925
|
navigation: {
|
|
1884
1926
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1927
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1885
1928
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1886
1929
|
} | {
|
|
1887
1930
|
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1931
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1888
1932
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1889
1933
|
} | {
|
|
1890
1934
|
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1935
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1891
1936
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1892
1937
|
} | {
|
|
1893
1938
|
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1939
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1894
1940
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1895
1941
|
} | {
|
|
1896
1942
|
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1943
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1897
1944
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1898
1945
|
} | {
|
|
1899
1946
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1947
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1900
1948
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1901
1949
|
} | {
|
|
1902
1950
|
groups: ({
|
|
@@ -1908,6 +1956,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1908
1956
|
} | undefined;
|
|
1909
1957
|
expanded?: boolean | undefined;
|
|
1910
1958
|
public?: boolean | undefined;
|
|
1959
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1911
1960
|
tag?: string | undefined;
|
|
1912
1961
|
hidden?: boolean | undefined;
|
|
1913
1962
|
root?: string | undefined;
|
|
@@ -1923,6 +1972,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1923
1972
|
} & {
|
|
1924
1973
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1925
1974
|
})[];
|
|
1975
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1926
1976
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1927
1977
|
} | {
|
|
1928
1978
|
pages: (string | ({
|
|
@@ -1934,6 +1984,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1934
1984
|
} | undefined;
|
|
1935
1985
|
expanded?: boolean | undefined;
|
|
1936
1986
|
public?: boolean | undefined;
|
|
1987
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1937
1988
|
tag?: string | undefined;
|
|
1938
1989
|
hidden?: boolean | undefined;
|
|
1939
1990
|
root?: string | undefined;
|
|
@@ -1949,6 +2000,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1949
2000
|
} & {
|
|
1950
2001
|
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1951
2002
|
}))[];
|
|
2003
|
+
directory?: "none" | "card" | "accordion" | undefined;
|
|
1952
2004
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1953
2005
|
};
|
|
1954
2006
|
background?: {
|