@botpress/webchat 1.2.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapters/index.d.ts +4 -0
- package/dist/adapters/messaging-to-target.d.ts +151 -0
- package/dist/adapters/target.d.ts +77 -0
- package/dist/adapters/webchat-to-target.d.ts +126 -0
- package/dist/client/MessagingClient/client.d.ts +7 -4
- package/dist/client/PushpinClient/index.d.ts +4 -2
- package/dist/client/PushpinClient/inner-client/index.d.ts +2 -0
- package/dist/client/types.d.ts +4 -1
- package/dist/components/Avatar.d.ts +2 -3
- package/dist/components/Block.d.ts +3 -2
- package/dist/components/CloseWindow.d.ts +5 -0
- package/dist/components/Composer.d.ts +1 -1
- package/dist/components/renderers/Audio.d.ts +1 -1
- package/dist/components/renderers/Carousel.d.ts +1 -1
- package/dist/components/renderers/File.d.ts +1 -1
- package/dist/components/renderers/Image.d.ts +1 -1
- package/dist/components/renderers/Location.d.ts +1 -1
- package/dist/components/renderers/Video.d.ts +1 -1
- package/dist/contexts/WebchatContext.d.ts +3 -3
- package/dist/gen/client/api.d.ts +349 -31
- package/dist/gen/client/client.d.ts +21 -17
- package/dist/gen/client/errors.d.ts +9 -2
- package/dist/gen/models/index.d.ts +186 -23
- package/dist/gen/models/message.j.d.ts +107 -5
- package/dist/gen/models/message.t.d.ts +49 -0
- package/dist/gen/models/message.z.d.ts +79 -12
- package/dist/gen/models/user.j.d.ts +0 -3
- package/dist/gen/models/user.t.d.ts +0 -1
- package/dist/gen/models/user.z.d.ts +0 -3
- package/dist/gen/signals/index.d.ts +218 -23
- package/dist/gen/signals/messageCreatedSignal.j.d.ts +107 -5
- package/dist/gen/signals/messageCreatedSignal.t.d.ts +49 -0
- package/dist/gen/signals/messageCreatedSignal.z.d.ts +111 -18
- package/dist/get-client.d.ts +8 -0
- package/dist/hooks/useClient.d.ts +2 -2
- package/dist/hooks/useWebchatStore.d.ts +3 -0
- package/dist/index.d.ts +3 -4
- package/dist/index.js +33301 -40913
- package/dist/index.umd.cjs +96 -125
- package/dist/providers/WebchatProvider.d.ts +4 -3
- package/dist/schemas/configuration.d.ts +117 -0
- package/dist/schemas/index.d.ts +2 -0
- package/dist/schemas/init.d.ts +7650 -0
- package/dist/schemas/theme.d.ts +231 -232
- package/dist/types/block-type.d.ts +3 -6
- package/dist/types/configuration.d.ts +4 -16
- package/dist/types/index.d.ts +2 -0
- package/dist/types/init.d.ts +7 -0
- package/dist/types/theme.d.ts +7 -0
- package/dist/utils/index.d.ts +0 -2
- package/openapi.ts +40 -0
- package/package.json +15 -38
- package/dist/App.d.ts +0 -11
- package/dist/components/dev-tools/DevTools.d.ts +0 -1
- package/dist/components/dev-tools/configuration.d.ts +0 -2
- package/dist/components/dev-tools/helpers.d.ts +0 -5
- package/dist/main.d.ts +0 -0
- package/dist/options.d.ts +0 -11
- package/dist/themes/base.d.ts +0 -3
- package/dist/themes/baseColors.d.ts +0 -736
- package/dist/themes/dawn.d.ts +0 -4
- package/dist/themes/eggplant.d.ts +0 -4
- package/dist/themes/index.d.ts +0 -3
- package/dist/themes/prism.d.ts +0 -4
- package/dist/themes/themeBuilder.d.ts +0 -27
- package/dist/twind.config.d.ts +0 -9
- package/dist/twind.d.ts +0 -16
- package/dist/utils/mergeThemes.d.ts +0 -2
- package/dist/utils/withBaseTheme.d.ts +0 -384
- package/openapi/index.ts +0 -31
- package/openapi/package.json +0 -5
- package/openapi/readme.md +0 -1
package/dist/schemas/theme.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { CSSProperties } from 'react';
|
|
2
1
|
import { z } from 'zod';
|
|
3
|
-
|
|
4
|
-
declare const
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
import { CSSProperties } from 'react';
|
|
3
|
+
export declare const markdownTypeSchema: z.ZodEnum<["heading1", "heading2", "heading3", "text", "horizontalRule", "link", "italic", "bold", "orderedList", "unorderedList", "listItem", "lineBreak", "pre"]>;
|
|
4
|
+
export declare const cssStyleSchema: z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
5
|
+
export declare const styleOptionSchema: z.ZodObject<{
|
|
6
|
+
className: z.ZodOptional<z.ZodString>;
|
|
7
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
7
8
|
}, "strip", z.ZodTypeAny, {
|
|
8
9
|
className?: string | undefined;
|
|
9
10
|
style?: CSSProperties | undefined;
|
|
@@ -11,10 +12,10 @@ declare const StyleOptionSchema: z.ZodObject<{
|
|
|
11
12
|
className?: string | undefined;
|
|
12
13
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
13
14
|
}>;
|
|
14
|
-
export declare const
|
|
15
|
+
export declare const avatarThemeSchema: z.ZodObject<{
|
|
15
16
|
container: z.ZodOptional<z.ZodObject<{
|
|
16
|
-
className: z.
|
|
17
|
-
style: z.
|
|
17
|
+
className: z.ZodOptional<z.ZodString>;
|
|
18
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
18
19
|
}, "strip", z.ZodTypeAny, {
|
|
19
20
|
className?: string | undefined;
|
|
20
21
|
style?: CSSProperties | undefined;
|
|
@@ -23,8 +24,8 @@ export declare const AvatarSchema: z.ZodObject<{
|
|
|
23
24
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
24
25
|
}>>;
|
|
25
26
|
image: z.ZodOptional<z.ZodObject<{
|
|
26
|
-
className: z.
|
|
27
|
-
style: z.
|
|
27
|
+
className: z.ZodOptional<z.ZodString>;
|
|
28
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
28
29
|
}, "strip", z.ZodTypeAny, {
|
|
29
30
|
className?: string | undefined;
|
|
30
31
|
style?: CSSProperties | undefined;
|
|
@@ -33,8 +34,8 @@ export declare const AvatarSchema: z.ZodObject<{
|
|
|
33
34
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
34
35
|
}>>;
|
|
35
36
|
fallback: z.ZodOptional<z.ZodObject<{
|
|
36
|
-
className: z.
|
|
37
|
-
style: z.
|
|
37
|
+
className: z.ZodOptional<z.ZodString>;
|
|
38
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
38
39
|
}, "strip", z.ZodTypeAny, {
|
|
39
40
|
className?: string | undefined;
|
|
40
41
|
style?: CSSProperties | undefined;
|
|
@@ -69,10 +70,10 @@ export declare const AvatarSchema: z.ZodObject<{
|
|
|
69
70
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
70
71
|
} | undefined;
|
|
71
72
|
}>;
|
|
72
|
-
export declare const
|
|
73
|
+
export declare const blockThemeSchema: z.ZodObject<{
|
|
73
74
|
button: z.ZodOptional<z.ZodObject<{
|
|
74
|
-
className: z.
|
|
75
|
-
style: z.
|
|
75
|
+
className: z.ZodOptional<z.ZodString>;
|
|
76
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
76
77
|
}, "strip", z.ZodTypeAny, {
|
|
77
78
|
className?: string | undefined;
|
|
78
79
|
style?: CSSProperties | undefined;
|
|
@@ -81,8 +82,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
81
82
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
82
83
|
}>>;
|
|
83
84
|
text: z.ZodRecord<z.ZodEnum<["heading1", "heading2", "heading3", "text", "horizontalRule", "link", "italic", "bold", "orderedList", "unorderedList", "listItem", "lineBreak", "pre"]>, z.ZodOptional<z.ZodObject<{
|
|
84
|
-
className: z.
|
|
85
|
-
style: z.
|
|
85
|
+
className: z.ZodOptional<z.ZodString>;
|
|
86
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
86
87
|
}, "strip", z.ZodTypeAny, {
|
|
87
88
|
className?: string | undefined;
|
|
88
89
|
style?: CSSProperties | undefined;
|
|
@@ -92,8 +93,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
92
93
|
}>>>;
|
|
93
94
|
image: z.ZodOptional<z.ZodObject<{
|
|
94
95
|
image: z.ZodOptional<z.ZodObject<{
|
|
95
|
-
className: z.
|
|
96
|
-
style: z.
|
|
96
|
+
className: z.ZodOptional<z.ZodString>;
|
|
97
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
97
98
|
}, "strip", z.ZodTypeAny, {
|
|
98
99
|
className?: string | undefined;
|
|
99
100
|
style?: CSSProperties | undefined;
|
|
@@ -102,8 +103,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
102
103
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
103
104
|
}>>;
|
|
104
105
|
placeholder: z.ZodOptional<z.ZodObject<{
|
|
105
|
-
className: z.
|
|
106
|
-
style: z.
|
|
106
|
+
className: z.ZodOptional<z.ZodString>;
|
|
107
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
107
108
|
}, "strip", z.ZodTypeAny, {
|
|
108
109
|
className?: string | undefined;
|
|
109
110
|
style?: CSSProperties | undefined;
|
|
@@ -131,8 +132,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
131
132
|
} | undefined;
|
|
132
133
|
}>>;
|
|
133
134
|
audio: z.ZodOptional<z.ZodObject<{
|
|
134
|
-
className: z.
|
|
135
|
-
style: z.
|
|
135
|
+
className: z.ZodOptional<z.ZodString>;
|
|
136
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
136
137
|
}, "strip", z.ZodTypeAny, {
|
|
137
138
|
className?: string | undefined;
|
|
138
139
|
style?: CSSProperties | undefined;
|
|
@@ -141,8 +142,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
141
142
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
142
143
|
}>>;
|
|
143
144
|
video: z.ZodOptional<z.ZodObject<{
|
|
144
|
-
className: z.
|
|
145
|
-
style: z.
|
|
145
|
+
className: z.ZodOptional<z.ZodString>;
|
|
146
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
146
147
|
}, "strip", z.ZodTypeAny, {
|
|
147
148
|
className?: string | undefined;
|
|
148
149
|
style?: CSSProperties | undefined;
|
|
@@ -152,8 +153,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
152
153
|
}>>;
|
|
153
154
|
file: z.ZodOptional<z.ZodObject<{
|
|
154
155
|
container: z.ZodOptional<z.ZodObject<{
|
|
155
|
-
className: z.
|
|
156
|
-
style: z.
|
|
156
|
+
className: z.ZodOptional<z.ZodString>;
|
|
157
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
157
158
|
}, "strip", z.ZodTypeAny, {
|
|
158
159
|
className?: string | undefined;
|
|
159
160
|
style?: CSSProperties | undefined;
|
|
@@ -162,8 +163,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
162
163
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
163
164
|
}>>;
|
|
164
165
|
title: z.ZodOptional<z.ZodObject<{
|
|
165
|
-
className: z.
|
|
166
|
-
style: z.
|
|
166
|
+
className: z.ZodOptional<z.ZodString>;
|
|
167
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
167
168
|
}, "strip", z.ZodTypeAny, {
|
|
168
169
|
className?: string | undefined;
|
|
169
170
|
style?: CSSProperties | undefined;
|
|
@@ -172,8 +173,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
172
173
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
173
174
|
}>>;
|
|
174
175
|
icon: z.ZodOptional<z.ZodObject<{
|
|
175
|
-
className: z.
|
|
176
|
-
style: z.
|
|
176
|
+
className: z.ZodOptional<z.ZodString>;
|
|
177
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
177
178
|
}, "strip", z.ZodTypeAny, {
|
|
178
179
|
className?: string | undefined;
|
|
179
180
|
style?: CSSProperties | undefined;
|
|
@@ -210,8 +211,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
210
211
|
}>>;
|
|
211
212
|
location: z.ZodOptional<z.ZodObject<{
|
|
212
213
|
container: z.ZodOptional<z.ZodObject<{
|
|
213
|
-
className: z.
|
|
214
|
-
style: z.
|
|
214
|
+
className: z.ZodOptional<z.ZodString>;
|
|
215
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
215
216
|
}, "strip", z.ZodTypeAny, {
|
|
216
217
|
className?: string | undefined;
|
|
217
218
|
style?: CSSProperties | undefined;
|
|
@@ -220,8 +221,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
220
221
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
221
222
|
}>>;
|
|
222
223
|
title: z.ZodOptional<z.ZodObject<{
|
|
223
|
-
className: z.
|
|
224
|
-
style: z.
|
|
224
|
+
className: z.ZodOptional<z.ZodString>;
|
|
225
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
225
226
|
}, "strip", z.ZodTypeAny, {
|
|
226
227
|
className?: string | undefined;
|
|
227
228
|
style?: CSSProperties | undefined;
|
|
@@ -230,8 +231,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
230
231
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
231
232
|
}>>;
|
|
232
233
|
icon: z.ZodOptional<z.ZodObject<{
|
|
233
|
-
className: z.
|
|
234
|
-
style: z.
|
|
234
|
+
className: z.ZodOptional<z.ZodString>;
|
|
235
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
235
236
|
}, "strip", z.ZodTypeAny, {
|
|
236
237
|
className?: string | undefined;
|
|
237
238
|
style?: CSSProperties | undefined;
|
|
@@ -267,8 +268,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
267
268
|
} | undefined;
|
|
268
269
|
}>>;
|
|
269
270
|
column: z.ZodOptional<z.ZodObject<{
|
|
270
|
-
className: z.
|
|
271
|
-
style: z.
|
|
271
|
+
className: z.ZodOptional<z.ZodString>;
|
|
272
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
272
273
|
}, "strip", z.ZodTypeAny, {
|
|
273
274
|
className?: string | undefined;
|
|
274
275
|
style?: CSSProperties | undefined;
|
|
@@ -277,8 +278,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
277
278
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
278
279
|
}>>;
|
|
279
280
|
row: z.ZodOptional<z.ZodObject<{
|
|
280
|
-
className: z.
|
|
281
|
-
style: z.
|
|
281
|
+
className: z.ZodOptional<z.ZodString>;
|
|
282
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
282
283
|
}, "strip", z.ZodTypeAny, {
|
|
283
284
|
className?: string | undefined;
|
|
284
285
|
style?: CSSProperties | undefined;
|
|
@@ -287,8 +288,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
287
288
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
288
289
|
}>>;
|
|
289
290
|
bubble: z.ZodOptional<z.ZodObject<{
|
|
290
|
-
className: z.
|
|
291
|
-
style: z.
|
|
291
|
+
className: z.ZodOptional<z.ZodString>;
|
|
292
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
292
293
|
}, "strip", z.ZodTypeAny, {
|
|
293
294
|
className?: string | undefined;
|
|
294
295
|
style?: CSSProperties | undefined;
|
|
@@ -298,8 +299,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
298
299
|
}>>;
|
|
299
300
|
carousel: z.ZodOptional<z.ZodObject<{
|
|
300
301
|
container: z.ZodOptional<z.ZodObject<{
|
|
301
|
-
className: z.
|
|
302
|
-
style: z.
|
|
302
|
+
className: z.ZodOptional<z.ZodString>;
|
|
303
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
303
304
|
}, "strip", z.ZodTypeAny, {
|
|
304
305
|
className?: string | undefined;
|
|
305
306
|
style?: CSSProperties | undefined;
|
|
@@ -308,8 +309,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
308
309
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
309
310
|
}>>;
|
|
310
311
|
slidesContainer: z.ZodOptional<z.ZodObject<{
|
|
311
|
-
className: z.
|
|
312
|
-
style: z.
|
|
312
|
+
className: z.ZodOptional<z.ZodString>;
|
|
313
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
313
314
|
}, "strip", z.ZodTypeAny, {
|
|
314
315
|
className?: string | undefined;
|
|
315
316
|
style?: CSSProperties | undefined;
|
|
@@ -318,8 +319,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
318
319
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
319
320
|
}>>;
|
|
320
321
|
backButton: z.ZodOptional<z.ZodObject<{
|
|
321
|
-
className: z.
|
|
322
|
-
style: z.
|
|
322
|
+
className: z.ZodOptional<z.ZodString>;
|
|
323
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
323
324
|
}, "strip", z.ZodTypeAny, {
|
|
324
325
|
className?: string | undefined;
|
|
325
326
|
style?: CSSProperties | undefined;
|
|
@@ -328,8 +329,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
328
329
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
329
330
|
}>>;
|
|
330
331
|
nextButton: z.ZodOptional<z.ZodObject<{
|
|
331
|
-
className: z.
|
|
332
|
-
style: z.
|
|
332
|
+
className: z.ZodOptional<z.ZodString>;
|
|
333
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
333
334
|
}, "strip", z.ZodTypeAny, {
|
|
334
335
|
className?: string | undefined;
|
|
335
336
|
style?: CSSProperties | undefined;
|
|
@@ -375,8 +376,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
375
376
|
dropdown: z.ZodOptional<z.ZodObject<{
|
|
376
377
|
button: z.ZodOptional<z.ZodObject<{
|
|
377
378
|
container: z.ZodOptional<z.ZodObject<{
|
|
378
|
-
className: z.
|
|
379
|
-
style: z.
|
|
379
|
+
className: z.ZodOptional<z.ZodString>;
|
|
380
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
380
381
|
}, "strip", z.ZodTypeAny, {
|
|
381
382
|
className?: string | undefined;
|
|
382
383
|
style?: CSSProperties | undefined;
|
|
@@ -385,8 +386,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
385
386
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
386
387
|
}>>;
|
|
387
388
|
icon: z.ZodOptional<z.ZodObject<{
|
|
388
|
-
className: z.
|
|
389
|
-
style: z.
|
|
389
|
+
className: z.ZodOptional<z.ZodString>;
|
|
390
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
390
391
|
}, "strip", z.ZodTypeAny, {
|
|
391
392
|
className?: string | undefined;
|
|
392
393
|
style?: CSSProperties | undefined;
|
|
@@ -395,8 +396,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
395
396
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
396
397
|
}>>;
|
|
397
398
|
text: z.ZodOptional<z.ZodObject<{
|
|
398
|
-
className: z.
|
|
399
|
-
style: z.
|
|
399
|
+
className: z.ZodOptional<z.ZodString>;
|
|
400
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
400
401
|
}, "strip", z.ZodTypeAny, {
|
|
401
402
|
className?: string | undefined;
|
|
402
403
|
style?: CSSProperties | undefined;
|
|
@@ -433,8 +434,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
433
434
|
}>>;
|
|
434
435
|
content: z.ZodOptional<z.ZodObject<{
|
|
435
436
|
container: z.ZodOptional<z.ZodObject<{
|
|
436
|
-
className: z.
|
|
437
|
-
style: z.
|
|
437
|
+
className: z.ZodOptional<z.ZodString>;
|
|
438
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
438
439
|
}, "strip", z.ZodTypeAny, {
|
|
439
440
|
className?: string | undefined;
|
|
440
441
|
style?: CSSProperties | undefined;
|
|
@@ -443,8 +444,8 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
443
444
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
444
445
|
}>>;
|
|
445
446
|
item: z.ZodOptional<z.ZodObject<{
|
|
446
|
-
className: z.
|
|
447
|
-
style: z.
|
|
447
|
+
className: z.ZodOptional<z.ZodString>;
|
|
448
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
448
449
|
}, "strip", z.ZodTypeAny, {
|
|
449
450
|
className?: string | undefined;
|
|
450
451
|
style?: CSSProperties | undefined;
|
|
@@ -523,7 +524,7 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
523
524
|
} | undefined;
|
|
524
525
|
}>>;
|
|
525
526
|
}, "strip", z.ZodTypeAny, {
|
|
526
|
-
text: Partial<Record<"
|
|
527
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
527
528
|
className?: string | undefined;
|
|
528
529
|
style?: CSSProperties | undefined;
|
|
529
530
|
} | undefined>>;
|
|
@@ -634,7 +635,7 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
634
635
|
} | undefined;
|
|
635
636
|
} | undefined;
|
|
636
637
|
}, {
|
|
637
|
-
text: Partial<Record<"
|
|
638
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
638
639
|
className?: string | undefined;
|
|
639
640
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
640
641
|
} | undefined>>;
|
|
@@ -745,11 +746,10 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
745
746
|
} | undefined;
|
|
746
747
|
} | undefined;
|
|
747
748
|
}>;
|
|
748
|
-
export
|
|
749
|
-
export declare const ThemeSchema: z.ZodObject<{
|
|
749
|
+
export declare const themeSchema: z.ZodObject<{
|
|
750
750
|
container: z.ZodOptional<z.ZodObject<{
|
|
751
|
-
className: z.
|
|
752
|
-
style: z.
|
|
751
|
+
className: z.ZodOptional<z.ZodString>;
|
|
752
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
753
753
|
}, "strip", z.ZodTypeAny, {
|
|
754
754
|
className?: string | undefined;
|
|
755
755
|
style?: CSSProperties | undefined;
|
|
@@ -759,8 +759,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
759
759
|
}>>;
|
|
760
760
|
modal: z.ZodOptional<z.ZodObject<{
|
|
761
761
|
overlay: z.ZodOptional<z.ZodObject<{
|
|
762
|
-
className: z.
|
|
763
|
-
style: z.
|
|
762
|
+
className: z.ZodOptional<z.ZodString>;
|
|
763
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
764
764
|
}, "strip", z.ZodTypeAny, {
|
|
765
765
|
className?: string | undefined;
|
|
766
766
|
style?: CSSProperties | undefined;
|
|
@@ -769,8 +769,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
769
769
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
770
770
|
}>>;
|
|
771
771
|
container: z.ZodOptional<z.ZodObject<{
|
|
772
|
-
className: z.
|
|
773
|
-
style: z.
|
|
772
|
+
className: z.ZodOptional<z.ZodString>;
|
|
773
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
774
774
|
}, "strip", z.ZodTypeAny, {
|
|
775
775
|
className?: string | undefined;
|
|
776
776
|
style?: CSSProperties | undefined;
|
|
@@ -780,8 +780,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
780
780
|
}>>;
|
|
781
781
|
dialog: z.ZodOptional<z.ZodObject<{
|
|
782
782
|
container: z.ZodOptional<z.ZodObject<{
|
|
783
|
-
className: z.
|
|
784
|
-
style: z.
|
|
783
|
+
className: z.ZodOptional<z.ZodString>;
|
|
784
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
785
785
|
}, "strip", z.ZodTypeAny, {
|
|
786
786
|
className?: string | undefined;
|
|
787
787
|
style?: CSSProperties | undefined;
|
|
@@ -791,8 +791,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
791
791
|
}>>;
|
|
792
792
|
title: z.ZodOptional<z.ZodObject<{
|
|
793
793
|
container: z.ZodOptional<z.ZodObject<{
|
|
794
|
-
className: z.
|
|
795
|
-
style: z.
|
|
794
|
+
className: z.ZodOptional<z.ZodString>;
|
|
795
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
797
|
className?: string | undefined;
|
|
798
798
|
style?: CSSProperties | undefined;
|
|
@@ -801,8 +801,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
801
801
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
802
802
|
}>>;
|
|
803
803
|
text: z.ZodOptional<z.ZodObject<{
|
|
804
|
-
className: z.
|
|
805
|
-
style: z.
|
|
804
|
+
className: z.ZodOptional<z.ZodString>;
|
|
805
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
806
806
|
}, "strip", z.ZodTypeAny, {
|
|
807
807
|
className?: string | undefined;
|
|
808
808
|
style?: CSSProperties | undefined;
|
|
@@ -811,8 +811,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
811
811
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
812
812
|
}>>;
|
|
813
813
|
closeIcon: z.ZodOptional<z.ZodObject<{
|
|
814
|
-
className: z.
|
|
815
|
-
style: z.
|
|
814
|
+
className: z.ZodOptional<z.ZodString>;
|
|
815
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
816
816
|
}, "strip", z.ZodTypeAny, {
|
|
817
817
|
className?: string | undefined;
|
|
818
818
|
style?: CSSProperties | undefined;
|
|
@@ -848,8 +848,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
848
848
|
} | undefined;
|
|
849
849
|
}>>;
|
|
850
850
|
content: z.ZodOptional<z.ZodObject<{
|
|
851
|
-
className: z.
|
|
852
|
-
style: z.
|
|
851
|
+
className: z.ZodOptional<z.ZodString>;
|
|
852
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
853
853
|
}, "strip", z.ZodTypeAny, {
|
|
854
854
|
className?: string | undefined;
|
|
855
855
|
style?: CSSProperties | undefined;
|
|
@@ -859,8 +859,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
859
859
|
}>>;
|
|
860
860
|
newConversation: z.ZodOptional<z.ZodObject<{
|
|
861
861
|
text: z.ZodOptional<z.ZodObject<{
|
|
862
|
-
className: z.
|
|
863
|
-
style: z.
|
|
862
|
+
className: z.ZodOptional<z.ZodString>;
|
|
863
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
864
864
|
}, "strip", z.ZodTypeAny, {
|
|
865
865
|
className?: string | undefined;
|
|
866
866
|
style?: CSSProperties | undefined;
|
|
@@ -869,8 +869,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
869
869
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
870
870
|
}>>;
|
|
871
871
|
button: z.ZodOptional<z.ZodObject<{
|
|
872
|
-
className: z.
|
|
873
|
-
style: z.
|
|
872
|
+
className: z.ZodOptional<z.ZodString>;
|
|
873
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
874
874
|
}, "strip", z.ZodTypeAny, {
|
|
875
875
|
className?: string | undefined;
|
|
876
876
|
style?: CSSProperties | undefined;
|
|
@@ -1053,8 +1053,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1053
1053
|
}>>;
|
|
1054
1054
|
notification: z.ZodOptional<z.ZodObject<{
|
|
1055
1055
|
container: z.ZodOptional<z.ZodObject<{
|
|
1056
|
-
className: z.
|
|
1057
|
-
style: z.
|
|
1056
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1057
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1058
1058
|
}, "strip", z.ZodTypeAny, {
|
|
1059
1059
|
className?: string | undefined;
|
|
1060
1060
|
style?: CSSProperties | undefined;
|
|
@@ -1063,8 +1063,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1063
1063
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1064
1064
|
}>>;
|
|
1065
1065
|
title: z.ZodOptional<z.ZodObject<{
|
|
1066
|
-
className: z.
|
|
1067
|
-
style: z.
|
|
1066
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1067
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1068
1068
|
}, "strip", z.ZodTypeAny, {
|
|
1069
1069
|
className?: string | undefined;
|
|
1070
1070
|
style?: CSSProperties | undefined;
|
|
@@ -1073,8 +1073,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1073
1073
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1074
1074
|
}>>;
|
|
1075
1075
|
description: z.ZodOptional<z.ZodObject<{
|
|
1076
|
-
className: z.
|
|
1077
|
-
style: z.
|
|
1076
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1077
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1078
1078
|
}, "strip", z.ZodTypeAny, {
|
|
1079
1079
|
className?: string | undefined;
|
|
1080
1080
|
style?: CSSProperties | undefined;
|
|
@@ -1083,8 +1083,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1083
1083
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1084
1084
|
}>>;
|
|
1085
1085
|
icon: z.ZodOptional<z.ZodObject<{
|
|
1086
|
-
className: z.
|
|
1087
|
-
style: z.
|
|
1086
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1087
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1088
1088
|
}, "strip", z.ZodTypeAny, {
|
|
1089
1089
|
className?: string | undefined;
|
|
1090
1090
|
style?: CSSProperties | undefined;
|
|
@@ -1093,8 +1093,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1093
1093
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1094
1094
|
}>>;
|
|
1095
1095
|
closeIcon: z.ZodOptional<z.ZodObject<{
|
|
1096
|
-
className: z.
|
|
1097
|
-
style: z.
|
|
1096
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1097
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1098
1098
|
}, "strip", z.ZodTypeAny, {
|
|
1099
1099
|
className?: string | undefined;
|
|
1100
1100
|
style?: CSSProperties | undefined;
|
|
@@ -1147,8 +1147,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1147
1147
|
}>>;
|
|
1148
1148
|
header: z.ZodOptional<z.ZodObject<{
|
|
1149
1149
|
container: z.ZodOptional<z.ZodObject<{
|
|
1150
|
-
className: z.
|
|
1151
|
-
style: z.
|
|
1150
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1151
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1152
1152
|
}, "strip", z.ZodTypeAny, {
|
|
1153
1153
|
className?: string | undefined;
|
|
1154
1154
|
style?: CSSProperties | undefined;
|
|
@@ -1158,8 +1158,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1158
1158
|
}>>;
|
|
1159
1159
|
content: z.ZodObject<{
|
|
1160
1160
|
container: z.ZodOptional<z.ZodObject<{
|
|
1161
|
-
className: z.
|
|
1162
|
-
style: z.
|
|
1161
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1162
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1163
1163
|
}, "strip", z.ZodTypeAny, {
|
|
1164
1164
|
className?: string | undefined;
|
|
1165
1165
|
style?: CSSProperties | undefined;
|
|
@@ -1168,8 +1168,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1168
1168
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1169
1169
|
}>>;
|
|
1170
1170
|
title: z.ZodOptional<z.ZodObject<{
|
|
1171
|
-
className: z.
|
|
1172
|
-
style: z.
|
|
1171
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1172
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1173
1173
|
}, "strip", z.ZodTypeAny, {
|
|
1174
1174
|
className?: string | undefined;
|
|
1175
1175
|
style?: CSSProperties | undefined;
|
|
@@ -1178,8 +1178,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1178
1178
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1179
1179
|
}>>;
|
|
1180
1180
|
description: z.ZodOptional<z.ZodObject<{
|
|
1181
|
-
className: z.
|
|
1182
|
-
style: z.
|
|
1181
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1183
1183
|
}, "strip", z.ZodTypeAny, {
|
|
1184
1184
|
className?: string | undefined;
|
|
1185
1185
|
style?: CSSProperties | undefined;
|
|
@@ -1189,8 +1189,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1189
1189
|
}>>;
|
|
1190
1190
|
avatar: z.ZodOptional<z.ZodObject<{
|
|
1191
1191
|
container: z.ZodOptional<z.ZodObject<{
|
|
1192
|
-
className: z.
|
|
1193
|
-
style: z.
|
|
1192
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1193
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1194
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1195
1195
|
className?: string | undefined;
|
|
1196
1196
|
style?: CSSProperties | undefined;
|
|
@@ -1199,8 +1199,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1199
1199
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1200
1200
|
}>>;
|
|
1201
1201
|
image: z.ZodOptional<z.ZodObject<{
|
|
1202
|
-
className: z.
|
|
1203
|
-
style: z.
|
|
1202
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1203
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1204
1204
|
}, "strip", z.ZodTypeAny, {
|
|
1205
1205
|
className?: string | undefined;
|
|
1206
1206
|
style?: CSSProperties | undefined;
|
|
@@ -1209,8 +1209,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1209
1209
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1210
1210
|
}>>;
|
|
1211
1211
|
fallback: z.ZodOptional<z.ZodObject<{
|
|
1212
|
-
className: z.
|
|
1213
|
-
style: z.
|
|
1212
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1214
1214
|
}, "strip", z.ZodTypeAny, {
|
|
1215
1215
|
className?: string | undefined;
|
|
1216
1216
|
style?: CSSProperties | undefined;
|
|
@@ -1247,8 +1247,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1247
1247
|
}>>;
|
|
1248
1248
|
actions: z.ZodOptional<z.ZodObject<{
|
|
1249
1249
|
container: z.ZodOptional<z.ZodObject<{
|
|
1250
|
-
className: z.
|
|
1251
|
-
style: z.
|
|
1250
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1251
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1252
1252
|
}, "strip", z.ZodTypeAny, {
|
|
1253
1253
|
className?: string | undefined;
|
|
1254
1254
|
style?: CSSProperties | undefined;
|
|
@@ -1257,8 +1257,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1257
1257
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1258
1258
|
}>>;
|
|
1259
1259
|
icons: z.ZodOptional<z.ZodObject<{
|
|
1260
|
-
className: z.
|
|
1261
|
-
style: z.
|
|
1260
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1261
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1262
1262
|
}, "strip", z.ZodTypeAny, {
|
|
1263
1263
|
className?: string | undefined;
|
|
1264
1264
|
style?: CSSProperties | undefined;
|
|
@@ -1362,8 +1362,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1362
1362
|
}>;
|
|
1363
1363
|
expandedContent: z.ZodOptional<z.ZodObject<{
|
|
1364
1364
|
container: z.ZodOptional<z.ZodObject<{
|
|
1365
|
-
className: z.
|
|
1366
|
-
style: z.
|
|
1365
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1366
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1367
1367
|
}, "strip", z.ZodTypeAny, {
|
|
1368
1368
|
className?: string | undefined;
|
|
1369
1369
|
style?: CSSProperties | undefined;
|
|
@@ -1373,8 +1373,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1373
1373
|
}>>;
|
|
1374
1374
|
descriptionItems: z.ZodOptional<z.ZodObject<{
|
|
1375
1375
|
container: z.ZodOptional<z.ZodObject<{
|
|
1376
|
-
className: z.
|
|
1377
|
-
style: z.
|
|
1376
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1377
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1378
1378
|
}, "strip", z.ZodTypeAny, {
|
|
1379
1379
|
className?: string | undefined;
|
|
1380
1380
|
style?: CSSProperties | undefined;
|
|
@@ -1383,8 +1383,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1383
1383
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1384
1384
|
}>>;
|
|
1385
1385
|
icon: z.ZodOptional<z.ZodObject<{
|
|
1386
|
-
className: z.
|
|
1387
|
-
style: z.
|
|
1386
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1387
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1388
1388
|
}, "strip", z.ZodTypeAny, {
|
|
1389
1389
|
className?: string | undefined;
|
|
1390
1390
|
style?: CSSProperties | undefined;
|
|
@@ -1393,8 +1393,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1393
1393
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1394
1394
|
}>>;
|
|
1395
1395
|
text: z.ZodOptional<z.ZodObject<{
|
|
1396
|
-
className: z.
|
|
1397
|
-
style: z.
|
|
1396
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1397
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1398
1398
|
}, "strip", z.ZodTypeAny, {
|
|
1399
1399
|
className?: string | undefined;
|
|
1400
1400
|
style?: CSSProperties | undefined;
|
|
@@ -1403,8 +1403,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1403
1403
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1404
1404
|
}>>;
|
|
1405
1405
|
link: z.ZodOptional<z.ZodObject<{
|
|
1406
|
-
className: z.
|
|
1407
|
-
style: z.
|
|
1406
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1407
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1408
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1409
1409
|
className?: string | undefined;
|
|
1410
1410
|
style?: CSSProperties | undefined;
|
|
@@ -1496,8 +1496,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1496
1496
|
}>>;
|
|
1497
1497
|
description: z.ZodOptional<z.ZodObject<{
|
|
1498
1498
|
container: z.ZodOptional<z.ZodObject<{
|
|
1499
|
-
className: z.
|
|
1500
|
-
style: z.
|
|
1499
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1500
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1501
1501
|
}, "strip", z.ZodTypeAny, {
|
|
1502
1502
|
className?: string | undefined;
|
|
1503
1503
|
style?: CSSProperties | undefined;
|
|
@@ -1506,8 +1506,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1506
1506
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1507
1507
|
}>>;
|
|
1508
1508
|
title: z.ZodOptional<z.ZodObject<{
|
|
1509
|
-
className: z.
|
|
1510
|
-
style: z.
|
|
1509
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1510
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1511
1511
|
}, "strip", z.ZodTypeAny, {
|
|
1512
1512
|
className?: string | undefined;
|
|
1513
1513
|
style?: CSSProperties | undefined;
|
|
@@ -1516,8 +1516,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1516
1516
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1517
1517
|
}>>;
|
|
1518
1518
|
subtitle: z.ZodOptional<z.ZodObject<{
|
|
1519
|
-
className: z.
|
|
1520
|
-
style: z.
|
|
1519
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1520
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1521
1521
|
}, "strip", z.ZodTypeAny, {
|
|
1522
1522
|
className?: string | undefined;
|
|
1523
1523
|
style?: CSSProperties | undefined;
|
|
@@ -1553,8 +1553,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1553
1553
|
} | undefined;
|
|
1554
1554
|
}>>;
|
|
1555
1555
|
newConversationIcon: z.ZodOptional<z.ZodObject<{
|
|
1556
|
-
className: z.
|
|
1557
|
-
style: z.
|
|
1556
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1557
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1558
1558
|
}, "strip", z.ZodTypeAny, {
|
|
1559
1559
|
className?: string | undefined;
|
|
1560
1560
|
style?: CSSProperties | undefined;
|
|
@@ -1735,8 +1735,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1735
1735
|
}>>;
|
|
1736
1736
|
composer: z.ZodOptional<z.ZodObject<{
|
|
1737
1737
|
container: z.ZodOptional<z.ZodObject<{
|
|
1738
|
-
className: z.
|
|
1739
|
-
style: z.
|
|
1738
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1739
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1740
1740
|
}, "strip", z.ZodTypeAny, {
|
|
1741
1741
|
className?: string | undefined;
|
|
1742
1742
|
style?: CSSProperties | undefined;
|
|
@@ -1745,8 +1745,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1745
1745
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1746
1746
|
}>>;
|
|
1747
1747
|
input: z.ZodOptional<z.ZodObject<{
|
|
1748
|
-
className: z.
|
|
1749
|
-
style: z.
|
|
1748
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1749
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1750
1750
|
}, "strip", z.ZodTypeAny, {
|
|
1751
1751
|
className?: string | undefined;
|
|
1752
1752
|
style?: CSSProperties | undefined;
|
|
@@ -1756,8 +1756,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1756
1756
|
}>>;
|
|
1757
1757
|
button: z.ZodOptional<z.ZodObject<{
|
|
1758
1758
|
container: z.ZodOptional<z.ZodObject<{
|
|
1759
|
-
className: z.
|
|
1760
|
-
style: z.
|
|
1759
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1760
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1761
1761
|
}, "strip", z.ZodTypeAny, {
|
|
1762
1762
|
className?: string | undefined;
|
|
1763
1763
|
style?: CSSProperties | undefined;
|
|
@@ -1766,8 +1766,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1766
1766
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1767
1767
|
}>>;
|
|
1768
1768
|
icon: z.ZodOptional<z.ZodObject<{
|
|
1769
|
-
className: z.
|
|
1770
|
-
style: z.
|
|
1769
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1770
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1771
1771
|
}, "strip", z.ZodTypeAny, {
|
|
1772
1772
|
className?: string | undefined;
|
|
1773
1773
|
style?: CSSProperties | undefined;
|
|
@@ -1835,8 +1835,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1835
1835
|
}>>;
|
|
1836
1836
|
fab: z.ZodOptional<z.ZodObject<{
|
|
1837
1837
|
icon: z.ZodOptional<z.ZodObject<{
|
|
1838
|
-
className: z.
|
|
1839
|
-
style: z.
|
|
1838
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1839
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1840
1840
|
}, "strip", z.ZodTypeAny, {
|
|
1841
1841
|
className?: string | undefined;
|
|
1842
1842
|
style?: CSSProperties | undefined;
|
|
@@ -1845,8 +1845,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1845
1845
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1846
1846
|
}>>;
|
|
1847
1847
|
container: z.ZodOptional<z.ZodObject<{
|
|
1848
|
-
className: z.
|
|
1849
|
-
style: z.
|
|
1848
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1849
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1850
1850
|
}, "strip", z.ZodTypeAny, {
|
|
1851
1851
|
className?: string | undefined;
|
|
1852
1852
|
style?: CSSProperties | undefined;
|
|
@@ -1875,8 +1875,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1875
1875
|
}>>;
|
|
1876
1876
|
messageList: z.ZodOptional<z.ZodObject<{
|
|
1877
1877
|
container: z.ZodOptional<z.ZodObject<{
|
|
1878
|
-
className: z.
|
|
1879
|
-
style: z.
|
|
1878
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1879
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1880
1880
|
}, "strip", z.ZodTypeAny, {
|
|
1881
1881
|
className?: string | undefined;
|
|
1882
1882
|
style?: CSSProperties | undefined;
|
|
@@ -1886,8 +1886,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1886
1886
|
}>>;
|
|
1887
1887
|
marquee: z.ZodOptional<z.ZodObject<{
|
|
1888
1888
|
content: z.ZodOptional<z.ZodObject<{
|
|
1889
|
-
className: z.
|
|
1890
|
-
style: z.
|
|
1889
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1890
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1891
1891
|
}, "strip", z.ZodTypeAny, {
|
|
1892
1892
|
className?: string | undefined;
|
|
1893
1893
|
style?: CSSProperties | undefined;
|
|
@@ -1896,8 +1896,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1896
1896
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1897
1897
|
}>>;
|
|
1898
1898
|
title: z.ZodOptional<z.ZodObject<{
|
|
1899
|
-
className: z.
|
|
1900
|
-
style: z.
|
|
1899
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1900
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1901
1901
|
}, "strip", z.ZodTypeAny, {
|
|
1902
1902
|
className?: string | undefined;
|
|
1903
1903
|
style?: CSSProperties | undefined;
|
|
@@ -1906,8 +1906,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1906
1906
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1907
1907
|
}>>;
|
|
1908
1908
|
description: z.ZodOptional<z.ZodObject<{
|
|
1909
|
-
className: z.
|
|
1910
|
-
style: z.
|
|
1909
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1910
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1911
1911
|
}, "strip", z.ZodTypeAny, {
|
|
1912
1912
|
className?: string | undefined;
|
|
1913
1913
|
style?: CSSProperties | undefined;
|
|
@@ -1917,8 +1917,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1917
1917
|
}>>;
|
|
1918
1918
|
avatar: z.ZodOptional<z.ZodObject<{
|
|
1919
1919
|
container: z.ZodOptional<z.ZodObject<{
|
|
1920
|
-
className: z.
|
|
1921
|
-
style: z.
|
|
1920
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1921
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1922
1922
|
}, "strip", z.ZodTypeAny, {
|
|
1923
1923
|
className?: string | undefined;
|
|
1924
1924
|
style?: CSSProperties | undefined;
|
|
@@ -1927,8 +1927,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1927
1927
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1928
1928
|
}>>;
|
|
1929
1929
|
image: z.ZodOptional<z.ZodObject<{
|
|
1930
|
-
className: z.
|
|
1931
|
-
style: z.
|
|
1930
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1931
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1932
1932
|
}, "strip", z.ZodTypeAny, {
|
|
1933
1933
|
className?: string | undefined;
|
|
1934
1934
|
style?: CSSProperties | undefined;
|
|
@@ -1937,8 +1937,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1937
1937
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1938
1938
|
}>>;
|
|
1939
1939
|
fallback: z.ZodOptional<z.ZodObject<{
|
|
1940
|
-
className: z.
|
|
1941
|
-
style: z.
|
|
1940
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1941
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1942
1942
|
}, "strip", z.ZodTypeAny, {
|
|
1943
1943
|
className?: string | undefined;
|
|
1944
1944
|
style?: CSSProperties | undefined;
|
|
@@ -1974,8 +1974,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1974
1974
|
} | undefined;
|
|
1975
1975
|
}>>;
|
|
1976
1976
|
container: z.ZodOptional<z.ZodObject<{
|
|
1977
|
-
className: z.
|
|
1978
|
-
style: z.
|
|
1977
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1978
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
1979
1979
|
}, "strip", z.ZodTypeAny, {
|
|
1980
1980
|
className?: string | undefined;
|
|
1981
1981
|
style?: CSSProperties | undefined;
|
|
@@ -2048,8 +2048,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2048
2048
|
}>>;
|
|
2049
2049
|
scrollDownButton: z.ZodOptional<z.ZodObject<{
|
|
2050
2050
|
container: z.ZodOptional<z.ZodObject<{
|
|
2051
|
-
className: z.
|
|
2052
|
-
style: z.
|
|
2051
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2052
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2053
2053
|
}, "strip", z.ZodTypeAny, {
|
|
2054
2054
|
className?: string | undefined;
|
|
2055
2055
|
style?: CSSProperties | undefined;
|
|
@@ -2058,8 +2058,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2058
2058
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2059
2059
|
}>>;
|
|
2060
2060
|
button: z.ZodOptional<z.ZodObject<{
|
|
2061
|
-
className: z.
|
|
2062
|
-
style: z.
|
|
2061
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2062
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2063
2063
|
}, "strip", z.ZodTypeAny, {
|
|
2064
2064
|
className?: string | undefined;
|
|
2065
2065
|
style?: CSSProperties | undefined;
|
|
@@ -2068,8 +2068,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2068
2068
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2069
2069
|
}>>;
|
|
2070
2070
|
icon: z.ZodOptional<z.ZodObject<{
|
|
2071
|
-
className: z.
|
|
2072
|
-
style: z.
|
|
2071
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2072
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2073
2073
|
}, "strip", z.ZodTypeAny, {
|
|
2074
2074
|
className?: string | undefined;
|
|
2075
2075
|
style?: CSSProperties | undefined;
|
|
@@ -2209,8 +2209,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2209
2209
|
}>>;
|
|
2210
2210
|
message: z.ZodOptional<z.ZodObject<{
|
|
2211
2211
|
container: z.ZodOptional<z.ZodObject<{
|
|
2212
|
-
className: z.
|
|
2213
|
-
style: z.
|
|
2212
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2213
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2214
2214
|
}, "strip", z.ZodTypeAny, {
|
|
2215
2215
|
className?: string | undefined;
|
|
2216
2216
|
style?: CSSProperties | undefined;
|
|
@@ -2220,8 +2220,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2220
2220
|
}>>;
|
|
2221
2221
|
avatar: z.ZodOptional<z.ZodObject<{
|
|
2222
2222
|
container: z.ZodOptional<z.ZodObject<{
|
|
2223
|
-
className: z.
|
|
2224
|
-
style: z.
|
|
2223
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2224
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2225
2225
|
}, "strip", z.ZodTypeAny, {
|
|
2226
2226
|
className?: string | undefined;
|
|
2227
2227
|
style?: CSSProperties | undefined;
|
|
@@ -2230,8 +2230,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2230
2230
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2231
2231
|
}>>;
|
|
2232
2232
|
image: z.ZodOptional<z.ZodObject<{
|
|
2233
|
-
className: z.
|
|
2234
|
-
style: z.
|
|
2233
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2234
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2235
2235
|
}, "strip", z.ZodTypeAny, {
|
|
2236
2236
|
className?: string | undefined;
|
|
2237
2237
|
style?: CSSProperties | undefined;
|
|
@@ -2240,8 +2240,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2240
2240
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2241
2241
|
}>>;
|
|
2242
2242
|
fallback: z.ZodOptional<z.ZodObject<{
|
|
2243
|
-
className: z.
|
|
2244
|
-
style: z.
|
|
2243
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2244
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2245
2245
|
}, "strip", z.ZodTypeAny, {
|
|
2246
2246
|
className?: string | undefined;
|
|
2247
2247
|
style?: CSSProperties | undefined;
|
|
@@ -2278,8 +2278,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2278
2278
|
}>>;
|
|
2279
2279
|
blocks: z.ZodOptional<z.ZodObject<{
|
|
2280
2280
|
button: z.ZodOptional<z.ZodObject<{
|
|
2281
|
-
className: z.
|
|
2282
|
-
style: z.
|
|
2281
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2282
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2283
2283
|
}, "strip", z.ZodTypeAny, {
|
|
2284
2284
|
className?: string | undefined;
|
|
2285
2285
|
style?: CSSProperties | undefined;
|
|
@@ -2288,8 +2288,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2288
2288
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2289
2289
|
}>>;
|
|
2290
2290
|
text: z.ZodRecord<z.ZodEnum<["heading1", "heading2", "heading3", "text", "horizontalRule", "link", "italic", "bold", "orderedList", "unorderedList", "listItem", "lineBreak", "pre"]>, z.ZodOptional<z.ZodObject<{
|
|
2291
|
-
className: z.
|
|
2292
|
-
style: z.
|
|
2291
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2292
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2293
2293
|
}, "strip", z.ZodTypeAny, {
|
|
2294
2294
|
className?: string | undefined;
|
|
2295
2295
|
style?: CSSProperties | undefined;
|
|
@@ -2299,8 +2299,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2299
2299
|
}>>>;
|
|
2300
2300
|
image: z.ZodOptional<z.ZodObject<{
|
|
2301
2301
|
image: z.ZodOptional<z.ZodObject<{
|
|
2302
|
-
className: z.
|
|
2303
|
-
style: z.
|
|
2302
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2303
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2304
2304
|
}, "strip", z.ZodTypeAny, {
|
|
2305
2305
|
className?: string | undefined;
|
|
2306
2306
|
style?: CSSProperties | undefined;
|
|
@@ -2309,8 +2309,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2309
2309
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2310
2310
|
}>>;
|
|
2311
2311
|
placeholder: z.ZodOptional<z.ZodObject<{
|
|
2312
|
-
className: z.
|
|
2313
|
-
style: z.
|
|
2312
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2313
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2314
2314
|
}, "strip", z.ZodTypeAny, {
|
|
2315
2315
|
className?: string | undefined;
|
|
2316
2316
|
style?: CSSProperties | undefined;
|
|
@@ -2338,8 +2338,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2338
2338
|
} | undefined;
|
|
2339
2339
|
}>>;
|
|
2340
2340
|
audio: z.ZodOptional<z.ZodObject<{
|
|
2341
|
-
className: z.
|
|
2342
|
-
style: z.
|
|
2341
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2342
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2343
2343
|
}, "strip", z.ZodTypeAny, {
|
|
2344
2344
|
className?: string | undefined;
|
|
2345
2345
|
style?: CSSProperties | undefined;
|
|
@@ -2348,8 +2348,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2348
2348
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2349
2349
|
}>>;
|
|
2350
2350
|
video: z.ZodOptional<z.ZodObject<{
|
|
2351
|
-
className: z.
|
|
2352
|
-
style: z.
|
|
2351
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2352
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2353
2353
|
}, "strip", z.ZodTypeAny, {
|
|
2354
2354
|
className?: string | undefined;
|
|
2355
2355
|
style?: CSSProperties | undefined;
|
|
@@ -2359,8 +2359,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2359
2359
|
}>>;
|
|
2360
2360
|
file: z.ZodOptional<z.ZodObject<{
|
|
2361
2361
|
container: z.ZodOptional<z.ZodObject<{
|
|
2362
|
-
className: z.
|
|
2363
|
-
style: z.
|
|
2362
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2363
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2364
2364
|
}, "strip", z.ZodTypeAny, {
|
|
2365
2365
|
className?: string | undefined;
|
|
2366
2366
|
style?: CSSProperties | undefined;
|
|
@@ -2369,8 +2369,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2369
2369
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2370
2370
|
}>>;
|
|
2371
2371
|
title: z.ZodOptional<z.ZodObject<{
|
|
2372
|
-
className: z.
|
|
2373
|
-
style: z.
|
|
2372
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2373
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2374
2374
|
}, "strip", z.ZodTypeAny, {
|
|
2375
2375
|
className?: string | undefined;
|
|
2376
2376
|
style?: CSSProperties | undefined;
|
|
@@ -2379,8 +2379,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2379
2379
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2380
2380
|
}>>;
|
|
2381
2381
|
icon: z.ZodOptional<z.ZodObject<{
|
|
2382
|
-
className: z.
|
|
2383
|
-
style: z.
|
|
2382
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2383
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2384
2384
|
}, "strip", z.ZodTypeAny, {
|
|
2385
2385
|
className?: string | undefined;
|
|
2386
2386
|
style?: CSSProperties | undefined;
|
|
@@ -2417,8 +2417,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2417
2417
|
}>>;
|
|
2418
2418
|
location: z.ZodOptional<z.ZodObject<{
|
|
2419
2419
|
container: z.ZodOptional<z.ZodObject<{
|
|
2420
|
-
className: z.
|
|
2421
|
-
style: z.
|
|
2420
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2421
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2422
2422
|
}, "strip", z.ZodTypeAny, {
|
|
2423
2423
|
className?: string | undefined;
|
|
2424
2424
|
style?: CSSProperties | undefined;
|
|
@@ -2427,8 +2427,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2427
2427
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2428
2428
|
}>>;
|
|
2429
2429
|
title: z.ZodOptional<z.ZodObject<{
|
|
2430
|
-
className: z.
|
|
2431
|
-
style: z.
|
|
2430
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2431
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2432
2432
|
}, "strip", z.ZodTypeAny, {
|
|
2433
2433
|
className?: string | undefined;
|
|
2434
2434
|
style?: CSSProperties | undefined;
|
|
@@ -2437,8 +2437,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2437
2437
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2438
2438
|
}>>;
|
|
2439
2439
|
icon: z.ZodOptional<z.ZodObject<{
|
|
2440
|
-
className: z.
|
|
2441
|
-
style: z.
|
|
2440
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2441
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2442
2442
|
}, "strip", z.ZodTypeAny, {
|
|
2443
2443
|
className?: string | undefined;
|
|
2444
2444
|
style?: CSSProperties | undefined;
|
|
@@ -2474,8 +2474,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2474
2474
|
} | undefined;
|
|
2475
2475
|
}>>;
|
|
2476
2476
|
column: z.ZodOptional<z.ZodObject<{
|
|
2477
|
-
className: z.
|
|
2478
|
-
style: z.
|
|
2477
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2478
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2479
2479
|
}, "strip", z.ZodTypeAny, {
|
|
2480
2480
|
className?: string | undefined;
|
|
2481
2481
|
style?: CSSProperties | undefined;
|
|
@@ -2484,8 +2484,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2484
2484
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2485
2485
|
}>>;
|
|
2486
2486
|
row: z.ZodOptional<z.ZodObject<{
|
|
2487
|
-
className: z.
|
|
2488
|
-
style: z.
|
|
2487
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2488
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2489
2489
|
}, "strip", z.ZodTypeAny, {
|
|
2490
2490
|
className?: string | undefined;
|
|
2491
2491
|
style?: CSSProperties | undefined;
|
|
@@ -2494,8 +2494,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2494
2494
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2495
2495
|
}>>;
|
|
2496
2496
|
bubble: z.ZodOptional<z.ZodObject<{
|
|
2497
|
-
className: z.
|
|
2498
|
-
style: z.
|
|
2497
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2498
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2499
2499
|
}, "strip", z.ZodTypeAny, {
|
|
2500
2500
|
className?: string | undefined;
|
|
2501
2501
|
style?: CSSProperties | undefined;
|
|
@@ -2505,8 +2505,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2505
2505
|
}>>;
|
|
2506
2506
|
carousel: z.ZodOptional<z.ZodObject<{
|
|
2507
2507
|
container: z.ZodOptional<z.ZodObject<{
|
|
2508
|
-
className: z.
|
|
2509
|
-
style: z.
|
|
2508
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2509
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2510
2510
|
}, "strip", z.ZodTypeAny, {
|
|
2511
2511
|
className?: string | undefined;
|
|
2512
2512
|
style?: CSSProperties | undefined;
|
|
@@ -2515,8 +2515,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2515
2515
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2516
2516
|
}>>;
|
|
2517
2517
|
slidesContainer: z.ZodOptional<z.ZodObject<{
|
|
2518
|
-
className: z.
|
|
2519
|
-
style: z.
|
|
2518
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2519
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2520
2520
|
}, "strip", z.ZodTypeAny, {
|
|
2521
2521
|
className?: string | undefined;
|
|
2522
2522
|
style?: CSSProperties | undefined;
|
|
@@ -2525,8 +2525,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2525
2525
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2526
2526
|
}>>;
|
|
2527
2527
|
backButton: z.ZodOptional<z.ZodObject<{
|
|
2528
|
-
className: z.
|
|
2529
|
-
style: z.
|
|
2528
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2529
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2530
2530
|
}, "strip", z.ZodTypeAny, {
|
|
2531
2531
|
className?: string | undefined;
|
|
2532
2532
|
style?: CSSProperties | undefined;
|
|
@@ -2535,8 +2535,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2535
2535
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2536
2536
|
}>>;
|
|
2537
2537
|
nextButton: z.ZodOptional<z.ZodObject<{
|
|
2538
|
-
className: z.
|
|
2539
|
-
style: z.
|
|
2538
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2539
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2540
2540
|
}, "strip", z.ZodTypeAny, {
|
|
2541
2541
|
className?: string | undefined;
|
|
2542
2542
|
style?: CSSProperties | undefined;
|
|
@@ -2582,8 +2582,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2582
2582
|
dropdown: z.ZodOptional<z.ZodObject<{
|
|
2583
2583
|
button: z.ZodOptional<z.ZodObject<{
|
|
2584
2584
|
container: z.ZodOptional<z.ZodObject<{
|
|
2585
|
-
className: z.
|
|
2586
|
-
style: z.
|
|
2585
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2586
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2587
2587
|
}, "strip", z.ZodTypeAny, {
|
|
2588
2588
|
className?: string | undefined;
|
|
2589
2589
|
style?: CSSProperties | undefined;
|
|
@@ -2592,8 +2592,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2592
2592
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2593
2593
|
}>>;
|
|
2594
2594
|
icon: z.ZodOptional<z.ZodObject<{
|
|
2595
|
-
className: z.
|
|
2596
|
-
style: z.
|
|
2595
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2596
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2597
2597
|
}, "strip", z.ZodTypeAny, {
|
|
2598
2598
|
className?: string | undefined;
|
|
2599
2599
|
style?: CSSProperties | undefined;
|
|
@@ -2602,8 +2602,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2602
2602
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2603
2603
|
}>>;
|
|
2604
2604
|
text: z.ZodOptional<z.ZodObject<{
|
|
2605
|
-
className: z.
|
|
2606
|
-
style: z.
|
|
2605
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2606
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2607
2607
|
}, "strip", z.ZodTypeAny, {
|
|
2608
2608
|
className?: string | undefined;
|
|
2609
2609
|
style?: CSSProperties | undefined;
|
|
@@ -2640,8 +2640,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2640
2640
|
}>>;
|
|
2641
2641
|
content: z.ZodOptional<z.ZodObject<{
|
|
2642
2642
|
container: z.ZodOptional<z.ZodObject<{
|
|
2643
|
-
className: z.
|
|
2644
|
-
style: z.
|
|
2643
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2644
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2645
2645
|
}, "strip", z.ZodTypeAny, {
|
|
2646
2646
|
className?: string | undefined;
|
|
2647
2647
|
style?: CSSProperties | undefined;
|
|
@@ -2650,8 +2650,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2650
2650
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2651
2651
|
}>>;
|
|
2652
2652
|
item: z.ZodOptional<z.ZodObject<{
|
|
2653
|
-
className: z.
|
|
2654
|
-
style: z.
|
|
2653
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2654
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2655
2655
|
}, "strip", z.ZodTypeAny, {
|
|
2656
2656
|
className?: string | undefined;
|
|
2657
2657
|
style?: CSSProperties | undefined;
|
|
@@ -2730,7 +2730,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2730
2730
|
} | undefined;
|
|
2731
2731
|
}>>;
|
|
2732
2732
|
}, "strip", z.ZodTypeAny, {
|
|
2733
|
-
text: Partial<Record<"
|
|
2733
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
2734
2734
|
className?: string | undefined;
|
|
2735
2735
|
style?: CSSProperties | undefined;
|
|
2736
2736
|
} | undefined>>;
|
|
@@ -2841,7 +2841,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2841
2841
|
} | undefined;
|
|
2842
2842
|
} | undefined;
|
|
2843
2843
|
}, {
|
|
2844
|
-
text: Partial<Record<"
|
|
2844
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
2845
2845
|
className?: string | undefined;
|
|
2846
2846
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2847
2847
|
} | undefined>>;
|
|
@@ -2972,7 +2972,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2972
2972
|
} | undefined;
|
|
2973
2973
|
} | undefined;
|
|
2974
2974
|
blocks?: {
|
|
2975
|
-
text: Partial<Record<"
|
|
2975
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
2976
2976
|
className?: string | undefined;
|
|
2977
2977
|
style?: CSSProperties | undefined;
|
|
2978
2978
|
} | undefined>>;
|
|
@@ -3103,7 +3103,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3103
3103
|
} | undefined;
|
|
3104
3104
|
} | undefined;
|
|
3105
3105
|
blocks?: {
|
|
3106
|
-
text: Partial<Record<"
|
|
3106
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
3107
3107
|
className?: string | undefined;
|
|
3108
3108
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3109
3109
|
} | undefined>>;
|
|
@@ -3217,8 +3217,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3217
3217
|
}>>;
|
|
3218
3218
|
loadingIndicator: z.ZodOptional<z.ZodObject<{
|
|
3219
3219
|
container: z.ZodOptional<z.ZodObject<{
|
|
3220
|
-
className: z.
|
|
3221
|
-
style: z.
|
|
3220
|
+
className: z.ZodOptional<z.ZodString>;
|
|
3221
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
3222
3222
|
}, "strip", z.ZodTypeAny, {
|
|
3223
3223
|
className?: string | undefined;
|
|
3224
3224
|
style?: CSSProperties | undefined;
|
|
@@ -3227,8 +3227,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3227
3227
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3228
3228
|
}>>;
|
|
3229
3229
|
loader: z.ZodOptional<z.ZodObject<{
|
|
3230
|
-
className: z.
|
|
3231
|
-
style: z.
|
|
3230
|
+
className: z.ZodOptional<z.ZodString>;
|
|
3231
|
+
style: z.ZodOptional<z.ZodEffects<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, CSSProperties, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
3232
3232
|
}, "strip", z.ZodTypeAny, {
|
|
3233
3233
|
className?: string | undefined;
|
|
3234
3234
|
style?: CSSProperties | undefined;
|
|
@@ -3514,7 +3514,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3514
3514
|
} | undefined;
|
|
3515
3515
|
} | undefined;
|
|
3516
3516
|
blocks?: {
|
|
3517
|
-
text: Partial<Record<"
|
|
3517
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
3518
3518
|
className?: string | undefined;
|
|
3519
3519
|
style?: CSSProperties | undefined;
|
|
3520
3520
|
} | undefined>>;
|
|
@@ -3895,7 +3895,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3895
3895
|
} | undefined;
|
|
3896
3896
|
} | undefined;
|
|
3897
3897
|
blocks?: {
|
|
3898
|
-
text: Partial<Record<"
|
|
3898
|
+
text: Partial<Record<"link" | "heading1" | "heading2" | "heading3" | "text" | "horizontalRule" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
3899
3899
|
className?: string | undefined;
|
|
3900
3900
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3901
3901
|
} | undefined>>;
|
|
@@ -4018,4 +4018,3 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
4018
4018
|
} | undefined;
|
|
4019
4019
|
} | undefined;
|
|
4020
4020
|
}>;
|
|
4021
|
-
export {};
|