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