@topol.io/editor 0.3.0 → 1.0.0-alpha.0

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.
Files changed (54) hide show
  1. package/LICENSE +1 -1
  2. package/dist/topol-plugin.es.js +86 -20
  3. package/dist/topol-plugin.umd.js +1 -1
  4. package/dist/types/src/core/script-loader.d.ts +7 -0
  5. package/dist/types/src/email-editor/constants.d.ts +7 -0
  6. package/dist/types/src/email-editor/index.d.ts +97 -0
  7. package/dist/types/src/landing-page-editor/constants.d.ts +1 -0
  8. package/dist/types/src/landing-page-editor/index.d.ts +55 -0
  9. package/dist/types/src/landing-page-editor/schemas/ai/aiSchema.d.ts +15 -0
  10. package/dist/types/src/landing-page-editor/schemas/api/apiSchema.d.ts +33 -0
  11. package/dist/types/src/landing-page-editor/schemas/authHeaderConfig/authHeaderConfigScheme.d.ts +3 -0
  12. package/dist/types/src/landing-page-editor/schemas/autosave/autosaveSchema.d.ts +33 -0
  13. package/dist/types/src/landing-page-editor/schemas/comments/commentsSchema.d.ts +91 -0
  14. package/dist/types/src/landing-page-editor/schemas/contentBlock/contentBlockScheme.d.ts +470 -0
  15. package/dist/types/src/landing-page-editor/schemas/font/fontSchema.d.ts +12 -0
  16. package/dist/types/src/landing-page-editor/schemas/helpdesk/helpdeskSchema.d.ts +8 -0
  17. package/dist/types/src/landing-page-editor/schemas/image/imageSchema.d.ts +26 -0
  18. package/dist/types/src/landing-page-editor/schemas/language/languageSchema.d.ts +3 -0
  19. package/dist/types/src/landing-page-editor/schemas/mjmlStore/mjmlStoreSchema.d.ts +31 -0
  20. package/dist/types/src/landing-page-editor/schemas/notification/notificationSchema.d.ts +16 -0
  21. package/dist/types/src/landing-page-editor/schemas/openAI/openAISchema.d.ts +7 -0
  22. package/dist/types/src/landing-page-editor/schemas/pluginOptions/pluginOptionsSchema.d.ts +81 -0
  23. package/dist/types/src/landing-page-editor/schemas/premadeBlock/premadeBlockSchema.d.ts +59750 -0
  24. package/dist/types/src/landing-page-editor/schemas/premadeTemplates/premadeTemplatesSchema.d.ts +65 -0
  25. package/dist/types/src/landing-page-editor/schemas/savedBlock/savedBlockApiSchema.d.ts +44831 -0
  26. package/dist/types/src/landing-page-editor/schemas/savedBlock/savedBlockSchema.d.ts +59725 -0
  27. package/dist/types/src/landing-page-editor/schemas/template/blocks/buttonBlockSchema.d.ts +700 -0
  28. package/dist/types/src/landing-page-editor/schemas/template/blocks/carouselBlockSchema.d.ts +74 -0
  29. package/dist/types/src/landing-page-editor/schemas/template/blocks/dividerBlockSchema.d.ts +362 -0
  30. package/dist/types/src/landing-page-editor/schemas/template/blocks/imageAnGifBlockSchema.d.ts +1157 -0
  31. package/dist/types/src/landing-page-editor/schemas/template/blocks/index.d.ts +12 -0
  32. package/dist/types/src/landing-page-editor/schemas/template/blocks/rawBlockSchema.d.ts +45 -0
  33. package/dist/types/src/landing-page-editor/schemas/template/blocks/socialBlockSchema.d.ts +637 -0
  34. package/dist/types/src/landing-page-editor/schemas/template/blocks/spacerBlockSchema.d.ts +392 -0
  35. package/dist/types/src/landing-page-editor/schemas/template/blocks/textBlockSchema.d.ts +480 -0
  36. package/dist/types/src/landing-page-editor/schemas/template/blocks/videoBlockSchema.d.ts +333 -0
  37. package/dist/types/src/landing-page-editor/schemas/template/commonSchema.d.ts +265 -0
  38. package/dist/types/src/landing-page-editor/schemas/template/settingsSchema.d.ts +4812 -0
  39. package/dist/types/src/landing-page-editor/schemas/template/structure/blockSchema.d.ts +7502 -0
  40. package/dist/types/src/landing-page-editor/schemas/template/structure/columnSchema.d.ts +7983 -0
  41. package/dist/types/src/landing-page-editor/schemas/template/structure/sectionSchema.d.ts +15074 -0
  42. package/dist/types/src/landing-page-editor/schemas/template/styleSchema.d.ts +185 -0
  43. package/dist/types/src/landing-page-editor/schemas/templateSchema.d.ts +58720 -0
  44. package/dist/types/src/landing-page-editor/schemas/templateSettings/templateSettingsSchema.d.ts +4959 -0
  45. package/dist/types/src/landing-page-editor/schemas/theme/themeSchema.d.ts +40 -0
  46. package/dist/types/src/landing-page-editor/schemas/user/userSchema.d.ts +13 -0
  47. package/dist/types/src/landing-page-editor/schemas/utils/transformBorder.d.ts +9 -0
  48. package/dist/types/src/main.d.ts +71 -24
  49. package/dist/types/types/Callbacks/ICallbackPayloads.d.ts +29 -0
  50. package/dist/types/types/Callbacks/IEmailCallbacks.d.ts +109 -0
  51. package/dist/types/types/ITopolOptions.d.ts +20 -38
  52. package/dist/types/types/landing-page/ILandingPageEditorInstance.d.ts +19 -0
  53. package/dist/types/types/landing-page/ILandingPageOptions.d.ts +114 -0
  54. package/package.json +12 -6
