@redocly/theme 0.9.12 → 0.9.14
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/lib/Markdown/MarkdownWrapper.js +7 -7
- package/lib/Sidebar/FooterWrapper.d.ts +2 -2
- package/lib/Sidebar/FooterWrapper.js +6 -3
- package/lib/Sidebar/SidebarLayout.d.ts +6 -3
- package/lib/Sidebar/SidebarLayout.js +55 -7
- package/lib/Sidebar/index.d.ts +1 -0
- package/lib/Sidebar/index.js +1 -0
- package/lib/SidebarActions/ChangeViewButton.d.ts +8 -0
- package/lib/SidebarActions/ChangeViewButton.js +14 -0
- package/lib/SidebarActions/CollapseSidebarButton.d.ts +7 -0
- package/lib/SidebarActions/CollapseSidebarButton.js +13 -0
- package/lib/SidebarActions/SidebarActions.d.ts +20 -0
- package/lib/SidebarActions/SidebarActions.js +26 -0
- package/lib/SidebarActions/ToggleRightPanelButton.d.ts +7 -0
- package/lib/SidebarActions/ToggleRightPanelButton.js +13 -0
- package/lib/SidebarActions/index.d.ts +1 -0
- package/lib/SidebarActions/index.js +7 -0
- package/lib/SidebarActions/styled.d.ts +17 -0
- package/lib/SidebarActions/styled.js +124 -0
- package/lib/config.d.ts +774 -1814
- package/lib/config.js +271 -213
- package/lib/globalStyle.js +1 -2
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +6 -7
- package/src/Markdown/MarkdownWrapper.tsx +1 -1
- package/src/Sidebar/FooterWrapper.tsx +7 -4
- package/src/Sidebar/SidebarLayout.tsx +66 -18
- package/src/Sidebar/index.ts +1 -0
- package/src/SidebarActions/ChangeViewButton.tsx +20 -0
- package/src/SidebarActions/CollapseSidebarButton.tsx +21 -0
- package/src/SidebarActions/SidebarActions.tsx +64 -0
- package/src/SidebarActions/ToggleRightPanelButton.tsx +21 -0
- package/src/SidebarActions/index.tsx +1 -0
- package/src/SidebarActions/styled.tsx +157 -0
- package/src/config.ts +334 -222
- package/src/globalStyle.ts +1 -2
- package/src/index.ts +1 -0
package/lib/config.d.ts
CHANGED
|
@@ -1,1833 +1,793 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
1
|
+
import type { FromSchema } from 'json-schema-to-ts';
|
|
2
|
+
import type { MenuStyle } from './types/portal';
|
|
3
|
+
declare const markdownConfigSchema: {
|
|
4
|
+
readonly type: "object";
|
|
5
|
+
readonly properties: {
|
|
6
|
+
readonly frontMatterKeysToResolve: {
|
|
7
|
+
readonly type: "array";
|
|
8
|
+
readonly items: {
|
|
9
|
+
readonly type: "string";
|
|
10
|
+
};
|
|
11
|
+
readonly default: readonly ["image", "links"];
|
|
12
|
+
};
|
|
13
|
+
readonly lastUpdatedBlock: {
|
|
14
|
+
readonly type: "object";
|
|
15
|
+
readonly properties: {
|
|
16
|
+
readonly hide: {
|
|
17
|
+
readonly type: "boolean";
|
|
18
|
+
};
|
|
19
|
+
readonly format: {
|
|
20
|
+
readonly type: "string";
|
|
21
|
+
readonly enum: readonly ["timeago", "iso", "long", "short"];
|
|
22
|
+
readonly default: "timeago";
|
|
23
|
+
};
|
|
24
|
+
readonly locale: {
|
|
25
|
+
readonly type: "string";
|
|
26
|
+
readonly default: "en-US";
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
readonly additionalProperties: false;
|
|
30
|
+
readonly default: {};
|
|
31
|
+
};
|
|
32
|
+
readonly toc: {
|
|
33
|
+
readonly type: "object";
|
|
34
|
+
readonly properties: {
|
|
35
|
+
readonly hide: {
|
|
36
|
+
readonly type: "boolean";
|
|
37
|
+
};
|
|
38
|
+
readonly header: {
|
|
39
|
+
readonly type: "string";
|
|
40
|
+
readonly default: "On this page";
|
|
41
|
+
};
|
|
42
|
+
readonly depth: {
|
|
43
|
+
readonly type: "number";
|
|
44
|
+
readonly default: 3;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
readonly additionalProperties: false;
|
|
48
|
+
readonly default: {};
|
|
49
|
+
};
|
|
50
|
+
readonly editPage: {
|
|
51
|
+
readonly type: "object";
|
|
52
|
+
readonly properties: {
|
|
53
|
+
readonly hide: {
|
|
54
|
+
readonly type: "boolean";
|
|
55
|
+
};
|
|
56
|
+
readonly baseUrl: {
|
|
57
|
+
readonly type: "string";
|
|
58
|
+
};
|
|
59
|
+
readonly icon: {
|
|
60
|
+
readonly type: "string";
|
|
61
|
+
};
|
|
62
|
+
readonly text: {
|
|
63
|
+
readonly type: "string";
|
|
64
|
+
readonly default: "Edit this page";
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
readonly additionalProperties: false;
|
|
68
|
+
readonly default: {};
|
|
69
|
+
};
|
|
51
70
|
};
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}, {
|
|
65
|
-
frontMatterKeysToResolve?: string[] | undefined;
|
|
66
|
-
lastUpdatedBlock?: {
|
|
67
|
-
format?: "timeago" | "iso" | "long" | "short" | undefined;
|
|
68
|
-
locale?: string | undefined;
|
|
69
|
-
hide?: boolean | undefined;
|
|
70
|
-
} | undefined;
|
|
71
|
-
toc?: {
|
|
72
|
-
header?: string | undefined;
|
|
73
|
-
depth?: number | undefined;
|
|
74
|
-
hide?: boolean | undefined;
|
|
75
|
-
} | undefined;
|
|
76
|
-
editPage?: {
|
|
77
|
-
baseUrl?: string | undefined;
|
|
78
|
-
icon?: string | undefined;
|
|
79
|
-
text?: string | undefined;
|
|
80
|
-
hide?: boolean | undefined;
|
|
81
|
-
} | undefined;
|
|
82
|
-
}>>;
|
|
83
|
-
export declare const ThemeConfig: z.ZodDefault<z.ZodObject<{
|
|
84
|
-
imports: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
85
|
-
logo: z.ZodOptional<z.ZodObject<{
|
|
86
|
-
image: z.ZodOptional<z.ZodString>;
|
|
87
|
-
altText: z.ZodOptional<z.ZodString>;
|
|
88
|
-
link: z.ZodOptional<z.ZodString>;
|
|
89
|
-
favicon: z.ZodOptional<z.ZodString>;
|
|
90
|
-
}, "strict", z.ZodTypeAny, {
|
|
91
|
-
image?: string | undefined;
|
|
92
|
-
altText?: string | undefined;
|
|
93
|
-
link?: string | undefined;
|
|
94
|
-
favicon?: string | undefined;
|
|
95
|
-
}, {
|
|
96
|
-
image?: string | undefined;
|
|
97
|
-
altText?: string | undefined;
|
|
98
|
-
link?: string | undefined;
|
|
99
|
-
favicon?: string | undefined;
|
|
100
|
-
}>>;
|
|
101
|
-
navbar: z.ZodOptional<z.ZodObject<{
|
|
102
|
-
items: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
103
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
104
|
-
}, "strict", z.ZodTypeAny, {
|
|
105
|
-
items?: any[] | undefined;
|
|
106
|
-
hide?: boolean | undefined;
|
|
107
|
-
}, {
|
|
108
|
-
items?: any[] | undefined;
|
|
109
|
-
hide?: boolean | undefined;
|
|
110
|
-
}>>;
|
|
111
|
-
footer: z.ZodOptional<z.ZodObject<{
|
|
112
|
-
items: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
113
|
-
copyrightText: z.ZodOptional<z.ZodString>;
|
|
114
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
115
|
-
}, "strict", z.ZodTypeAny, {
|
|
116
|
-
items?: any[] | undefined;
|
|
117
|
-
copyrightText?: string | undefined;
|
|
118
|
-
hide?: boolean | undefined;
|
|
119
|
-
}, {
|
|
120
|
-
items?: any[] | undefined;
|
|
121
|
-
copyrightText?: string | undefined;
|
|
122
|
-
hide?: boolean | undefined;
|
|
123
|
-
}>>;
|
|
124
|
-
sidebar: z.ZodOptional<z.ZodObject<{
|
|
125
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
126
|
-
}, "strict", z.ZodTypeAny, {
|
|
127
|
-
hide?: boolean | undefined;
|
|
128
|
-
}, {
|
|
129
|
-
hide?: boolean | undefined;
|
|
130
|
-
}>>;
|
|
131
|
-
scripts: z.ZodOptional<z.ZodObject<{
|
|
132
|
-
head: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
133
|
-
src: z.ZodString;
|
|
134
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
135
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
136
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
137
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
138
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
139
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
140
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
141
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
142
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
143
|
-
type: z.ZodOptional<z.ZodString>;
|
|
144
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
145
|
-
src: z.ZodString;
|
|
146
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
147
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
148
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
149
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
150
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
151
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
152
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
153
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
154
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
155
|
-
type: z.ZodOptional<z.ZodString>;
|
|
156
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
157
|
-
src: z.ZodString;
|
|
158
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
159
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
160
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
161
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
162
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
163
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
164
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
165
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
166
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
167
|
-
type: z.ZodOptional<z.ZodString>;
|
|
168
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
169
|
-
body: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
170
|
-
src: z.ZodString;
|
|
171
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
172
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
173
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
174
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
175
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
176
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
177
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
178
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
179
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
180
|
-
type: z.ZodOptional<z.ZodString>;
|
|
181
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
182
|
-
src: z.ZodString;
|
|
183
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
184
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
185
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
186
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
187
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
188
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
189
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
190
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
191
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
192
|
-
type: z.ZodOptional<z.ZodString>;
|
|
193
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
194
|
-
src: z.ZodString;
|
|
195
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
196
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
197
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
198
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
199
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
200
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
201
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
202
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
203
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
204
|
-
type: z.ZodOptional<z.ZodString>;
|
|
205
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
206
|
-
}, "strip", z.ZodTypeAny, {
|
|
207
|
-
head?: z.objectOutputType<{
|
|
208
|
-
src: z.ZodString;
|
|
209
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
210
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
211
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
212
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
213
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
214
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
216
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
217
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
218
|
-
type: z.ZodOptional<z.ZodString>;
|
|
219
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
220
|
-
body?: z.objectOutputType<{
|
|
221
|
-
src: z.ZodString;
|
|
222
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
223
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
224
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
225
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
226
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
227
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
228
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
229
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
230
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
231
|
-
type: z.ZodOptional<z.ZodString>;
|
|
232
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
233
|
-
}, {
|
|
234
|
-
head?: z.objectInputType<{
|
|
235
|
-
src: z.ZodString;
|
|
236
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
237
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
238
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
239
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
240
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
241
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
242
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
243
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
244
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
245
|
-
type: z.ZodOptional<z.ZodString>;
|
|
246
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
247
|
-
body?: z.objectInputType<{
|
|
248
|
-
src: z.ZodString;
|
|
249
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
250
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
251
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
252
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
253
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
254
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
255
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
256
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
257
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
258
|
-
type: z.ZodOptional<z.ZodString>;
|
|
259
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
260
|
-
}>>;
|
|
261
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
262
|
-
href: z.ZodString;
|
|
263
|
-
as: z.ZodOptional<z.ZodString>;
|
|
264
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
265
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
266
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
267
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
268
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
269
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
270
|
-
media: z.ZodOptional<z.ZodString>;
|
|
271
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
272
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
273
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
274
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
275
|
-
title: z.ZodOptional<z.ZodString>;
|
|
276
|
-
type: z.ZodOptional<z.ZodString>;
|
|
277
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
278
|
-
href: z.ZodString;
|
|
279
|
-
as: z.ZodOptional<z.ZodString>;
|
|
280
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
281
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
282
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
283
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
284
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
285
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
286
|
-
media: z.ZodOptional<z.ZodString>;
|
|
287
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
288
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
289
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
290
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
291
|
-
title: z.ZodOptional<z.ZodString>;
|
|
292
|
-
type: z.ZodOptional<z.ZodString>;
|
|
293
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
294
|
-
href: z.ZodString;
|
|
295
|
-
as: z.ZodOptional<z.ZodString>;
|
|
296
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
297
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
298
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
299
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
300
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
301
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
302
|
-
media: z.ZodOptional<z.ZodString>;
|
|
303
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
304
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
305
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
306
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
307
|
-
title: z.ZodOptional<z.ZodString>;
|
|
308
|
-
type: z.ZodOptional<z.ZodString>;
|
|
309
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
310
|
-
feedback: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
311
|
-
type: z.ZodDefault<z.ZodEnum<["rating", "sentiment", "comment", "reasons"]>>;
|
|
312
|
-
settings: z.ZodOptional<z.ZodObject<{
|
|
313
|
-
label: z.ZodOptional<z.ZodString>;
|
|
314
|
-
submitText: z.ZodOptional<z.ZodString>;
|
|
315
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
316
|
-
buttonText: z.ZodOptional<z.ZodString>;
|
|
317
|
-
multi: z.ZodOptional<z.ZodBoolean>;
|
|
318
|
-
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
319
|
-
reasons: z.ZodOptional<z.ZodObject<{
|
|
320
|
-
enable: z.ZodDefault<z.ZodBoolean>;
|
|
321
|
-
multi: z.ZodOptional<z.ZodBoolean>;
|
|
322
|
-
label: z.ZodOptional<z.ZodString>;
|
|
323
|
-
items: z.ZodArray<z.ZodString, "many">;
|
|
324
|
-
}, "strip", z.ZodTypeAny, {
|
|
325
|
-
items: string[];
|
|
326
|
-
enable: boolean;
|
|
327
|
-
multi?: boolean | undefined;
|
|
328
|
-
label?: string | undefined;
|
|
329
|
-
}, {
|
|
330
|
-
items: string[];
|
|
331
|
-
enable?: boolean | undefined;
|
|
332
|
-
multi?: boolean | undefined;
|
|
333
|
-
label?: string | undefined;
|
|
334
|
-
}>>;
|
|
335
|
-
comment: z.ZodOptional<z.ZodObject<{
|
|
336
|
-
enable: z.ZodDefault<z.ZodBoolean>;
|
|
337
|
-
label: z.ZodOptional<z.ZodString>;
|
|
338
|
-
likeLabel: z.ZodOptional<z.ZodString>;
|
|
339
|
-
dislikeLabel: z.ZodOptional<z.ZodString>;
|
|
340
|
-
}, "strip", z.ZodTypeAny, {
|
|
341
|
-
enable: boolean;
|
|
342
|
-
label?: string | undefined;
|
|
343
|
-
likeLabel?: string | undefined;
|
|
344
|
-
dislikeLabel?: string | undefined;
|
|
345
|
-
}, {
|
|
346
|
-
enable?: boolean | undefined;
|
|
347
|
-
label?: string | undefined;
|
|
348
|
-
likeLabel?: string | undefined;
|
|
349
|
-
dislikeLabel?: string | undefined;
|
|
350
|
-
}>>;
|
|
351
|
-
}, "strip", z.ZodTypeAny, {
|
|
352
|
-
label?: string | undefined;
|
|
353
|
-
submitText?: string | undefined;
|
|
354
|
-
max?: number | undefined;
|
|
355
|
-
buttonText?: string | undefined;
|
|
356
|
-
multi?: boolean | undefined;
|
|
357
|
-
items?: string[] | undefined;
|
|
358
|
-
reasons?: {
|
|
359
|
-
items: string[];
|
|
360
|
-
enable: boolean;
|
|
361
|
-
multi?: boolean | undefined;
|
|
362
|
-
label?: string | undefined;
|
|
363
|
-
} | undefined;
|
|
364
|
-
comment?: {
|
|
365
|
-
enable: boolean;
|
|
366
|
-
label?: string | undefined;
|
|
367
|
-
likeLabel?: string | undefined;
|
|
368
|
-
dislikeLabel?: string | undefined;
|
|
369
|
-
} | undefined;
|
|
370
|
-
}, {
|
|
371
|
-
label?: string | undefined;
|
|
372
|
-
submitText?: string | undefined;
|
|
373
|
-
max?: number | undefined;
|
|
374
|
-
buttonText?: string | undefined;
|
|
375
|
-
multi?: boolean | undefined;
|
|
376
|
-
items?: string[] | undefined;
|
|
377
|
-
reasons?: {
|
|
378
|
-
items: string[];
|
|
379
|
-
enable?: boolean | undefined;
|
|
380
|
-
multi?: boolean | undefined;
|
|
381
|
-
label?: string | undefined;
|
|
382
|
-
} | undefined;
|
|
383
|
-
comment?: {
|
|
384
|
-
enable?: boolean | undefined;
|
|
385
|
-
label?: string | undefined;
|
|
386
|
-
likeLabel?: string | undefined;
|
|
387
|
-
dislikeLabel?: string | undefined;
|
|
388
|
-
} | undefined;
|
|
389
|
-
}>>;
|
|
390
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
391
|
-
}, "strict", z.ZodTypeAny, {
|
|
392
|
-
type: "rating" | "sentiment" | "comment" | "reasons";
|
|
393
|
-
settings?: {
|
|
394
|
-
label?: string | undefined;
|
|
395
|
-
submitText?: string | undefined;
|
|
396
|
-
max?: number | undefined;
|
|
397
|
-
buttonText?: string | undefined;
|
|
398
|
-
multi?: boolean | undefined;
|
|
399
|
-
items?: string[] | undefined;
|
|
400
|
-
reasons?: {
|
|
401
|
-
items: string[];
|
|
402
|
-
enable: boolean;
|
|
403
|
-
multi?: boolean | undefined;
|
|
404
|
-
label?: string | undefined;
|
|
405
|
-
} | undefined;
|
|
406
|
-
comment?: {
|
|
407
|
-
enable: boolean;
|
|
408
|
-
label?: string | undefined;
|
|
409
|
-
likeLabel?: string | undefined;
|
|
410
|
-
dislikeLabel?: string | undefined;
|
|
411
|
-
} | undefined;
|
|
412
|
-
} | undefined;
|
|
413
|
-
hide?: boolean | undefined;
|
|
414
|
-
}, {
|
|
415
|
-
type?: "rating" | "sentiment" | "comment" | "reasons" | undefined;
|
|
416
|
-
settings?: {
|
|
417
|
-
label?: string | undefined;
|
|
418
|
-
submitText?: string | undefined;
|
|
419
|
-
max?: number | undefined;
|
|
420
|
-
buttonText?: string | undefined;
|
|
421
|
-
multi?: boolean | undefined;
|
|
422
|
-
items?: string[] | undefined;
|
|
423
|
-
reasons?: {
|
|
424
|
-
items: string[];
|
|
425
|
-
enable?: boolean | undefined;
|
|
426
|
-
multi?: boolean | undefined;
|
|
427
|
-
label?: string | undefined;
|
|
428
|
-
} | undefined;
|
|
429
|
-
comment?: {
|
|
430
|
-
enable?: boolean | undefined;
|
|
431
|
-
label?: string | undefined;
|
|
432
|
-
likeLabel?: string | undefined;
|
|
433
|
-
dislikeLabel?: string | undefined;
|
|
434
|
-
} | undefined;
|
|
435
|
-
} | undefined;
|
|
436
|
-
hide?: boolean | undefined;
|
|
437
|
-
}>>>;
|
|
438
|
-
search: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
439
|
-
placement: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
440
|
-
shortcuts: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
441
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
442
|
-
}, "strict", z.ZodTypeAny, {
|
|
443
|
-
placement?: string | undefined;
|
|
444
|
-
shortcuts?: string[] | undefined;
|
|
445
|
-
hide?: boolean | undefined;
|
|
446
|
-
}, {
|
|
447
|
-
placement?: string | undefined;
|
|
448
|
-
shortcuts?: string[] | undefined;
|
|
449
|
-
hide?: boolean | undefined;
|
|
450
|
-
}>>>;
|
|
451
|
-
colorMode: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
452
|
-
ignoreDetection: z.ZodOptional<z.ZodBoolean>;
|
|
453
|
-
modes: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
454
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
455
|
-
}, "strict", z.ZodTypeAny, {
|
|
456
|
-
ignoreDetection?: boolean | undefined;
|
|
457
|
-
modes?: string[] | undefined;
|
|
458
|
-
hide?: boolean | undefined;
|
|
459
|
-
}, {
|
|
460
|
-
ignoreDetection?: boolean | undefined;
|
|
461
|
-
modes?: string[] | undefined;
|
|
462
|
-
hide?: boolean | undefined;
|
|
463
|
-
}>>>;
|
|
464
|
-
navigation: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
465
|
-
nextButton: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
466
|
-
text: z.ZodDefault<z.ZodString>;
|
|
467
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
468
|
-
}, "strip", z.ZodTypeAny, {
|
|
469
|
-
text: string;
|
|
470
|
-
hide?: boolean | undefined;
|
|
471
|
-
}, {
|
|
472
|
-
text?: string | undefined;
|
|
473
|
-
hide?: boolean | undefined;
|
|
474
|
-
}>>>;
|
|
475
|
-
previousButton: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
476
|
-
text: z.ZodDefault<z.ZodString>;
|
|
477
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
478
|
-
}, "strip", z.ZodTypeAny, {
|
|
479
|
-
text: string;
|
|
480
|
-
hide?: boolean | undefined;
|
|
481
|
-
}, {
|
|
482
|
-
text?: string | undefined;
|
|
483
|
-
hide?: boolean | undefined;
|
|
484
|
-
}>>>;
|
|
485
|
-
}, "strict", z.ZodTypeAny, {
|
|
486
|
-
nextButton: {
|
|
487
|
-
text: string;
|
|
488
|
-
hide?: boolean | undefined;
|
|
71
|
+
readonly additionalProperties: false;
|
|
72
|
+
readonly default: {};
|
|
73
|
+
};
|
|
74
|
+
export declare const themeConfigSchema: {
|
|
75
|
+
readonly type: "object";
|
|
76
|
+
readonly properties: {
|
|
77
|
+
readonly imports: {
|
|
78
|
+
readonly type: "array";
|
|
79
|
+
readonly items: {
|
|
80
|
+
readonly type: "string";
|
|
81
|
+
};
|
|
82
|
+
readonly default: readonly [];
|
|
489
83
|
};
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
84
|
+
readonly logo: {
|
|
85
|
+
readonly type: "object";
|
|
86
|
+
readonly properties: {
|
|
87
|
+
readonly image: {
|
|
88
|
+
readonly type: "string";
|
|
89
|
+
};
|
|
90
|
+
readonly altText: {
|
|
91
|
+
readonly type: "string";
|
|
92
|
+
};
|
|
93
|
+
readonly link: {
|
|
94
|
+
readonly type: "string";
|
|
95
|
+
};
|
|
96
|
+
readonly favicon: {
|
|
97
|
+
readonly type: "string";
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
readonly additionalProperties: false;
|
|
493
101
|
};
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
102
|
+
readonly navbar: {
|
|
103
|
+
readonly type: "object";
|
|
104
|
+
readonly properties: {
|
|
105
|
+
readonly hide: {
|
|
106
|
+
readonly type: "boolean";
|
|
107
|
+
};
|
|
108
|
+
readonly items: {
|
|
109
|
+
readonly type: "array";
|
|
110
|
+
readonly items: {
|
|
111
|
+
readonly properties: {
|
|
112
|
+
readonly items: {
|
|
113
|
+
readonly type: "array";
|
|
114
|
+
readonly items: {
|
|
115
|
+
readonly type: "object";
|
|
116
|
+
readonly properties: {
|
|
117
|
+
readonly page: {
|
|
118
|
+
readonly type: "string";
|
|
119
|
+
};
|
|
120
|
+
readonly directory: {
|
|
121
|
+
readonly type: "string";
|
|
122
|
+
};
|
|
123
|
+
readonly group: {
|
|
124
|
+
readonly type: "string";
|
|
125
|
+
};
|
|
126
|
+
readonly label: {
|
|
127
|
+
readonly type: "string";
|
|
128
|
+
};
|
|
129
|
+
readonly separator: {
|
|
130
|
+
readonly type: "string";
|
|
131
|
+
};
|
|
132
|
+
readonly separatorLine: {
|
|
133
|
+
readonly type: "boolean";
|
|
134
|
+
};
|
|
135
|
+
readonly version: {
|
|
136
|
+
readonly type: "string";
|
|
137
|
+
};
|
|
138
|
+
readonly menuStyle: {
|
|
139
|
+
readonly type: "string";
|
|
140
|
+
readonly enum: readonly [MenuStyle];
|
|
141
|
+
};
|
|
142
|
+
readonly expanded: {
|
|
143
|
+
readonly type: "string";
|
|
144
|
+
readonly const: "always";
|
|
145
|
+
};
|
|
146
|
+
readonly selectFirstItemOnExpand: {
|
|
147
|
+
readonly type: "boolean";
|
|
148
|
+
};
|
|
149
|
+
readonly flatten: {
|
|
150
|
+
readonly type: "boolean";
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
readonly page: {
|
|
156
|
+
readonly type: "string";
|
|
157
|
+
};
|
|
158
|
+
readonly directory: {
|
|
159
|
+
readonly type: "string";
|
|
160
|
+
};
|
|
161
|
+
readonly group: {
|
|
162
|
+
readonly type: "string";
|
|
163
|
+
};
|
|
164
|
+
readonly label: {
|
|
165
|
+
readonly type: "string";
|
|
166
|
+
};
|
|
167
|
+
readonly separator: {
|
|
168
|
+
readonly type: "string";
|
|
169
|
+
};
|
|
170
|
+
readonly separatorLine: {
|
|
171
|
+
readonly type: "boolean";
|
|
172
|
+
};
|
|
173
|
+
readonly version: {
|
|
174
|
+
readonly type: "string";
|
|
175
|
+
};
|
|
176
|
+
readonly menuStyle: {
|
|
177
|
+
readonly type: "string";
|
|
178
|
+
readonly enum: readonly [MenuStyle];
|
|
179
|
+
};
|
|
180
|
+
readonly expanded: {
|
|
181
|
+
readonly type: "string";
|
|
182
|
+
readonly const: "always";
|
|
183
|
+
};
|
|
184
|
+
readonly selectFirstItemOnExpand: {
|
|
185
|
+
readonly type: "boolean";
|
|
186
|
+
};
|
|
187
|
+
readonly flatten: {
|
|
188
|
+
readonly type: "boolean";
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
readonly type: "object";
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
readonly additionalProperties: false;
|
|
544
196
|
};
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
197
|
+
readonly footer: {
|
|
198
|
+
readonly type: "object";
|
|
199
|
+
readonly properties: {
|
|
200
|
+
readonly hide: {
|
|
201
|
+
readonly type: "boolean";
|
|
202
|
+
};
|
|
203
|
+
readonly items: {
|
|
204
|
+
readonly type: "array";
|
|
205
|
+
readonly items: {
|
|
206
|
+
readonly properties: {
|
|
207
|
+
readonly items: {
|
|
208
|
+
readonly type: "array";
|
|
209
|
+
readonly items: {
|
|
210
|
+
readonly type: "object";
|
|
211
|
+
readonly properties: {
|
|
212
|
+
readonly page: {
|
|
213
|
+
readonly type: "string";
|
|
214
|
+
};
|
|
215
|
+
readonly directory: {
|
|
216
|
+
readonly type: "string";
|
|
217
|
+
};
|
|
218
|
+
readonly group: {
|
|
219
|
+
readonly type: "string";
|
|
220
|
+
};
|
|
221
|
+
readonly label: {
|
|
222
|
+
readonly type: "string";
|
|
223
|
+
};
|
|
224
|
+
readonly separator: {
|
|
225
|
+
readonly type: "string";
|
|
226
|
+
};
|
|
227
|
+
readonly separatorLine: {
|
|
228
|
+
readonly type: "boolean";
|
|
229
|
+
};
|
|
230
|
+
readonly version: {
|
|
231
|
+
readonly type: "string";
|
|
232
|
+
};
|
|
233
|
+
readonly menuStyle: {
|
|
234
|
+
readonly type: "string";
|
|
235
|
+
readonly enum: readonly [MenuStyle];
|
|
236
|
+
};
|
|
237
|
+
readonly expanded: {
|
|
238
|
+
readonly type: "string";
|
|
239
|
+
readonly const: "always";
|
|
240
|
+
};
|
|
241
|
+
readonly selectFirstItemOnExpand: {
|
|
242
|
+
readonly type: "boolean";
|
|
243
|
+
};
|
|
244
|
+
readonly flatten: {
|
|
245
|
+
readonly type: "boolean";
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
readonly page: {
|
|
251
|
+
readonly type: "string";
|
|
252
|
+
};
|
|
253
|
+
readonly directory: {
|
|
254
|
+
readonly type: "string";
|
|
255
|
+
};
|
|
256
|
+
readonly group: {
|
|
257
|
+
readonly type: "string";
|
|
258
|
+
};
|
|
259
|
+
readonly label: {
|
|
260
|
+
readonly type: "string";
|
|
261
|
+
};
|
|
262
|
+
readonly separator: {
|
|
263
|
+
readonly type: "string";
|
|
264
|
+
};
|
|
265
|
+
readonly separatorLine: {
|
|
266
|
+
readonly type: "boolean";
|
|
267
|
+
};
|
|
268
|
+
readonly version: {
|
|
269
|
+
readonly type: "string";
|
|
270
|
+
};
|
|
271
|
+
readonly menuStyle: {
|
|
272
|
+
readonly type: "string";
|
|
273
|
+
readonly enum: readonly [MenuStyle];
|
|
274
|
+
};
|
|
275
|
+
readonly expanded: {
|
|
276
|
+
readonly type: "string";
|
|
277
|
+
readonly const: "always";
|
|
278
|
+
};
|
|
279
|
+
readonly selectFirstItemOnExpand: {
|
|
280
|
+
readonly type: "boolean";
|
|
281
|
+
};
|
|
282
|
+
readonly flatten: {
|
|
283
|
+
readonly type: "boolean";
|
|
284
|
+
};
|
|
285
|
+
};
|
|
286
|
+
readonly type: "object";
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
readonly copyrightText: {
|
|
290
|
+
readonly type: "string";
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
readonly additionalProperties: false;
|
|
549
294
|
};
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
report?: {
|
|
559
|
-
label?: string | undefined;
|
|
560
|
-
tooltipText?: string | undefined;
|
|
561
|
-
hide?: boolean | undefined;
|
|
562
|
-
} | undefined;
|
|
563
|
-
}>>>;
|
|
564
|
-
markdown: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
565
|
-
frontMatterKeysToResolve: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
566
|
-
lastUpdatedBlock: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
567
|
-
format: z.ZodOptional<z.ZodDefault<z.ZodEnum<["timeago", "iso", "long", "short"]>>>;
|
|
568
|
-
locale: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
569
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
570
|
-
}, "strip", z.ZodTypeAny, {
|
|
571
|
-
format?: "timeago" | "iso" | "long" | "short" | undefined;
|
|
572
|
-
locale?: string | undefined;
|
|
573
|
-
hide?: boolean | undefined;
|
|
574
|
-
}, {
|
|
575
|
-
format?: "timeago" | "iso" | "long" | "short" | undefined;
|
|
576
|
-
locale?: string | undefined;
|
|
577
|
-
hide?: boolean | undefined;
|
|
578
|
-
}>>>;
|
|
579
|
-
toc: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
580
|
-
header: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
581
|
-
depth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
582
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
583
|
-
}, "strip", z.ZodTypeAny, {
|
|
584
|
-
header?: string | undefined;
|
|
585
|
-
depth?: number | undefined;
|
|
586
|
-
hide?: boolean | undefined;
|
|
587
|
-
}, {
|
|
588
|
-
header?: string | undefined;
|
|
589
|
-
depth?: number | undefined;
|
|
590
|
-
hide?: boolean | undefined;
|
|
591
|
-
}>>>;
|
|
592
|
-
editPage: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
593
|
-
baseUrl: z.ZodOptional<z.ZodString>;
|
|
594
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
595
|
-
text: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
596
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
597
|
-
}, "strip", z.ZodTypeAny, {
|
|
598
|
-
text: string;
|
|
599
|
-
baseUrl?: string | undefined;
|
|
600
|
-
icon?: string | undefined;
|
|
601
|
-
hide?: boolean | undefined;
|
|
602
|
-
}, {
|
|
603
|
-
baseUrl?: string | undefined;
|
|
604
|
-
icon?: string | undefined;
|
|
605
|
-
text?: string | undefined;
|
|
606
|
-
hide?: boolean | undefined;
|
|
607
|
-
}>>>;
|
|
608
|
-
}, "strict", z.ZodTypeAny, {
|
|
609
|
-
toc: {
|
|
610
|
-
header?: string | undefined;
|
|
611
|
-
depth?: number | undefined;
|
|
612
|
-
hide?: boolean | undefined;
|
|
295
|
+
readonly sidebar: {
|
|
296
|
+
readonly type: "object";
|
|
297
|
+
readonly properties: {
|
|
298
|
+
readonly hide: {
|
|
299
|
+
readonly type: "boolean";
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
readonly additionalProperties: false;
|
|
613
303
|
};
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
sidebar: z.ZodOptional<z.ZodObject<{
|
|
706
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
707
|
-
}, "strict", z.ZodTypeAny, {
|
|
708
|
-
hide?: boolean | undefined;
|
|
709
|
-
}, {
|
|
710
|
-
hide?: boolean | undefined;
|
|
711
|
-
}>>;
|
|
712
|
-
scripts: z.ZodOptional<z.ZodObject<{
|
|
713
|
-
head: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
714
|
-
src: z.ZodString;
|
|
715
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
716
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
717
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
718
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
719
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
720
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
721
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
722
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
723
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
724
|
-
type: z.ZodOptional<z.ZodString>;
|
|
725
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
726
|
-
src: z.ZodString;
|
|
727
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
728
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
729
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
730
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
731
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
732
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
733
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
734
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
735
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
736
|
-
type: z.ZodOptional<z.ZodString>;
|
|
737
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
738
|
-
src: z.ZodString;
|
|
739
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
740
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
741
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
742
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
743
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
744
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
745
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
746
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
747
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
748
|
-
type: z.ZodOptional<z.ZodString>;
|
|
749
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
750
|
-
body: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
751
|
-
src: z.ZodString;
|
|
752
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
753
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
754
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
755
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
756
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
757
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
758
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
759
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
760
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
761
|
-
type: z.ZodOptional<z.ZodString>;
|
|
762
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
763
|
-
src: z.ZodString;
|
|
764
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
765
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
766
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
767
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
768
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
769
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
770
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
771
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
772
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
773
|
-
type: z.ZodOptional<z.ZodString>;
|
|
774
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
775
|
-
src: z.ZodString;
|
|
776
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
777
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
778
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
779
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
780
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
781
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
782
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
783
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
784
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
785
|
-
type: z.ZodOptional<z.ZodString>;
|
|
786
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
787
|
-
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
head?: z.objectOutputType<{
|
|
789
|
-
src: z.ZodString;
|
|
790
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
791
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
792
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
793
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
794
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
795
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
796
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
797
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
798
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
799
|
-
type: z.ZodOptional<z.ZodString>;
|
|
800
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
801
|
-
body?: z.objectOutputType<{
|
|
802
|
-
src: z.ZodString;
|
|
803
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
804
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
805
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
806
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
807
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
808
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
809
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
810
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
811
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
812
|
-
type: z.ZodOptional<z.ZodString>;
|
|
813
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
814
|
-
}, {
|
|
815
|
-
head?: z.objectInputType<{
|
|
816
|
-
src: z.ZodString;
|
|
817
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
818
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
819
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
820
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
821
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
822
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
823
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
824
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
825
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
826
|
-
type: z.ZodOptional<z.ZodString>;
|
|
827
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
828
|
-
body?: z.objectInputType<{
|
|
829
|
-
src: z.ZodString;
|
|
830
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
831
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
832
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
833
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
834
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
835
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
836
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
837
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
838
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
839
|
-
type: z.ZodOptional<z.ZodString>;
|
|
840
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
841
|
-
}>>;
|
|
842
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
843
|
-
href: z.ZodString;
|
|
844
|
-
as: z.ZodOptional<z.ZodString>;
|
|
845
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
846
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
847
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
848
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
849
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
850
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
851
|
-
media: z.ZodOptional<z.ZodString>;
|
|
852
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
853
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
854
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
855
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
856
|
-
title: z.ZodOptional<z.ZodString>;
|
|
857
|
-
type: z.ZodOptional<z.ZodString>;
|
|
858
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
859
|
-
href: z.ZodString;
|
|
860
|
-
as: z.ZodOptional<z.ZodString>;
|
|
861
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
862
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
863
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
864
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
865
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
866
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
867
|
-
media: z.ZodOptional<z.ZodString>;
|
|
868
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
869
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
870
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
871
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
872
|
-
title: z.ZodOptional<z.ZodString>;
|
|
873
|
-
type: z.ZodOptional<z.ZodString>;
|
|
874
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
875
|
-
href: z.ZodString;
|
|
876
|
-
as: z.ZodOptional<z.ZodString>;
|
|
877
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
878
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
879
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
880
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
881
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
882
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
883
|
-
media: z.ZodOptional<z.ZodString>;
|
|
884
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
885
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
886
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
887
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
888
|
-
title: z.ZodOptional<z.ZodString>;
|
|
889
|
-
type: z.ZodOptional<z.ZodString>;
|
|
890
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
891
|
-
feedback: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
892
|
-
type: z.ZodDefault<z.ZodEnum<["rating", "sentiment", "comment", "reasons"]>>;
|
|
893
|
-
settings: z.ZodOptional<z.ZodObject<{
|
|
894
|
-
label: z.ZodOptional<z.ZodString>;
|
|
895
|
-
submitText: z.ZodOptional<z.ZodString>;
|
|
896
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
897
|
-
buttonText: z.ZodOptional<z.ZodString>;
|
|
898
|
-
multi: z.ZodOptional<z.ZodBoolean>;
|
|
899
|
-
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
900
|
-
reasons: z.ZodOptional<z.ZodObject<{
|
|
901
|
-
enable: z.ZodDefault<z.ZodBoolean>;
|
|
902
|
-
multi: z.ZodOptional<z.ZodBoolean>;
|
|
903
|
-
label: z.ZodOptional<z.ZodString>;
|
|
904
|
-
items: z.ZodArray<z.ZodString, "many">;
|
|
905
|
-
}, "strip", z.ZodTypeAny, {
|
|
906
|
-
items: string[];
|
|
907
|
-
enable: boolean;
|
|
908
|
-
multi?: boolean | undefined;
|
|
909
|
-
label?: string | undefined;
|
|
910
|
-
}, {
|
|
911
|
-
items: string[];
|
|
912
|
-
enable?: boolean | undefined;
|
|
913
|
-
multi?: boolean | undefined;
|
|
914
|
-
label?: string | undefined;
|
|
915
|
-
}>>;
|
|
916
|
-
comment: z.ZodOptional<z.ZodObject<{
|
|
917
|
-
enable: z.ZodDefault<z.ZodBoolean>;
|
|
918
|
-
label: z.ZodOptional<z.ZodString>;
|
|
919
|
-
likeLabel: z.ZodOptional<z.ZodString>;
|
|
920
|
-
dislikeLabel: z.ZodOptional<z.ZodString>;
|
|
921
|
-
}, "strip", z.ZodTypeAny, {
|
|
922
|
-
enable: boolean;
|
|
923
|
-
label?: string | undefined;
|
|
924
|
-
likeLabel?: string | undefined;
|
|
925
|
-
dislikeLabel?: string | undefined;
|
|
926
|
-
}, {
|
|
927
|
-
enable?: boolean | undefined;
|
|
928
|
-
label?: string | undefined;
|
|
929
|
-
likeLabel?: string | undefined;
|
|
930
|
-
dislikeLabel?: string | undefined;
|
|
931
|
-
}>>;
|
|
932
|
-
}, "strip", z.ZodTypeAny, {
|
|
933
|
-
label?: string | undefined;
|
|
934
|
-
submitText?: string | undefined;
|
|
935
|
-
max?: number | undefined;
|
|
936
|
-
buttonText?: string | undefined;
|
|
937
|
-
multi?: boolean | undefined;
|
|
938
|
-
items?: string[] | undefined;
|
|
939
|
-
reasons?: {
|
|
940
|
-
items: string[];
|
|
941
|
-
enable: boolean;
|
|
942
|
-
multi?: boolean | undefined;
|
|
943
|
-
label?: string | undefined;
|
|
944
|
-
} | undefined;
|
|
945
|
-
comment?: {
|
|
946
|
-
enable: boolean;
|
|
947
|
-
label?: string | undefined;
|
|
948
|
-
likeLabel?: string | undefined;
|
|
949
|
-
dislikeLabel?: string | undefined;
|
|
950
|
-
} | undefined;
|
|
951
|
-
}, {
|
|
952
|
-
label?: string | undefined;
|
|
953
|
-
submitText?: string | undefined;
|
|
954
|
-
max?: number | undefined;
|
|
955
|
-
buttonText?: string | undefined;
|
|
956
|
-
multi?: boolean | undefined;
|
|
957
|
-
items?: string[] | undefined;
|
|
958
|
-
reasons?: {
|
|
959
|
-
items: string[];
|
|
960
|
-
enable?: boolean | undefined;
|
|
961
|
-
multi?: boolean | undefined;
|
|
962
|
-
label?: string | undefined;
|
|
963
|
-
} | undefined;
|
|
964
|
-
comment?: {
|
|
965
|
-
enable?: boolean | undefined;
|
|
966
|
-
label?: string | undefined;
|
|
967
|
-
likeLabel?: string | undefined;
|
|
968
|
-
dislikeLabel?: string | undefined;
|
|
969
|
-
} | undefined;
|
|
970
|
-
}>>;
|
|
971
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
972
|
-
}, "strict", z.ZodTypeAny, {
|
|
973
|
-
type: "rating" | "sentiment" | "comment" | "reasons";
|
|
974
|
-
settings?: {
|
|
975
|
-
label?: string | undefined;
|
|
976
|
-
submitText?: string | undefined;
|
|
977
|
-
max?: number | undefined;
|
|
978
|
-
buttonText?: string | undefined;
|
|
979
|
-
multi?: boolean | undefined;
|
|
980
|
-
items?: string[] | undefined;
|
|
981
|
-
reasons?: {
|
|
982
|
-
items: string[];
|
|
983
|
-
enable: boolean;
|
|
984
|
-
multi?: boolean | undefined;
|
|
985
|
-
label?: string | undefined;
|
|
986
|
-
} | undefined;
|
|
987
|
-
comment?: {
|
|
988
|
-
enable: boolean;
|
|
989
|
-
label?: string | undefined;
|
|
990
|
-
likeLabel?: string | undefined;
|
|
991
|
-
dislikeLabel?: string | undefined;
|
|
992
|
-
} | undefined;
|
|
993
|
-
} | undefined;
|
|
994
|
-
hide?: boolean | undefined;
|
|
995
|
-
}, {
|
|
996
|
-
type?: "rating" | "sentiment" | "comment" | "reasons" | undefined;
|
|
997
|
-
settings?: {
|
|
998
|
-
label?: string | undefined;
|
|
999
|
-
submitText?: string | undefined;
|
|
1000
|
-
max?: number | undefined;
|
|
1001
|
-
buttonText?: string | undefined;
|
|
1002
|
-
multi?: boolean | undefined;
|
|
1003
|
-
items?: string[] | undefined;
|
|
1004
|
-
reasons?: {
|
|
1005
|
-
items: string[];
|
|
1006
|
-
enable?: boolean | undefined;
|
|
1007
|
-
multi?: boolean | undefined;
|
|
1008
|
-
label?: string | undefined;
|
|
1009
|
-
} | undefined;
|
|
1010
|
-
comment?: {
|
|
1011
|
-
enable?: boolean | undefined;
|
|
1012
|
-
label?: string | undefined;
|
|
1013
|
-
likeLabel?: string | undefined;
|
|
1014
|
-
dislikeLabel?: string | undefined;
|
|
1015
|
-
} | undefined;
|
|
1016
|
-
} | undefined;
|
|
1017
|
-
hide?: boolean | undefined;
|
|
1018
|
-
}>>>;
|
|
1019
|
-
search: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1020
|
-
placement: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1021
|
-
shortcuts: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1022
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1023
|
-
}, "strict", z.ZodTypeAny, {
|
|
1024
|
-
placement?: string | undefined;
|
|
1025
|
-
shortcuts?: string[] | undefined;
|
|
1026
|
-
hide?: boolean | undefined;
|
|
1027
|
-
}, {
|
|
1028
|
-
placement?: string | undefined;
|
|
1029
|
-
shortcuts?: string[] | undefined;
|
|
1030
|
-
hide?: boolean | undefined;
|
|
1031
|
-
}>>>;
|
|
1032
|
-
colorMode: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1033
|
-
ignoreDetection: z.ZodOptional<z.ZodBoolean>;
|
|
1034
|
-
modes: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1035
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1036
|
-
}, "strict", z.ZodTypeAny, {
|
|
1037
|
-
ignoreDetection?: boolean | undefined;
|
|
1038
|
-
modes?: string[] | undefined;
|
|
1039
|
-
hide?: boolean | undefined;
|
|
1040
|
-
}, {
|
|
1041
|
-
ignoreDetection?: boolean | undefined;
|
|
1042
|
-
modes?: string[] | undefined;
|
|
1043
|
-
hide?: boolean | undefined;
|
|
1044
|
-
}>>>;
|
|
1045
|
-
navigation: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1046
|
-
nextButton: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1047
|
-
text: z.ZodDefault<z.ZodString>;
|
|
1048
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1049
|
-
}, "strip", z.ZodTypeAny, {
|
|
1050
|
-
text: string;
|
|
1051
|
-
hide?: boolean | undefined;
|
|
1052
|
-
}, {
|
|
1053
|
-
text?: string | undefined;
|
|
1054
|
-
hide?: boolean | undefined;
|
|
1055
|
-
}>>>;
|
|
1056
|
-
previousButton: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1057
|
-
text: z.ZodDefault<z.ZodString>;
|
|
1058
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1059
|
-
}, "strip", z.ZodTypeAny, {
|
|
1060
|
-
text: string;
|
|
1061
|
-
hide?: boolean | undefined;
|
|
1062
|
-
}, {
|
|
1063
|
-
text?: string | undefined;
|
|
1064
|
-
hide?: boolean | undefined;
|
|
1065
|
-
}>>>;
|
|
1066
|
-
}, "strict", z.ZodTypeAny, {
|
|
1067
|
-
nextButton: {
|
|
1068
|
-
text: string;
|
|
1069
|
-
hide?: boolean | undefined;
|
|
304
|
+
readonly scripts: {
|
|
305
|
+
readonly type: "object";
|
|
306
|
+
readonly properties: {
|
|
307
|
+
readonly head: {
|
|
308
|
+
readonly type: "array";
|
|
309
|
+
readonly items: {
|
|
310
|
+
readonly type: "object";
|
|
311
|
+
readonly properties: {
|
|
312
|
+
readonly src: {
|
|
313
|
+
readonly type: "string";
|
|
314
|
+
};
|
|
315
|
+
readonly async: {
|
|
316
|
+
readonly type: "boolean";
|
|
317
|
+
};
|
|
318
|
+
readonly crossorigin: {
|
|
319
|
+
readonly type: "string";
|
|
320
|
+
};
|
|
321
|
+
readonly defer: {
|
|
322
|
+
readonly type: "boolean";
|
|
323
|
+
};
|
|
324
|
+
readonly fetchpriority: {
|
|
325
|
+
readonly type: "string";
|
|
326
|
+
};
|
|
327
|
+
readonly integrity: {
|
|
328
|
+
readonly type: "string";
|
|
329
|
+
};
|
|
330
|
+
readonly module: {
|
|
331
|
+
readonly type: "boolean";
|
|
332
|
+
};
|
|
333
|
+
readonly nomodule: {
|
|
334
|
+
readonly type: "boolean";
|
|
335
|
+
};
|
|
336
|
+
readonly nonce: {
|
|
337
|
+
readonly type: "string";
|
|
338
|
+
};
|
|
339
|
+
readonly referrerpolicy: {
|
|
340
|
+
readonly type: "string";
|
|
341
|
+
};
|
|
342
|
+
readonly type: {
|
|
343
|
+
readonly type: "string";
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
readonly required: readonly ["src"];
|
|
347
|
+
readonly additionalProperties: true;
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
readonly body: {
|
|
351
|
+
readonly type: "array";
|
|
352
|
+
readonly items: {
|
|
353
|
+
readonly type: "object";
|
|
354
|
+
readonly properties: {
|
|
355
|
+
readonly src: {
|
|
356
|
+
readonly type: "string";
|
|
357
|
+
};
|
|
358
|
+
readonly async: {
|
|
359
|
+
readonly type: "boolean";
|
|
360
|
+
};
|
|
361
|
+
readonly crossorigin: {
|
|
362
|
+
readonly type: "string";
|
|
363
|
+
};
|
|
364
|
+
readonly defer: {
|
|
365
|
+
readonly type: "boolean";
|
|
366
|
+
};
|
|
367
|
+
readonly fetchpriority: {
|
|
368
|
+
readonly type: "string";
|
|
369
|
+
};
|
|
370
|
+
readonly integrity: {
|
|
371
|
+
readonly type: "string";
|
|
372
|
+
};
|
|
373
|
+
readonly module: {
|
|
374
|
+
readonly type: "boolean";
|
|
375
|
+
};
|
|
376
|
+
readonly nomodule: {
|
|
377
|
+
readonly type: "boolean";
|
|
378
|
+
};
|
|
379
|
+
readonly nonce: {
|
|
380
|
+
readonly type: "string";
|
|
381
|
+
};
|
|
382
|
+
readonly referrerpolicy: {
|
|
383
|
+
readonly type: "string";
|
|
384
|
+
};
|
|
385
|
+
readonly type: {
|
|
386
|
+
readonly type: "string";
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
readonly required: readonly ["src"];
|
|
390
|
+
readonly additionalProperties: true;
|
|
391
|
+
};
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
readonly additionalProperties: false;
|
|
1070
395
|
};
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
396
|
+
readonly links: {
|
|
397
|
+
readonly type: "array";
|
|
398
|
+
readonly items: {
|
|
399
|
+
readonly type: "object";
|
|
400
|
+
readonly properties: {
|
|
401
|
+
readonly href: {
|
|
402
|
+
readonly type: "string";
|
|
403
|
+
};
|
|
404
|
+
readonly as: {
|
|
405
|
+
readonly type: "string";
|
|
406
|
+
};
|
|
407
|
+
readonly crossorigin: {
|
|
408
|
+
readonly type: "string";
|
|
409
|
+
};
|
|
410
|
+
readonly fetchpriority: {
|
|
411
|
+
readonly type: "string";
|
|
412
|
+
};
|
|
413
|
+
readonly hreflang: {
|
|
414
|
+
readonly type: "string";
|
|
415
|
+
};
|
|
416
|
+
readonly imagesizes: {
|
|
417
|
+
readonly type: "string";
|
|
418
|
+
};
|
|
419
|
+
readonly imagesrcset: {
|
|
420
|
+
readonly type: "string";
|
|
421
|
+
};
|
|
422
|
+
readonly integrity: {
|
|
423
|
+
readonly type: "string";
|
|
424
|
+
};
|
|
425
|
+
readonly media: {
|
|
426
|
+
readonly type: "string";
|
|
427
|
+
};
|
|
428
|
+
readonly prefetch: {
|
|
429
|
+
readonly type: "string";
|
|
430
|
+
};
|
|
431
|
+
readonly referrerpolicy: {
|
|
432
|
+
readonly type: "string";
|
|
433
|
+
};
|
|
434
|
+
readonly rel: {
|
|
435
|
+
readonly type: "string";
|
|
436
|
+
};
|
|
437
|
+
readonly sizes: {
|
|
438
|
+
readonly type: "string";
|
|
439
|
+
};
|
|
440
|
+
readonly title: {
|
|
441
|
+
readonly type: "string";
|
|
442
|
+
};
|
|
443
|
+
readonly type: {
|
|
444
|
+
readonly type: "string";
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
readonly required: readonly ["href"];
|
|
448
|
+
readonly additionalProperties: true;
|
|
449
|
+
};
|
|
1074
450
|
};
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
451
|
+
readonly feedback: {
|
|
452
|
+
readonly type: "object";
|
|
453
|
+
readonly properties: {
|
|
454
|
+
readonly type: {
|
|
455
|
+
readonly type: "string";
|
|
456
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons"];
|
|
457
|
+
readonly default: "sentiment";
|
|
458
|
+
};
|
|
459
|
+
readonly settings: {
|
|
460
|
+
readonly hide: {
|
|
461
|
+
readonly type: "boolean";
|
|
462
|
+
};
|
|
463
|
+
readonly type: "object";
|
|
464
|
+
readonly properties: {
|
|
465
|
+
readonly label: {
|
|
466
|
+
readonly type: "string";
|
|
467
|
+
};
|
|
468
|
+
readonly submitText: {
|
|
469
|
+
readonly type: "string";
|
|
470
|
+
};
|
|
471
|
+
readonly max: {
|
|
472
|
+
readonly type: "number";
|
|
473
|
+
};
|
|
474
|
+
readonly buttonText: {
|
|
475
|
+
readonly type: "string";
|
|
476
|
+
};
|
|
477
|
+
readonly multi: {
|
|
478
|
+
readonly type: "boolean";
|
|
479
|
+
};
|
|
480
|
+
readonly items: {
|
|
481
|
+
readonly type: "array";
|
|
482
|
+
readonly items: {
|
|
483
|
+
readonly type: "string";
|
|
484
|
+
};
|
|
485
|
+
readonly minItems: 1;
|
|
486
|
+
};
|
|
487
|
+
readonly reasons: {
|
|
488
|
+
readonly type: "object";
|
|
489
|
+
readonly properties: {
|
|
490
|
+
readonly enable: {
|
|
491
|
+
readonly type: "boolean";
|
|
492
|
+
readonly default: true;
|
|
493
|
+
};
|
|
494
|
+
readonly multi: {
|
|
495
|
+
readonly type: "boolean";
|
|
496
|
+
};
|
|
497
|
+
readonly label: {
|
|
498
|
+
readonly type: "string";
|
|
499
|
+
};
|
|
500
|
+
readonly items: {
|
|
501
|
+
readonly type: "array";
|
|
502
|
+
readonly items: {
|
|
503
|
+
readonly type: "string";
|
|
504
|
+
};
|
|
505
|
+
};
|
|
506
|
+
};
|
|
507
|
+
readonly additionalProperties: false;
|
|
508
|
+
};
|
|
509
|
+
readonly comment: {
|
|
510
|
+
readonly type: "object";
|
|
511
|
+
readonly properties: {
|
|
512
|
+
readonly enable: {
|
|
513
|
+
readonly type: "boolean";
|
|
514
|
+
readonly default: true;
|
|
515
|
+
};
|
|
516
|
+
readonly label: {
|
|
517
|
+
readonly type: "string";
|
|
518
|
+
};
|
|
519
|
+
readonly likeLabel: {
|
|
520
|
+
readonly type: "string";
|
|
521
|
+
};
|
|
522
|
+
readonly dislikeLabel: {
|
|
523
|
+
readonly type: "string";
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
readonly additionalProperties: false;
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
readonly additionalProperties: false;
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
readonly additionalProperties: false;
|
|
533
|
+
readonly default: {};
|
|
1125
534
|
};
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
535
|
+
readonly search: {
|
|
536
|
+
readonly type: "object";
|
|
537
|
+
readonly properties: {
|
|
538
|
+
readonly hide: {
|
|
539
|
+
readonly type: "boolean";
|
|
540
|
+
};
|
|
541
|
+
readonly placement: {
|
|
542
|
+
readonly type: "string";
|
|
543
|
+
readonly default: "navbar";
|
|
544
|
+
};
|
|
545
|
+
readonly shortcuts: {
|
|
546
|
+
readonly type: "array";
|
|
547
|
+
readonly items: {
|
|
548
|
+
readonly type: "string";
|
|
549
|
+
};
|
|
550
|
+
readonly default: readonly ["/"];
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
readonly additionalProperties: false;
|
|
554
|
+
readonly default: {};
|
|
1130
555
|
};
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1151
|
-
}, "strip", z.ZodTypeAny, {
|
|
1152
|
-
format?: "timeago" | "iso" | "long" | "short" | undefined;
|
|
1153
|
-
locale?: string | undefined;
|
|
1154
|
-
hide?: boolean | undefined;
|
|
1155
|
-
}, {
|
|
1156
|
-
format?: "timeago" | "iso" | "long" | "short" | undefined;
|
|
1157
|
-
locale?: string | undefined;
|
|
1158
|
-
hide?: boolean | undefined;
|
|
1159
|
-
}>>>;
|
|
1160
|
-
toc: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1161
|
-
header: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1162
|
-
depth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1163
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1164
|
-
}, "strip", z.ZodTypeAny, {
|
|
1165
|
-
header?: string | undefined;
|
|
1166
|
-
depth?: number | undefined;
|
|
1167
|
-
hide?: boolean | undefined;
|
|
1168
|
-
}, {
|
|
1169
|
-
header?: string | undefined;
|
|
1170
|
-
depth?: number | undefined;
|
|
1171
|
-
hide?: boolean | undefined;
|
|
1172
|
-
}>>>;
|
|
1173
|
-
editPage: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1174
|
-
baseUrl: z.ZodOptional<z.ZodString>;
|
|
1175
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
1176
|
-
text: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1177
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1178
|
-
}, "strip", z.ZodTypeAny, {
|
|
1179
|
-
text: string;
|
|
1180
|
-
baseUrl?: string | undefined;
|
|
1181
|
-
icon?: string | undefined;
|
|
1182
|
-
hide?: boolean | undefined;
|
|
1183
|
-
}, {
|
|
1184
|
-
baseUrl?: string | undefined;
|
|
1185
|
-
icon?: string | undefined;
|
|
1186
|
-
text?: string | undefined;
|
|
1187
|
-
hide?: boolean | undefined;
|
|
1188
|
-
}>>>;
|
|
1189
|
-
}, "strict", z.ZodTypeAny, {
|
|
1190
|
-
toc: {
|
|
1191
|
-
header?: string | undefined;
|
|
1192
|
-
depth?: number | undefined;
|
|
1193
|
-
hide?: boolean | undefined;
|
|
556
|
+
readonly colorMode: {
|
|
557
|
+
readonly type: "object";
|
|
558
|
+
readonly properties: {
|
|
559
|
+
readonly hide: {
|
|
560
|
+
readonly type: "boolean";
|
|
561
|
+
};
|
|
562
|
+
readonly ignoreDetection: {
|
|
563
|
+
readonly type: "boolean";
|
|
564
|
+
};
|
|
565
|
+
readonly modes: {
|
|
566
|
+
readonly type: "array";
|
|
567
|
+
readonly items: {
|
|
568
|
+
readonly type: "string";
|
|
569
|
+
};
|
|
570
|
+
readonly default: readonly ["light", "dark"];
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
readonly additionalProperties: false;
|
|
574
|
+
readonly default: {};
|
|
1194
575
|
};
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
userProfile: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1230
|
-
loginLabel: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1231
|
-
logoutLabel: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1232
|
-
menu: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1233
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1234
|
-
}, "strip", z.ZodTypeAny, {
|
|
1235
|
-
loginLabel?: string | undefined;
|
|
1236
|
-
logoutLabel?: string | undefined;
|
|
1237
|
-
menu?: any[] | undefined;
|
|
1238
|
-
hide?: boolean | undefined;
|
|
1239
|
-
}, {
|
|
1240
|
-
loginLabel?: string | undefined;
|
|
1241
|
-
logoutLabel?: string | undefined;
|
|
1242
|
-
menu?: any[] | undefined;
|
|
1243
|
-
hide?: boolean | undefined;
|
|
1244
|
-
}>>>;
|
|
1245
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1246
|
-
imports: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1247
|
-
logo: z.ZodOptional<z.ZodObject<{
|
|
1248
|
-
image: z.ZodOptional<z.ZodString>;
|
|
1249
|
-
altText: z.ZodOptional<z.ZodString>;
|
|
1250
|
-
link: z.ZodOptional<z.ZodString>;
|
|
1251
|
-
favicon: z.ZodOptional<z.ZodString>;
|
|
1252
|
-
}, "strict", z.ZodTypeAny, {
|
|
1253
|
-
image?: string | undefined;
|
|
1254
|
-
altText?: string | undefined;
|
|
1255
|
-
link?: string | undefined;
|
|
1256
|
-
favicon?: string | undefined;
|
|
1257
|
-
}, {
|
|
1258
|
-
image?: string | undefined;
|
|
1259
|
-
altText?: string | undefined;
|
|
1260
|
-
link?: string | undefined;
|
|
1261
|
-
favicon?: string | undefined;
|
|
1262
|
-
}>>;
|
|
1263
|
-
navbar: z.ZodOptional<z.ZodObject<{
|
|
1264
|
-
items: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1265
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1266
|
-
}, "strict", z.ZodTypeAny, {
|
|
1267
|
-
items?: any[] | undefined;
|
|
1268
|
-
hide?: boolean | undefined;
|
|
1269
|
-
}, {
|
|
1270
|
-
items?: any[] | undefined;
|
|
1271
|
-
hide?: boolean | undefined;
|
|
1272
|
-
}>>;
|
|
1273
|
-
footer: z.ZodOptional<z.ZodObject<{
|
|
1274
|
-
items: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1275
|
-
copyrightText: z.ZodOptional<z.ZodString>;
|
|
1276
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1277
|
-
}, "strict", z.ZodTypeAny, {
|
|
1278
|
-
items?: any[] | undefined;
|
|
1279
|
-
copyrightText?: string | undefined;
|
|
1280
|
-
hide?: boolean | undefined;
|
|
1281
|
-
}, {
|
|
1282
|
-
items?: any[] | undefined;
|
|
1283
|
-
copyrightText?: string | undefined;
|
|
1284
|
-
hide?: boolean | undefined;
|
|
1285
|
-
}>>;
|
|
1286
|
-
sidebar: z.ZodOptional<z.ZodObject<{
|
|
1287
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1288
|
-
}, "strict", z.ZodTypeAny, {
|
|
1289
|
-
hide?: boolean | undefined;
|
|
1290
|
-
}, {
|
|
1291
|
-
hide?: boolean | undefined;
|
|
1292
|
-
}>>;
|
|
1293
|
-
scripts: z.ZodOptional<z.ZodObject<{
|
|
1294
|
-
head: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1295
|
-
src: z.ZodString;
|
|
1296
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1297
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1298
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1299
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1300
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1301
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1302
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1303
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1304
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1305
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1306
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1307
|
-
src: z.ZodString;
|
|
1308
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1309
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1310
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1311
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1312
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1313
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1314
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1315
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1316
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1317
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1318
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1319
|
-
src: z.ZodString;
|
|
1320
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1321
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1322
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1323
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1324
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1325
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1326
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1327
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1328
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1329
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1330
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1331
|
-
body: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1332
|
-
src: z.ZodString;
|
|
1333
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1334
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1335
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1336
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1337
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1338
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1339
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1340
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1341
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1342
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1343
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1344
|
-
src: z.ZodString;
|
|
1345
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1346
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1347
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1348
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1349
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1350
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1351
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1352
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1353
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1354
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1355
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1356
|
-
src: z.ZodString;
|
|
1357
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1358
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1359
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1360
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1361
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1362
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1363
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1364
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1365
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1366
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1367
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1368
|
-
}, "strip", z.ZodTypeAny, {
|
|
1369
|
-
head?: z.objectOutputType<{
|
|
1370
|
-
src: z.ZodString;
|
|
1371
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1372
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1373
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1374
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1375
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1376
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1377
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1378
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1379
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1380
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1381
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1382
|
-
body?: z.objectOutputType<{
|
|
1383
|
-
src: z.ZodString;
|
|
1384
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1385
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1386
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1387
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1388
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1389
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1390
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1391
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1392
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1393
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1394
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1395
|
-
}, {
|
|
1396
|
-
head?: z.objectInputType<{
|
|
1397
|
-
src: z.ZodString;
|
|
1398
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1399
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1400
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1401
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1402
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1403
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1404
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1405
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1406
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1407
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1408
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1409
|
-
body?: z.objectInputType<{
|
|
1410
|
-
src: z.ZodString;
|
|
1411
|
-
async: z.ZodOptional<z.ZodBoolean>;
|
|
1412
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1413
|
-
defer: z.ZodOptional<z.ZodBoolean>;
|
|
1414
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1415
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1416
|
-
module: z.ZodOptional<z.ZodBoolean>;
|
|
1417
|
-
nomodule: z.ZodOptional<z.ZodBoolean>;
|
|
1418
|
-
nonce: z.ZodOptional<z.ZodString>;
|
|
1419
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1420
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1421
|
-
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1422
|
-
}>>;
|
|
1423
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1424
|
-
href: z.ZodString;
|
|
1425
|
-
as: z.ZodOptional<z.ZodString>;
|
|
1426
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1427
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1428
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
1429
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
1430
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
1431
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1432
|
-
media: z.ZodOptional<z.ZodString>;
|
|
1433
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
1434
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1435
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
1436
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
1437
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1438
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1439
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1440
|
-
href: z.ZodString;
|
|
1441
|
-
as: z.ZodOptional<z.ZodString>;
|
|
1442
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1443
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1444
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
1445
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
1446
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
1447
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1448
|
-
media: z.ZodOptional<z.ZodString>;
|
|
1449
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
1450
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1451
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
1452
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
1453
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1454
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1455
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1456
|
-
href: z.ZodString;
|
|
1457
|
-
as: z.ZodOptional<z.ZodString>;
|
|
1458
|
-
crossorigin: z.ZodOptional<z.ZodString>;
|
|
1459
|
-
fetchpriority: z.ZodOptional<z.ZodString>;
|
|
1460
|
-
hreflang: z.ZodOptional<z.ZodString>;
|
|
1461
|
-
imagesizes: z.ZodOptional<z.ZodString>;
|
|
1462
|
-
imagesrcset: z.ZodOptional<z.ZodString>;
|
|
1463
|
-
integrity: z.ZodOptional<z.ZodString>;
|
|
1464
|
-
media: z.ZodOptional<z.ZodString>;
|
|
1465
|
-
prefetch: z.ZodOptional<z.ZodString>;
|
|
1466
|
-
referrerpolicy: z.ZodOptional<z.ZodString>;
|
|
1467
|
-
rel: z.ZodOptional<z.ZodString>;
|
|
1468
|
-
sizes: z.ZodOptional<z.ZodString>;
|
|
1469
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1470
|
-
type: z.ZodOptional<z.ZodString>;
|
|
1471
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1472
|
-
feedback: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1473
|
-
type: z.ZodDefault<z.ZodEnum<["rating", "sentiment", "comment", "reasons"]>>;
|
|
1474
|
-
settings: z.ZodOptional<z.ZodObject<{
|
|
1475
|
-
label: z.ZodOptional<z.ZodString>;
|
|
1476
|
-
submitText: z.ZodOptional<z.ZodString>;
|
|
1477
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1478
|
-
buttonText: z.ZodOptional<z.ZodString>;
|
|
1479
|
-
multi: z.ZodOptional<z.ZodBoolean>;
|
|
1480
|
-
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1481
|
-
reasons: z.ZodOptional<z.ZodObject<{
|
|
1482
|
-
enable: z.ZodDefault<z.ZodBoolean>;
|
|
1483
|
-
multi: z.ZodOptional<z.ZodBoolean>;
|
|
1484
|
-
label: z.ZodOptional<z.ZodString>;
|
|
1485
|
-
items: z.ZodArray<z.ZodString, "many">;
|
|
1486
|
-
}, "strip", z.ZodTypeAny, {
|
|
1487
|
-
items: string[];
|
|
1488
|
-
enable: boolean;
|
|
1489
|
-
multi?: boolean | undefined;
|
|
1490
|
-
label?: string | undefined;
|
|
1491
|
-
}, {
|
|
1492
|
-
items: string[];
|
|
1493
|
-
enable?: boolean | undefined;
|
|
1494
|
-
multi?: boolean | undefined;
|
|
1495
|
-
label?: string | undefined;
|
|
1496
|
-
}>>;
|
|
1497
|
-
comment: z.ZodOptional<z.ZodObject<{
|
|
1498
|
-
enable: z.ZodDefault<z.ZodBoolean>;
|
|
1499
|
-
label: z.ZodOptional<z.ZodString>;
|
|
1500
|
-
likeLabel: z.ZodOptional<z.ZodString>;
|
|
1501
|
-
dislikeLabel: z.ZodOptional<z.ZodString>;
|
|
1502
|
-
}, "strip", z.ZodTypeAny, {
|
|
1503
|
-
enable: boolean;
|
|
1504
|
-
label?: string | undefined;
|
|
1505
|
-
likeLabel?: string | undefined;
|
|
1506
|
-
dislikeLabel?: string | undefined;
|
|
1507
|
-
}, {
|
|
1508
|
-
enable?: boolean | undefined;
|
|
1509
|
-
label?: string | undefined;
|
|
1510
|
-
likeLabel?: string | undefined;
|
|
1511
|
-
dislikeLabel?: string | undefined;
|
|
1512
|
-
}>>;
|
|
1513
|
-
}, "strip", z.ZodTypeAny, {
|
|
1514
|
-
label?: string | undefined;
|
|
1515
|
-
submitText?: string | undefined;
|
|
1516
|
-
max?: number | undefined;
|
|
1517
|
-
buttonText?: string | undefined;
|
|
1518
|
-
multi?: boolean | undefined;
|
|
1519
|
-
items?: string[] | undefined;
|
|
1520
|
-
reasons?: {
|
|
1521
|
-
items: string[];
|
|
1522
|
-
enable: boolean;
|
|
1523
|
-
multi?: boolean | undefined;
|
|
1524
|
-
label?: string | undefined;
|
|
1525
|
-
} | undefined;
|
|
1526
|
-
comment?: {
|
|
1527
|
-
enable: boolean;
|
|
1528
|
-
label?: string | undefined;
|
|
1529
|
-
likeLabel?: string | undefined;
|
|
1530
|
-
dislikeLabel?: string | undefined;
|
|
1531
|
-
} | undefined;
|
|
1532
|
-
}, {
|
|
1533
|
-
label?: string | undefined;
|
|
1534
|
-
submitText?: string | undefined;
|
|
1535
|
-
max?: number | undefined;
|
|
1536
|
-
buttonText?: string | undefined;
|
|
1537
|
-
multi?: boolean | undefined;
|
|
1538
|
-
items?: string[] | undefined;
|
|
1539
|
-
reasons?: {
|
|
1540
|
-
items: string[];
|
|
1541
|
-
enable?: boolean | undefined;
|
|
1542
|
-
multi?: boolean | undefined;
|
|
1543
|
-
label?: string | undefined;
|
|
1544
|
-
} | undefined;
|
|
1545
|
-
comment?: {
|
|
1546
|
-
enable?: boolean | undefined;
|
|
1547
|
-
label?: string | undefined;
|
|
1548
|
-
likeLabel?: string | undefined;
|
|
1549
|
-
dislikeLabel?: string | undefined;
|
|
1550
|
-
} | undefined;
|
|
1551
|
-
}>>;
|
|
1552
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1553
|
-
}, "strict", z.ZodTypeAny, {
|
|
1554
|
-
type: "rating" | "sentiment" | "comment" | "reasons";
|
|
1555
|
-
settings?: {
|
|
1556
|
-
label?: string | undefined;
|
|
1557
|
-
submitText?: string | undefined;
|
|
1558
|
-
max?: number | undefined;
|
|
1559
|
-
buttonText?: string | undefined;
|
|
1560
|
-
multi?: boolean | undefined;
|
|
1561
|
-
items?: string[] | undefined;
|
|
1562
|
-
reasons?: {
|
|
1563
|
-
items: string[];
|
|
1564
|
-
enable: boolean;
|
|
1565
|
-
multi?: boolean | undefined;
|
|
1566
|
-
label?: string | undefined;
|
|
1567
|
-
} | undefined;
|
|
1568
|
-
comment?: {
|
|
1569
|
-
enable: boolean;
|
|
1570
|
-
label?: string | undefined;
|
|
1571
|
-
likeLabel?: string | undefined;
|
|
1572
|
-
dislikeLabel?: string | undefined;
|
|
1573
|
-
} | undefined;
|
|
1574
|
-
} | undefined;
|
|
1575
|
-
hide?: boolean | undefined;
|
|
1576
|
-
}, {
|
|
1577
|
-
type?: "rating" | "sentiment" | "comment" | "reasons" | undefined;
|
|
1578
|
-
settings?: {
|
|
1579
|
-
label?: string | undefined;
|
|
1580
|
-
submitText?: string | undefined;
|
|
1581
|
-
max?: number | undefined;
|
|
1582
|
-
buttonText?: string | undefined;
|
|
1583
|
-
multi?: boolean | undefined;
|
|
1584
|
-
items?: string[] | undefined;
|
|
1585
|
-
reasons?: {
|
|
1586
|
-
items: string[];
|
|
1587
|
-
enable?: boolean | undefined;
|
|
1588
|
-
multi?: boolean | undefined;
|
|
1589
|
-
label?: string | undefined;
|
|
1590
|
-
} | undefined;
|
|
1591
|
-
comment?: {
|
|
1592
|
-
enable?: boolean | undefined;
|
|
1593
|
-
label?: string | undefined;
|
|
1594
|
-
likeLabel?: string | undefined;
|
|
1595
|
-
dislikeLabel?: string | undefined;
|
|
1596
|
-
} | undefined;
|
|
1597
|
-
} | undefined;
|
|
1598
|
-
hide?: boolean | undefined;
|
|
1599
|
-
}>>>;
|
|
1600
|
-
search: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1601
|
-
placement: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1602
|
-
shortcuts: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1603
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1604
|
-
}, "strict", z.ZodTypeAny, {
|
|
1605
|
-
placement?: string | undefined;
|
|
1606
|
-
shortcuts?: string[] | undefined;
|
|
1607
|
-
hide?: boolean | undefined;
|
|
1608
|
-
}, {
|
|
1609
|
-
placement?: string | undefined;
|
|
1610
|
-
shortcuts?: string[] | undefined;
|
|
1611
|
-
hide?: boolean | undefined;
|
|
1612
|
-
}>>>;
|
|
1613
|
-
colorMode: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1614
|
-
ignoreDetection: z.ZodOptional<z.ZodBoolean>;
|
|
1615
|
-
modes: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1616
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1617
|
-
}, "strict", z.ZodTypeAny, {
|
|
1618
|
-
ignoreDetection?: boolean | undefined;
|
|
1619
|
-
modes?: string[] | undefined;
|
|
1620
|
-
hide?: boolean | undefined;
|
|
1621
|
-
}, {
|
|
1622
|
-
ignoreDetection?: boolean | undefined;
|
|
1623
|
-
modes?: string[] | undefined;
|
|
1624
|
-
hide?: boolean | undefined;
|
|
1625
|
-
}>>>;
|
|
1626
|
-
navigation: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1627
|
-
nextButton: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1628
|
-
text: z.ZodDefault<z.ZodString>;
|
|
1629
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1630
|
-
}, "strip", z.ZodTypeAny, {
|
|
1631
|
-
text: string;
|
|
1632
|
-
hide?: boolean | undefined;
|
|
1633
|
-
}, {
|
|
1634
|
-
text?: string | undefined;
|
|
1635
|
-
hide?: boolean | undefined;
|
|
1636
|
-
}>>>;
|
|
1637
|
-
previousButton: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1638
|
-
text: z.ZodDefault<z.ZodString>;
|
|
1639
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1640
|
-
}, "strip", z.ZodTypeAny, {
|
|
1641
|
-
text: string;
|
|
1642
|
-
hide?: boolean | undefined;
|
|
1643
|
-
}, {
|
|
1644
|
-
text?: string | undefined;
|
|
1645
|
-
hide?: boolean | undefined;
|
|
1646
|
-
}>>>;
|
|
1647
|
-
}, "strict", z.ZodTypeAny, {
|
|
1648
|
-
nextButton: {
|
|
1649
|
-
text: string;
|
|
1650
|
-
hide?: boolean | undefined;
|
|
576
|
+
readonly navigation: {
|
|
577
|
+
readonly type: "object";
|
|
578
|
+
readonly properties: {
|
|
579
|
+
readonly nextButton: {
|
|
580
|
+
readonly type: "object";
|
|
581
|
+
readonly properties: {
|
|
582
|
+
readonly hide: {
|
|
583
|
+
readonly type: "boolean";
|
|
584
|
+
};
|
|
585
|
+
readonly text: {
|
|
586
|
+
readonly type: "string";
|
|
587
|
+
readonly default: "Next to {label}";
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
readonly additionalProperties: false;
|
|
591
|
+
readonly default: {};
|
|
592
|
+
};
|
|
593
|
+
readonly previousButton: {
|
|
594
|
+
readonly type: "object";
|
|
595
|
+
readonly properties: {
|
|
596
|
+
readonly hide: {
|
|
597
|
+
readonly type: "boolean";
|
|
598
|
+
};
|
|
599
|
+
readonly text: {
|
|
600
|
+
readonly type: "string";
|
|
601
|
+
readonly default: "Back to {label}";
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
readonly additionalProperties: false;
|
|
605
|
+
readonly default: {};
|
|
606
|
+
};
|
|
607
|
+
};
|
|
608
|
+
readonly additionalProperties: false;
|
|
609
|
+
readonly default: {};
|
|
1651
610
|
};
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
611
|
+
readonly codeSnippet: {
|
|
612
|
+
readonly type: "object";
|
|
613
|
+
readonly properties: {
|
|
614
|
+
readonly copy: {
|
|
615
|
+
readonly type: "object";
|
|
616
|
+
readonly properties: {
|
|
617
|
+
readonly hide: {
|
|
618
|
+
readonly type: "boolean";
|
|
619
|
+
};
|
|
620
|
+
readonly buttonText: {
|
|
621
|
+
readonly type: "string";
|
|
622
|
+
readonly default: "Copy";
|
|
623
|
+
};
|
|
624
|
+
readonly tooltipText: {
|
|
625
|
+
readonly type: "string";
|
|
626
|
+
readonly default: "Copy to clipboard";
|
|
627
|
+
};
|
|
628
|
+
readonly toasterText: {
|
|
629
|
+
readonly type: "string";
|
|
630
|
+
readonly default: "Copied!";
|
|
631
|
+
};
|
|
632
|
+
readonly toasterDuration: {
|
|
633
|
+
readonly type: "number";
|
|
634
|
+
readonly default: 1500;
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
readonly additionalProperties: false;
|
|
638
|
+
readonly default: {};
|
|
639
|
+
};
|
|
640
|
+
readonly report: {
|
|
641
|
+
readonly type: "object";
|
|
642
|
+
readonly properties: {
|
|
643
|
+
readonly hide: {
|
|
644
|
+
readonly type: "boolean";
|
|
645
|
+
};
|
|
646
|
+
readonly tooltipText: {
|
|
647
|
+
readonly type: "string";
|
|
648
|
+
readonly default: "Report a problem";
|
|
649
|
+
};
|
|
650
|
+
readonly label: {
|
|
651
|
+
readonly type: "string";
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
readonly additionalProperties: false;
|
|
655
|
+
readonly default: {
|
|
656
|
+
readonly hide: true;
|
|
657
|
+
};
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
readonly additionalProperties: false;
|
|
661
|
+
readonly default: {};
|
|
1655
662
|
};
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
663
|
+
readonly markdown: {
|
|
664
|
+
readonly type: "object";
|
|
665
|
+
readonly properties: {
|
|
666
|
+
readonly frontMatterKeysToResolve: {
|
|
667
|
+
readonly type: "array";
|
|
668
|
+
readonly items: {
|
|
669
|
+
readonly type: "string";
|
|
670
|
+
};
|
|
671
|
+
readonly default: readonly ["image", "links"];
|
|
672
|
+
};
|
|
673
|
+
readonly lastUpdatedBlock: {
|
|
674
|
+
readonly type: "object";
|
|
675
|
+
readonly properties: {
|
|
676
|
+
readonly hide: {
|
|
677
|
+
readonly type: "boolean";
|
|
678
|
+
};
|
|
679
|
+
readonly format: {
|
|
680
|
+
readonly type: "string";
|
|
681
|
+
readonly enum: readonly ["timeago", "iso", "long", "short"];
|
|
682
|
+
readonly default: "timeago";
|
|
683
|
+
};
|
|
684
|
+
readonly locale: {
|
|
685
|
+
readonly type: "string";
|
|
686
|
+
readonly default: "en-US";
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
readonly additionalProperties: false;
|
|
690
|
+
readonly default: {};
|
|
691
|
+
};
|
|
692
|
+
readonly toc: {
|
|
693
|
+
readonly type: "object";
|
|
694
|
+
readonly properties: {
|
|
695
|
+
readonly hide: {
|
|
696
|
+
readonly type: "boolean";
|
|
697
|
+
};
|
|
698
|
+
readonly header: {
|
|
699
|
+
readonly type: "string";
|
|
700
|
+
readonly default: "On this page";
|
|
701
|
+
};
|
|
702
|
+
readonly depth: {
|
|
703
|
+
readonly type: "number";
|
|
704
|
+
readonly default: 3;
|
|
705
|
+
};
|
|
706
|
+
};
|
|
707
|
+
readonly additionalProperties: false;
|
|
708
|
+
readonly default: {};
|
|
709
|
+
};
|
|
710
|
+
readonly editPage: {
|
|
711
|
+
readonly type: "object";
|
|
712
|
+
readonly properties: {
|
|
713
|
+
readonly hide: {
|
|
714
|
+
readonly type: "boolean";
|
|
715
|
+
};
|
|
716
|
+
readonly baseUrl: {
|
|
717
|
+
readonly type: "string";
|
|
718
|
+
};
|
|
719
|
+
readonly icon: {
|
|
720
|
+
readonly type: "string";
|
|
721
|
+
};
|
|
722
|
+
readonly text: {
|
|
723
|
+
readonly type: "string";
|
|
724
|
+
readonly default: "Edit this page";
|
|
725
|
+
};
|
|
726
|
+
};
|
|
727
|
+
readonly additionalProperties: false;
|
|
728
|
+
readonly default: {};
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
readonly additionalProperties: false;
|
|
732
|
+
readonly default: {};
|
|
1706
733
|
};
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
hide?: boolean | undefined;
|
|
734
|
+
readonly openapi: {
|
|
735
|
+
readonly type: "object";
|
|
736
|
+
readonly additionalProperties: true;
|
|
1711
737
|
};
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
tooltipText?: string | undefined;
|
|
1716
|
-
toasterText?: string | undefined;
|
|
1717
|
-
toasterDuration?: number | undefined;
|
|
1718
|
-
hide?: boolean | undefined;
|
|
1719
|
-
} | undefined;
|
|
1720
|
-
report?: {
|
|
1721
|
-
label?: string | undefined;
|
|
1722
|
-
tooltipText?: string | undefined;
|
|
1723
|
-
hide?: boolean | undefined;
|
|
1724
|
-
} | undefined;
|
|
1725
|
-
}>>>;
|
|
1726
|
-
markdown: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1727
|
-
frontMatterKeysToResolve: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1728
|
-
lastUpdatedBlock: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1729
|
-
format: z.ZodOptional<z.ZodDefault<z.ZodEnum<["timeago", "iso", "long", "short"]>>>;
|
|
1730
|
-
locale: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1731
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1732
|
-
}, "strip", z.ZodTypeAny, {
|
|
1733
|
-
format?: "timeago" | "iso" | "long" | "short" | undefined;
|
|
1734
|
-
locale?: string | undefined;
|
|
1735
|
-
hide?: boolean | undefined;
|
|
1736
|
-
}, {
|
|
1737
|
-
format?: "timeago" | "iso" | "long" | "short" | undefined;
|
|
1738
|
-
locale?: string | undefined;
|
|
1739
|
-
hide?: boolean | undefined;
|
|
1740
|
-
}>>>;
|
|
1741
|
-
toc: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1742
|
-
header: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1743
|
-
depth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1744
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1745
|
-
}, "strip", z.ZodTypeAny, {
|
|
1746
|
-
header?: string | undefined;
|
|
1747
|
-
depth?: number | undefined;
|
|
1748
|
-
hide?: boolean | undefined;
|
|
1749
|
-
}, {
|
|
1750
|
-
header?: string | undefined;
|
|
1751
|
-
depth?: number | undefined;
|
|
1752
|
-
hide?: boolean | undefined;
|
|
1753
|
-
}>>>;
|
|
1754
|
-
editPage: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1755
|
-
baseUrl: z.ZodOptional<z.ZodString>;
|
|
1756
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
1757
|
-
text: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1758
|
-
hide: z.ZodOptional<z.ZodBoolean>;
|
|
1759
|
-
}, "strip", z.ZodTypeAny, {
|
|
1760
|
-
text: string;
|
|
1761
|
-
baseUrl?: string | undefined;
|
|
1762
|
-
icon?: string | undefined;
|
|
1763
|
-
hide?: boolean | undefined;
|
|
1764
|
-
}, {
|
|
1765
|
-
baseUrl?: string | undefined;
|
|
1766
|
-
icon?: string | undefined;
|
|
1767
|
-
text?: string | undefined;
|
|
1768
|
-
hide?: boolean | undefined;
|
|
1769
|
-
}>>>;
|
|
1770
|
-
}, "strict", z.ZodTypeAny, {
|
|
1771
|
-
toc: {
|
|
1772
|
-
header?: string | undefined;
|
|
1773
|
-
depth?: number | undefined;
|
|
1774
|
-
hide?: boolean | undefined;
|
|
738
|
+
readonly graphql: {
|
|
739
|
+
readonly type: "object";
|
|
740
|
+
readonly additionalProperties: true;
|
|
1775
741
|
};
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
hide?: boolean | undefined;
|
|
1825
|
-
}>>>;
|
|
1826
|
-
}, z.ZodTypeAny, "passthrough">>>;
|
|
1827
|
-
export type ThemeConfig = z.infer<typeof ThemeConfig>;
|
|
742
|
+
readonly analytics: {
|
|
743
|
+
readonly type: readonly ["array", "boolean", "number", "object", "string"];
|
|
744
|
+
};
|
|
745
|
+
readonly userProfile: {
|
|
746
|
+
readonly type: "object";
|
|
747
|
+
readonly properties: {
|
|
748
|
+
readonly hide: {
|
|
749
|
+
readonly type: "boolean";
|
|
750
|
+
};
|
|
751
|
+
readonly loginLabel: {
|
|
752
|
+
readonly type: "string";
|
|
753
|
+
readonly default: "Login";
|
|
754
|
+
};
|
|
755
|
+
readonly logoutLabel: {
|
|
756
|
+
readonly type: "string";
|
|
757
|
+
readonly default: "Logout";
|
|
758
|
+
};
|
|
759
|
+
readonly menu: {
|
|
760
|
+
readonly type: "array";
|
|
761
|
+
readonly items: {
|
|
762
|
+
readonly type: "object";
|
|
763
|
+
readonly properties: {
|
|
764
|
+
readonly label: {
|
|
765
|
+
readonly type: "string";
|
|
766
|
+
};
|
|
767
|
+
readonly external: {
|
|
768
|
+
readonly type: "boolean";
|
|
769
|
+
};
|
|
770
|
+
readonly link: {
|
|
771
|
+
readonly type: "string";
|
|
772
|
+
};
|
|
773
|
+
readonly separatorLine: {
|
|
774
|
+
readonly type: "boolean";
|
|
775
|
+
};
|
|
776
|
+
};
|
|
777
|
+
readonly additionalProperties: true;
|
|
778
|
+
};
|
|
779
|
+
readonly default: readonly [];
|
|
780
|
+
};
|
|
781
|
+
};
|
|
782
|
+
readonly additionalProperties: false;
|
|
783
|
+
readonly default: {};
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
readonly additionalProperties: true;
|
|
787
|
+
readonly default: {};
|
|
788
|
+
};
|
|
789
|
+
export type ThemeConfig = FromSchema<typeof themeConfigSchema>;
|
|
1828
790
|
export type ThemeUIConfig = ThemeConfig & {
|
|
1829
|
-
navbar?: any;
|
|
1830
|
-
footer?: any;
|
|
1831
791
|
auth?: {
|
|
1832
792
|
idpsInfo?: {
|
|
1833
793
|
idpId: string;
|
|
@@ -1840,5 +800,5 @@ export type ThemeUIConfig = ThemeConfig & {
|
|
|
1840
800
|
shortcuts?: string[];
|
|
1841
801
|
};
|
|
1842
802
|
};
|
|
1843
|
-
export type MarkdownConfig =
|
|
803
|
+
export type MarkdownConfig = FromSchema<typeof markdownConfigSchema>;
|
|
1844
804
|
export {};
|