@webstudio-is/css-engine 0.189.0 → 0.191.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.
- package/lib/index.js +98 -96
- package/lib/types/core/merger.d.ts +78 -78
- package/lib/types/schema.d.ts +641 -641
- package/package.json +5 -7
package/lib/types/schema.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import type { Property as GeneratedProperty, Unit as GeneratedUnit } from "./__generated__/types";
|
|
3
|
-
import { type TransformValue } from "./core";
|
|
3
|
+
import { type TransformValue } from "./core/to-value";
|
|
4
4
|
export type CustomProperty = `--${string}`;
|
|
5
5
|
export type StyleProperty = GeneratedProperty | CustomProperty;
|
|
6
6
|
declare const Unit: z.ZodType<GeneratedUnit | "number">;
|
|
@@ -11,13 +11,13 @@ export declare const UnitValue: z.ZodObject<{
|
|
|
11
11
|
value: z.ZodNumber;
|
|
12
12
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
type: "unit";
|
|
15
14
|
value: number;
|
|
15
|
+
type: "unit";
|
|
16
16
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
17
17
|
hidden?: boolean | undefined;
|
|
18
18
|
}, {
|
|
19
|
-
type: "unit";
|
|
20
19
|
value: number;
|
|
20
|
+
type: "unit";
|
|
21
21
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
22
22
|
hidden?: boolean | undefined;
|
|
23
23
|
}>;
|
|
@@ -27,12 +27,12 @@ export declare const KeywordValue: z.ZodObject<{
|
|
|
27
27
|
value: z.ZodString;
|
|
28
28
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
type: "keyword";
|
|
31
30
|
value: string;
|
|
31
|
+
type: "keyword";
|
|
32
32
|
hidden?: boolean | undefined;
|
|
33
33
|
}, {
|
|
34
|
-
type: "keyword";
|
|
35
34
|
value: string;
|
|
35
|
+
type: "keyword";
|
|
36
36
|
hidden?: boolean | undefined;
|
|
37
37
|
}>;
|
|
38
38
|
export type KeywordValue = z.infer<typeof KeywordValue>;
|
|
@@ -44,12 +44,12 @@ export declare const UnparsedValue: z.ZodObject<{
|
|
|
44
44
|
value: z.ZodString;
|
|
45
45
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
type: "unparsed";
|
|
48
47
|
value: string;
|
|
48
|
+
type: "unparsed";
|
|
49
49
|
hidden?: boolean | undefined;
|
|
50
50
|
}, {
|
|
51
|
-
type: "unparsed";
|
|
52
51
|
value: string;
|
|
52
|
+
type: "unparsed";
|
|
53
53
|
hidden?: boolean | undefined;
|
|
54
54
|
}>;
|
|
55
55
|
export type UnparsedValue = z.infer<typeof UnparsedValue>;
|
|
@@ -58,12 +58,12 @@ declare const FontFamilyValue: z.ZodObject<{
|
|
|
58
58
|
value: z.ZodArray<z.ZodString, "many">;
|
|
59
59
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
|
61
|
-
type: "fontFamily";
|
|
62
61
|
value: string[];
|
|
62
|
+
type: "fontFamily";
|
|
63
63
|
hidden?: boolean | undefined;
|
|
64
64
|
}, {
|
|
65
|
-
type: "fontFamily";
|
|
66
65
|
value: string[];
|
|
66
|
+
type: "fontFamily";
|
|
67
67
|
hidden?: boolean | undefined;
|
|
68
68
|
}>;
|
|
69
69
|
export type FontFamilyValue = z.infer<typeof FontFamilyValue>;
|
|
@@ -103,11 +103,11 @@ export declare const ImageValue: z.ZodObject<{
|
|
|
103
103
|
type: z.ZodLiteral<"asset">;
|
|
104
104
|
value: z.ZodString;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
-
type: "asset";
|
|
107
106
|
value: string;
|
|
108
|
-
}, {
|
|
109
107
|
type: "asset";
|
|
108
|
+
}, {
|
|
110
109
|
value: string;
|
|
110
|
+
type: "asset";
|
|
111
111
|
}>, z.ZodObject<{
|
|
112
112
|
type: z.ZodLiteral<"url">;
|
|
113
113
|
url: z.ZodString;
|
|
@@ -120,24 +120,24 @@ export declare const ImageValue: z.ZodObject<{
|
|
|
120
120
|
}>]>;
|
|
121
121
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
122
122
|
}, "strip", z.ZodTypeAny, {
|
|
123
|
-
type: "image";
|
|
124
123
|
value: {
|
|
125
|
-
type: "asset";
|
|
126
124
|
value: string;
|
|
125
|
+
type: "asset";
|
|
127
126
|
} | {
|
|
128
127
|
type: "url";
|
|
129
128
|
url: string;
|
|
130
129
|
};
|
|
130
|
+
type: "image";
|
|
131
131
|
hidden?: boolean | undefined;
|
|
132
132
|
}, {
|
|
133
|
-
type: "image";
|
|
134
133
|
value: {
|
|
135
|
-
type: "asset";
|
|
136
134
|
value: string;
|
|
135
|
+
type: "asset";
|
|
137
136
|
} | {
|
|
138
137
|
type: "url";
|
|
139
138
|
url: string;
|
|
140
139
|
};
|
|
140
|
+
type: "image";
|
|
141
141
|
hidden?: boolean | undefined;
|
|
142
142
|
}>;
|
|
143
143
|
export type ImageValue = z.infer<typeof ImageValue>;
|
|
@@ -157,12 +157,12 @@ export declare const InvalidValue: z.ZodObject<{
|
|
|
157
157
|
value: z.ZodString;
|
|
158
158
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
159
159
|
}, "strip", z.ZodTypeAny, {
|
|
160
|
-
type: "invalid";
|
|
161
160
|
value: string;
|
|
161
|
+
type: "invalid";
|
|
162
162
|
hidden?: boolean | undefined;
|
|
163
163
|
}, {
|
|
164
|
-
type: "invalid";
|
|
165
164
|
value: string;
|
|
165
|
+
type: "invalid";
|
|
166
166
|
hidden?: boolean | undefined;
|
|
167
167
|
}>;
|
|
168
168
|
export type InvalidValue = z.infer<typeof InvalidValue>;
|
|
@@ -171,12 +171,12 @@ declare const UnsetValue: z.ZodObject<{
|
|
|
171
171
|
value: z.ZodLiteral<"">;
|
|
172
172
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
|
-
type: "unset";
|
|
175
174
|
value: "";
|
|
175
|
+
type: "unset";
|
|
176
176
|
hidden?: boolean | undefined;
|
|
177
177
|
}, {
|
|
178
|
-
type: "unset";
|
|
179
178
|
value: "";
|
|
179
|
+
type: "unset";
|
|
180
180
|
hidden?: boolean | undefined;
|
|
181
181
|
}>;
|
|
182
182
|
export type UnsetValue = z.infer<typeof UnsetValue>;
|
|
@@ -185,24 +185,24 @@ export declare const VarFallback: z.ZodUnion<[z.ZodObject<{
|
|
|
185
185
|
value: z.ZodString;
|
|
186
186
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
|
-
type: "unparsed";
|
|
189
188
|
value: string;
|
|
189
|
+
type: "unparsed";
|
|
190
190
|
hidden?: boolean | undefined;
|
|
191
191
|
}, {
|
|
192
|
-
type: "unparsed";
|
|
193
192
|
value: string;
|
|
193
|
+
type: "unparsed";
|
|
194
194
|
hidden?: boolean | undefined;
|
|
195
195
|
}>, z.ZodObject<{
|
|
196
196
|
type: z.ZodLiteral<"keyword">;
|
|
197
197
|
value: z.ZodString;
|
|
198
198
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
199
199
|
}, "strip", z.ZodTypeAny, {
|
|
200
|
-
type: "keyword";
|
|
201
200
|
value: string;
|
|
201
|
+
type: "keyword";
|
|
202
202
|
hidden?: boolean | undefined;
|
|
203
203
|
}, {
|
|
204
|
-
type: "keyword";
|
|
205
204
|
value: string;
|
|
205
|
+
type: "keyword";
|
|
206
206
|
hidden?: boolean | undefined;
|
|
207
207
|
}>, z.ZodObject<{
|
|
208
208
|
type: z.ZodLiteral<"unit">;
|
|
@@ -210,13 +210,13 @@ export declare const VarFallback: z.ZodUnion<[z.ZodObject<{
|
|
|
210
210
|
value: z.ZodNumber;
|
|
211
211
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
212
212
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
-
type: "unit";
|
|
214
213
|
value: number;
|
|
214
|
+
type: "unit";
|
|
215
215
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
216
216
|
hidden?: boolean | undefined;
|
|
217
217
|
}, {
|
|
218
|
-
type: "unit";
|
|
219
218
|
value: number;
|
|
219
|
+
type: "unit";
|
|
220
220
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
221
221
|
hidden?: boolean | undefined;
|
|
222
222
|
}>, z.ZodObject<{
|
|
@@ -251,24 +251,24 @@ declare const VarValue: z.ZodObject<{
|
|
|
251
251
|
value: z.ZodString;
|
|
252
252
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
253
253
|
}, "strip", z.ZodTypeAny, {
|
|
254
|
-
type: "unparsed";
|
|
255
254
|
value: string;
|
|
255
|
+
type: "unparsed";
|
|
256
256
|
hidden?: boolean | undefined;
|
|
257
257
|
}, {
|
|
258
|
-
type: "unparsed";
|
|
259
258
|
value: string;
|
|
259
|
+
type: "unparsed";
|
|
260
260
|
hidden?: boolean | undefined;
|
|
261
261
|
}>, z.ZodObject<{
|
|
262
262
|
type: z.ZodLiteral<"keyword">;
|
|
263
263
|
value: z.ZodString;
|
|
264
264
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
265
265
|
}, "strip", z.ZodTypeAny, {
|
|
266
|
-
type: "keyword";
|
|
267
266
|
value: string;
|
|
267
|
+
type: "keyword";
|
|
268
268
|
hidden?: boolean | undefined;
|
|
269
269
|
}, {
|
|
270
|
-
type: "keyword";
|
|
271
270
|
value: string;
|
|
271
|
+
type: "keyword";
|
|
272
272
|
hidden?: boolean | undefined;
|
|
273
273
|
}>, z.ZodObject<{
|
|
274
274
|
type: z.ZodLiteral<"unit">;
|
|
@@ -276,13 +276,13 @@ declare const VarValue: z.ZodObject<{
|
|
|
276
276
|
value: z.ZodNumber;
|
|
277
277
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
278
278
|
}, "strip", z.ZodTypeAny, {
|
|
279
|
-
type: "unit";
|
|
280
279
|
value: number;
|
|
280
|
+
type: "unit";
|
|
281
281
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
282
282
|
hidden?: boolean | undefined;
|
|
283
283
|
}, {
|
|
284
|
-
type: "unit";
|
|
285
284
|
value: number;
|
|
285
|
+
type: "unit";
|
|
286
286
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
287
287
|
hidden?: boolean | undefined;
|
|
288
288
|
}>, z.ZodObject<{
|
|
@@ -309,20 +309,20 @@ declare const VarValue: z.ZodObject<{
|
|
|
309
309
|
}>]>>;
|
|
310
310
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
311
311
|
}, "strip", z.ZodTypeAny, {
|
|
312
|
-
type: "var";
|
|
313
312
|
value: string;
|
|
313
|
+
type: "var";
|
|
314
314
|
fallback?: {
|
|
315
|
-
type: "unit";
|
|
316
315
|
value: number;
|
|
316
|
+
type: "unit";
|
|
317
317
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
318
318
|
hidden?: boolean | undefined;
|
|
319
319
|
} | {
|
|
320
|
-
type: "keyword";
|
|
321
320
|
value: string;
|
|
321
|
+
type: "keyword";
|
|
322
322
|
hidden?: boolean | undefined;
|
|
323
323
|
} | {
|
|
324
|
-
type: "unparsed";
|
|
325
324
|
value: string;
|
|
325
|
+
type: "unparsed";
|
|
326
326
|
hidden?: boolean | undefined;
|
|
327
327
|
} | {
|
|
328
328
|
type: "rgb";
|
|
@@ -334,20 +334,20 @@ declare const VarValue: z.ZodObject<{
|
|
|
334
334
|
} | undefined;
|
|
335
335
|
hidden?: boolean | undefined;
|
|
336
336
|
}, {
|
|
337
|
-
type: "var";
|
|
338
337
|
value: string;
|
|
338
|
+
type: "var";
|
|
339
339
|
fallback?: {
|
|
340
|
-
type: "unit";
|
|
341
340
|
value: number;
|
|
341
|
+
type: "unit";
|
|
342
342
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
343
343
|
hidden?: boolean | undefined;
|
|
344
344
|
} | {
|
|
345
|
-
type: "keyword";
|
|
346
345
|
value: string;
|
|
346
|
+
type: "keyword";
|
|
347
347
|
hidden?: boolean | undefined;
|
|
348
348
|
} | {
|
|
349
|
-
type: "unparsed";
|
|
350
349
|
value: string;
|
|
350
|
+
type: "unparsed";
|
|
351
351
|
hidden?: boolean | undefined;
|
|
352
352
|
} | {
|
|
353
353
|
type: "rgb";
|
|
@@ -366,13 +366,13 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
366
366
|
value: z.ZodNumber;
|
|
367
367
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
368
368
|
}, "strip", z.ZodTypeAny, {
|
|
369
|
-
type: "unit";
|
|
370
369
|
value: number;
|
|
370
|
+
type: "unit";
|
|
371
371
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
372
372
|
hidden?: boolean | undefined;
|
|
373
373
|
}, {
|
|
374
|
-
type: "unit";
|
|
375
374
|
value: number;
|
|
375
|
+
type: "unit";
|
|
376
376
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
377
377
|
hidden?: boolean | undefined;
|
|
378
378
|
}>, z.ZodObject<{
|
|
@@ -380,24 +380,24 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
380
380
|
value: z.ZodString;
|
|
381
381
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
382
382
|
}, "strip", z.ZodTypeAny, {
|
|
383
|
-
type: "keyword";
|
|
384
383
|
value: string;
|
|
384
|
+
type: "keyword";
|
|
385
385
|
hidden?: boolean | undefined;
|
|
386
386
|
}, {
|
|
387
|
-
type: "keyword";
|
|
388
387
|
value: string;
|
|
388
|
+
type: "keyword";
|
|
389
389
|
hidden?: boolean | undefined;
|
|
390
390
|
}>, z.ZodObject<{
|
|
391
391
|
type: z.ZodLiteral<"unparsed">;
|
|
392
392
|
value: z.ZodString;
|
|
393
393
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
394
394
|
}, "strip", z.ZodTypeAny, {
|
|
395
|
-
type: "unparsed";
|
|
396
395
|
value: string;
|
|
396
|
+
type: "unparsed";
|
|
397
397
|
hidden?: boolean | undefined;
|
|
398
398
|
}, {
|
|
399
|
-
type: "unparsed";
|
|
400
399
|
value: string;
|
|
400
|
+
type: "unparsed";
|
|
401
401
|
hidden?: boolean | undefined;
|
|
402
402
|
}>, z.ZodObject<{
|
|
403
403
|
type: z.ZodLiteral<"image">;
|
|
@@ -405,11 +405,11 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
405
405
|
type: z.ZodLiteral<"asset">;
|
|
406
406
|
value: z.ZodString;
|
|
407
407
|
}, "strip", z.ZodTypeAny, {
|
|
408
|
-
type: "asset";
|
|
409
408
|
value: string;
|
|
410
|
-
}, {
|
|
411
409
|
type: "asset";
|
|
410
|
+
}, {
|
|
412
411
|
value: string;
|
|
412
|
+
type: "asset";
|
|
413
413
|
}>, z.ZodObject<{
|
|
414
414
|
type: z.ZodLiteral<"url">;
|
|
415
415
|
url: z.ZodString;
|
|
@@ -422,24 +422,24 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
422
422
|
}>]>;
|
|
423
423
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
424
424
|
}, "strip", z.ZodTypeAny, {
|
|
425
|
-
type: "image";
|
|
426
425
|
value: {
|
|
427
|
-
type: "asset";
|
|
428
426
|
value: string;
|
|
427
|
+
type: "asset";
|
|
429
428
|
} | {
|
|
430
429
|
type: "url";
|
|
431
430
|
url: string;
|
|
432
431
|
};
|
|
432
|
+
type: "image";
|
|
433
433
|
hidden?: boolean | undefined;
|
|
434
434
|
}, {
|
|
435
|
-
type: "image";
|
|
436
435
|
value: {
|
|
437
|
-
type: "asset";
|
|
438
436
|
value: string;
|
|
437
|
+
type: "asset";
|
|
439
438
|
} | {
|
|
440
439
|
type: "url";
|
|
441
440
|
url: string;
|
|
442
441
|
};
|
|
442
|
+
type: "image";
|
|
443
443
|
hidden?: boolean | undefined;
|
|
444
444
|
}>, z.ZodObject<{
|
|
445
445
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -480,24 +480,24 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
480
480
|
value: z.ZodString;
|
|
481
481
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
482
482
|
}, "strip", z.ZodTypeAny, {
|
|
483
|
-
type: "unparsed";
|
|
484
483
|
value: string;
|
|
484
|
+
type: "unparsed";
|
|
485
485
|
hidden?: boolean | undefined;
|
|
486
486
|
}, {
|
|
487
|
-
type: "unparsed";
|
|
488
487
|
value: string;
|
|
488
|
+
type: "unparsed";
|
|
489
489
|
hidden?: boolean | undefined;
|
|
490
490
|
}>, z.ZodObject<{
|
|
491
491
|
type: z.ZodLiteral<"keyword">;
|
|
492
492
|
value: z.ZodString;
|
|
493
493
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
494
494
|
}, "strip", z.ZodTypeAny, {
|
|
495
|
-
type: "keyword";
|
|
496
495
|
value: string;
|
|
496
|
+
type: "keyword";
|
|
497
497
|
hidden?: boolean | undefined;
|
|
498
498
|
}, {
|
|
499
|
-
type: "keyword";
|
|
500
499
|
value: string;
|
|
500
|
+
type: "keyword";
|
|
501
501
|
hidden?: boolean | undefined;
|
|
502
502
|
}>, z.ZodObject<{
|
|
503
503
|
type: z.ZodLiteral<"unit">;
|
|
@@ -505,13 +505,13 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
505
505
|
value: z.ZodNumber;
|
|
506
506
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
507
507
|
}, "strip", z.ZodTypeAny, {
|
|
508
|
-
type: "unit";
|
|
509
508
|
value: number;
|
|
509
|
+
type: "unit";
|
|
510
510
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
511
511
|
hidden?: boolean | undefined;
|
|
512
512
|
}, {
|
|
513
|
-
type: "unit";
|
|
514
513
|
value: number;
|
|
514
|
+
type: "unit";
|
|
515
515
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
516
516
|
hidden?: boolean | undefined;
|
|
517
517
|
}>, z.ZodObject<{
|
|
@@ -538,20 +538,20 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
538
538
|
}>]>>;
|
|
539
539
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
540
540
|
}, "strip", z.ZodTypeAny, {
|
|
541
|
-
type: "var";
|
|
542
541
|
value: string;
|
|
542
|
+
type: "var";
|
|
543
543
|
fallback?: {
|
|
544
|
-
type: "unit";
|
|
545
544
|
value: number;
|
|
545
|
+
type: "unit";
|
|
546
546
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
547
547
|
hidden?: boolean | undefined;
|
|
548
548
|
} | {
|
|
549
|
-
type: "keyword";
|
|
550
549
|
value: string;
|
|
550
|
+
type: "keyword";
|
|
551
551
|
hidden?: boolean | undefined;
|
|
552
552
|
} | {
|
|
553
|
-
type: "unparsed";
|
|
554
553
|
value: string;
|
|
554
|
+
type: "unparsed";
|
|
555
555
|
hidden?: boolean | undefined;
|
|
556
556
|
} | {
|
|
557
557
|
type: "rgb";
|
|
@@ -563,20 +563,20 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
563
563
|
} | undefined;
|
|
564
564
|
hidden?: boolean | undefined;
|
|
565
565
|
}, {
|
|
566
|
-
type: "var";
|
|
567
566
|
value: string;
|
|
567
|
+
type: "var";
|
|
568
568
|
fallback?: {
|
|
569
|
-
type: "unit";
|
|
570
569
|
value: number;
|
|
570
|
+
type: "unit";
|
|
571
571
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
572
572
|
hidden?: boolean | undefined;
|
|
573
573
|
} | {
|
|
574
|
-
type: "keyword";
|
|
575
574
|
value: string;
|
|
575
|
+
type: "keyword";
|
|
576
576
|
hidden?: boolean | undefined;
|
|
577
577
|
} | {
|
|
578
|
-
type: "unparsed";
|
|
579
578
|
value: string;
|
|
579
|
+
type: "unparsed";
|
|
580
580
|
hidden?: boolean | undefined;
|
|
581
581
|
} | {
|
|
582
582
|
type: "rgb";
|
|
@@ -597,13 +597,13 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
597
597
|
value: z.ZodNumber;
|
|
598
598
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
599
599
|
}, "strip", z.ZodTypeAny, {
|
|
600
|
-
type: "unit";
|
|
601
600
|
value: number;
|
|
601
|
+
type: "unit";
|
|
602
602
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
603
603
|
hidden?: boolean | undefined;
|
|
604
604
|
}, {
|
|
605
|
-
type: "unit";
|
|
606
605
|
value: number;
|
|
606
|
+
type: "unit";
|
|
607
607
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
608
608
|
hidden?: boolean | undefined;
|
|
609
609
|
}>, z.ZodObject<{
|
|
@@ -611,24 +611,24 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
611
611
|
value: z.ZodString;
|
|
612
612
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
|
-
type: "keyword";
|
|
615
614
|
value: string;
|
|
615
|
+
type: "keyword";
|
|
616
616
|
hidden?: boolean | undefined;
|
|
617
617
|
}, {
|
|
618
|
-
type: "keyword";
|
|
619
618
|
value: string;
|
|
619
|
+
type: "keyword";
|
|
620
620
|
hidden?: boolean | undefined;
|
|
621
621
|
}>, z.ZodObject<{
|
|
622
622
|
type: z.ZodLiteral<"unparsed">;
|
|
623
623
|
value: z.ZodString;
|
|
624
624
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
625
625
|
}, "strip", z.ZodTypeAny, {
|
|
626
|
-
type: "unparsed";
|
|
627
626
|
value: string;
|
|
627
|
+
type: "unparsed";
|
|
628
628
|
hidden?: boolean | undefined;
|
|
629
629
|
}, {
|
|
630
|
-
type: "unparsed";
|
|
631
630
|
value: string;
|
|
631
|
+
type: "unparsed";
|
|
632
632
|
hidden?: boolean | undefined;
|
|
633
633
|
}>, z.ZodObject<{
|
|
634
634
|
type: z.ZodLiteral<"image">;
|
|
@@ -636,11 +636,11 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
636
636
|
type: z.ZodLiteral<"asset">;
|
|
637
637
|
value: z.ZodString;
|
|
638
638
|
}, "strip", z.ZodTypeAny, {
|
|
639
|
-
type: "asset";
|
|
640
639
|
value: string;
|
|
641
|
-
}, {
|
|
642
640
|
type: "asset";
|
|
641
|
+
}, {
|
|
643
642
|
value: string;
|
|
643
|
+
type: "asset";
|
|
644
644
|
}>, z.ZodObject<{
|
|
645
645
|
type: z.ZodLiteral<"url">;
|
|
646
646
|
url: z.ZodString;
|
|
@@ -653,24 +653,24 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
653
653
|
}>]>;
|
|
654
654
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
655
655
|
}, "strip", z.ZodTypeAny, {
|
|
656
|
-
type: "image";
|
|
657
656
|
value: {
|
|
658
|
-
type: "asset";
|
|
659
657
|
value: string;
|
|
658
|
+
type: "asset";
|
|
660
659
|
} | {
|
|
661
660
|
type: "url";
|
|
662
661
|
url: string;
|
|
663
662
|
};
|
|
663
|
+
type: "image";
|
|
664
664
|
hidden?: boolean | undefined;
|
|
665
665
|
}, {
|
|
666
|
-
type: "image";
|
|
667
666
|
value: {
|
|
668
|
-
type: "asset";
|
|
669
667
|
value: string;
|
|
668
|
+
type: "asset";
|
|
670
669
|
} | {
|
|
671
670
|
type: "url";
|
|
672
671
|
url: string;
|
|
673
672
|
};
|
|
673
|
+
type: "image";
|
|
674
674
|
hidden?: boolean | undefined;
|
|
675
675
|
}>, z.ZodObject<{
|
|
676
676
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -711,24 +711,24 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
711
711
|
value: z.ZodString;
|
|
712
712
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
713
713
|
}, "strip", z.ZodTypeAny, {
|
|
714
|
-
type: "unparsed";
|
|
715
714
|
value: string;
|
|
715
|
+
type: "unparsed";
|
|
716
716
|
hidden?: boolean | undefined;
|
|
717
717
|
}, {
|
|
718
|
-
type: "unparsed";
|
|
719
718
|
value: string;
|
|
719
|
+
type: "unparsed";
|
|
720
720
|
hidden?: boolean | undefined;
|
|
721
721
|
}>, z.ZodObject<{
|
|
722
722
|
type: z.ZodLiteral<"keyword">;
|
|
723
723
|
value: z.ZodString;
|
|
724
724
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
725
725
|
}, "strip", z.ZodTypeAny, {
|
|
726
|
-
type: "keyword";
|
|
727
726
|
value: string;
|
|
727
|
+
type: "keyword";
|
|
728
728
|
hidden?: boolean | undefined;
|
|
729
729
|
}, {
|
|
730
|
-
type: "keyword";
|
|
731
730
|
value: string;
|
|
731
|
+
type: "keyword";
|
|
732
732
|
hidden?: boolean | undefined;
|
|
733
733
|
}>, z.ZodObject<{
|
|
734
734
|
type: z.ZodLiteral<"unit">;
|
|
@@ -736,13 +736,13 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
736
736
|
value: z.ZodNumber;
|
|
737
737
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
738
738
|
}, "strip", z.ZodTypeAny, {
|
|
739
|
-
type: "unit";
|
|
740
739
|
value: number;
|
|
740
|
+
type: "unit";
|
|
741
741
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
742
742
|
hidden?: boolean | undefined;
|
|
743
743
|
}, {
|
|
744
|
-
type: "unit";
|
|
745
744
|
value: number;
|
|
745
|
+
type: "unit";
|
|
746
746
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
747
747
|
hidden?: boolean | undefined;
|
|
748
748
|
}>, z.ZodObject<{
|
|
@@ -769,20 +769,20 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
769
769
|
}>]>>;
|
|
770
770
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
771
771
|
}, "strip", z.ZodTypeAny, {
|
|
772
|
-
type: "var";
|
|
773
772
|
value: string;
|
|
773
|
+
type: "var";
|
|
774
774
|
fallback?: {
|
|
775
|
-
type: "unit";
|
|
776
775
|
value: number;
|
|
776
|
+
type: "unit";
|
|
777
777
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
778
778
|
hidden?: boolean | undefined;
|
|
779
779
|
} | {
|
|
780
|
-
type: "keyword";
|
|
781
780
|
value: string;
|
|
781
|
+
type: "keyword";
|
|
782
782
|
hidden?: boolean | undefined;
|
|
783
783
|
} | {
|
|
784
|
-
type: "unparsed";
|
|
785
784
|
value: string;
|
|
785
|
+
type: "unparsed";
|
|
786
786
|
hidden?: boolean | undefined;
|
|
787
787
|
} | {
|
|
788
788
|
type: "rgb";
|
|
@@ -794,20 +794,20 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
794
794
|
} | undefined;
|
|
795
795
|
hidden?: boolean | undefined;
|
|
796
796
|
}, {
|
|
797
|
-
type: "var";
|
|
798
797
|
value: string;
|
|
798
|
+
type: "var";
|
|
799
799
|
fallback?: {
|
|
800
|
-
type: "unit";
|
|
801
800
|
value: number;
|
|
801
|
+
type: "unit";
|
|
802
802
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
803
803
|
hidden?: boolean | undefined;
|
|
804
804
|
} | {
|
|
805
|
-
type: "keyword";
|
|
806
805
|
value: string;
|
|
806
|
+
type: "keyword";
|
|
807
807
|
hidden?: boolean | undefined;
|
|
808
808
|
} | {
|
|
809
|
-
type: "unparsed";
|
|
810
809
|
value: string;
|
|
810
|
+
type: "unparsed";
|
|
811
811
|
hidden?: boolean | undefined;
|
|
812
812
|
} | {
|
|
813
813
|
type: "rgb";
|
|
@@ -821,19 +821,28 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
821
821
|
}>]>, "many">;
|
|
822
822
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
823
823
|
}, "strip", z.ZodTypeAny, {
|
|
824
|
-
type: "tuple";
|
|
825
824
|
value: ({
|
|
826
|
-
|
|
825
|
+
value: {
|
|
826
|
+
value: string;
|
|
827
|
+
type: "asset";
|
|
828
|
+
} | {
|
|
829
|
+
type: "url";
|
|
830
|
+
url: string;
|
|
831
|
+
};
|
|
832
|
+
type: "image";
|
|
833
|
+
hidden?: boolean | undefined;
|
|
834
|
+
} | {
|
|
827
835
|
value: number;
|
|
836
|
+
type: "unit";
|
|
828
837
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
829
838
|
hidden?: boolean | undefined;
|
|
830
839
|
} | {
|
|
831
|
-
type: "keyword";
|
|
832
840
|
value: string;
|
|
841
|
+
type: "keyword";
|
|
833
842
|
hidden?: boolean | undefined;
|
|
834
843
|
} | {
|
|
835
|
-
type: "unparsed";
|
|
836
844
|
value: string;
|
|
845
|
+
type: "unparsed";
|
|
837
846
|
hidden?: boolean | undefined;
|
|
838
847
|
} | {
|
|
839
848
|
type: "rgb";
|
|
@@ -848,30 +857,20 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
848
857
|
args: StyleValue;
|
|
849
858
|
hidden?: boolean;
|
|
850
859
|
} | {
|
|
851
|
-
type: "image";
|
|
852
|
-
value: {
|
|
853
|
-
type: "asset";
|
|
854
|
-
value: string;
|
|
855
|
-
} | {
|
|
856
|
-
type: "url";
|
|
857
|
-
url: string;
|
|
858
|
-
};
|
|
859
|
-
hidden?: boolean | undefined;
|
|
860
|
-
} | {
|
|
861
|
-
type: "var";
|
|
862
860
|
value: string;
|
|
861
|
+
type: "var";
|
|
863
862
|
fallback?: {
|
|
864
|
-
type: "unit";
|
|
865
863
|
value: number;
|
|
864
|
+
type: "unit";
|
|
866
865
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
867
866
|
hidden?: boolean | undefined;
|
|
868
867
|
} | {
|
|
869
|
-
type: "keyword";
|
|
870
868
|
value: string;
|
|
869
|
+
type: "keyword";
|
|
871
870
|
hidden?: boolean | undefined;
|
|
872
871
|
} | {
|
|
873
|
-
type: "unparsed";
|
|
874
872
|
value: string;
|
|
873
|
+
type: "unparsed";
|
|
875
874
|
hidden?: boolean | undefined;
|
|
876
875
|
} | {
|
|
877
876
|
type: "rgb";
|
|
@@ -883,21 +882,31 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
883
882
|
} | undefined;
|
|
884
883
|
hidden?: boolean | undefined;
|
|
885
884
|
})[];
|
|
885
|
+
type: "tuple";
|
|
886
886
|
hidden?: boolean | undefined;
|
|
887
887
|
}, {
|
|
888
|
-
type: "tuple";
|
|
889
888
|
value: ({
|
|
890
|
-
|
|
889
|
+
value: {
|
|
890
|
+
value: string;
|
|
891
|
+
type: "asset";
|
|
892
|
+
} | {
|
|
893
|
+
type: "url";
|
|
894
|
+
url: string;
|
|
895
|
+
};
|
|
896
|
+
type: "image";
|
|
897
|
+
hidden?: boolean | undefined;
|
|
898
|
+
} | {
|
|
891
899
|
value: number;
|
|
900
|
+
type: "unit";
|
|
892
901
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
893
902
|
hidden?: boolean | undefined;
|
|
894
903
|
} | {
|
|
895
|
-
type: "keyword";
|
|
896
904
|
value: string;
|
|
905
|
+
type: "keyword";
|
|
897
906
|
hidden?: boolean | undefined;
|
|
898
907
|
} | {
|
|
899
|
-
type: "unparsed";
|
|
900
908
|
value: string;
|
|
909
|
+
type: "unparsed";
|
|
901
910
|
hidden?: boolean | undefined;
|
|
902
911
|
} | {
|
|
903
912
|
type: "rgb";
|
|
@@ -912,30 +921,20 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
912
921
|
args: StyleValue;
|
|
913
922
|
hidden?: boolean;
|
|
914
923
|
} | {
|
|
915
|
-
type: "image";
|
|
916
|
-
value: {
|
|
917
|
-
type: "asset";
|
|
918
|
-
value: string;
|
|
919
|
-
} | {
|
|
920
|
-
type: "url";
|
|
921
|
-
url: string;
|
|
922
|
-
};
|
|
923
|
-
hidden?: boolean | undefined;
|
|
924
|
-
} | {
|
|
925
|
-
type: "var";
|
|
926
924
|
value: string;
|
|
925
|
+
type: "var";
|
|
927
926
|
fallback?: {
|
|
928
|
-
type: "unit";
|
|
929
927
|
value: number;
|
|
928
|
+
type: "unit";
|
|
930
929
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
931
930
|
hidden?: boolean | undefined;
|
|
932
931
|
} | {
|
|
933
|
-
type: "keyword";
|
|
934
932
|
value: string;
|
|
933
|
+
type: "keyword";
|
|
935
934
|
hidden?: boolean | undefined;
|
|
936
935
|
} | {
|
|
937
|
-
type: "unparsed";
|
|
938
936
|
value: string;
|
|
937
|
+
type: "unparsed";
|
|
939
938
|
hidden?: boolean | undefined;
|
|
940
939
|
} | {
|
|
941
940
|
type: "rgb";
|
|
@@ -947,6 +946,7 @@ export declare const TupleValue: z.ZodObject<{
|
|
|
947
946
|
} | undefined;
|
|
948
947
|
hidden?: boolean | undefined;
|
|
949
948
|
})[];
|
|
949
|
+
type: "tuple";
|
|
950
950
|
hidden?: boolean | undefined;
|
|
951
951
|
}>;
|
|
952
952
|
export type TupleValue = z.infer<typeof TupleValue>;
|
|
@@ -956,13 +956,13 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
956
956
|
value: z.ZodNumber;
|
|
957
957
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
958
958
|
}, "strip", z.ZodTypeAny, {
|
|
959
|
-
type: "unit";
|
|
960
959
|
value: number;
|
|
960
|
+
type: "unit";
|
|
961
961
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
962
962
|
hidden?: boolean | undefined;
|
|
963
963
|
}, {
|
|
964
|
-
type: "unit";
|
|
965
964
|
value: number;
|
|
965
|
+
type: "unit";
|
|
966
966
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
967
967
|
hidden?: boolean | undefined;
|
|
968
968
|
}>, z.ZodObject<{
|
|
@@ -970,24 +970,24 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
970
970
|
value: z.ZodString;
|
|
971
971
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
972
972
|
}, "strip", z.ZodTypeAny, {
|
|
973
|
-
type: "keyword";
|
|
974
973
|
value: string;
|
|
974
|
+
type: "keyword";
|
|
975
975
|
hidden?: boolean | undefined;
|
|
976
976
|
}, {
|
|
977
|
-
type: "keyword";
|
|
978
977
|
value: string;
|
|
978
|
+
type: "keyword";
|
|
979
979
|
hidden?: boolean | undefined;
|
|
980
980
|
}>, z.ZodObject<{
|
|
981
981
|
type: z.ZodLiteral<"unparsed">;
|
|
982
982
|
value: z.ZodString;
|
|
983
983
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
984
984
|
}, "strip", z.ZodTypeAny, {
|
|
985
|
-
type: "unparsed";
|
|
986
985
|
value: string;
|
|
986
|
+
type: "unparsed";
|
|
987
987
|
hidden?: boolean | undefined;
|
|
988
988
|
}, {
|
|
989
|
-
type: "unparsed";
|
|
990
989
|
value: string;
|
|
990
|
+
type: "unparsed";
|
|
991
991
|
hidden?: boolean | undefined;
|
|
992
992
|
}>, z.ZodObject<{
|
|
993
993
|
type: z.ZodLiteral<"image">;
|
|
@@ -995,11 +995,11 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
995
995
|
type: z.ZodLiteral<"asset">;
|
|
996
996
|
value: z.ZodString;
|
|
997
997
|
}, "strip", z.ZodTypeAny, {
|
|
998
|
-
type: "asset";
|
|
999
998
|
value: string;
|
|
1000
|
-
}, {
|
|
1001
999
|
type: "asset";
|
|
1000
|
+
}, {
|
|
1002
1001
|
value: string;
|
|
1002
|
+
type: "asset";
|
|
1003
1003
|
}>, z.ZodObject<{
|
|
1004
1004
|
type: z.ZodLiteral<"url">;
|
|
1005
1005
|
url: z.ZodString;
|
|
@@ -1012,24 +1012,24 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1012
1012
|
}>]>;
|
|
1013
1013
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1014
1014
|
}, "strip", z.ZodTypeAny, {
|
|
1015
|
-
type: "image";
|
|
1016
1015
|
value: {
|
|
1017
|
-
type: "asset";
|
|
1018
1016
|
value: string;
|
|
1017
|
+
type: "asset";
|
|
1019
1018
|
} | {
|
|
1020
1019
|
type: "url";
|
|
1021
1020
|
url: string;
|
|
1022
1021
|
};
|
|
1022
|
+
type: "image";
|
|
1023
1023
|
hidden?: boolean | undefined;
|
|
1024
1024
|
}, {
|
|
1025
|
-
type: "image";
|
|
1026
1025
|
value: {
|
|
1027
|
-
type: "asset";
|
|
1028
1026
|
value: string;
|
|
1027
|
+
type: "asset";
|
|
1029
1028
|
} | {
|
|
1030
1029
|
type: "url";
|
|
1031
1030
|
url: string;
|
|
1032
1031
|
};
|
|
1032
|
+
type: "image";
|
|
1033
1033
|
hidden?: boolean | undefined;
|
|
1034
1034
|
}>, z.ZodObject<{
|
|
1035
1035
|
type: z.ZodLiteral<"tuple">;
|
|
@@ -1039,13 +1039,13 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1039
1039
|
value: z.ZodNumber;
|
|
1040
1040
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1041
1041
|
}, "strip", z.ZodTypeAny, {
|
|
1042
|
-
type: "unit";
|
|
1043
1042
|
value: number;
|
|
1043
|
+
type: "unit";
|
|
1044
1044
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1045
1045
|
hidden?: boolean | undefined;
|
|
1046
1046
|
}, {
|
|
1047
|
-
type: "unit";
|
|
1048
1047
|
value: number;
|
|
1048
|
+
type: "unit";
|
|
1049
1049
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1050
1050
|
hidden?: boolean | undefined;
|
|
1051
1051
|
}>, z.ZodObject<{
|
|
@@ -1053,24 +1053,24 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1053
1053
|
value: z.ZodString;
|
|
1054
1054
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1055
1055
|
}, "strip", z.ZodTypeAny, {
|
|
1056
|
-
type: "keyword";
|
|
1057
1056
|
value: string;
|
|
1057
|
+
type: "keyword";
|
|
1058
1058
|
hidden?: boolean | undefined;
|
|
1059
1059
|
}, {
|
|
1060
|
-
type: "keyword";
|
|
1061
1060
|
value: string;
|
|
1061
|
+
type: "keyword";
|
|
1062
1062
|
hidden?: boolean | undefined;
|
|
1063
1063
|
}>, z.ZodObject<{
|
|
1064
1064
|
type: z.ZodLiteral<"unparsed">;
|
|
1065
1065
|
value: z.ZodString;
|
|
1066
1066
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1067
1067
|
}, "strip", z.ZodTypeAny, {
|
|
1068
|
-
type: "unparsed";
|
|
1069
1068
|
value: string;
|
|
1069
|
+
type: "unparsed";
|
|
1070
1070
|
hidden?: boolean | undefined;
|
|
1071
1071
|
}, {
|
|
1072
|
-
type: "unparsed";
|
|
1073
1072
|
value: string;
|
|
1073
|
+
type: "unparsed";
|
|
1074
1074
|
hidden?: boolean | undefined;
|
|
1075
1075
|
}>, z.ZodObject<{
|
|
1076
1076
|
type: z.ZodLiteral<"image">;
|
|
@@ -1078,11 +1078,11 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1078
1078
|
type: z.ZodLiteral<"asset">;
|
|
1079
1079
|
value: z.ZodString;
|
|
1080
1080
|
}, "strip", z.ZodTypeAny, {
|
|
1081
|
-
type: "asset";
|
|
1082
1081
|
value: string;
|
|
1083
|
-
}, {
|
|
1084
1082
|
type: "asset";
|
|
1083
|
+
}, {
|
|
1085
1084
|
value: string;
|
|
1085
|
+
type: "asset";
|
|
1086
1086
|
}>, z.ZodObject<{
|
|
1087
1087
|
type: z.ZodLiteral<"url">;
|
|
1088
1088
|
url: z.ZodString;
|
|
@@ -1095,24 +1095,24 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1095
1095
|
}>]>;
|
|
1096
1096
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1097
1097
|
}, "strip", z.ZodTypeAny, {
|
|
1098
|
-
type: "image";
|
|
1099
1098
|
value: {
|
|
1100
|
-
type: "asset";
|
|
1101
1099
|
value: string;
|
|
1100
|
+
type: "asset";
|
|
1102
1101
|
} | {
|
|
1103
1102
|
type: "url";
|
|
1104
1103
|
url: string;
|
|
1105
1104
|
};
|
|
1105
|
+
type: "image";
|
|
1106
1106
|
hidden?: boolean | undefined;
|
|
1107
1107
|
}, {
|
|
1108
|
-
type: "image";
|
|
1109
1108
|
value: {
|
|
1110
|
-
type: "asset";
|
|
1111
1109
|
value: string;
|
|
1110
|
+
type: "asset";
|
|
1112
1111
|
} | {
|
|
1113
1112
|
type: "url";
|
|
1114
1113
|
url: string;
|
|
1115
1114
|
};
|
|
1115
|
+
type: "image";
|
|
1116
1116
|
hidden?: boolean | undefined;
|
|
1117
1117
|
}>, z.ZodObject<{
|
|
1118
1118
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -1153,24 +1153,24 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1153
1153
|
value: z.ZodString;
|
|
1154
1154
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1155
1155
|
}, "strip", z.ZodTypeAny, {
|
|
1156
|
-
type: "unparsed";
|
|
1157
1156
|
value: string;
|
|
1157
|
+
type: "unparsed";
|
|
1158
1158
|
hidden?: boolean | undefined;
|
|
1159
1159
|
}, {
|
|
1160
|
-
type: "unparsed";
|
|
1161
1160
|
value: string;
|
|
1161
|
+
type: "unparsed";
|
|
1162
1162
|
hidden?: boolean | undefined;
|
|
1163
1163
|
}>, z.ZodObject<{
|
|
1164
1164
|
type: z.ZodLiteral<"keyword">;
|
|
1165
1165
|
value: z.ZodString;
|
|
1166
1166
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1167
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1168
|
-
type: "keyword";
|
|
1169
1168
|
value: string;
|
|
1169
|
+
type: "keyword";
|
|
1170
1170
|
hidden?: boolean | undefined;
|
|
1171
1171
|
}, {
|
|
1172
|
-
type: "keyword";
|
|
1173
1172
|
value: string;
|
|
1173
|
+
type: "keyword";
|
|
1174
1174
|
hidden?: boolean | undefined;
|
|
1175
1175
|
}>, z.ZodObject<{
|
|
1176
1176
|
type: z.ZodLiteral<"unit">;
|
|
@@ -1178,13 +1178,13 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1178
1178
|
value: z.ZodNumber;
|
|
1179
1179
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1180
1180
|
}, "strip", z.ZodTypeAny, {
|
|
1181
|
-
type: "unit";
|
|
1182
1181
|
value: number;
|
|
1182
|
+
type: "unit";
|
|
1183
1183
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1184
1184
|
hidden?: boolean | undefined;
|
|
1185
1185
|
}, {
|
|
1186
|
-
type: "unit";
|
|
1187
1186
|
value: number;
|
|
1187
|
+
type: "unit";
|
|
1188
1188
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1189
1189
|
hidden?: boolean | undefined;
|
|
1190
1190
|
}>, z.ZodObject<{
|
|
@@ -1211,20 +1211,20 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1211
1211
|
}>]>>;
|
|
1212
1212
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1213
1213
|
}, "strip", z.ZodTypeAny, {
|
|
1214
|
-
type: "var";
|
|
1215
1214
|
value: string;
|
|
1215
|
+
type: "var";
|
|
1216
1216
|
fallback?: {
|
|
1217
|
-
type: "unit";
|
|
1218
1217
|
value: number;
|
|
1218
|
+
type: "unit";
|
|
1219
1219
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1220
1220
|
hidden?: boolean | undefined;
|
|
1221
1221
|
} | {
|
|
1222
|
-
type: "keyword";
|
|
1223
1222
|
value: string;
|
|
1223
|
+
type: "keyword";
|
|
1224
1224
|
hidden?: boolean | undefined;
|
|
1225
1225
|
} | {
|
|
1226
|
-
type: "unparsed";
|
|
1227
1226
|
value: string;
|
|
1227
|
+
type: "unparsed";
|
|
1228
1228
|
hidden?: boolean | undefined;
|
|
1229
1229
|
} | {
|
|
1230
1230
|
type: "rgb";
|
|
@@ -1236,20 +1236,20 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1236
1236
|
} | undefined;
|
|
1237
1237
|
hidden?: boolean | undefined;
|
|
1238
1238
|
}, {
|
|
1239
|
-
type: "var";
|
|
1240
1239
|
value: string;
|
|
1240
|
+
type: "var";
|
|
1241
1241
|
fallback?: {
|
|
1242
|
-
type: "unit";
|
|
1243
1242
|
value: number;
|
|
1243
|
+
type: "unit";
|
|
1244
1244
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1245
1245
|
hidden?: boolean | undefined;
|
|
1246
1246
|
} | {
|
|
1247
|
-
type: "keyword";
|
|
1248
1247
|
value: string;
|
|
1248
|
+
type: "keyword";
|
|
1249
1249
|
hidden?: boolean | undefined;
|
|
1250
1250
|
} | {
|
|
1251
|
-
type: "unparsed";
|
|
1252
1251
|
value: string;
|
|
1252
|
+
type: "unparsed";
|
|
1253
1253
|
hidden?: boolean | undefined;
|
|
1254
1254
|
} | {
|
|
1255
1255
|
type: "rgb";
|
|
@@ -1263,19 +1263,28 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1263
1263
|
}>]>, "many">;
|
|
1264
1264
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1265
1265
|
}, "strip", z.ZodTypeAny, {
|
|
1266
|
-
type: "tuple";
|
|
1267
1266
|
value: ({
|
|
1268
|
-
|
|
1267
|
+
value: {
|
|
1268
|
+
value: string;
|
|
1269
|
+
type: "asset";
|
|
1270
|
+
} | {
|
|
1271
|
+
type: "url";
|
|
1272
|
+
url: string;
|
|
1273
|
+
};
|
|
1274
|
+
type: "image";
|
|
1275
|
+
hidden?: boolean | undefined;
|
|
1276
|
+
} | {
|
|
1269
1277
|
value: number;
|
|
1278
|
+
type: "unit";
|
|
1270
1279
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1271
1280
|
hidden?: boolean | undefined;
|
|
1272
1281
|
} | {
|
|
1273
|
-
type: "keyword";
|
|
1274
1282
|
value: string;
|
|
1283
|
+
type: "keyword";
|
|
1275
1284
|
hidden?: boolean | undefined;
|
|
1276
1285
|
} | {
|
|
1277
|
-
type: "unparsed";
|
|
1278
1286
|
value: string;
|
|
1287
|
+
type: "unparsed";
|
|
1279
1288
|
hidden?: boolean | undefined;
|
|
1280
1289
|
} | {
|
|
1281
1290
|
type: "rgb";
|
|
@@ -1290,30 +1299,20 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1290
1299
|
args: StyleValue;
|
|
1291
1300
|
hidden?: boolean;
|
|
1292
1301
|
} | {
|
|
1293
|
-
type: "image";
|
|
1294
|
-
value: {
|
|
1295
|
-
type: "asset";
|
|
1296
|
-
value: string;
|
|
1297
|
-
} | {
|
|
1298
|
-
type: "url";
|
|
1299
|
-
url: string;
|
|
1300
|
-
};
|
|
1301
|
-
hidden?: boolean | undefined;
|
|
1302
|
-
} | {
|
|
1303
|
-
type: "var";
|
|
1304
1302
|
value: string;
|
|
1303
|
+
type: "var";
|
|
1305
1304
|
fallback?: {
|
|
1306
|
-
type: "unit";
|
|
1307
1305
|
value: number;
|
|
1306
|
+
type: "unit";
|
|
1308
1307
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1309
1308
|
hidden?: boolean | undefined;
|
|
1310
1309
|
} | {
|
|
1311
|
-
type: "keyword";
|
|
1312
1310
|
value: string;
|
|
1311
|
+
type: "keyword";
|
|
1313
1312
|
hidden?: boolean | undefined;
|
|
1314
1313
|
} | {
|
|
1315
|
-
type: "unparsed";
|
|
1316
1314
|
value: string;
|
|
1315
|
+
type: "unparsed";
|
|
1317
1316
|
hidden?: boolean | undefined;
|
|
1318
1317
|
} | {
|
|
1319
1318
|
type: "rgb";
|
|
@@ -1325,21 +1324,31 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1325
1324
|
} | undefined;
|
|
1326
1325
|
hidden?: boolean | undefined;
|
|
1327
1326
|
})[];
|
|
1327
|
+
type: "tuple";
|
|
1328
1328
|
hidden?: boolean | undefined;
|
|
1329
1329
|
}, {
|
|
1330
|
-
type: "tuple";
|
|
1331
1330
|
value: ({
|
|
1332
|
-
|
|
1331
|
+
value: {
|
|
1332
|
+
value: string;
|
|
1333
|
+
type: "asset";
|
|
1334
|
+
} | {
|
|
1335
|
+
type: "url";
|
|
1336
|
+
url: string;
|
|
1337
|
+
};
|
|
1338
|
+
type: "image";
|
|
1339
|
+
hidden?: boolean | undefined;
|
|
1340
|
+
} | {
|
|
1333
1341
|
value: number;
|
|
1342
|
+
type: "unit";
|
|
1334
1343
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1335
1344
|
hidden?: boolean | undefined;
|
|
1336
1345
|
} | {
|
|
1337
|
-
type: "keyword";
|
|
1338
1346
|
value: string;
|
|
1347
|
+
type: "keyword";
|
|
1339
1348
|
hidden?: boolean | undefined;
|
|
1340
1349
|
} | {
|
|
1341
|
-
type: "unparsed";
|
|
1342
1350
|
value: string;
|
|
1351
|
+
type: "unparsed";
|
|
1343
1352
|
hidden?: boolean | undefined;
|
|
1344
1353
|
} | {
|
|
1345
1354
|
type: "rgb";
|
|
@@ -1354,30 +1363,20 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1354
1363
|
args: StyleValue;
|
|
1355
1364
|
hidden?: boolean;
|
|
1356
1365
|
} | {
|
|
1357
|
-
type: "image";
|
|
1358
|
-
value: {
|
|
1359
|
-
type: "asset";
|
|
1360
|
-
value: string;
|
|
1361
|
-
} | {
|
|
1362
|
-
type: "url";
|
|
1363
|
-
url: string;
|
|
1364
|
-
};
|
|
1365
|
-
hidden?: boolean | undefined;
|
|
1366
|
-
} | {
|
|
1367
|
-
type: "var";
|
|
1368
1366
|
value: string;
|
|
1367
|
+
type: "var";
|
|
1369
1368
|
fallback?: {
|
|
1370
|
-
type: "unit";
|
|
1371
1369
|
value: number;
|
|
1370
|
+
type: "unit";
|
|
1372
1371
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1373
1372
|
hidden?: boolean | undefined;
|
|
1374
1373
|
} | {
|
|
1375
|
-
type: "keyword";
|
|
1376
1374
|
value: string;
|
|
1375
|
+
type: "keyword";
|
|
1377
1376
|
hidden?: boolean | undefined;
|
|
1378
1377
|
} | {
|
|
1379
|
-
type: "unparsed";
|
|
1380
1378
|
value: string;
|
|
1379
|
+
type: "unparsed";
|
|
1381
1380
|
hidden?: boolean | undefined;
|
|
1382
1381
|
} | {
|
|
1383
1382
|
type: "rgb";
|
|
@@ -1389,6 +1388,7 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1389
1388
|
} | undefined;
|
|
1390
1389
|
hidden?: boolean | undefined;
|
|
1391
1390
|
})[];
|
|
1391
|
+
type: "tuple";
|
|
1392
1392
|
hidden?: boolean | undefined;
|
|
1393
1393
|
}>, z.ZodObject<{
|
|
1394
1394
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -1416,12 +1416,12 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1416
1416
|
value: z.ZodString;
|
|
1417
1417
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1418
1418
|
}, "strip", z.ZodTypeAny, {
|
|
1419
|
-
type: "invalid";
|
|
1420
1419
|
value: string;
|
|
1420
|
+
type: "invalid";
|
|
1421
1421
|
hidden?: boolean | undefined;
|
|
1422
1422
|
}, {
|
|
1423
|
-
type: "invalid";
|
|
1424
1423
|
value: string;
|
|
1424
|
+
type: "invalid";
|
|
1425
1425
|
hidden?: boolean | undefined;
|
|
1426
1426
|
}>, z.ZodType<{
|
|
1427
1427
|
type: "function";
|
|
@@ -1441,24 +1441,24 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1441
1441
|
value: z.ZodString;
|
|
1442
1442
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1443
1443
|
}, "strip", z.ZodTypeAny, {
|
|
1444
|
-
type: "unparsed";
|
|
1445
1444
|
value: string;
|
|
1445
|
+
type: "unparsed";
|
|
1446
1446
|
hidden?: boolean | undefined;
|
|
1447
1447
|
}, {
|
|
1448
|
-
type: "unparsed";
|
|
1449
1448
|
value: string;
|
|
1449
|
+
type: "unparsed";
|
|
1450
1450
|
hidden?: boolean | undefined;
|
|
1451
1451
|
}>, z.ZodObject<{
|
|
1452
1452
|
type: z.ZodLiteral<"keyword">;
|
|
1453
1453
|
value: z.ZodString;
|
|
1454
1454
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1455
1455
|
}, "strip", z.ZodTypeAny, {
|
|
1456
|
-
type: "keyword";
|
|
1457
1456
|
value: string;
|
|
1457
|
+
type: "keyword";
|
|
1458
1458
|
hidden?: boolean | undefined;
|
|
1459
1459
|
}, {
|
|
1460
|
-
type: "keyword";
|
|
1461
1460
|
value: string;
|
|
1461
|
+
type: "keyword";
|
|
1462
1462
|
hidden?: boolean | undefined;
|
|
1463
1463
|
}>, z.ZodObject<{
|
|
1464
1464
|
type: z.ZodLiteral<"unit">;
|
|
@@ -1466,13 +1466,13 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1466
1466
|
value: z.ZodNumber;
|
|
1467
1467
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1468
1468
|
}, "strip", z.ZodTypeAny, {
|
|
1469
|
-
type: "unit";
|
|
1470
1469
|
value: number;
|
|
1470
|
+
type: "unit";
|
|
1471
1471
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1472
1472
|
hidden?: boolean | undefined;
|
|
1473
1473
|
}, {
|
|
1474
|
-
type: "unit";
|
|
1475
1474
|
value: number;
|
|
1475
|
+
type: "unit";
|
|
1476
1476
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1477
1477
|
hidden?: boolean | undefined;
|
|
1478
1478
|
}>, z.ZodObject<{
|
|
@@ -1499,20 +1499,20 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1499
1499
|
}>]>>;
|
|
1500
1500
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1501
1501
|
}, "strip", z.ZodTypeAny, {
|
|
1502
|
-
type: "var";
|
|
1503
1502
|
value: string;
|
|
1503
|
+
type: "var";
|
|
1504
1504
|
fallback?: {
|
|
1505
|
-
type: "unit";
|
|
1506
1505
|
value: number;
|
|
1506
|
+
type: "unit";
|
|
1507
1507
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1508
1508
|
hidden?: boolean | undefined;
|
|
1509
1509
|
} | {
|
|
1510
|
-
type: "keyword";
|
|
1511
1510
|
value: string;
|
|
1511
|
+
type: "keyword";
|
|
1512
1512
|
hidden?: boolean | undefined;
|
|
1513
1513
|
} | {
|
|
1514
|
-
type: "unparsed";
|
|
1515
1514
|
value: string;
|
|
1515
|
+
type: "unparsed";
|
|
1516
1516
|
hidden?: boolean | undefined;
|
|
1517
1517
|
} | {
|
|
1518
1518
|
type: "rgb";
|
|
@@ -1524,20 +1524,20 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1524
1524
|
} | undefined;
|
|
1525
1525
|
hidden?: boolean | undefined;
|
|
1526
1526
|
}, {
|
|
1527
|
-
type: "var";
|
|
1528
1527
|
value: string;
|
|
1528
|
+
type: "var";
|
|
1529
1529
|
fallback?: {
|
|
1530
|
-
type: "unit";
|
|
1531
1530
|
value: number;
|
|
1531
|
+
type: "unit";
|
|
1532
1532
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1533
1533
|
hidden?: boolean | undefined;
|
|
1534
1534
|
} | {
|
|
1535
|
-
type: "keyword";
|
|
1536
1535
|
value: string;
|
|
1536
|
+
type: "keyword";
|
|
1537
1537
|
hidden?: boolean | undefined;
|
|
1538
1538
|
} | {
|
|
1539
|
-
type: "unparsed";
|
|
1540
1539
|
value: string;
|
|
1540
|
+
type: "unparsed";
|
|
1541
1541
|
hidden?: boolean | undefined;
|
|
1542
1542
|
} | {
|
|
1543
1543
|
type: "rgb";
|
|
@@ -1558,13 +1558,13 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1558
1558
|
value: z.ZodNumber;
|
|
1559
1559
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1560
1560
|
}, "strip", z.ZodTypeAny, {
|
|
1561
|
-
type: "unit";
|
|
1562
1561
|
value: number;
|
|
1562
|
+
type: "unit";
|
|
1563
1563
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1564
1564
|
hidden?: boolean | undefined;
|
|
1565
1565
|
}, {
|
|
1566
|
-
type: "unit";
|
|
1567
1566
|
value: number;
|
|
1567
|
+
type: "unit";
|
|
1568
1568
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1569
1569
|
hidden?: boolean | undefined;
|
|
1570
1570
|
}>, z.ZodObject<{
|
|
@@ -1572,24 +1572,24 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1572
1572
|
value: z.ZodString;
|
|
1573
1573
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1574
1574
|
}, "strip", z.ZodTypeAny, {
|
|
1575
|
-
type: "keyword";
|
|
1576
1575
|
value: string;
|
|
1576
|
+
type: "keyword";
|
|
1577
1577
|
hidden?: boolean | undefined;
|
|
1578
1578
|
}, {
|
|
1579
|
-
type: "keyword";
|
|
1580
1579
|
value: string;
|
|
1580
|
+
type: "keyword";
|
|
1581
1581
|
hidden?: boolean | undefined;
|
|
1582
1582
|
}>, z.ZodObject<{
|
|
1583
1583
|
type: z.ZodLiteral<"unparsed">;
|
|
1584
1584
|
value: z.ZodString;
|
|
1585
1585
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1586
1586
|
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
type: "unparsed";
|
|
1588
1587
|
value: string;
|
|
1588
|
+
type: "unparsed";
|
|
1589
1589
|
hidden?: boolean | undefined;
|
|
1590
1590
|
}, {
|
|
1591
|
-
type: "unparsed";
|
|
1592
1591
|
value: string;
|
|
1592
|
+
type: "unparsed";
|
|
1593
1593
|
hidden?: boolean | undefined;
|
|
1594
1594
|
}>, z.ZodObject<{
|
|
1595
1595
|
type: z.ZodLiteral<"image">;
|
|
@@ -1597,11 +1597,11 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1597
1597
|
type: z.ZodLiteral<"asset">;
|
|
1598
1598
|
value: z.ZodString;
|
|
1599
1599
|
}, "strip", z.ZodTypeAny, {
|
|
1600
|
-
type: "asset";
|
|
1601
1600
|
value: string;
|
|
1602
|
-
}, {
|
|
1603
1601
|
type: "asset";
|
|
1602
|
+
}, {
|
|
1604
1603
|
value: string;
|
|
1604
|
+
type: "asset";
|
|
1605
1605
|
}>, z.ZodObject<{
|
|
1606
1606
|
type: z.ZodLiteral<"url">;
|
|
1607
1607
|
url: z.ZodString;
|
|
@@ -1614,24 +1614,24 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1614
1614
|
}>]>;
|
|
1615
1615
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1616
1616
|
}, "strip", z.ZodTypeAny, {
|
|
1617
|
-
type: "image";
|
|
1618
1617
|
value: {
|
|
1619
|
-
type: "asset";
|
|
1620
1618
|
value: string;
|
|
1619
|
+
type: "asset";
|
|
1621
1620
|
} | {
|
|
1622
1621
|
type: "url";
|
|
1623
1622
|
url: string;
|
|
1624
1623
|
};
|
|
1624
|
+
type: "image";
|
|
1625
1625
|
hidden?: boolean | undefined;
|
|
1626
1626
|
}, {
|
|
1627
|
-
type: "image";
|
|
1628
1627
|
value: {
|
|
1629
|
-
type: "asset";
|
|
1630
1628
|
value: string;
|
|
1629
|
+
type: "asset";
|
|
1631
1630
|
} | {
|
|
1632
1631
|
type: "url";
|
|
1633
1632
|
url: string;
|
|
1634
1633
|
};
|
|
1634
|
+
type: "image";
|
|
1635
1635
|
hidden?: boolean | undefined;
|
|
1636
1636
|
}>, z.ZodObject<{
|
|
1637
1637
|
type: z.ZodLiteral<"tuple">;
|
|
@@ -1641,13 +1641,13 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1641
1641
|
value: z.ZodNumber;
|
|
1642
1642
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1643
1643
|
}, "strip", z.ZodTypeAny, {
|
|
1644
|
-
type: "unit";
|
|
1645
1644
|
value: number;
|
|
1645
|
+
type: "unit";
|
|
1646
1646
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1647
1647
|
hidden?: boolean | undefined;
|
|
1648
1648
|
}, {
|
|
1649
|
-
type: "unit";
|
|
1650
1649
|
value: number;
|
|
1650
|
+
type: "unit";
|
|
1651
1651
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1652
1652
|
hidden?: boolean | undefined;
|
|
1653
1653
|
}>, z.ZodObject<{
|
|
@@ -1655,24 +1655,24 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1655
1655
|
value: z.ZodString;
|
|
1656
1656
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1657
1657
|
}, "strip", z.ZodTypeAny, {
|
|
1658
|
-
type: "keyword";
|
|
1659
1658
|
value: string;
|
|
1659
|
+
type: "keyword";
|
|
1660
1660
|
hidden?: boolean | undefined;
|
|
1661
1661
|
}, {
|
|
1662
|
-
type: "keyword";
|
|
1663
1662
|
value: string;
|
|
1663
|
+
type: "keyword";
|
|
1664
1664
|
hidden?: boolean | undefined;
|
|
1665
1665
|
}>, z.ZodObject<{
|
|
1666
1666
|
type: z.ZodLiteral<"unparsed">;
|
|
1667
1667
|
value: z.ZodString;
|
|
1668
1668
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1669
1669
|
}, "strip", z.ZodTypeAny, {
|
|
1670
|
-
type: "unparsed";
|
|
1671
1670
|
value: string;
|
|
1671
|
+
type: "unparsed";
|
|
1672
1672
|
hidden?: boolean | undefined;
|
|
1673
1673
|
}, {
|
|
1674
|
-
type: "unparsed";
|
|
1675
1674
|
value: string;
|
|
1675
|
+
type: "unparsed";
|
|
1676
1676
|
hidden?: boolean | undefined;
|
|
1677
1677
|
}>, z.ZodObject<{
|
|
1678
1678
|
type: z.ZodLiteral<"image">;
|
|
@@ -1680,11 +1680,11 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1680
1680
|
type: z.ZodLiteral<"asset">;
|
|
1681
1681
|
value: z.ZodString;
|
|
1682
1682
|
}, "strip", z.ZodTypeAny, {
|
|
1683
|
-
type: "asset";
|
|
1684
1683
|
value: string;
|
|
1685
|
-
}, {
|
|
1686
1684
|
type: "asset";
|
|
1685
|
+
}, {
|
|
1687
1686
|
value: string;
|
|
1687
|
+
type: "asset";
|
|
1688
1688
|
}>, z.ZodObject<{
|
|
1689
1689
|
type: z.ZodLiteral<"url">;
|
|
1690
1690
|
url: z.ZodString;
|
|
@@ -1697,24 +1697,24 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1697
1697
|
}>]>;
|
|
1698
1698
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1699
1699
|
}, "strip", z.ZodTypeAny, {
|
|
1700
|
-
type: "image";
|
|
1701
1700
|
value: {
|
|
1702
|
-
type: "asset";
|
|
1703
1701
|
value: string;
|
|
1702
|
+
type: "asset";
|
|
1704
1703
|
} | {
|
|
1705
1704
|
type: "url";
|
|
1706
1705
|
url: string;
|
|
1707
1706
|
};
|
|
1707
|
+
type: "image";
|
|
1708
1708
|
hidden?: boolean | undefined;
|
|
1709
1709
|
}, {
|
|
1710
|
-
type: "image";
|
|
1711
1710
|
value: {
|
|
1712
|
-
type: "asset";
|
|
1713
1711
|
value: string;
|
|
1712
|
+
type: "asset";
|
|
1714
1713
|
} | {
|
|
1715
1714
|
type: "url";
|
|
1716
1715
|
url: string;
|
|
1717
1716
|
};
|
|
1717
|
+
type: "image";
|
|
1718
1718
|
hidden?: boolean | undefined;
|
|
1719
1719
|
}>, z.ZodObject<{
|
|
1720
1720
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -1755,24 +1755,24 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1755
1755
|
value: z.ZodString;
|
|
1756
1756
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1757
1757
|
}, "strip", z.ZodTypeAny, {
|
|
1758
|
-
type: "unparsed";
|
|
1759
1758
|
value: string;
|
|
1759
|
+
type: "unparsed";
|
|
1760
1760
|
hidden?: boolean | undefined;
|
|
1761
1761
|
}, {
|
|
1762
|
-
type: "unparsed";
|
|
1763
1762
|
value: string;
|
|
1763
|
+
type: "unparsed";
|
|
1764
1764
|
hidden?: boolean | undefined;
|
|
1765
1765
|
}>, z.ZodObject<{
|
|
1766
1766
|
type: z.ZodLiteral<"keyword">;
|
|
1767
1767
|
value: z.ZodString;
|
|
1768
1768
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1769
1769
|
}, "strip", z.ZodTypeAny, {
|
|
1770
|
-
type: "keyword";
|
|
1771
1770
|
value: string;
|
|
1771
|
+
type: "keyword";
|
|
1772
1772
|
hidden?: boolean | undefined;
|
|
1773
1773
|
}, {
|
|
1774
|
-
type: "keyword";
|
|
1775
1774
|
value: string;
|
|
1775
|
+
type: "keyword";
|
|
1776
1776
|
hidden?: boolean | undefined;
|
|
1777
1777
|
}>, z.ZodObject<{
|
|
1778
1778
|
type: z.ZodLiteral<"unit">;
|
|
@@ -1780,13 +1780,13 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1780
1780
|
value: z.ZodNumber;
|
|
1781
1781
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1782
1782
|
}, "strip", z.ZodTypeAny, {
|
|
1783
|
-
type: "unit";
|
|
1784
1783
|
value: number;
|
|
1784
|
+
type: "unit";
|
|
1785
1785
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1786
1786
|
hidden?: boolean | undefined;
|
|
1787
1787
|
}, {
|
|
1788
|
-
type: "unit";
|
|
1789
1788
|
value: number;
|
|
1789
|
+
type: "unit";
|
|
1790
1790
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1791
1791
|
hidden?: boolean | undefined;
|
|
1792
1792
|
}>, z.ZodObject<{
|
|
@@ -1813,20 +1813,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1813
1813
|
}>]>>;
|
|
1814
1814
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1815
1815
|
}, "strip", z.ZodTypeAny, {
|
|
1816
|
-
type: "var";
|
|
1817
1816
|
value: string;
|
|
1817
|
+
type: "var";
|
|
1818
1818
|
fallback?: {
|
|
1819
|
-
type: "unit";
|
|
1820
1819
|
value: number;
|
|
1820
|
+
type: "unit";
|
|
1821
1821
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1822
1822
|
hidden?: boolean | undefined;
|
|
1823
1823
|
} | {
|
|
1824
|
-
type: "keyword";
|
|
1825
1824
|
value: string;
|
|
1825
|
+
type: "keyword";
|
|
1826
1826
|
hidden?: boolean | undefined;
|
|
1827
1827
|
} | {
|
|
1828
|
-
type: "unparsed";
|
|
1829
1828
|
value: string;
|
|
1829
|
+
type: "unparsed";
|
|
1830
1830
|
hidden?: boolean | undefined;
|
|
1831
1831
|
} | {
|
|
1832
1832
|
type: "rgb";
|
|
@@ -1838,20 +1838,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1838
1838
|
} | undefined;
|
|
1839
1839
|
hidden?: boolean | undefined;
|
|
1840
1840
|
}, {
|
|
1841
|
-
type: "var";
|
|
1842
1841
|
value: string;
|
|
1842
|
+
type: "var";
|
|
1843
1843
|
fallback?: {
|
|
1844
|
-
type: "unit";
|
|
1845
1844
|
value: number;
|
|
1845
|
+
type: "unit";
|
|
1846
1846
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1847
1847
|
hidden?: boolean | undefined;
|
|
1848
1848
|
} | {
|
|
1849
|
-
type: "keyword";
|
|
1850
1849
|
value: string;
|
|
1850
|
+
type: "keyword";
|
|
1851
1851
|
hidden?: boolean | undefined;
|
|
1852
1852
|
} | {
|
|
1853
|
-
type: "unparsed";
|
|
1854
1853
|
value: string;
|
|
1854
|
+
type: "unparsed";
|
|
1855
1855
|
hidden?: boolean | undefined;
|
|
1856
1856
|
} | {
|
|
1857
1857
|
type: "rgb";
|
|
@@ -1865,19 +1865,28 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1865
1865
|
}>]>, "many">;
|
|
1866
1866
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1867
1867
|
}, "strip", z.ZodTypeAny, {
|
|
1868
|
-
type: "tuple";
|
|
1869
1868
|
value: ({
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1869
|
+
value: {
|
|
1870
|
+
value: string;
|
|
1871
|
+
type: "asset";
|
|
1872
|
+
} | {
|
|
1873
|
+
type: "url";
|
|
1874
|
+
url: string;
|
|
1875
|
+
};
|
|
1876
|
+
type: "image";
|
|
1877
|
+
hidden?: boolean | undefined;
|
|
1878
|
+
} | {
|
|
1879
|
+
value: number;
|
|
1880
|
+
type: "unit";
|
|
1881
|
+
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1873
1882
|
hidden?: boolean | undefined;
|
|
1874
1883
|
} | {
|
|
1875
|
-
type: "keyword";
|
|
1876
1884
|
value: string;
|
|
1885
|
+
type: "keyword";
|
|
1877
1886
|
hidden?: boolean | undefined;
|
|
1878
1887
|
} | {
|
|
1879
|
-
type: "unparsed";
|
|
1880
1888
|
value: string;
|
|
1889
|
+
type: "unparsed";
|
|
1881
1890
|
hidden?: boolean | undefined;
|
|
1882
1891
|
} | {
|
|
1883
1892
|
type: "rgb";
|
|
@@ -1892,30 +1901,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1892
1901
|
args: StyleValue;
|
|
1893
1902
|
hidden?: boolean;
|
|
1894
1903
|
} | {
|
|
1895
|
-
type: "image";
|
|
1896
|
-
value: {
|
|
1897
|
-
type: "asset";
|
|
1898
|
-
value: string;
|
|
1899
|
-
} | {
|
|
1900
|
-
type: "url";
|
|
1901
|
-
url: string;
|
|
1902
|
-
};
|
|
1903
|
-
hidden?: boolean | undefined;
|
|
1904
|
-
} | {
|
|
1905
|
-
type: "var";
|
|
1906
1904
|
value: string;
|
|
1905
|
+
type: "var";
|
|
1907
1906
|
fallback?: {
|
|
1908
|
-
type: "unit";
|
|
1909
1907
|
value: number;
|
|
1908
|
+
type: "unit";
|
|
1910
1909
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1911
1910
|
hidden?: boolean | undefined;
|
|
1912
1911
|
} | {
|
|
1913
|
-
type: "keyword";
|
|
1914
1912
|
value: string;
|
|
1913
|
+
type: "keyword";
|
|
1915
1914
|
hidden?: boolean | undefined;
|
|
1916
1915
|
} | {
|
|
1917
|
-
type: "unparsed";
|
|
1918
1916
|
value: string;
|
|
1917
|
+
type: "unparsed";
|
|
1919
1918
|
hidden?: boolean | undefined;
|
|
1920
1919
|
} | {
|
|
1921
1920
|
type: "rgb";
|
|
@@ -1927,21 +1926,31 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1927
1926
|
} | undefined;
|
|
1928
1927
|
hidden?: boolean | undefined;
|
|
1929
1928
|
})[];
|
|
1929
|
+
type: "tuple";
|
|
1930
1930
|
hidden?: boolean | undefined;
|
|
1931
1931
|
}, {
|
|
1932
|
-
type: "tuple";
|
|
1933
1932
|
value: ({
|
|
1934
|
-
|
|
1933
|
+
value: {
|
|
1934
|
+
value: string;
|
|
1935
|
+
type: "asset";
|
|
1936
|
+
} | {
|
|
1937
|
+
type: "url";
|
|
1938
|
+
url: string;
|
|
1939
|
+
};
|
|
1940
|
+
type: "image";
|
|
1941
|
+
hidden?: boolean | undefined;
|
|
1942
|
+
} | {
|
|
1935
1943
|
value: number;
|
|
1944
|
+
type: "unit";
|
|
1936
1945
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1937
1946
|
hidden?: boolean | undefined;
|
|
1938
1947
|
} | {
|
|
1939
|
-
type: "keyword";
|
|
1940
1948
|
value: string;
|
|
1949
|
+
type: "keyword";
|
|
1941
1950
|
hidden?: boolean | undefined;
|
|
1942
1951
|
} | {
|
|
1943
|
-
type: "unparsed";
|
|
1944
1952
|
value: string;
|
|
1953
|
+
type: "unparsed";
|
|
1945
1954
|
hidden?: boolean | undefined;
|
|
1946
1955
|
} | {
|
|
1947
1956
|
type: "rgb";
|
|
@@ -1956,30 +1965,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1956
1965
|
args: StyleValue;
|
|
1957
1966
|
hidden?: boolean;
|
|
1958
1967
|
} | {
|
|
1959
|
-
type: "image";
|
|
1960
|
-
value: {
|
|
1961
|
-
type: "asset";
|
|
1962
|
-
value: string;
|
|
1963
|
-
} | {
|
|
1964
|
-
type: "url";
|
|
1965
|
-
url: string;
|
|
1966
|
-
};
|
|
1967
|
-
hidden?: boolean | undefined;
|
|
1968
|
-
} | {
|
|
1969
|
-
type: "var";
|
|
1970
1968
|
value: string;
|
|
1969
|
+
type: "var";
|
|
1971
1970
|
fallback?: {
|
|
1972
|
-
type: "unit";
|
|
1973
1971
|
value: number;
|
|
1972
|
+
type: "unit";
|
|
1974
1973
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1975
1974
|
hidden?: boolean | undefined;
|
|
1976
1975
|
} | {
|
|
1977
|
-
type: "keyword";
|
|
1978
1976
|
value: string;
|
|
1977
|
+
type: "keyword";
|
|
1979
1978
|
hidden?: boolean | undefined;
|
|
1980
1979
|
} | {
|
|
1981
|
-
type: "unparsed";
|
|
1982
1980
|
value: string;
|
|
1981
|
+
type: "unparsed";
|
|
1983
1982
|
hidden?: boolean | undefined;
|
|
1984
1983
|
} | {
|
|
1985
1984
|
type: "rgb";
|
|
@@ -1991,6 +1990,7 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
1991
1990
|
} | undefined;
|
|
1992
1991
|
hidden?: boolean | undefined;
|
|
1993
1992
|
})[];
|
|
1993
|
+
type: "tuple";
|
|
1994
1994
|
hidden?: boolean | undefined;
|
|
1995
1995
|
}>, z.ZodObject<{
|
|
1996
1996
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -2018,12 +2018,12 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2018
2018
|
value: z.ZodString;
|
|
2019
2019
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2020
2020
|
}, "strip", z.ZodTypeAny, {
|
|
2021
|
-
type: "invalid";
|
|
2022
2021
|
value: string;
|
|
2022
|
+
type: "invalid";
|
|
2023
2023
|
hidden?: boolean | undefined;
|
|
2024
2024
|
}, {
|
|
2025
|
-
type: "invalid";
|
|
2026
2025
|
value: string;
|
|
2026
|
+
type: "invalid";
|
|
2027
2027
|
hidden?: boolean | undefined;
|
|
2028
2028
|
}>, z.ZodType<{
|
|
2029
2029
|
type: "function";
|
|
@@ -2043,24 +2043,24 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2043
2043
|
value: z.ZodString;
|
|
2044
2044
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2045
2045
|
}, "strip", z.ZodTypeAny, {
|
|
2046
|
-
type: "unparsed";
|
|
2047
2046
|
value: string;
|
|
2047
|
+
type: "unparsed";
|
|
2048
2048
|
hidden?: boolean | undefined;
|
|
2049
2049
|
}, {
|
|
2050
|
-
type: "unparsed";
|
|
2051
2050
|
value: string;
|
|
2051
|
+
type: "unparsed";
|
|
2052
2052
|
hidden?: boolean | undefined;
|
|
2053
2053
|
}>, z.ZodObject<{
|
|
2054
2054
|
type: z.ZodLiteral<"keyword">;
|
|
2055
2055
|
value: z.ZodString;
|
|
2056
2056
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2057
2057
|
}, "strip", z.ZodTypeAny, {
|
|
2058
|
-
type: "keyword";
|
|
2059
2058
|
value: string;
|
|
2059
|
+
type: "keyword";
|
|
2060
2060
|
hidden?: boolean | undefined;
|
|
2061
2061
|
}, {
|
|
2062
|
-
type: "keyword";
|
|
2063
2062
|
value: string;
|
|
2063
|
+
type: "keyword";
|
|
2064
2064
|
hidden?: boolean | undefined;
|
|
2065
2065
|
}>, z.ZodObject<{
|
|
2066
2066
|
type: z.ZodLiteral<"unit">;
|
|
@@ -2068,13 +2068,13 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2068
2068
|
value: z.ZodNumber;
|
|
2069
2069
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2070
2070
|
}, "strip", z.ZodTypeAny, {
|
|
2071
|
-
type: "unit";
|
|
2072
2071
|
value: number;
|
|
2072
|
+
type: "unit";
|
|
2073
2073
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2074
2074
|
hidden?: boolean | undefined;
|
|
2075
2075
|
}, {
|
|
2076
|
-
type: "unit";
|
|
2077
2076
|
value: number;
|
|
2077
|
+
type: "unit";
|
|
2078
2078
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2079
2079
|
hidden?: boolean | undefined;
|
|
2080
2080
|
}>, z.ZodObject<{
|
|
@@ -2101,20 +2101,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2101
2101
|
}>]>>;
|
|
2102
2102
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2103
2103
|
}, "strip", z.ZodTypeAny, {
|
|
2104
|
-
type: "var";
|
|
2105
2104
|
value: string;
|
|
2105
|
+
type: "var";
|
|
2106
2106
|
fallback?: {
|
|
2107
|
-
type: "unit";
|
|
2108
2107
|
value: number;
|
|
2108
|
+
type: "unit";
|
|
2109
2109
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2110
2110
|
hidden?: boolean | undefined;
|
|
2111
2111
|
} | {
|
|
2112
|
-
type: "keyword";
|
|
2113
2112
|
value: string;
|
|
2113
|
+
type: "keyword";
|
|
2114
2114
|
hidden?: boolean | undefined;
|
|
2115
2115
|
} | {
|
|
2116
|
-
type: "unparsed";
|
|
2117
2116
|
value: string;
|
|
2117
|
+
type: "unparsed";
|
|
2118
2118
|
hidden?: boolean | undefined;
|
|
2119
2119
|
} | {
|
|
2120
2120
|
type: "rgb";
|
|
@@ -2126,20 +2126,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2126
2126
|
} | undefined;
|
|
2127
2127
|
hidden?: boolean | undefined;
|
|
2128
2128
|
}, {
|
|
2129
|
-
type: "var";
|
|
2130
2129
|
value: string;
|
|
2130
|
+
type: "var";
|
|
2131
2131
|
fallback?: {
|
|
2132
|
-
type: "unit";
|
|
2133
2132
|
value: number;
|
|
2133
|
+
type: "unit";
|
|
2134
2134
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2135
2135
|
hidden?: boolean | undefined;
|
|
2136
2136
|
} | {
|
|
2137
|
-
type: "keyword";
|
|
2138
2137
|
value: string;
|
|
2138
|
+
type: "keyword";
|
|
2139
2139
|
hidden?: boolean | undefined;
|
|
2140
2140
|
} | {
|
|
2141
|
-
type: "unparsed";
|
|
2142
2141
|
value: string;
|
|
2142
|
+
type: "unparsed";
|
|
2143
2143
|
hidden?: boolean | undefined;
|
|
2144
2144
|
} | {
|
|
2145
2145
|
type: "rgb";
|
|
@@ -2153,19 +2153,28 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2153
2153
|
}>]>, "many">;
|
|
2154
2154
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2155
2155
|
}, "strip", z.ZodTypeAny, {
|
|
2156
|
-
type: "layers";
|
|
2157
2156
|
value: ({
|
|
2158
|
-
|
|
2157
|
+
value: {
|
|
2158
|
+
value: string;
|
|
2159
|
+
type: "asset";
|
|
2160
|
+
} | {
|
|
2161
|
+
type: "url";
|
|
2162
|
+
url: string;
|
|
2163
|
+
};
|
|
2164
|
+
type: "image";
|
|
2165
|
+
hidden?: boolean | undefined;
|
|
2166
|
+
} | {
|
|
2159
2167
|
value: number;
|
|
2168
|
+
type: "unit";
|
|
2160
2169
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2161
2170
|
hidden?: boolean | undefined;
|
|
2162
2171
|
} | {
|
|
2163
|
-
type: "keyword";
|
|
2164
2172
|
value: string;
|
|
2173
|
+
type: "keyword";
|
|
2165
2174
|
hidden?: boolean | undefined;
|
|
2166
2175
|
} | {
|
|
2167
|
-
type: "unparsed";
|
|
2168
2176
|
value: string;
|
|
2177
|
+
type: "unparsed";
|
|
2169
2178
|
hidden?: boolean | undefined;
|
|
2170
2179
|
} | {
|
|
2171
2180
|
type: "rgb";
|
|
@@ -2180,30 +2189,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2180
2189
|
args: StyleValue;
|
|
2181
2190
|
hidden?: boolean;
|
|
2182
2191
|
} | {
|
|
2183
|
-
type: "image";
|
|
2184
|
-
value: {
|
|
2185
|
-
type: "asset";
|
|
2186
|
-
value: string;
|
|
2187
|
-
} | {
|
|
2188
|
-
type: "url";
|
|
2189
|
-
url: string;
|
|
2190
|
-
};
|
|
2191
|
-
hidden?: boolean | undefined;
|
|
2192
|
-
} | {
|
|
2193
|
-
type: "var";
|
|
2194
2192
|
value: string;
|
|
2193
|
+
type: "var";
|
|
2195
2194
|
fallback?: {
|
|
2196
|
-
type: "unit";
|
|
2197
2195
|
value: number;
|
|
2196
|
+
type: "unit";
|
|
2198
2197
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2199
2198
|
hidden?: boolean | undefined;
|
|
2200
2199
|
} | {
|
|
2201
|
-
type: "keyword";
|
|
2202
2200
|
value: string;
|
|
2201
|
+
type: "keyword";
|
|
2203
2202
|
hidden?: boolean | undefined;
|
|
2204
2203
|
} | {
|
|
2205
|
-
type: "unparsed";
|
|
2206
2204
|
value: string;
|
|
2205
|
+
type: "unparsed";
|
|
2207
2206
|
hidden?: boolean | undefined;
|
|
2208
2207
|
} | {
|
|
2209
2208
|
type: "rgb";
|
|
@@ -2215,19 +2214,28 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2215
2214
|
} | undefined;
|
|
2216
2215
|
hidden?: boolean | undefined;
|
|
2217
2216
|
} | {
|
|
2218
|
-
type: "tuple";
|
|
2219
2217
|
value: ({
|
|
2220
|
-
|
|
2218
|
+
value: {
|
|
2219
|
+
value: string;
|
|
2220
|
+
type: "asset";
|
|
2221
|
+
} | {
|
|
2222
|
+
type: "url";
|
|
2223
|
+
url: string;
|
|
2224
|
+
};
|
|
2225
|
+
type: "image";
|
|
2226
|
+
hidden?: boolean | undefined;
|
|
2227
|
+
} | {
|
|
2221
2228
|
value: number;
|
|
2229
|
+
type: "unit";
|
|
2222
2230
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2223
2231
|
hidden?: boolean | undefined;
|
|
2224
2232
|
} | {
|
|
2225
|
-
type: "keyword";
|
|
2226
2233
|
value: string;
|
|
2234
|
+
type: "keyword";
|
|
2227
2235
|
hidden?: boolean | undefined;
|
|
2228
2236
|
} | {
|
|
2229
|
-
type: "unparsed";
|
|
2230
2237
|
value: string;
|
|
2238
|
+
type: "unparsed";
|
|
2231
2239
|
hidden?: boolean | undefined;
|
|
2232
2240
|
} | {
|
|
2233
2241
|
type: "rgb";
|
|
@@ -2242,30 +2250,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2242
2250
|
args: StyleValue;
|
|
2243
2251
|
hidden?: boolean;
|
|
2244
2252
|
} | {
|
|
2245
|
-
type: "image";
|
|
2246
|
-
value: {
|
|
2247
|
-
type: "asset";
|
|
2248
|
-
value: string;
|
|
2249
|
-
} | {
|
|
2250
|
-
type: "url";
|
|
2251
|
-
url: string;
|
|
2252
|
-
};
|
|
2253
|
-
hidden?: boolean | undefined;
|
|
2254
|
-
} | {
|
|
2255
|
-
type: "var";
|
|
2256
2253
|
value: string;
|
|
2254
|
+
type: "var";
|
|
2257
2255
|
fallback?: {
|
|
2258
|
-
type: "unit";
|
|
2259
2256
|
value: number;
|
|
2257
|
+
type: "unit";
|
|
2260
2258
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2261
2259
|
hidden?: boolean | undefined;
|
|
2262
2260
|
} | {
|
|
2263
|
-
type: "keyword";
|
|
2264
2261
|
value: string;
|
|
2262
|
+
type: "keyword";
|
|
2265
2263
|
hidden?: boolean | undefined;
|
|
2266
2264
|
} | {
|
|
2267
|
-
type: "unparsed";
|
|
2268
2265
|
value: string;
|
|
2266
|
+
type: "unparsed";
|
|
2269
2267
|
hidden?: boolean | undefined;
|
|
2270
2268
|
} | {
|
|
2271
2269
|
type: "rgb";
|
|
@@ -2277,27 +2275,38 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2277
2275
|
} | undefined;
|
|
2278
2276
|
hidden?: boolean | undefined;
|
|
2279
2277
|
})[];
|
|
2278
|
+
type: "tuple";
|
|
2280
2279
|
hidden?: boolean | undefined;
|
|
2281
2280
|
} | {
|
|
2282
|
-
type: "invalid";
|
|
2283
2281
|
value: string;
|
|
2282
|
+
type: "invalid";
|
|
2284
2283
|
hidden?: boolean | undefined;
|
|
2285
2284
|
})[];
|
|
2285
|
+
type: "layers";
|
|
2286
2286
|
hidden?: boolean | undefined;
|
|
2287
2287
|
}, {
|
|
2288
|
-
type: "layers";
|
|
2289
2288
|
value: ({
|
|
2290
|
-
|
|
2289
|
+
value: {
|
|
2290
|
+
value: string;
|
|
2291
|
+
type: "asset";
|
|
2292
|
+
} | {
|
|
2293
|
+
type: "url";
|
|
2294
|
+
url: string;
|
|
2295
|
+
};
|
|
2296
|
+
type: "image";
|
|
2297
|
+
hidden?: boolean | undefined;
|
|
2298
|
+
} | {
|
|
2291
2299
|
value: number;
|
|
2300
|
+
type: "unit";
|
|
2292
2301
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2293
2302
|
hidden?: boolean | undefined;
|
|
2294
2303
|
} | {
|
|
2295
|
-
type: "keyword";
|
|
2296
2304
|
value: string;
|
|
2305
|
+
type: "keyword";
|
|
2297
2306
|
hidden?: boolean | undefined;
|
|
2298
2307
|
} | {
|
|
2299
|
-
type: "unparsed";
|
|
2300
2308
|
value: string;
|
|
2309
|
+
type: "unparsed";
|
|
2301
2310
|
hidden?: boolean | undefined;
|
|
2302
2311
|
} | {
|
|
2303
2312
|
type: "rgb";
|
|
@@ -2312,30 +2321,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2312
2321
|
args: StyleValue;
|
|
2313
2322
|
hidden?: boolean;
|
|
2314
2323
|
} | {
|
|
2315
|
-
type: "image";
|
|
2316
|
-
value: {
|
|
2317
|
-
type: "asset";
|
|
2318
|
-
value: string;
|
|
2319
|
-
} | {
|
|
2320
|
-
type: "url";
|
|
2321
|
-
url: string;
|
|
2322
|
-
};
|
|
2323
|
-
hidden?: boolean | undefined;
|
|
2324
|
-
} | {
|
|
2325
|
-
type: "var";
|
|
2326
2324
|
value: string;
|
|
2325
|
+
type: "var";
|
|
2327
2326
|
fallback?: {
|
|
2328
|
-
type: "unit";
|
|
2329
2327
|
value: number;
|
|
2328
|
+
type: "unit";
|
|
2330
2329
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2331
2330
|
hidden?: boolean | undefined;
|
|
2332
2331
|
} | {
|
|
2333
|
-
type: "keyword";
|
|
2334
2332
|
value: string;
|
|
2333
|
+
type: "keyword";
|
|
2335
2334
|
hidden?: boolean | undefined;
|
|
2336
2335
|
} | {
|
|
2337
|
-
type: "unparsed";
|
|
2338
2336
|
value: string;
|
|
2337
|
+
type: "unparsed";
|
|
2339
2338
|
hidden?: boolean | undefined;
|
|
2340
2339
|
} | {
|
|
2341
2340
|
type: "rgb";
|
|
@@ -2347,19 +2346,28 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2347
2346
|
} | undefined;
|
|
2348
2347
|
hidden?: boolean | undefined;
|
|
2349
2348
|
} | {
|
|
2350
|
-
type: "tuple";
|
|
2351
2349
|
value: ({
|
|
2352
|
-
|
|
2350
|
+
value: {
|
|
2351
|
+
value: string;
|
|
2352
|
+
type: "asset";
|
|
2353
|
+
} | {
|
|
2354
|
+
type: "url";
|
|
2355
|
+
url: string;
|
|
2356
|
+
};
|
|
2357
|
+
type: "image";
|
|
2358
|
+
hidden?: boolean | undefined;
|
|
2359
|
+
} | {
|
|
2353
2360
|
value: number;
|
|
2361
|
+
type: "unit";
|
|
2354
2362
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2355
2363
|
hidden?: boolean | undefined;
|
|
2356
2364
|
} | {
|
|
2357
|
-
type: "keyword";
|
|
2358
2365
|
value: string;
|
|
2366
|
+
type: "keyword";
|
|
2359
2367
|
hidden?: boolean | undefined;
|
|
2360
2368
|
} | {
|
|
2361
|
-
type: "unparsed";
|
|
2362
2369
|
value: string;
|
|
2370
|
+
type: "unparsed";
|
|
2363
2371
|
hidden?: boolean | undefined;
|
|
2364
2372
|
} | {
|
|
2365
2373
|
type: "rgb";
|
|
@@ -2374,30 +2382,20 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2374
2382
|
args: StyleValue;
|
|
2375
2383
|
hidden?: boolean;
|
|
2376
2384
|
} | {
|
|
2377
|
-
type: "image";
|
|
2378
|
-
value: {
|
|
2379
|
-
type: "asset";
|
|
2380
|
-
value: string;
|
|
2381
|
-
} | {
|
|
2382
|
-
type: "url";
|
|
2383
|
-
url: string;
|
|
2384
|
-
};
|
|
2385
|
-
hidden?: boolean | undefined;
|
|
2386
|
-
} | {
|
|
2387
|
-
type: "var";
|
|
2388
2385
|
value: string;
|
|
2386
|
+
type: "var";
|
|
2389
2387
|
fallback?: {
|
|
2390
|
-
type: "unit";
|
|
2391
2388
|
value: number;
|
|
2389
|
+
type: "unit";
|
|
2392
2390
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2393
2391
|
hidden?: boolean | undefined;
|
|
2394
2392
|
} | {
|
|
2395
|
-
type: "keyword";
|
|
2396
2393
|
value: string;
|
|
2394
|
+
type: "keyword";
|
|
2397
2395
|
hidden?: boolean | undefined;
|
|
2398
2396
|
} | {
|
|
2399
|
-
type: "unparsed";
|
|
2400
2397
|
value: string;
|
|
2398
|
+
type: "unparsed";
|
|
2401
2399
|
hidden?: boolean | undefined;
|
|
2402
2400
|
} | {
|
|
2403
2401
|
type: "rgb";
|
|
@@ -2409,12 +2407,14 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
2409
2407
|
} | undefined;
|
|
2410
2408
|
hidden?: boolean | undefined;
|
|
2411
2409
|
})[];
|
|
2410
|
+
type: "tuple";
|
|
2412
2411
|
hidden?: boolean | undefined;
|
|
2413
2412
|
} | {
|
|
2414
|
-
type: "invalid";
|
|
2415
2413
|
value: string;
|
|
2414
|
+
type: "invalid";
|
|
2416
2415
|
hidden?: boolean | undefined;
|
|
2417
2416
|
})[];
|
|
2417
|
+
type: "layers";
|
|
2418
2418
|
hidden?: boolean | undefined;
|
|
2419
2419
|
}>;
|
|
2420
2420
|
export type LayersValue = z.infer<typeof LayersValue>;
|
|
@@ -2424,11 +2424,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2424
2424
|
type: z.ZodLiteral<"asset">;
|
|
2425
2425
|
value: z.ZodString;
|
|
2426
2426
|
}, "strip", z.ZodTypeAny, {
|
|
2427
|
-
type: "asset";
|
|
2428
2427
|
value: string;
|
|
2429
|
-
}, {
|
|
2430
2428
|
type: "asset";
|
|
2429
|
+
}, {
|
|
2431
2430
|
value: string;
|
|
2431
|
+
type: "asset";
|
|
2432
2432
|
}>, z.ZodObject<{
|
|
2433
2433
|
type: z.ZodLiteral<"url">;
|
|
2434
2434
|
url: z.ZodString;
|
|
@@ -2441,24 +2441,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2441
2441
|
}>]>;
|
|
2442
2442
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2443
2443
|
}, "strip", z.ZodTypeAny, {
|
|
2444
|
-
type: "image";
|
|
2445
2444
|
value: {
|
|
2446
|
-
type: "asset";
|
|
2447
2445
|
value: string;
|
|
2446
|
+
type: "asset";
|
|
2448
2447
|
} | {
|
|
2449
2448
|
type: "url";
|
|
2450
2449
|
url: string;
|
|
2451
2450
|
};
|
|
2451
|
+
type: "image";
|
|
2452
2452
|
hidden?: boolean | undefined;
|
|
2453
2453
|
}, {
|
|
2454
|
-
type: "image";
|
|
2455
2454
|
value: {
|
|
2456
|
-
type: "asset";
|
|
2457
2455
|
value: string;
|
|
2456
|
+
type: "asset";
|
|
2458
2457
|
} | {
|
|
2459
2458
|
type: "url";
|
|
2460
2459
|
url: string;
|
|
2461
2460
|
};
|
|
2461
|
+
type: "image";
|
|
2462
2462
|
hidden?: boolean | undefined;
|
|
2463
2463
|
}>, z.ZodObject<{
|
|
2464
2464
|
type: z.ZodLiteral<"layers">;
|
|
@@ -2468,13 +2468,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2468
2468
|
value: z.ZodNumber;
|
|
2469
2469
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2470
2470
|
}, "strip", z.ZodTypeAny, {
|
|
2471
|
-
type: "unit";
|
|
2472
2471
|
value: number;
|
|
2472
|
+
type: "unit";
|
|
2473
2473
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2474
2474
|
hidden?: boolean | undefined;
|
|
2475
2475
|
}, {
|
|
2476
|
-
type: "unit";
|
|
2477
2476
|
value: number;
|
|
2477
|
+
type: "unit";
|
|
2478
2478
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2479
2479
|
hidden?: boolean | undefined;
|
|
2480
2480
|
}>, z.ZodObject<{
|
|
@@ -2482,24 +2482,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2482
2482
|
value: z.ZodString;
|
|
2483
2483
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2484
2484
|
}, "strip", z.ZodTypeAny, {
|
|
2485
|
-
type: "keyword";
|
|
2486
2485
|
value: string;
|
|
2486
|
+
type: "keyword";
|
|
2487
2487
|
hidden?: boolean | undefined;
|
|
2488
2488
|
}, {
|
|
2489
|
-
type: "keyword";
|
|
2490
2489
|
value: string;
|
|
2490
|
+
type: "keyword";
|
|
2491
2491
|
hidden?: boolean | undefined;
|
|
2492
2492
|
}>, z.ZodObject<{
|
|
2493
2493
|
type: z.ZodLiteral<"unparsed">;
|
|
2494
2494
|
value: z.ZodString;
|
|
2495
2495
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2496
2496
|
}, "strip", z.ZodTypeAny, {
|
|
2497
|
-
type: "unparsed";
|
|
2498
2497
|
value: string;
|
|
2498
|
+
type: "unparsed";
|
|
2499
2499
|
hidden?: boolean | undefined;
|
|
2500
2500
|
}, {
|
|
2501
|
-
type: "unparsed";
|
|
2502
2501
|
value: string;
|
|
2502
|
+
type: "unparsed";
|
|
2503
2503
|
hidden?: boolean | undefined;
|
|
2504
2504
|
}>, z.ZodObject<{
|
|
2505
2505
|
type: z.ZodLiteral<"image">;
|
|
@@ -2507,11 +2507,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2507
2507
|
type: z.ZodLiteral<"asset">;
|
|
2508
2508
|
value: z.ZodString;
|
|
2509
2509
|
}, "strip", z.ZodTypeAny, {
|
|
2510
|
-
type: "asset";
|
|
2511
2510
|
value: string;
|
|
2512
|
-
}, {
|
|
2513
2511
|
type: "asset";
|
|
2512
|
+
}, {
|
|
2514
2513
|
value: string;
|
|
2514
|
+
type: "asset";
|
|
2515
2515
|
}>, z.ZodObject<{
|
|
2516
2516
|
type: z.ZodLiteral<"url">;
|
|
2517
2517
|
url: z.ZodString;
|
|
@@ -2524,24 +2524,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2524
2524
|
}>]>;
|
|
2525
2525
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2526
2526
|
}, "strip", z.ZodTypeAny, {
|
|
2527
|
-
type: "image";
|
|
2528
2527
|
value: {
|
|
2529
|
-
type: "asset";
|
|
2530
2528
|
value: string;
|
|
2529
|
+
type: "asset";
|
|
2531
2530
|
} | {
|
|
2532
2531
|
type: "url";
|
|
2533
2532
|
url: string;
|
|
2534
2533
|
};
|
|
2534
|
+
type: "image";
|
|
2535
2535
|
hidden?: boolean | undefined;
|
|
2536
2536
|
}, {
|
|
2537
|
-
type: "image";
|
|
2538
2537
|
value: {
|
|
2539
|
-
type: "asset";
|
|
2540
2538
|
value: string;
|
|
2539
|
+
type: "asset";
|
|
2541
2540
|
} | {
|
|
2542
2541
|
type: "url";
|
|
2543
2542
|
url: string;
|
|
2544
2543
|
};
|
|
2544
|
+
type: "image";
|
|
2545
2545
|
hidden?: boolean | undefined;
|
|
2546
2546
|
}>, z.ZodObject<{
|
|
2547
2547
|
type: z.ZodLiteral<"tuple">;
|
|
@@ -2551,13 +2551,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2551
2551
|
value: z.ZodNumber;
|
|
2552
2552
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2553
2553
|
}, "strip", z.ZodTypeAny, {
|
|
2554
|
-
type: "unit";
|
|
2555
2554
|
value: number;
|
|
2555
|
+
type: "unit";
|
|
2556
2556
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2557
2557
|
hidden?: boolean | undefined;
|
|
2558
2558
|
}, {
|
|
2559
|
-
type: "unit";
|
|
2560
2559
|
value: number;
|
|
2560
|
+
type: "unit";
|
|
2561
2561
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2562
2562
|
hidden?: boolean | undefined;
|
|
2563
2563
|
}>, z.ZodObject<{
|
|
@@ -2565,24 +2565,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2565
2565
|
value: z.ZodString;
|
|
2566
2566
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2567
2567
|
}, "strip", z.ZodTypeAny, {
|
|
2568
|
-
type: "keyword";
|
|
2569
2568
|
value: string;
|
|
2569
|
+
type: "keyword";
|
|
2570
2570
|
hidden?: boolean | undefined;
|
|
2571
2571
|
}, {
|
|
2572
|
-
type: "keyword";
|
|
2573
2572
|
value: string;
|
|
2573
|
+
type: "keyword";
|
|
2574
2574
|
hidden?: boolean | undefined;
|
|
2575
2575
|
}>, z.ZodObject<{
|
|
2576
2576
|
type: z.ZodLiteral<"unparsed">;
|
|
2577
2577
|
value: z.ZodString;
|
|
2578
2578
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2579
2579
|
}, "strip", z.ZodTypeAny, {
|
|
2580
|
-
type: "unparsed";
|
|
2581
2580
|
value: string;
|
|
2581
|
+
type: "unparsed";
|
|
2582
2582
|
hidden?: boolean | undefined;
|
|
2583
2583
|
}, {
|
|
2584
|
-
type: "unparsed";
|
|
2585
2584
|
value: string;
|
|
2585
|
+
type: "unparsed";
|
|
2586
2586
|
hidden?: boolean | undefined;
|
|
2587
2587
|
}>, z.ZodObject<{
|
|
2588
2588
|
type: z.ZodLiteral<"image">;
|
|
@@ -2590,11 +2590,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2590
2590
|
type: z.ZodLiteral<"asset">;
|
|
2591
2591
|
value: z.ZodString;
|
|
2592
2592
|
}, "strip", z.ZodTypeAny, {
|
|
2593
|
-
type: "asset";
|
|
2594
2593
|
value: string;
|
|
2595
|
-
}, {
|
|
2596
2594
|
type: "asset";
|
|
2595
|
+
}, {
|
|
2597
2596
|
value: string;
|
|
2597
|
+
type: "asset";
|
|
2598
2598
|
}>, z.ZodObject<{
|
|
2599
2599
|
type: z.ZodLiteral<"url">;
|
|
2600
2600
|
url: z.ZodString;
|
|
@@ -2607,24 +2607,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2607
2607
|
}>]>;
|
|
2608
2608
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2609
2609
|
}, "strip", z.ZodTypeAny, {
|
|
2610
|
-
type: "image";
|
|
2611
2610
|
value: {
|
|
2612
|
-
type: "asset";
|
|
2613
2611
|
value: string;
|
|
2612
|
+
type: "asset";
|
|
2614
2613
|
} | {
|
|
2615
2614
|
type: "url";
|
|
2616
2615
|
url: string;
|
|
2617
2616
|
};
|
|
2617
|
+
type: "image";
|
|
2618
2618
|
hidden?: boolean | undefined;
|
|
2619
2619
|
}, {
|
|
2620
|
-
type: "image";
|
|
2621
2620
|
value: {
|
|
2622
|
-
type: "asset";
|
|
2623
2621
|
value: string;
|
|
2622
|
+
type: "asset";
|
|
2624
2623
|
} | {
|
|
2625
2624
|
type: "url";
|
|
2626
2625
|
url: string;
|
|
2627
2626
|
};
|
|
2627
|
+
type: "image";
|
|
2628
2628
|
hidden?: boolean | undefined;
|
|
2629
2629
|
}>, z.ZodObject<{
|
|
2630
2630
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -2665,24 +2665,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2665
2665
|
value: z.ZodString;
|
|
2666
2666
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2667
2667
|
}, "strip", z.ZodTypeAny, {
|
|
2668
|
-
type: "unparsed";
|
|
2669
2668
|
value: string;
|
|
2669
|
+
type: "unparsed";
|
|
2670
2670
|
hidden?: boolean | undefined;
|
|
2671
2671
|
}, {
|
|
2672
|
-
type: "unparsed";
|
|
2673
2672
|
value: string;
|
|
2673
|
+
type: "unparsed";
|
|
2674
2674
|
hidden?: boolean | undefined;
|
|
2675
2675
|
}>, z.ZodObject<{
|
|
2676
2676
|
type: z.ZodLiteral<"keyword">;
|
|
2677
2677
|
value: z.ZodString;
|
|
2678
2678
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2679
2679
|
}, "strip", z.ZodTypeAny, {
|
|
2680
|
-
type: "keyword";
|
|
2681
2680
|
value: string;
|
|
2681
|
+
type: "keyword";
|
|
2682
2682
|
hidden?: boolean | undefined;
|
|
2683
2683
|
}, {
|
|
2684
|
-
type: "keyword";
|
|
2685
2684
|
value: string;
|
|
2685
|
+
type: "keyword";
|
|
2686
2686
|
hidden?: boolean | undefined;
|
|
2687
2687
|
}>, z.ZodObject<{
|
|
2688
2688
|
type: z.ZodLiteral<"unit">;
|
|
@@ -2690,13 +2690,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2690
2690
|
value: z.ZodNumber;
|
|
2691
2691
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2692
2692
|
}, "strip", z.ZodTypeAny, {
|
|
2693
|
-
type: "unit";
|
|
2694
2693
|
value: number;
|
|
2694
|
+
type: "unit";
|
|
2695
2695
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2696
2696
|
hidden?: boolean | undefined;
|
|
2697
2697
|
}, {
|
|
2698
|
-
type: "unit";
|
|
2699
2698
|
value: number;
|
|
2699
|
+
type: "unit";
|
|
2700
2700
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2701
2701
|
hidden?: boolean | undefined;
|
|
2702
2702
|
}>, z.ZodObject<{
|
|
@@ -2723,20 +2723,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2723
2723
|
}>]>>;
|
|
2724
2724
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2725
2725
|
}, "strip", z.ZodTypeAny, {
|
|
2726
|
-
type: "var";
|
|
2727
2726
|
value: string;
|
|
2727
|
+
type: "var";
|
|
2728
2728
|
fallback?: {
|
|
2729
|
-
type: "unit";
|
|
2730
2729
|
value: number;
|
|
2730
|
+
type: "unit";
|
|
2731
2731
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2732
2732
|
hidden?: boolean | undefined;
|
|
2733
2733
|
} | {
|
|
2734
|
-
type: "keyword";
|
|
2735
2734
|
value: string;
|
|
2735
|
+
type: "keyword";
|
|
2736
2736
|
hidden?: boolean | undefined;
|
|
2737
2737
|
} | {
|
|
2738
|
-
type: "unparsed";
|
|
2739
2738
|
value: string;
|
|
2739
|
+
type: "unparsed";
|
|
2740
2740
|
hidden?: boolean | undefined;
|
|
2741
2741
|
} | {
|
|
2742
2742
|
type: "rgb";
|
|
@@ -2748,20 +2748,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2748
2748
|
} | undefined;
|
|
2749
2749
|
hidden?: boolean | undefined;
|
|
2750
2750
|
}, {
|
|
2751
|
-
type: "var";
|
|
2752
2751
|
value: string;
|
|
2752
|
+
type: "var";
|
|
2753
2753
|
fallback?: {
|
|
2754
|
-
type: "unit";
|
|
2755
2754
|
value: number;
|
|
2755
|
+
type: "unit";
|
|
2756
2756
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2757
2757
|
hidden?: boolean | undefined;
|
|
2758
2758
|
} | {
|
|
2759
|
-
type: "keyword";
|
|
2760
2759
|
value: string;
|
|
2760
|
+
type: "keyword";
|
|
2761
2761
|
hidden?: boolean | undefined;
|
|
2762
2762
|
} | {
|
|
2763
|
-
type: "unparsed";
|
|
2764
2763
|
value: string;
|
|
2764
|
+
type: "unparsed";
|
|
2765
2765
|
hidden?: boolean | undefined;
|
|
2766
2766
|
} | {
|
|
2767
2767
|
type: "rgb";
|
|
@@ -2775,19 +2775,28 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2775
2775
|
}>]>, "many">;
|
|
2776
2776
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2777
2777
|
}, "strip", z.ZodTypeAny, {
|
|
2778
|
-
type: "tuple";
|
|
2779
2778
|
value: ({
|
|
2780
|
-
|
|
2779
|
+
value: {
|
|
2780
|
+
value: string;
|
|
2781
|
+
type: "asset";
|
|
2782
|
+
} | {
|
|
2783
|
+
type: "url";
|
|
2784
|
+
url: string;
|
|
2785
|
+
};
|
|
2786
|
+
type: "image";
|
|
2787
|
+
hidden?: boolean | undefined;
|
|
2788
|
+
} | {
|
|
2781
2789
|
value: number;
|
|
2790
|
+
type: "unit";
|
|
2782
2791
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2783
2792
|
hidden?: boolean | undefined;
|
|
2784
2793
|
} | {
|
|
2785
|
-
type: "keyword";
|
|
2786
2794
|
value: string;
|
|
2795
|
+
type: "keyword";
|
|
2787
2796
|
hidden?: boolean | undefined;
|
|
2788
2797
|
} | {
|
|
2789
|
-
type: "unparsed";
|
|
2790
2798
|
value: string;
|
|
2799
|
+
type: "unparsed";
|
|
2791
2800
|
hidden?: boolean | undefined;
|
|
2792
2801
|
} | {
|
|
2793
2802
|
type: "rgb";
|
|
@@ -2802,30 +2811,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2802
2811
|
args: StyleValue;
|
|
2803
2812
|
hidden?: boolean;
|
|
2804
2813
|
} | {
|
|
2805
|
-
type: "image";
|
|
2806
|
-
value: {
|
|
2807
|
-
type: "asset";
|
|
2808
|
-
value: string;
|
|
2809
|
-
} | {
|
|
2810
|
-
type: "url";
|
|
2811
|
-
url: string;
|
|
2812
|
-
};
|
|
2813
|
-
hidden?: boolean | undefined;
|
|
2814
|
-
} | {
|
|
2815
|
-
type: "var";
|
|
2816
2814
|
value: string;
|
|
2815
|
+
type: "var";
|
|
2817
2816
|
fallback?: {
|
|
2818
|
-
type: "unit";
|
|
2819
2817
|
value: number;
|
|
2818
|
+
type: "unit";
|
|
2820
2819
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2821
2820
|
hidden?: boolean | undefined;
|
|
2822
2821
|
} | {
|
|
2823
|
-
type: "keyword";
|
|
2824
2822
|
value: string;
|
|
2823
|
+
type: "keyword";
|
|
2825
2824
|
hidden?: boolean | undefined;
|
|
2826
2825
|
} | {
|
|
2827
|
-
type: "unparsed";
|
|
2828
2826
|
value: string;
|
|
2827
|
+
type: "unparsed";
|
|
2829
2828
|
hidden?: boolean | undefined;
|
|
2830
2829
|
} | {
|
|
2831
2830
|
type: "rgb";
|
|
@@ -2837,21 +2836,31 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2837
2836
|
} | undefined;
|
|
2838
2837
|
hidden?: boolean | undefined;
|
|
2839
2838
|
})[];
|
|
2839
|
+
type: "tuple";
|
|
2840
2840
|
hidden?: boolean | undefined;
|
|
2841
2841
|
}, {
|
|
2842
|
-
type: "tuple";
|
|
2843
2842
|
value: ({
|
|
2844
|
-
|
|
2843
|
+
value: {
|
|
2844
|
+
value: string;
|
|
2845
|
+
type: "asset";
|
|
2846
|
+
} | {
|
|
2847
|
+
type: "url";
|
|
2848
|
+
url: string;
|
|
2849
|
+
};
|
|
2850
|
+
type: "image";
|
|
2851
|
+
hidden?: boolean | undefined;
|
|
2852
|
+
} | {
|
|
2845
2853
|
value: number;
|
|
2854
|
+
type: "unit";
|
|
2846
2855
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2847
2856
|
hidden?: boolean | undefined;
|
|
2848
2857
|
} | {
|
|
2849
|
-
type: "keyword";
|
|
2850
2858
|
value: string;
|
|
2859
|
+
type: "keyword";
|
|
2851
2860
|
hidden?: boolean | undefined;
|
|
2852
2861
|
} | {
|
|
2853
|
-
type: "unparsed";
|
|
2854
2862
|
value: string;
|
|
2863
|
+
type: "unparsed";
|
|
2855
2864
|
hidden?: boolean | undefined;
|
|
2856
2865
|
} | {
|
|
2857
2866
|
type: "rgb";
|
|
@@ -2866,30 +2875,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2866
2875
|
args: StyleValue;
|
|
2867
2876
|
hidden?: boolean;
|
|
2868
2877
|
} | {
|
|
2869
|
-
type: "image";
|
|
2870
|
-
value: {
|
|
2871
|
-
type: "asset";
|
|
2872
|
-
value: string;
|
|
2873
|
-
} | {
|
|
2874
|
-
type: "url";
|
|
2875
|
-
url: string;
|
|
2876
|
-
};
|
|
2877
|
-
hidden?: boolean | undefined;
|
|
2878
|
-
} | {
|
|
2879
|
-
type: "var";
|
|
2880
2878
|
value: string;
|
|
2879
|
+
type: "var";
|
|
2881
2880
|
fallback?: {
|
|
2882
|
-
type: "unit";
|
|
2883
2881
|
value: number;
|
|
2882
|
+
type: "unit";
|
|
2884
2883
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2885
2884
|
hidden?: boolean | undefined;
|
|
2886
2885
|
} | {
|
|
2887
|
-
type: "keyword";
|
|
2888
2886
|
value: string;
|
|
2887
|
+
type: "keyword";
|
|
2889
2888
|
hidden?: boolean | undefined;
|
|
2890
2889
|
} | {
|
|
2891
|
-
type: "unparsed";
|
|
2892
2890
|
value: string;
|
|
2891
|
+
type: "unparsed";
|
|
2893
2892
|
hidden?: boolean | undefined;
|
|
2894
2893
|
} | {
|
|
2895
2894
|
type: "rgb";
|
|
@@ -2901,6 +2900,7 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2901
2900
|
} | undefined;
|
|
2902
2901
|
hidden?: boolean | undefined;
|
|
2903
2902
|
})[];
|
|
2903
|
+
type: "tuple";
|
|
2904
2904
|
hidden?: boolean | undefined;
|
|
2905
2905
|
}>, z.ZodObject<{
|
|
2906
2906
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -2928,12 +2928,12 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2928
2928
|
value: z.ZodString;
|
|
2929
2929
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2930
2930
|
}, "strip", z.ZodTypeAny, {
|
|
2931
|
-
type: "invalid";
|
|
2932
2931
|
value: string;
|
|
2932
|
+
type: "invalid";
|
|
2933
2933
|
hidden?: boolean | undefined;
|
|
2934
2934
|
}, {
|
|
2935
|
-
type: "invalid";
|
|
2936
2935
|
value: string;
|
|
2936
|
+
type: "invalid";
|
|
2937
2937
|
hidden?: boolean | undefined;
|
|
2938
2938
|
}>, z.ZodType<{
|
|
2939
2939
|
type: "function";
|
|
@@ -2953,24 +2953,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2953
2953
|
value: z.ZodString;
|
|
2954
2954
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2955
2955
|
}, "strip", z.ZodTypeAny, {
|
|
2956
|
-
type: "unparsed";
|
|
2957
2956
|
value: string;
|
|
2957
|
+
type: "unparsed";
|
|
2958
2958
|
hidden?: boolean | undefined;
|
|
2959
2959
|
}, {
|
|
2960
|
-
type: "unparsed";
|
|
2961
2960
|
value: string;
|
|
2961
|
+
type: "unparsed";
|
|
2962
2962
|
hidden?: boolean | undefined;
|
|
2963
2963
|
}>, z.ZodObject<{
|
|
2964
2964
|
type: z.ZodLiteral<"keyword">;
|
|
2965
2965
|
value: z.ZodString;
|
|
2966
2966
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2967
2967
|
}, "strip", z.ZodTypeAny, {
|
|
2968
|
-
type: "keyword";
|
|
2969
2968
|
value: string;
|
|
2969
|
+
type: "keyword";
|
|
2970
2970
|
hidden?: boolean | undefined;
|
|
2971
2971
|
}, {
|
|
2972
|
-
type: "keyword";
|
|
2973
2972
|
value: string;
|
|
2973
|
+
type: "keyword";
|
|
2974
2974
|
hidden?: boolean | undefined;
|
|
2975
2975
|
}>, z.ZodObject<{
|
|
2976
2976
|
type: z.ZodLiteral<"unit">;
|
|
@@ -2978,13 +2978,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
2978
2978
|
value: z.ZodNumber;
|
|
2979
2979
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2980
2980
|
}, "strip", z.ZodTypeAny, {
|
|
2981
|
-
type: "unit";
|
|
2982
2981
|
value: number;
|
|
2982
|
+
type: "unit";
|
|
2983
2983
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2984
2984
|
hidden?: boolean | undefined;
|
|
2985
2985
|
}, {
|
|
2986
|
-
type: "unit";
|
|
2987
2986
|
value: number;
|
|
2987
|
+
type: "unit";
|
|
2988
2988
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2989
2989
|
hidden?: boolean | undefined;
|
|
2990
2990
|
}>, z.ZodObject<{
|
|
@@ -3011,20 +3011,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3011
3011
|
}>]>>;
|
|
3012
3012
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3013
3013
|
}, "strip", z.ZodTypeAny, {
|
|
3014
|
-
type: "var";
|
|
3015
3014
|
value: string;
|
|
3015
|
+
type: "var";
|
|
3016
3016
|
fallback?: {
|
|
3017
|
-
type: "unit";
|
|
3018
3017
|
value: number;
|
|
3018
|
+
type: "unit";
|
|
3019
3019
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3020
3020
|
hidden?: boolean | undefined;
|
|
3021
3021
|
} | {
|
|
3022
|
-
type: "keyword";
|
|
3023
3022
|
value: string;
|
|
3023
|
+
type: "keyword";
|
|
3024
3024
|
hidden?: boolean | undefined;
|
|
3025
3025
|
} | {
|
|
3026
|
-
type: "unparsed";
|
|
3027
3026
|
value: string;
|
|
3027
|
+
type: "unparsed";
|
|
3028
3028
|
hidden?: boolean | undefined;
|
|
3029
3029
|
} | {
|
|
3030
3030
|
type: "rgb";
|
|
@@ -3036,20 +3036,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3036
3036
|
} | undefined;
|
|
3037
3037
|
hidden?: boolean | undefined;
|
|
3038
3038
|
}, {
|
|
3039
|
-
type: "var";
|
|
3040
3039
|
value: string;
|
|
3040
|
+
type: "var";
|
|
3041
3041
|
fallback?: {
|
|
3042
|
-
type: "unit";
|
|
3043
3042
|
value: number;
|
|
3043
|
+
type: "unit";
|
|
3044
3044
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3045
3045
|
hidden?: boolean | undefined;
|
|
3046
3046
|
} | {
|
|
3047
|
-
type: "keyword";
|
|
3048
3047
|
value: string;
|
|
3048
|
+
type: "keyword";
|
|
3049
3049
|
hidden?: boolean | undefined;
|
|
3050
3050
|
} | {
|
|
3051
|
-
type: "unparsed";
|
|
3052
3051
|
value: string;
|
|
3052
|
+
type: "unparsed";
|
|
3053
3053
|
hidden?: boolean | undefined;
|
|
3054
3054
|
} | {
|
|
3055
3055
|
type: "rgb";
|
|
@@ -3063,19 +3063,28 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3063
3063
|
}>]>, "many">;
|
|
3064
3064
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3065
3065
|
}, "strip", z.ZodTypeAny, {
|
|
3066
|
-
type: "layers";
|
|
3067
3066
|
value: ({
|
|
3068
|
-
|
|
3067
|
+
value: {
|
|
3068
|
+
value: string;
|
|
3069
|
+
type: "asset";
|
|
3070
|
+
} | {
|
|
3071
|
+
type: "url";
|
|
3072
|
+
url: string;
|
|
3073
|
+
};
|
|
3074
|
+
type: "image";
|
|
3075
|
+
hidden?: boolean | undefined;
|
|
3076
|
+
} | {
|
|
3069
3077
|
value: number;
|
|
3078
|
+
type: "unit";
|
|
3070
3079
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3071
3080
|
hidden?: boolean | undefined;
|
|
3072
3081
|
} | {
|
|
3073
|
-
type: "keyword";
|
|
3074
3082
|
value: string;
|
|
3083
|
+
type: "keyword";
|
|
3075
3084
|
hidden?: boolean | undefined;
|
|
3076
3085
|
} | {
|
|
3077
|
-
type: "unparsed";
|
|
3078
3086
|
value: string;
|
|
3087
|
+
type: "unparsed";
|
|
3079
3088
|
hidden?: boolean | undefined;
|
|
3080
3089
|
} | {
|
|
3081
3090
|
type: "rgb";
|
|
@@ -3090,30 +3099,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3090
3099
|
args: StyleValue;
|
|
3091
3100
|
hidden?: boolean;
|
|
3092
3101
|
} | {
|
|
3093
|
-
type: "image";
|
|
3094
|
-
value: {
|
|
3095
|
-
type: "asset";
|
|
3096
|
-
value: string;
|
|
3097
|
-
} | {
|
|
3098
|
-
type: "url";
|
|
3099
|
-
url: string;
|
|
3100
|
-
};
|
|
3101
|
-
hidden?: boolean | undefined;
|
|
3102
|
-
} | {
|
|
3103
|
-
type: "var";
|
|
3104
3102
|
value: string;
|
|
3103
|
+
type: "var";
|
|
3105
3104
|
fallback?: {
|
|
3106
|
-
type: "unit";
|
|
3107
3105
|
value: number;
|
|
3106
|
+
type: "unit";
|
|
3108
3107
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3109
3108
|
hidden?: boolean | undefined;
|
|
3110
3109
|
} | {
|
|
3111
|
-
type: "keyword";
|
|
3112
3110
|
value: string;
|
|
3111
|
+
type: "keyword";
|
|
3113
3112
|
hidden?: boolean | undefined;
|
|
3114
3113
|
} | {
|
|
3115
|
-
type: "unparsed";
|
|
3116
3114
|
value: string;
|
|
3115
|
+
type: "unparsed";
|
|
3117
3116
|
hidden?: boolean | undefined;
|
|
3118
3117
|
} | {
|
|
3119
3118
|
type: "rgb";
|
|
@@ -3125,19 +3124,28 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3125
3124
|
} | undefined;
|
|
3126
3125
|
hidden?: boolean | undefined;
|
|
3127
3126
|
} | {
|
|
3128
|
-
type: "tuple";
|
|
3129
3127
|
value: ({
|
|
3130
|
-
|
|
3128
|
+
value: {
|
|
3129
|
+
value: string;
|
|
3130
|
+
type: "asset";
|
|
3131
|
+
} | {
|
|
3132
|
+
type: "url";
|
|
3133
|
+
url: string;
|
|
3134
|
+
};
|
|
3135
|
+
type: "image";
|
|
3136
|
+
hidden?: boolean | undefined;
|
|
3137
|
+
} | {
|
|
3131
3138
|
value: number;
|
|
3139
|
+
type: "unit";
|
|
3132
3140
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3133
3141
|
hidden?: boolean | undefined;
|
|
3134
3142
|
} | {
|
|
3135
|
-
type: "keyword";
|
|
3136
3143
|
value: string;
|
|
3144
|
+
type: "keyword";
|
|
3137
3145
|
hidden?: boolean | undefined;
|
|
3138
3146
|
} | {
|
|
3139
|
-
type: "unparsed";
|
|
3140
3147
|
value: string;
|
|
3148
|
+
type: "unparsed";
|
|
3141
3149
|
hidden?: boolean | undefined;
|
|
3142
3150
|
} | {
|
|
3143
3151
|
type: "rgb";
|
|
@@ -3152,30 +3160,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3152
3160
|
args: StyleValue;
|
|
3153
3161
|
hidden?: boolean;
|
|
3154
3162
|
} | {
|
|
3155
|
-
type: "image";
|
|
3156
|
-
value: {
|
|
3157
|
-
type: "asset";
|
|
3158
|
-
value: string;
|
|
3159
|
-
} | {
|
|
3160
|
-
type: "url";
|
|
3161
|
-
url: string;
|
|
3162
|
-
};
|
|
3163
|
-
hidden?: boolean | undefined;
|
|
3164
|
-
} | {
|
|
3165
|
-
type: "var";
|
|
3166
3163
|
value: string;
|
|
3164
|
+
type: "var";
|
|
3167
3165
|
fallback?: {
|
|
3168
|
-
type: "unit";
|
|
3169
3166
|
value: number;
|
|
3167
|
+
type: "unit";
|
|
3170
3168
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3171
3169
|
hidden?: boolean | undefined;
|
|
3172
3170
|
} | {
|
|
3173
|
-
type: "keyword";
|
|
3174
3171
|
value: string;
|
|
3172
|
+
type: "keyword";
|
|
3175
3173
|
hidden?: boolean | undefined;
|
|
3176
3174
|
} | {
|
|
3177
|
-
type: "unparsed";
|
|
3178
3175
|
value: string;
|
|
3176
|
+
type: "unparsed";
|
|
3179
3177
|
hidden?: boolean | undefined;
|
|
3180
3178
|
} | {
|
|
3181
3179
|
type: "rgb";
|
|
@@ -3187,27 +3185,38 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3187
3185
|
} | undefined;
|
|
3188
3186
|
hidden?: boolean | undefined;
|
|
3189
3187
|
})[];
|
|
3188
|
+
type: "tuple";
|
|
3190
3189
|
hidden?: boolean | undefined;
|
|
3191
3190
|
} | {
|
|
3192
|
-
type: "invalid";
|
|
3193
3191
|
value: string;
|
|
3192
|
+
type: "invalid";
|
|
3194
3193
|
hidden?: boolean | undefined;
|
|
3195
3194
|
})[];
|
|
3195
|
+
type: "layers";
|
|
3196
3196
|
hidden?: boolean | undefined;
|
|
3197
3197
|
}, {
|
|
3198
|
-
type: "layers";
|
|
3199
3198
|
value: ({
|
|
3200
|
-
|
|
3199
|
+
value: {
|
|
3200
|
+
value: string;
|
|
3201
|
+
type: "asset";
|
|
3202
|
+
} | {
|
|
3203
|
+
type: "url";
|
|
3204
|
+
url: string;
|
|
3205
|
+
};
|
|
3206
|
+
type: "image";
|
|
3207
|
+
hidden?: boolean | undefined;
|
|
3208
|
+
} | {
|
|
3201
3209
|
value: number;
|
|
3210
|
+
type: "unit";
|
|
3202
3211
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3203
3212
|
hidden?: boolean | undefined;
|
|
3204
3213
|
} | {
|
|
3205
|
-
type: "keyword";
|
|
3206
3214
|
value: string;
|
|
3215
|
+
type: "keyword";
|
|
3207
3216
|
hidden?: boolean | undefined;
|
|
3208
3217
|
} | {
|
|
3209
|
-
type: "unparsed";
|
|
3210
3218
|
value: string;
|
|
3219
|
+
type: "unparsed";
|
|
3211
3220
|
hidden?: boolean | undefined;
|
|
3212
3221
|
} | {
|
|
3213
3222
|
type: "rgb";
|
|
@@ -3222,30 +3231,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3222
3231
|
args: StyleValue;
|
|
3223
3232
|
hidden?: boolean;
|
|
3224
3233
|
} | {
|
|
3225
|
-
type: "image";
|
|
3226
|
-
value: {
|
|
3227
|
-
type: "asset";
|
|
3228
|
-
value: string;
|
|
3229
|
-
} | {
|
|
3230
|
-
type: "url";
|
|
3231
|
-
url: string;
|
|
3232
|
-
};
|
|
3233
|
-
hidden?: boolean | undefined;
|
|
3234
|
-
} | {
|
|
3235
|
-
type: "var";
|
|
3236
3234
|
value: string;
|
|
3235
|
+
type: "var";
|
|
3237
3236
|
fallback?: {
|
|
3238
|
-
type: "unit";
|
|
3239
3237
|
value: number;
|
|
3238
|
+
type: "unit";
|
|
3240
3239
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3241
3240
|
hidden?: boolean | undefined;
|
|
3242
3241
|
} | {
|
|
3243
|
-
type: "keyword";
|
|
3244
3242
|
value: string;
|
|
3243
|
+
type: "keyword";
|
|
3245
3244
|
hidden?: boolean | undefined;
|
|
3246
3245
|
} | {
|
|
3247
|
-
type: "unparsed";
|
|
3248
3246
|
value: string;
|
|
3247
|
+
type: "unparsed";
|
|
3249
3248
|
hidden?: boolean | undefined;
|
|
3250
3249
|
} | {
|
|
3251
3250
|
type: "rgb";
|
|
@@ -3257,19 +3256,28 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3257
3256
|
} | undefined;
|
|
3258
3257
|
hidden?: boolean | undefined;
|
|
3259
3258
|
} | {
|
|
3260
|
-
type: "tuple";
|
|
3261
3259
|
value: ({
|
|
3262
|
-
|
|
3260
|
+
value: {
|
|
3261
|
+
value: string;
|
|
3262
|
+
type: "asset";
|
|
3263
|
+
} | {
|
|
3264
|
+
type: "url";
|
|
3265
|
+
url: string;
|
|
3266
|
+
};
|
|
3267
|
+
type: "image";
|
|
3268
|
+
hidden?: boolean | undefined;
|
|
3269
|
+
} | {
|
|
3263
3270
|
value: number;
|
|
3271
|
+
type: "unit";
|
|
3264
3272
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3265
3273
|
hidden?: boolean | undefined;
|
|
3266
3274
|
} | {
|
|
3267
|
-
type: "keyword";
|
|
3268
3275
|
value: string;
|
|
3276
|
+
type: "keyword";
|
|
3269
3277
|
hidden?: boolean | undefined;
|
|
3270
3278
|
} | {
|
|
3271
|
-
type: "unparsed";
|
|
3272
3279
|
value: string;
|
|
3280
|
+
type: "unparsed";
|
|
3273
3281
|
hidden?: boolean | undefined;
|
|
3274
3282
|
} | {
|
|
3275
3283
|
type: "rgb";
|
|
@@ -3284,30 +3292,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3284
3292
|
args: StyleValue;
|
|
3285
3293
|
hidden?: boolean;
|
|
3286
3294
|
} | {
|
|
3287
|
-
type: "image";
|
|
3288
|
-
value: {
|
|
3289
|
-
type: "asset";
|
|
3290
|
-
value: string;
|
|
3291
|
-
} | {
|
|
3292
|
-
type: "url";
|
|
3293
|
-
url: string;
|
|
3294
|
-
};
|
|
3295
|
-
hidden?: boolean | undefined;
|
|
3296
|
-
} | {
|
|
3297
|
-
type: "var";
|
|
3298
3295
|
value: string;
|
|
3296
|
+
type: "var";
|
|
3299
3297
|
fallback?: {
|
|
3300
|
-
type: "unit";
|
|
3301
3298
|
value: number;
|
|
3299
|
+
type: "unit";
|
|
3302
3300
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3303
3301
|
hidden?: boolean | undefined;
|
|
3304
3302
|
} | {
|
|
3305
|
-
type: "keyword";
|
|
3306
3303
|
value: string;
|
|
3304
|
+
type: "keyword";
|
|
3307
3305
|
hidden?: boolean | undefined;
|
|
3308
3306
|
} | {
|
|
3309
|
-
type: "unparsed";
|
|
3310
3307
|
value: string;
|
|
3308
|
+
type: "unparsed";
|
|
3311
3309
|
hidden?: boolean | undefined;
|
|
3312
3310
|
} | {
|
|
3313
3311
|
type: "rgb";
|
|
@@ -3319,12 +3317,14 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3319
3317
|
} | undefined;
|
|
3320
3318
|
hidden?: boolean | undefined;
|
|
3321
3319
|
})[];
|
|
3320
|
+
type: "tuple";
|
|
3322
3321
|
hidden?: boolean | undefined;
|
|
3323
3322
|
} | {
|
|
3324
|
-
type: "invalid";
|
|
3325
3323
|
value: string;
|
|
3324
|
+
type: "invalid";
|
|
3326
3325
|
hidden?: boolean | undefined;
|
|
3327
3326
|
})[];
|
|
3327
|
+
type: "layers";
|
|
3328
3328
|
hidden?: boolean | undefined;
|
|
3329
3329
|
}>, z.ZodObject<{
|
|
3330
3330
|
type: z.ZodLiteral<"unit">;
|
|
@@ -3332,13 +3332,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3332
3332
|
value: z.ZodNumber;
|
|
3333
3333
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3334
3334
|
}, "strip", z.ZodTypeAny, {
|
|
3335
|
-
type: "unit";
|
|
3336
3335
|
value: number;
|
|
3336
|
+
type: "unit";
|
|
3337
3337
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3338
3338
|
hidden?: boolean | undefined;
|
|
3339
3339
|
}, {
|
|
3340
|
-
type: "unit";
|
|
3341
3340
|
value: number;
|
|
3341
|
+
type: "unit";
|
|
3342
3342
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3343
3343
|
hidden?: boolean | undefined;
|
|
3344
3344
|
}>, z.ZodObject<{
|
|
@@ -3346,24 +3346,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3346
3346
|
value: z.ZodString;
|
|
3347
3347
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3348
3348
|
}, "strip", z.ZodTypeAny, {
|
|
3349
|
-
type: "keyword";
|
|
3350
3349
|
value: string;
|
|
3350
|
+
type: "keyword";
|
|
3351
3351
|
hidden?: boolean | undefined;
|
|
3352
3352
|
}, {
|
|
3353
|
-
type: "keyword";
|
|
3354
3353
|
value: string;
|
|
3354
|
+
type: "keyword";
|
|
3355
3355
|
hidden?: boolean | undefined;
|
|
3356
3356
|
}>, z.ZodObject<{
|
|
3357
3357
|
type: z.ZodLiteral<"fontFamily">;
|
|
3358
3358
|
value: z.ZodArray<z.ZodString, "many">;
|
|
3359
3359
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3360
3360
|
}, "strip", z.ZodTypeAny, {
|
|
3361
|
-
type: "fontFamily";
|
|
3362
3361
|
value: string[];
|
|
3362
|
+
type: "fontFamily";
|
|
3363
3363
|
hidden?: boolean | undefined;
|
|
3364
3364
|
}, {
|
|
3365
|
-
type: "fontFamily";
|
|
3366
3365
|
value: string[];
|
|
3366
|
+
type: "fontFamily";
|
|
3367
3367
|
hidden?: boolean | undefined;
|
|
3368
3368
|
}>, z.ZodObject<{
|
|
3369
3369
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -3391,12 +3391,12 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3391
3391
|
value: z.ZodString;
|
|
3392
3392
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3393
3393
|
}, "strip", z.ZodTypeAny, {
|
|
3394
|
-
type: "unparsed";
|
|
3395
3394
|
value: string;
|
|
3395
|
+
type: "unparsed";
|
|
3396
3396
|
hidden?: boolean | undefined;
|
|
3397
3397
|
}, {
|
|
3398
|
-
type: "unparsed";
|
|
3399
3398
|
value: string;
|
|
3399
|
+
type: "unparsed";
|
|
3400
3400
|
hidden?: boolean | undefined;
|
|
3401
3401
|
}>, z.ZodObject<{
|
|
3402
3402
|
type: z.ZodLiteral<"tuple">;
|
|
@@ -3406,13 +3406,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3406
3406
|
value: z.ZodNumber;
|
|
3407
3407
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3408
3408
|
}, "strip", z.ZodTypeAny, {
|
|
3409
|
-
type: "unit";
|
|
3410
3409
|
value: number;
|
|
3410
|
+
type: "unit";
|
|
3411
3411
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3412
3412
|
hidden?: boolean | undefined;
|
|
3413
3413
|
}, {
|
|
3414
|
-
type: "unit";
|
|
3415
3414
|
value: number;
|
|
3415
|
+
type: "unit";
|
|
3416
3416
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3417
3417
|
hidden?: boolean | undefined;
|
|
3418
3418
|
}>, z.ZodObject<{
|
|
@@ -3420,24 +3420,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3420
3420
|
value: z.ZodString;
|
|
3421
3421
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3422
3422
|
}, "strip", z.ZodTypeAny, {
|
|
3423
|
-
type: "keyword";
|
|
3424
3423
|
value: string;
|
|
3424
|
+
type: "keyword";
|
|
3425
3425
|
hidden?: boolean | undefined;
|
|
3426
3426
|
}, {
|
|
3427
|
-
type: "keyword";
|
|
3428
3427
|
value: string;
|
|
3428
|
+
type: "keyword";
|
|
3429
3429
|
hidden?: boolean | undefined;
|
|
3430
3430
|
}>, z.ZodObject<{
|
|
3431
3431
|
type: z.ZodLiteral<"unparsed">;
|
|
3432
3432
|
value: z.ZodString;
|
|
3433
3433
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3434
3434
|
}, "strip", z.ZodTypeAny, {
|
|
3435
|
-
type: "unparsed";
|
|
3436
3435
|
value: string;
|
|
3436
|
+
type: "unparsed";
|
|
3437
3437
|
hidden?: boolean | undefined;
|
|
3438
3438
|
}, {
|
|
3439
|
-
type: "unparsed";
|
|
3440
3439
|
value: string;
|
|
3440
|
+
type: "unparsed";
|
|
3441
3441
|
hidden?: boolean | undefined;
|
|
3442
3442
|
}>, z.ZodObject<{
|
|
3443
3443
|
type: z.ZodLiteral<"image">;
|
|
@@ -3445,11 +3445,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3445
3445
|
type: z.ZodLiteral<"asset">;
|
|
3446
3446
|
value: z.ZodString;
|
|
3447
3447
|
}, "strip", z.ZodTypeAny, {
|
|
3448
|
-
type: "asset";
|
|
3449
3448
|
value: string;
|
|
3450
|
-
}, {
|
|
3451
3449
|
type: "asset";
|
|
3450
|
+
}, {
|
|
3452
3451
|
value: string;
|
|
3452
|
+
type: "asset";
|
|
3453
3453
|
}>, z.ZodObject<{
|
|
3454
3454
|
type: z.ZodLiteral<"url">;
|
|
3455
3455
|
url: z.ZodString;
|
|
@@ -3462,24 +3462,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3462
3462
|
}>]>;
|
|
3463
3463
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3464
3464
|
}, "strip", z.ZodTypeAny, {
|
|
3465
|
-
type: "image";
|
|
3466
3465
|
value: {
|
|
3467
|
-
type: "asset";
|
|
3468
3466
|
value: string;
|
|
3467
|
+
type: "asset";
|
|
3469
3468
|
} | {
|
|
3470
3469
|
type: "url";
|
|
3471
3470
|
url: string;
|
|
3472
3471
|
};
|
|
3472
|
+
type: "image";
|
|
3473
3473
|
hidden?: boolean | undefined;
|
|
3474
3474
|
}, {
|
|
3475
|
-
type: "image";
|
|
3476
3475
|
value: {
|
|
3477
|
-
type: "asset";
|
|
3478
3476
|
value: string;
|
|
3477
|
+
type: "asset";
|
|
3479
3478
|
} | {
|
|
3480
3479
|
type: "url";
|
|
3481
3480
|
url: string;
|
|
3482
3481
|
};
|
|
3482
|
+
type: "image";
|
|
3483
3483
|
hidden?: boolean | undefined;
|
|
3484
3484
|
}>, z.ZodObject<{
|
|
3485
3485
|
type: z.ZodLiteral<"rgb">;
|
|
@@ -3520,24 +3520,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3520
3520
|
value: z.ZodString;
|
|
3521
3521
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3522
3522
|
}, "strip", z.ZodTypeAny, {
|
|
3523
|
-
type: "unparsed";
|
|
3524
3523
|
value: string;
|
|
3524
|
+
type: "unparsed";
|
|
3525
3525
|
hidden?: boolean | undefined;
|
|
3526
3526
|
}, {
|
|
3527
|
-
type: "unparsed";
|
|
3528
3527
|
value: string;
|
|
3528
|
+
type: "unparsed";
|
|
3529
3529
|
hidden?: boolean | undefined;
|
|
3530
3530
|
}>, z.ZodObject<{
|
|
3531
3531
|
type: z.ZodLiteral<"keyword">;
|
|
3532
3532
|
value: z.ZodString;
|
|
3533
3533
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3534
3534
|
}, "strip", z.ZodTypeAny, {
|
|
3535
|
-
type: "keyword";
|
|
3536
3535
|
value: string;
|
|
3536
|
+
type: "keyword";
|
|
3537
3537
|
hidden?: boolean | undefined;
|
|
3538
3538
|
}, {
|
|
3539
|
-
type: "keyword";
|
|
3540
3539
|
value: string;
|
|
3540
|
+
type: "keyword";
|
|
3541
3541
|
hidden?: boolean | undefined;
|
|
3542
3542
|
}>, z.ZodObject<{
|
|
3543
3543
|
type: z.ZodLiteral<"unit">;
|
|
@@ -3545,13 +3545,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3545
3545
|
value: z.ZodNumber;
|
|
3546
3546
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3547
3547
|
}, "strip", z.ZodTypeAny, {
|
|
3548
|
-
type: "unit";
|
|
3549
3548
|
value: number;
|
|
3549
|
+
type: "unit";
|
|
3550
3550
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3551
3551
|
hidden?: boolean | undefined;
|
|
3552
3552
|
}, {
|
|
3553
|
-
type: "unit";
|
|
3554
3553
|
value: number;
|
|
3554
|
+
type: "unit";
|
|
3555
3555
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3556
3556
|
hidden?: boolean | undefined;
|
|
3557
3557
|
}>, z.ZodObject<{
|
|
@@ -3578,20 +3578,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3578
3578
|
}>]>>;
|
|
3579
3579
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3580
3580
|
}, "strip", z.ZodTypeAny, {
|
|
3581
|
-
type: "var";
|
|
3582
3581
|
value: string;
|
|
3582
|
+
type: "var";
|
|
3583
3583
|
fallback?: {
|
|
3584
|
-
type: "unit";
|
|
3585
3584
|
value: number;
|
|
3585
|
+
type: "unit";
|
|
3586
3586
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3587
3587
|
hidden?: boolean | undefined;
|
|
3588
3588
|
} | {
|
|
3589
|
-
type: "keyword";
|
|
3590
3589
|
value: string;
|
|
3590
|
+
type: "keyword";
|
|
3591
3591
|
hidden?: boolean | undefined;
|
|
3592
3592
|
} | {
|
|
3593
|
-
type: "unparsed";
|
|
3594
3593
|
value: string;
|
|
3594
|
+
type: "unparsed";
|
|
3595
3595
|
hidden?: boolean | undefined;
|
|
3596
3596
|
} | {
|
|
3597
3597
|
type: "rgb";
|
|
@@ -3603,20 +3603,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3603
3603
|
} | undefined;
|
|
3604
3604
|
hidden?: boolean | undefined;
|
|
3605
3605
|
}, {
|
|
3606
|
-
type: "var";
|
|
3607
3606
|
value: string;
|
|
3607
|
+
type: "var";
|
|
3608
3608
|
fallback?: {
|
|
3609
|
-
type: "unit";
|
|
3610
3609
|
value: number;
|
|
3610
|
+
type: "unit";
|
|
3611
3611
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3612
3612
|
hidden?: boolean | undefined;
|
|
3613
3613
|
} | {
|
|
3614
|
-
type: "keyword";
|
|
3615
3614
|
value: string;
|
|
3615
|
+
type: "keyword";
|
|
3616
3616
|
hidden?: boolean | undefined;
|
|
3617
3617
|
} | {
|
|
3618
|
-
type: "unparsed";
|
|
3619
3618
|
value: string;
|
|
3619
|
+
type: "unparsed";
|
|
3620
3620
|
hidden?: boolean | undefined;
|
|
3621
3621
|
} | {
|
|
3622
3622
|
type: "rgb";
|
|
@@ -3630,19 +3630,28 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3630
3630
|
}>]>, "many">;
|
|
3631
3631
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3632
3632
|
}, "strip", z.ZodTypeAny, {
|
|
3633
|
-
type: "tuple";
|
|
3634
3633
|
value: ({
|
|
3635
|
-
|
|
3634
|
+
value: {
|
|
3635
|
+
value: string;
|
|
3636
|
+
type: "asset";
|
|
3637
|
+
} | {
|
|
3638
|
+
type: "url";
|
|
3639
|
+
url: string;
|
|
3640
|
+
};
|
|
3641
|
+
type: "image";
|
|
3642
|
+
hidden?: boolean | undefined;
|
|
3643
|
+
} | {
|
|
3636
3644
|
value: number;
|
|
3645
|
+
type: "unit";
|
|
3637
3646
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3638
3647
|
hidden?: boolean | undefined;
|
|
3639
3648
|
} | {
|
|
3640
|
-
type: "keyword";
|
|
3641
3649
|
value: string;
|
|
3650
|
+
type: "keyword";
|
|
3642
3651
|
hidden?: boolean | undefined;
|
|
3643
3652
|
} | {
|
|
3644
|
-
type: "unparsed";
|
|
3645
3653
|
value: string;
|
|
3654
|
+
type: "unparsed";
|
|
3646
3655
|
hidden?: boolean | undefined;
|
|
3647
3656
|
} | {
|
|
3648
3657
|
type: "rgb";
|
|
@@ -3657,30 +3666,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3657
3666
|
args: StyleValue;
|
|
3658
3667
|
hidden?: boolean;
|
|
3659
3668
|
} | {
|
|
3660
|
-
type: "image";
|
|
3661
|
-
value: {
|
|
3662
|
-
type: "asset";
|
|
3663
|
-
value: string;
|
|
3664
|
-
} | {
|
|
3665
|
-
type: "url";
|
|
3666
|
-
url: string;
|
|
3667
|
-
};
|
|
3668
|
-
hidden?: boolean | undefined;
|
|
3669
|
-
} | {
|
|
3670
|
-
type: "var";
|
|
3671
3669
|
value: string;
|
|
3670
|
+
type: "var";
|
|
3672
3671
|
fallback?: {
|
|
3673
|
-
type: "unit";
|
|
3674
3672
|
value: number;
|
|
3673
|
+
type: "unit";
|
|
3675
3674
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3676
3675
|
hidden?: boolean | undefined;
|
|
3677
3676
|
} | {
|
|
3678
|
-
type: "keyword";
|
|
3679
3677
|
value: string;
|
|
3678
|
+
type: "keyword";
|
|
3680
3679
|
hidden?: boolean | undefined;
|
|
3681
3680
|
} | {
|
|
3682
|
-
type: "unparsed";
|
|
3683
3681
|
value: string;
|
|
3682
|
+
type: "unparsed";
|
|
3684
3683
|
hidden?: boolean | undefined;
|
|
3685
3684
|
} | {
|
|
3686
3685
|
type: "rgb";
|
|
@@ -3692,21 +3691,31 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3692
3691
|
} | undefined;
|
|
3693
3692
|
hidden?: boolean | undefined;
|
|
3694
3693
|
})[];
|
|
3694
|
+
type: "tuple";
|
|
3695
3695
|
hidden?: boolean | undefined;
|
|
3696
3696
|
}, {
|
|
3697
|
-
type: "tuple";
|
|
3698
3697
|
value: ({
|
|
3699
|
-
|
|
3698
|
+
value: {
|
|
3699
|
+
value: string;
|
|
3700
|
+
type: "asset";
|
|
3701
|
+
} | {
|
|
3702
|
+
type: "url";
|
|
3703
|
+
url: string;
|
|
3704
|
+
};
|
|
3705
|
+
type: "image";
|
|
3706
|
+
hidden?: boolean | undefined;
|
|
3707
|
+
} | {
|
|
3700
3708
|
value: number;
|
|
3709
|
+
type: "unit";
|
|
3701
3710
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3702
3711
|
hidden?: boolean | undefined;
|
|
3703
3712
|
} | {
|
|
3704
|
-
type: "keyword";
|
|
3705
3713
|
value: string;
|
|
3714
|
+
type: "keyword";
|
|
3706
3715
|
hidden?: boolean | undefined;
|
|
3707
3716
|
} | {
|
|
3708
|
-
type: "unparsed";
|
|
3709
3717
|
value: string;
|
|
3718
|
+
type: "unparsed";
|
|
3710
3719
|
hidden?: boolean | undefined;
|
|
3711
3720
|
} | {
|
|
3712
3721
|
type: "rgb";
|
|
@@ -3721,30 +3730,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3721
3730
|
args: StyleValue;
|
|
3722
3731
|
hidden?: boolean;
|
|
3723
3732
|
} | {
|
|
3724
|
-
type: "image";
|
|
3725
|
-
value: {
|
|
3726
|
-
type: "asset";
|
|
3727
|
-
value: string;
|
|
3728
|
-
} | {
|
|
3729
|
-
type: "url";
|
|
3730
|
-
url: string;
|
|
3731
|
-
};
|
|
3732
|
-
hidden?: boolean | undefined;
|
|
3733
|
-
} | {
|
|
3734
|
-
type: "var";
|
|
3735
3733
|
value: string;
|
|
3734
|
+
type: "var";
|
|
3736
3735
|
fallback?: {
|
|
3737
|
-
type: "unit";
|
|
3738
3736
|
value: number;
|
|
3737
|
+
type: "unit";
|
|
3739
3738
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3740
3739
|
hidden?: boolean | undefined;
|
|
3741
3740
|
} | {
|
|
3742
|
-
type: "keyword";
|
|
3743
3741
|
value: string;
|
|
3742
|
+
type: "keyword";
|
|
3744
3743
|
hidden?: boolean | undefined;
|
|
3745
3744
|
} | {
|
|
3746
|
-
type: "unparsed";
|
|
3747
3745
|
value: string;
|
|
3746
|
+
type: "unparsed";
|
|
3748
3747
|
hidden?: boolean | undefined;
|
|
3749
3748
|
} | {
|
|
3750
3749
|
type: "rgb";
|
|
@@ -3756,6 +3755,7 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3756
3755
|
} | undefined;
|
|
3757
3756
|
hidden?: boolean | undefined;
|
|
3758
3757
|
})[];
|
|
3758
|
+
type: "tuple";
|
|
3759
3759
|
hidden?: boolean | undefined;
|
|
3760
3760
|
}>, z.ZodType<{
|
|
3761
3761
|
type: "function";
|
|
@@ -3781,24 +3781,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3781
3781
|
value: z.ZodString;
|
|
3782
3782
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3783
3783
|
}, "strip", z.ZodTypeAny, {
|
|
3784
|
-
type: "invalid";
|
|
3785
3784
|
value: string;
|
|
3785
|
+
type: "invalid";
|
|
3786
3786
|
hidden?: boolean | undefined;
|
|
3787
3787
|
}, {
|
|
3788
|
-
type: "invalid";
|
|
3789
3788
|
value: string;
|
|
3789
|
+
type: "invalid";
|
|
3790
3790
|
hidden?: boolean | undefined;
|
|
3791
3791
|
}>, z.ZodObject<{
|
|
3792
3792
|
type: z.ZodLiteral<"unset">;
|
|
3793
3793
|
value: z.ZodLiteral<"">;
|
|
3794
3794
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3795
3795
|
}, "strip", z.ZodTypeAny, {
|
|
3796
|
-
type: "unset";
|
|
3797
3796
|
value: "";
|
|
3797
|
+
type: "unset";
|
|
3798
3798
|
hidden?: boolean | undefined;
|
|
3799
3799
|
}, {
|
|
3800
|
-
type: "unset";
|
|
3801
3800
|
value: "";
|
|
3801
|
+
type: "unset";
|
|
3802
3802
|
hidden?: boolean | undefined;
|
|
3803
3803
|
}>, z.ZodObject<{
|
|
3804
3804
|
type: z.ZodLiteral<"var">;
|
|
@@ -3808,24 +3808,24 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3808
3808
|
value: z.ZodString;
|
|
3809
3809
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3810
3810
|
}, "strip", z.ZodTypeAny, {
|
|
3811
|
-
type: "unparsed";
|
|
3812
3811
|
value: string;
|
|
3812
|
+
type: "unparsed";
|
|
3813
3813
|
hidden?: boolean | undefined;
|
|
3814
3814
|
}, {
|
|
3815
|
-
type: "unparsed";
|
|
3816
3815
|
value: string;
|
|
3816
|
+
type: "unparsed";
|
|
3817
3817
|
hidden?: boolean | undefined;
|
|
3818
3818
|
}>, z.ZodObject<{
|
|
3819
3819
|
type: z.ZodLiteral<"keyword">;
|
|
3820
3820
|
value: z.ZodString;
|
|
3821
3821
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3822
3822
|
}, "strip", z.ZodTypeAny, {
|
|
3823
|
-
type: "keyword";
|
|
3824
3823
|
value: string;
|
|
3824
|
+
type: "keyword";
|
|
3825
3825
|
hidden?: boolean | undefined;
|
|
3826
3826
|
}, {
|
|
3827
|
-
type: "keyword";
|
|
3828
3827
|
value: string;
|
|
3828
|
+
type: "keyword";
|
|
3829
3829
|
hidden?: boolean | undefined;
|
|
3830
3830
|
}>, z.ZodObject<{
|
|
3831
3831
|
type: z.ZodLiteral<"unit">;
|
|
@@ -3833,13 +3833,13 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3833
3833
|
value: z.ZodNumber;
|
|
3834
3834
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3835
3835
|
}, "strip", z.ZodTypeAny, {
|
|
3836
|
-
type: "unit";
|
|
3837
3836
|
value: number;
|
|
3837
|
+
type: "unit";
|
|
3838
3838
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3839
3839
|
hidden?: boolean | undefined;
|
|
3840
3840
|
}, {
|
|
3841
|
-
type: "unit";
|
|
3842
3841
|
value: number;
|
|
3842
|
+
type: "unit";
|
|
3843
3843
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3844
3844
|
hidden?: boolean | undefined;
|
|
3845
3845
|
}>, z.ZodObject<{
|
|
@@ -3866,20 +3866,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3866
3866
|
}>]>>;
|
|
3867
3867
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3868
3868
|
}, "strip", z.ZodTypeAny, {
|
|
3869
|
-
type: "var";
|
|
3870
3869
|
value: string;
|
|
3870
|
+
type: "var";
|
|
3871
3871
|
fallback?: {
|
|
3872
|
-
type: "unit";
|
|
3873
3872
|
value: number;
|
|
3873
|
+
type: "unit";
|
|
3874
3874
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3875
3875
|
hidden?: boolean | undefined;
|
|
3876
3876
|
} | {
|
|
3877
|
-
type: "keyword";
|
|
3878
3877
|
value: string;
|
|
3878
|
+
type: "keyword";
|
|
3879
3879
|
hidden?: boolean | undefined;
|
|
3880
3880
|
} | {
|
|
3881
|
-
type: "unparsed";
|
|
3882
3881
|
value: string;
|
|
3882
|
+
type: "unparsed";
|
|
3883
3883
|
hidden?: boolean | undefined;
|
|
3884
3884
|
} | {
|
|
3885
3885
|
type: "rgb";
|
|
@@ -3891,20 +3891,20 @@ export declare const StyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
3891
3891
|
} | undefined;
|
|
3892
3892
|
hidden?: boolean | undefined;
|
|
3893
3893
|
}, {
|
|
3894
|
-
type: "var";
|
|
3895
3894
|
value: string;
|
|
3895
|
+
type: "var";
|
|
3896
3896
|
fallback?: {
|
|
3897
|
-
type: "unit";
|
|
3898
3897
|
value: number;
|
|
3898
|
+
type: "unit";
|
|
3899
3899
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3900
3900
|
hidden?: boolean | undefined;
|
|
3901
3901
|
} | {
|
|
3902
|
-
type: "keyword";
|
|
3903
3902
|
value: string;
|
|
3903
|
+
type: "keyword";
|
|
3904
3904
|
hidden?: boolean | undefined;
|
|
3905
3905
|
} | {
|
|
3906
|
-
type: "unparsed";
|
|
3907
3906
|
value: string;
|
|
3907
|
+
type: "unparsed";
|
|
3908
3908
|
hidden?: boolean | undefined;
|
|
3909
3909
|
} | {
|
|
3910
3910
|
type: "rgb";
|