@@ -0,0 +1,700 @@
1
+ import { z } from "zod";
2
+ export declare const TopolButtonStyleAttributesSchema: z.ZodObject<{
3
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
4
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
5
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
6
+ color: "color";
7
+ normal: "normal";
8
+ multiply: "multiply";
9
+ screen: "screen";
10
+ overlay: "overlay";
11
+ darken: "darken";
12
+ lighten: "lighten";
13
+ "color-dodge": "color-dodge";
14
+ "color-burn": "color-burn";
15
+ "hard-light": "hard-light";
16
+ "soft-light": "soft-light";
17
+ difference: "difference";
18
+ exclusion: "exclusion";
19
+ hue: "hue";
20
+ saturation: "saturation";
21
+ luminosity: "luminosity";
22
+ }>>>;
23
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
24
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
25
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
26
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
27
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
28
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
29
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
30
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
31
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
32
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
33
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
34
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
35
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
36
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
37
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
38
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
39
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
40
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
41
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
42
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
43
+ width: z.ZodCatch<z.ZodOptional<z.ZodString>>;
44
+ height: z.ZodCatch<z.ZodOptional<z.ZodString>>;
45
+ "max-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
46
+ "min-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
47
+ "max-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
48
+ "min-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
49
+ padding: z.ZodCatch<z.ZodOptional<z.ZodString>>;
50
+ margin: z.ZodCatch<z.ZodOptional<z.ZodString>>;
51
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
52
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
53
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
54
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
55
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
56
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
57
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
58
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
59
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
60
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
61
+ display: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
62
+ block: "block";
63
+ none: "none";
64
+ }>>>;
65
+ }, z.core.$strip>;
66
+ export declare const TopolButtonHoverSchema: z.ZodObject<{
67
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
68
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
69
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
70
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
71
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
72
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
73
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
74
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
75
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
76
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
77
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
78
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
79
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
80
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
81
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
82
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
83
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
84
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
85
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
86
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
87
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
88
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
89
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
90
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
91
+ color: "color";
92
+ normal: "normal";
93
+ multiply: "multiply";
94
+ screen: "screen";
95
+ overlay: "overlay";
96
+ darken: "darken";
97
+ lighten: "lighten";
98
+ "color-dodge": "color-dodge";
99
+ "color-burn": "color-burn";
100
+ "hard-light": "hard-light";
101
+ "soft-light": "soft-light";
102
+ difference: "difference";
103
+ exclusion: "exclusion";
104
+ hue: "hue";
105
+ saturation: "saturation";
106
+ luminosity: "luminosity";
107
+ }>>>;
108
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
109
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
110
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
111
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
112
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
113
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
114
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
115
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
116
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
117
+ }, z.core.$strip>;
118
+ export declare const TopolButtonBlockAttributesSchema: z.ZodObject<{
119
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
120
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
121
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
122
+ color: "color";
123
+ normal: "normal";
124
+ multiply: "multiply";
125
+ screen: "screen";
126
+ overlay: "overlay";
127
+ darken: "darken";
128
+ lighten: "lighten";
129
+ "color-dodge": "color-dodge";
130
+ "color-burn": "color-burn";
131
+ "hard-light": "hard-light";
132
+ "soft-light": "soft-light";
133
+ difference: "difference";
134
+ exclusion: "exclusion";
135
+ hue: "hue";
136
+ saturation: "saturation";
137
+ luminosity: "luminosity";
138
+ }>>>;
139
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
140
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
141
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
142
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
143
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
144
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
145
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
146
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
147
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
148
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
149
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
150
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
151
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
152
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
153
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
154
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
155
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
156
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
157
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
158
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
159
+ width: z.ZodCatch<z.ZodOptional<z.ZodString>>;
160
+ height: z.ZodCatch<z.ZodOptional<z.ZodString>>;
161
+ "max-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
162
+ "min-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
163
+ "max-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
164
+ "min-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
165
+ padding: z.ZodCatch<z.ZodOptional<z.ZodString>>;
166
+ margin: z.ZodCatch<z.ZodOptional<z.ZodString>>;
167
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
168
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
169
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
170
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
171
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
172
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
173
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
174
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
175
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
176
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
177
+ display: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
178
+ block: "block";
179
+ none: "none";
180
+ }>>>;
181
+ href: z.ZodCatch<z.ZodString>;
182
+ target: z.ZodCatch<z.ZodEnum<{
183
+ _blank: "_blank";
184
+ _self: "_self";
185
+ _parent: "_parent";
186
+ _top: "_top";
187
+ }>>;
188
+ "css-class": z.ZodOptional<z.ZodPipe<z.ZodNullable<z.ZodUnion<[z.ZodEnum<{
189
+ "": "";
190
+ hide_on_mobile: "hide_on_mobile";
191
+ hide_on_desktop: "hide_on_desktop";
192
+ }>, z.ZodArray<z.ZodString>]>>, z.ZodTransform<"" | string[] | null, string[] | z.core.$InferEnumOutput<{
193
+ "": "";
194
+ hide_on_mobile: "hide_on_mobile";
195
+ hide_on_desktop: "hide_on_desktop";
196
+ }> | null>>>;
197
+ align: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
198
+ left: "left";
199
+ right: "right";
200
+ center: "center";
201
+ }>>>;
202
+ "inner-padding": z.ZodCatch<z.ZodOptional<z.ZodString>>;
203
+ border: z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
204
+ }, z.core.$strip>;
205
+ export declare const TopolButtonBlockSchema: z.ZodObject<{
206
+ uid: z.ZodCatch<z.ZodString>;
207
+ customKey: z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
208
+ locked: z.ZodCatch<z.ZodOptional<z.ZodBoolean>>;
209
+ tagName: z.ZodLiteral<"mj-button">;
210
+ attributes: z.ZodPipe<z.ZodDefault<z.ZodObject<{
211
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
212
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
213
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
214
+ color: "color";
215
+ normal: "normal";
216
+ multiply: "multiply";
217
+ screen: "screen";
218
+ overlay: "overlay";
219
+ darken: "darken";
220
+ lighten: "lighten";
221
+ "color-dodge": "color-dodge";
222
+ "color-burn": "color-burn";
223
+ "hard-light": "hard-light";
224
+ "soft-light": "soft-light";
225
+ difference: "difference";
226
+ exclusion: "exclusion";
227
+ hue: "hue";
228
+ saturation: "saturation";
229
+ luminosity: "luminosity";
230
+ }>>>;
231
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
232
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
233
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
234
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
235
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
236
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
237
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
238
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
239
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
240
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
241
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
242
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
243
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
244
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
245
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
246
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
247
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
248
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
249
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
250
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
251
+ width: z.ZodCatch<z.ZodOptional<z.ZodString>>;
252
+ height: z.ZodCatch<z.ZodOptional<z.ZodString>>;
253
+ "max-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
254
+ "min-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
255
+ "max-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
256
+ "min-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
257
+ padding: z.ZodCatch<z.ZodOptional<z.ZodString>>;
258
+ margin: z.ZodCatch<z.ZodOptional<z.ZodString>>;
259
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
260
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
261
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
262
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
263
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
264
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
265
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
266
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
267
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
268
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
269
+ display: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
270
+ block: "block";
271
+ none: "none";
272
+ }>>>;
273
+ href: z.ZodCatch<z.ZodString>;
274
+ target: z.ZodCatch<z.ZodEnum<{
275
+ _blank: "_blank";
276
+ _self: "_self";
277
+ _parent: "_parent";
278
+ _top: "_top";
279
+ }>>;
280
+ "css-class": z.ZodOptional<z.ZodPipe<z.ZodNullable<z.ZodUnion<[z.ZodEnum<{
281
+ "": "";
282
+ hide_on_mobile: "hide_on_mobile";
283
+ hide_on_desktop: "hide_on_desktop";
284
+ }>, z.ZodArray<z.ZodString>]>>, z.ZodTransform<"" | string[] | null, string[] | z.core.$InferEnumOutput<{
285
+ "": "";
286
+ hide_on_mobile: "hide_on_mobile";
287
+ hide_on_desktop: "hide_on_desktop";
288
+ }> | null>>>;
289
+ align: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
290
+ left: "left";
291
+ right: "right";
292
+ center: "center";
293
+ }>>>;
294
+ "inner-padding": z.ZodCatch<z.ZodOptional<z.ZodString>>;
295
+ border: z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
296
+ }, z.core.$strip>>, z.ZodTransform<{
297
+ href: string;
298
+ target: z.core.$InferEnumOutput<{
299
+ _blank: "_blank";
300
+ _self: "_self";
301
+ _parent: "_parent";
302
+ _top: "_top";
303
+ }>;
304
+ overflow?: string | undefined;
305
+ opacity?: number | undefined;
306
+ "mix-blend-mode"?: z.core.$InferEnumOutput<{
307
+ color: "color";
308
+ normal: "normal";
309
+ multiply: "multiply";
310
+ screen: "screen";
311
+ overlay: "overlay";
312
+ darken: "darken";
313
+ lighten: "lighten";
314
+ "color-dodge": "color-dodge";
315
+ "color-burn": "color-burn";
316
+ "hard-light": "hard-light";
317
+ "soft-light": "soft-light";
318
+ difference: "difference";
319
+ exclusion: "exclusion";
320
+ hue: "hue";
321
+ saturation: "saturation";
322
+ luminosity: "luminosity";
323
+ }> | undefined;
324
+ cursor?: "default" | "pointer" | "auto" | "crosshair" | "move" | "not-allowed" | undefined;
325
+ "box-shadow"?: string | undefined;
326
+ "text-shadow"?: string | undefined;
327
+ filter?: string | undefined;
328
+ "backdrop-filter"?: string | undefined;
329
+ transition?: string | undefined;
330
+ transform?: string | undefined;
331
+ "transform-origin"?: string | undefined;
332
+ "backface-visibility"?: "hidden" | "visible" | undefined;
333
+ "border-radius"?: string | undefined;
334
+ "border-width"?: string | undefined;
335
+ "border-style"?: string | undefined;
336
+ "border-color"?: string | undefined;
337
+ "background-color"?: string | undefined;
338
+ "background-image"?: string | null | undefined;
339
+ "background-size"?: string | undefined;
340
+ "background-repeat"?: string | undefined;
341
+ "background-position"?: string | null | undefined;
342
+ "background-attachment"?: string | undefined;
343
+ "background-clip"?: string | undefined;
344
+ width?: string | undefined;
345
+ height?: string | undefined;
346
+ "max-width"?: string | undefined;
347
+ "min-width"?: string | undefined;
348
+ "max-height"?: string | undefined;
349
+ "min-height"?: string | undefined;
350
+ padding?: string | undefined;
351
+ margin?: string | undefined;
352
+ color?: string | undefined;
353
+ "font-family"?: string | undefined;
354
+ "font-size"?: string | undefined;
355
+ "font-weight"?: string | undefined;
356
+ "font-style"?: string | undefined;
357
+ "text-transform"?: string | undefined;
358
+ "text-decoration"?: string | undefined;
359
+ "text-align"?: string | undefined;
360
+ "line-height"?: string | number | undefined;
361
+ "letter-spacing"?: string | undefined;
362
+ display?: z.core.$InferEnumOutput<{
363
+ block: "block";
364
+ none: "none";
365
+ }> | undefined;
366
+ "css-class"?: "" | string[] | null | undefined;
367
+ align?: z.core.$InferEnumOutput<{
368
+ left: "left";
369
+ right: "right";
370
+ center: "center";
371
+ }> | undefined;
372
+ "inner-padding"?: string | undefined;
373
+ border?: string | null | undefined;
374
+ }, {
375
+ href: string;
376
+ target: z.core.$InferEnumOutput<{
377
+ _blank: "_blank";
378
+ _self: "_self";
379
+ _parent: "_parent";
380
+ _top: "_top";
381
+ }>;
382
+ overflow?: string | undefined;
383
+ opacity?: number | undefined;
384
+ "mix-blend-mode"?: z.core.$InferEnumOutput<{
385
+ color: "color";
386
+ normal: "normal";
387
+ multiply: "multiply";
388
+ screen: "screen";
389
+ overlay: "overlay";
390
+ darken: "darken";
391
+ lighten: "lighten";
392
+ "color-dodge": "color-dodge";
393
+ "color-burn": "color-burn";
394
+ "hard-light": "hard-light";
395
+ "soft-light": "soft-light";
396
+ difference: "difference";
397
+ exclusion: "exclusion";
398
+ hue: "hue";
399
+ saturation: "saturation";
400
+ luminosity: "luminosity";
401
+ }> | undefined;
402
+ cursor?: "default" | "pointer" | "auto" | "crosshair" | "move" | "not-allowed" | undefined;
403
+ "box-shadow"?: string | undefined;
404
+ "text-shadow"?: string | undefined;
405
+ filter?: string | undefined;
406
+ "backdrop-filter"?: string | undefined;
407
+ transition?: string | undefined;
408
+ transform?: string | undefined;
409
+ "transform-origin"?: string | undefined;
410
+ "backface-visibility"?: "hidden" | "visible" | undefined;
411
+ "border-radius"?: string | undefined;
412
+ "border-width"?: string | undefined;
413
+ "border-style"?: string | undefined;
414
+ "border-color"?: string | undefined;
415
+ "background-color"?: string | undefined;
416
+ "background-image"?: string | null | undefined;
417
+ "background-size"?: string | undefined;
418
+ "background-repeat"?: string | undefined;
419
+ "background-position"?: string | null | undefined;
420
+ "background-attachment"?: string | undefined;
421
+ "background-clip"?: string | undefined;
422
+ width?: string | undefined;
423
+ height?: string | undefined;
424
+ "max-width"?: string | undefined;
425
+ "min-width"?: string | undefined;
426
+ "max-height"?: string | undefined;
427
+ "min-height"?: string | undefined;
428
+ padding?: string | undefined;
429
+ margin?: string | undefined;
430
+ color?: string | undefined;
431
+ "font-family"?: string | undefined;
432
+ "font-size"?: string | undefined;
433
+ "font-weight"?: string | undefined;
434
+ "font-style"?: string | undefined;
435
+ "text-transform"?: string | undefined;
436
+ "text-decoration"?: string | undefined;
437
+ "text-align"?: string | undefined;
438
+ "line-height"?: string | number | undefined;
439
+ "letter-spacing"?: string | undefined;
440
+ display?: z.core.$InferEnumOutput<{
441
+ block: "block";
442
+ none: "none";
443
+ }> | undefined;
444
+ "css-class"?: "" | string[] | null | undefined;
445
+ align?: z.core.$InferEnumOutput<{
446
+ left: "left";
447
+ right: "right";
448
+ center: "center";
449
+ }> | undefined;
450
+ "inner-padding"?: string | undefined;
451
+ border?: string | null | undefined;
452
+ }>>;
453
+ mdAttributes: z.ZodDefault<z.ZodObject<{
454
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
455
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
456
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
457
+ color: "color";
458
+ normal: "normal";
459
+ multiply: "multiply";
460
+ screen: "screen";
461
+ overlay: "overlay";
462
+ darken: "darken";
463
+ lighten: "lighten";
464
+ "color-dodge": "color-dodge";
465
+ "color-burn": "color-burn";
466
+ "hard-light": "hard-light";
467
+ "soft-light": "soft-light";
468
+ difference: "difference";
469
+ exclusion: "exclusion";
470
+ hue: "hue";
471
+ saturation: "saturation";
472
+ luminosity: "luminosity";
473
+ }>>>;
474
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
475
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
476
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
477
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
478
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
479
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
480
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
481
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
482
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
483
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
484
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
485
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
486
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
487
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
488
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
489
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
490
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
491
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
492
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
493
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
494
+ width: z.ZodCatch<z.ZodOptional<z.ZodString>>;
495
+ height: z.ZodCatch<z.ZodOptional<z.ZodString>>;
496
+ "max-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
497
+ "min-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
498
+ "max-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
499
+ "min-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
500
+ padding: z.ZodCatch<z.ZodOptional<z.ZodString>>;
501
+ margin: z.ZodCatch<z.ZodOptional<z.ZodString>>;
502
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
503
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
504
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
505
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
506
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
507
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
508
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
509
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
510
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
511
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
512
+ display: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
513
+ block: "block";
514
+ none: "none";
515
+ }>>>;
516
+ }, z.core.$strip>>;
517
+ smAttributes: z.ZodDefault<z.ZodObject<{
518
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
519
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
520
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
521
+ color: "color";
522
+ normal: "normal";
523
+ multiply: "multiply";
524
+ screen: "screen";
525
+ overlay: "overlay";
526
+ darken: "darken";
527
+ lighten: "lighten";
528
+ "color-dodge": "color-dodge";
529
+ "color-burn": "color-burn";
530
+ "hard-light": "hard-light";
531
+ "soft-light": "soft-light";
532
+ difference: "difference";
533
+ exclusion: "exclusion";
534
+ hue: "hue";
535
+ saturation: "saturation";
536
+ luminosity: "luminosity";
537
+ }>>>;
538
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
539
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
540
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
541
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
542
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
543
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
544
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
545
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
546
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
547
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
548
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
549
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
550
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
551
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
552
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
553
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
554
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
555
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
556
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
557
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
558
+ width: z.ZodCatch<z.ZodOptional<z.ZodString>>;
559
+ height: z.ZodCatch<z.ZodOptional<z.ZodString>>;
560
+ "max-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
561
+ "min-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
562
+ "max-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
563
+ "min-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
564
+ padding: z.ZodCatch<z.ZodOptional<z.ZodString>>;
565
+ margin: z.ZodCatch<z.ZodOptional<z.ZodString>>;
566
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
567
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
568
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
569
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
570
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
571
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
572
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
573
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
574
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
575
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
576
+ display: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
577
+ block: "block";
578
+ none: "none";
579
+ }>>>;
580
+ }, z.core.$strip>>;
581
+ xsAttributes: z.ZodDefault<z.ZodObject<{
582
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
583
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
584
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
585
+ color: "color";
586
+ normal: "normal";
587
+ multiply: "multiply";
588
+ screen: "screen";
589
+ overlay: "overlay";
590
+ darken: "darken";
591
+ lighten: "lighten";
592
+ "color-dodge": "color-dodge";
593
+ "color-burn": "color-burn";
594
+ "hard-light": "hard-light";
595
+ "soft-light": "soft-light";
596
+ difference: "difference";
597
+ exclusion: "exclusion";
598
+ hue: "hue";
599
+ saturation: "saturation";
600
+ luminosity: "luminosity";
601
+ }>>>;
602
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
603
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
604
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
605
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
606
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
607
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
608
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
609
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
610
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
611
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
612
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
613
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
614
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
615
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
616
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
617
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
618
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
619
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
620
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
621
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
622
+ width: z.ZodCatch<z.ZodOptional<z.ZodString>>;
623
+ height: z.ZodCatch<z.ZodOptional<z.ZodString>>;
624
+ "max-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
625
+ "min-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
626
+ "max-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
627
+ "min-height": z.ZodCatch<z.ZodOptional<z.ZodString>>;
628
+ padding: z.ZodCatch<z.ZodOptional<z.ZodString>>;
629
+ margin: z.ZodCatch<z.ZodOptional<z.ZodString>>;
630
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
631
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
632
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
633
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
634
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
635
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
636
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
637
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
638
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
639
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
640
+ display: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
641
+ block: "block";
642
+ none: "none";
643
+ }>>>;
644
+ }, z.core.$strip>>;
645
+ content: z.ZodCatch<z.ZodString>;
646
+ hover: z.ZodCatch<z.ZodOptional<z.ZodObject<{
647
+ color: z.ZodCatch<z.ZodOptional<z.ZodString>>;
648
+ "font-family": z.ZodCatch<z.ZodOptional<z.ZodString>>;
649
+ "font-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
650
+ "font-weight": z.ZodCatch<z.ZodOptional<z.ZodString>>;
651
+ "font-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
652
+ "text-transform": z.ZodCatch<z.ZodOptional<z.ZodString>>;
653
+ "text-decoration": z.ZodCatch<z.ZodOptional<z.ZodString>>;
654
+ "text-align": z.ZodCatch<z.ZodOptional<z.ZodString>>;
655
+ "line-height": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
656
+ "letter-spacing": z.ZodCatch<z.ZodOptional<z.ZodString>>;
657
+ "border-radius": z.ZodCatch<z.ZodOptional<z.ZodString>>;
658
+ "border-width": z.ZodCatch<z.ZodOptional<z.ZodString>>;
659
+ "border-style": z.ZodCatch<z.ZodOptional<z.ZodString>>;
660
+ "border-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
661
+ "background-color": z.ZodCatch<z.ZodOptional<z.ZodString>>;
662
+ "background-image": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
663
+ "background-size": z.ZodCatch<z.ZodOptional<z.ZodString>>;
664
+ "background-repeat": z.ZodCatch<z.ZodOptional<z.ZodString>>;
665
+ "background-position": z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
666
+ "background-attachment": z.ZodCatch<z.ZodOptional<z.ZodString>>;
667
+ "background-clip": z.ZodCatch<z.ZodOptional<z.ZodString>>;
668
+ overflow: z.ZodCatch<z.ZodOptional<z.ZodString>>;
669
+ opacity: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
670
+ "mix-blend-mode": z.ZodCatch<z.ZodOptional<z.ZodEnum<{
671
+ color: "color";
672
+ normal: "normal";
673
+ multiply: "multiply";
674
+ screen: "screen";
675
+ overlay: "overlay";
676
+ darken: "darken";
677
+ lighten: "lighten";
678
+ "color-dodge": "color-dodge";
679
+ "color-burn": "color-burn";
680
+ "hard-light": "hard-light";
681
+ "soft-light": "soft-light";
682
+ difference: "difference";
683
+ exclusion: "exclusion";
684
+ hue: "hue";
685
+ saturation: "saturation";
686
+ luminosity: "luminosity";
687
+ }>>>;
688
+ cursor: z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"pointer">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"crosshair">, z.ZodLiteral<"move">, z.ZodLiteral<"not-allowed">]>>>;
689
+ "box-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
690
+ "text-shadow": z.ZodCatch<z.ZodOptional<z.ZodString>>;
691
+ filter: z.ZodCatch<z.ZodOptional<z.ZodString>>;
692
+ "backdrop-filter": z.ZodCatch<z.ZodOptional<z.ZodString>>;
693
+ transition: z.ZodCatch<z.ZodOptional<z.ZodString>>;
694
+ transform: z.ZodCatch<z.ZodOptional<z.ZodString>>;
695
+ "transform-origin": z.ZodCatch<z.ZodOptional<z.ZodString>>;
696
+ "backface-visibility": z.ZodCatch<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"hidden">, z.ZodLiteral<"visible">]>>>;
697
+ }, z.core.$strip>>>;
698
+ }, z.core.$strip>;
699
+ export type TopolButtonBlock = z.infer<typeof TopolButtonBlockSchema>;
700
+ export type TopolButtonBlockStyleAttributes = z.infer<typeof TopolButtonStyleAttributesSchema>;