@webstudio-is/sdk 0.0.0-021f2d4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/LICENSE +661 -0
  2. package/lib/__generated__/normalize.css.js +505 -0
  3. package/lib/core-templates.js +223 -0
  4. package/lib/index.js +1784 -0
  5. package/lib/runtime.js +101 -0
  6. package/lib/types/__generated__/normalize.css.d.ts +57 -0
  7. package/lib/types/core-metas.d.ts +748 -0
  8. package/lib/types/core-templates.d.ts +6 -0
  9. package/lib/types/expression.d.ts +58 -0
  10. package/lib/types/expression.test.d.ts +1 -0
  11. package/lib/types/form-fields.d.ts +8 -0
  12. package/lib/types/index.d.ts +23 -0
  13. package/lib/types/instances-utils.d.ts +5 -0
  14. package/lib/types/instances-utils.test.d.ts +1 -0
  15. package/lib/types/page-meta-generator.d.ts +24 -0
  16. package/lib/types/page-meta-generator.test.d.ts +1 -0
  17. package/lib/types/page-utils.d.ts +24 -0
  18. package/lib/types/page-utils.test.d.ts +1 -0
  19. package/lib/types/resource-loader.d.ts +30 -0
  20. package/lib/types/resource-loader.test.d.ts +1 -0
  21. package/lib/types/resources-generator.d.ts +22 -0
  22. package/lib/types/resources-generator.test.d.ts +1 -0
  23. package/lib/types/runtime.d.ts +3 -0
  24. package/lib/types/schema/assets.d.ts +527 -0
  25. package/lib/types/schema/breakpoints.d.ts +56 -0
  26. package/lib/types/schema/component-meta.d.ts +2118 -0
  27. package/lib/types/schema/data-sources.d.ts +303 -0
  28. package/lib/types/schema/deployment.d.ts +41 -0
  29. package/lib/types/schema/embed-template.d.ts +2250 -0
  30. package/lib/types/schema/instances.d.ts +417 -0
  31. package/lib/types/schema/pages.d.ts +675 -0
  32. package/lib/types/schema/prop-meta.d.ts +434 -0
  33. package/lib/types/schema/props.d.ts +549 -0
  34. package/lib/types/schema/resources.d.ts +121 -0
  35. package/lib/types/schema/style-source-selections.d.ts +23 -0
  36. package/lib/types/schema/style-sources.d.ts +62 -0
  37. package/lib/types/schema/styles.d.ts +2629 -0
  38. package/lib/types/schema/webstudio.d.ts +2374 -0
  39. package/lib/types/scope.d.ts +16 -0
  40. package/lib/types/scope.test.d.ts +1 -0
  41. package/lib/types/to-string.d.ts +2 -0
  42. package/lib/types/url-pattern.d.ts +2 -0
  43. package/lib/types/url-pattern.test.d.ts +1 -0
  44. package/package.json +60 -0
@@ -0,0 +1,527 @@
1
+ import { z } from "zod";
2
+ export declare const FontAsset: z.ZodObject<{
3
+ format: z.ZodUnion<[z.ZodLiteral<"ttf">, z.ZodLiteral<"woff">, z.ZodLiteral<"woff2">]>;
4
+ meta: z.ZodUnion<[z.ZodObject<{
5
+ family: z.ZodString;
6
+ style: z.ZodEnum<["normal", "italic", "oblique"]>;
7
+ weight: z.ZodNumber;
8
+ }, "strip", z.ZodTypeAny, {
9
+ family: string;
10
+ style: "normal" | "italic" | "oblique";
11
+ weight: number;
12
+ }, {
13
+ family: string;
14
+ style: "normal" | "italic" | "oblique";
15
+ weight: number;
16
+ }>, z.ZodObject<{
17
+ family: z.ZodString;
18
+ variationAxes: z.ZodRecord<z.ZodEnum<["wght", "wdth", "slnt", "opsz", "ital", "GRAD", "XTRA", "XOPQ", "YOPQ", "YTLC", "YTUC", "YTAS", "YTDE", "YTFI"]>, z.ZodObject<{
19
+ name: z.ZodString;
20
+ min: z.ZodNumber;
21
+ default: z.ZodNumber;
22
+ max: z.ZodNumber;
23
+ }, "strip", z.ZodTypeAny, {
24
+ name: string;
25
+ min: number;
26
+ default: number;
27
+ max: number;
28
+ }, {
29
+ name: string;
30
+ min: number;
31
+ default: number;
32
+ max: number;
33
+ }>>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ family: string;
36
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
37
+ name: string;
38
+ min: number;
39
+ default: number;
40
+ max: number;
41
+ }>>;
42
+ }, {
43
+ family: string;
44
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
45
+ name: string;
46
+ min: number;
47
+ default: number;
48
+ max: number;
49
+ }>>;
50
+ }>]>;
51
+ type: z.ZodLiteral<"font">;
52
+ id: z.ZodString;
53
+ projectId: z.ZodString;
54
+ size: z.ZodNumber;
55
+ name: z.ZodString;
56
+ description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
57
+ createdAt: z.ZodString;
58
+ }, "strip", z.ZodTypeAny, {
59
+ type: "font";
60
+ name: string;
61
+ meta: ({
62
+ family: string;
63
+ style: "normal" | "italic" | "oblique";
64
+ weight: number;
65
+ } | {
66
+ family: string;
67
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
68
+ name: string;
69
+ min: number;
70
+ default: number;
71
+ max: number;
72
+ }>>;
73
+ }) & ({
74
+ family: string;
75
+ style: "normal" | "italic" | "oblique";
76
+ weight: number;
77
+ } | {
78
+ family: string;
79
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
80
+ name: string;
81
+ min: number;
82
+ default: number;
83
+ max: number;
84
+ }>>;
85
+ } | undefined);
86
+ description: string | null;
87
+ id: string;
88
+ format: "ttf" | "woff" | "woff2";
89
+ projectId: string;
90
+ size: number;
91
+ createdAt: string;
92
+ }, {
93
+ type: "font";
94
+ name: string;
95
+ meta: ({
96
+ family: string;
97
+ style: "normal" | "italic" | "oblique";
98
+ weight: number;
99
+ } | {
100
+ family: string;
101
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
102
+ name: string;
103
+ min: number;
104
+ default: number;
105
+ max: number;
106
+ }>>;
107
+ }) & ({
108
+ family: string;
109
+ style: "normal" | "italic" | "oblique";
110
+ weight: number;
111
+ } | {
112
+ family: string;
113
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
114
+ name: string;
115
+ min: number;
116
+ default: number;
117
+ max: number;
118
+ }>>;
119
+ } | undefined);
120
+ description: string | null;
121
+ id: string;
122
+ format: "ttf" | "woff" | "woff2";
123
+ projectId: string;
124
+ size: number;
125
+ createdAt: string;
126
+ }>;
127
+ export type FontAsset = z.infer<typeof FontAsset>;
128
+ export declare const ImageMeta: z.ZodObject<{
129
+ width: z.ZodNumber;
130
+ height: z.ZodNumber;
131
+ }, "strip", z.ZodTypeAny, {
132
+ height: number;
133
+ width: number;
134
+ }, {
135
+ height: number;
136
+ width: number;
137
+ }>;
138
+ export type ImageMeta = z.infer<typeof ImageMeta>;
139
+ export declare const ImageAsset: z.ZodObject<{
140
+ format: z.ZodString;
141
+ meta: z.ZodObject<{
142
+ width: z.ZodNumber;
143
+ height: z.ZodNumber;
144
+ }, "strip", z.ZodTypeAny, {
145
+ height: number;
146
+ width: number;
147
+ }, {
148
+ height: number;
149
+ width: number;
150
+ }>;
151
+ type: z.ZodLiteral<"image">;
152
+ id: z.ZodString;
153
+ projectId: z.ZodString;
154
+ size: z.ZodNumber;
155
+ name: z.ZodString;
156
+ description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
157
+ createdAt: z.ZodString;
158
+ }, "strip", z.ZodTypeAny, {
159
+ type: "image";
160
+ name: string;
161
+ meta: {
162
+ height: number;
163
+ width: number;
164
+ };
165
+ description: string | null;
166
+ id: string;
167
+ format: string;
168
+ projectId: string;
169
+ size: number;
170
+ createdAt: string;
171
+ }, {
172
+ type: "image";
173
+ name: string;
174
+ meta: {
175
+ height: number;
176
+ width: number;
177
+ };
178
+ description: string | null;
179
+ id: string;
180
+ format: string;
181
+ projectId: string;
182
+ size: number;
183
+ createdAt: string;
184
+ }>;
185
+ export type ImageAsset = z.infer<typeof ImageAsset>;
186
+ export declare const Asset: z.ZodUnion<[z.ZodObject<{
187
+ format: z.ZodUnion<[z.ZodLiteral<"ttf">, z.ZodLiteral<"woff">, z.ZodLiteral<"woff2">]>;
188
+ meta: z.ZodUnion<[z.ZodObject<{
189
+ family: z.ZodString;
190
+ style: z.ZodEnum<["normal", "italic", "oblique"]>;
191
+ weight: z.ZodNumber;
192
+ }, "strip", z.ZodTypeAny, {
193
+ family: string;
194
+ style: "normal" | "italic" | "oblique";
195
+ weight: number;
196
+ }, {
197
+ family: string;
198
+ style: "normal" | "italic" | "oblique";
199
+ weight: number;
200
+ }>, z.ZodObject<{
201
+ family: z.ZodString;
202
+ variationAxes: z.ZodRecord<z.ZodEnum<["wght", "wdth", "slnt", "opsz", "ital", "GRAD", "XTRA", "XOPQ", "YOPQ", "YTLC", "YTUC", "YTAS", "YTDE", "YTFI"]>, z.ZodObject<{
203
+ name: z.ZodString;
204
+ min: z.ZodNumber;
205
+ default: z.ZodNumber;
206
+ max: z.ZodNumber;
207
+ }, "strip", z.ZodTypeAny, {
208
+ name: string;
209
+ min: number;
210
+ default: number;
211
+ max: number;
212
+ }, {
213
+ name: string;
214
+ min: number;
215
+ default: number;
216
+ max: number;
217
+ }>>;
218
+ }, "strip", z.ZodTypeAny, {
219
+ family: string;
220
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
221
+ name: string;
222
+ min: number;
223
+ default: number;
224
+ max: number;
225
+ }>>;
226
+ }, {
227
+ family: string;
228
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
229
+ name: string;
230
+ min: number;
231
+ default: number;
232
+ max: number;
233
+ }>>;
234
+ }>]>;
235
+ type: z.ZodLiteral<"font">;
236
+ id: z.ZodString;
237
+ projectId: z.ZodString;
238
+ size: z.ZodNumber;
239
+ name: z.ZodString;
240
+ description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
241
+ createdAt: z.ZodString;
242
+ }, "strip", z.ZodTypeAny, {
243
+ type: "font";
244
+ name: string;
245
+ meta: ({
246
+ family: string;
247
+ style: "normal" | "italic" | "oblique";
248
+ weight: number;
249
+ } | {
250
+ family: string;
251
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
252
+ name: string;
253
+ min: number;
254
+ default: number;
255
+ max: number;
256
+ }>>;
257
+ }) & ({
258
+ family: string;
259
+ style: "normal" | "italic" | "oblique";
260
+ weight: number;
261
+ } | {
262
+ family: string;
263
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
264
+ name: string;
265
+ min: number;
266
+ default: number;
267
+ max: number;
268
+ }>>;
269
+ } | undefined);
270
+ description: string | null;
271
+ id: string;
272
+ format: "ttf" | "woff" | "woff2";
273
+ projectId: string;
274
+ size: number;
275
+ createdAt: string;
276
+ }, {
277
+ type: "font";
278
+ name: string;
279
+ meta: ({
280
+ family: string;
281
+ style: "normal" | "italic" | "oblique";
282
+ weight: number;
283
+ } | {
284
+ family: string;
285
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
286
+ name: string;
287
+ min: number;
288
+ default: number;
289
+ max: number;
290
+ }>>;
291
+ }) & ({
292
+ family: string;
293
+ style: "normal" | "italic" | "oblique";
294
+ weight: number;
295
+ } | {
296
+ family: string;
297
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
298
+ name: string;
299
+ min: number;
300
+ default: number;
301
+ max: number;
302
+ }>>;
303
+ } | undefined);
304
+ description: string | null;
305
+ id: string;
306
+ format: "ttf" | "woff" | "woff2";
307
+ projectId: string;
308
+ size: number;
309
+ createdAt: string;
310
+ }>, z.ZodObject<{
311
+ format: z.ZodString;
312
+ meta: z.ZodObject<{
313
+ width: z.ZodNumber;
314
+ height: z.ZodNumber;
315
+ }, "strip", z.ZodTypeAny, {
316
+ height: number;
317
+ width: number;
318
+ }, {
319
+ height: number;
320
+ width: number;
321
+ }>;
322
+ type: z.ZodLiteral<"image">;
323
+ id: z.ZodString;
324
+ projectId: z.ZodString;
325
+ size: z.ZodNumber;
326
+ name: z.ZodString;
327
+ description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
328
+ createdAt: z.ZodString;
329
+ }, "strip", z.ZodTypeAny, {
330
+ type: "image";
331
+ name: string;
332
+ meta: {
333
+ height: number;
334
+ width: number;
335
+ };
336
+ description: string | null;
337
+ id: string;
338
+ format: string;
339
+ projectId: string;
340
+ size: number;
341
+ createdAt: string;
342
+ }, {
343
+ type: "image";
344
+ name: string;
345
+ meta: {
346
+ height: number;
347
+ width: number;
348
+ };
349
+ description: string | null;
350
+ id: string;
351
+ format: string;
352
+ projectId: string;
353
+ size: number;
354
+ createdAt: string;
355
+ }>]>;
356
+ export type Asset = z.infer<typeof Asset>;
357
+ export declare const Assets: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
358
+ format: z.ZodUnion<[z.ZodLiteral<"ttf">, z.ZodLiteral<"woff">, z.ZodLiteral<"woff2">]>;
359
+ meta: z.ZodUnion<[z.ZodObject<{
360
+ family: z.ZodString;
361
+ style: z.ZodEnum<["normal", "italic", "oblique"]>;
362
+ weight: z.ZodNumber;
363
+ }, "strip", z.ZodTypeAny, {
364
+ family: string;
365
+ style: "normal" | "italic" | "oblique";
366
+ weight: number;
367
+ }, {
368
+ family: string;
369
+ style: "normal" | "italic" | "oblique";
370
+ weight: number;
371
+ }>, z.ZodObject<{
372
+ family: z.ZodString;
373
+ variationAxes: z.ZodRecord<z.ZodEnum<["wght", "wdth", "slnt", "opsz", "ital", "GRAD", "XTRA", "XOPQ", "YOPQ", "YTLC", "YTUC", "YTAS", "YTDE", "YTFI"]>, z.ZodObject<{
374
+ name: z.ZodString;
375
+ min: z.ZodNumber;
376
+ default: z.ZodNumber;
377
+ max: z.ZodNumber;
378
+ }, "strip", z.ZodTypeAny, {
379
+ name: string;
380
+ min: number;
381
+ default: number;
382
+ max: number;
383
+ }, {
384
+ name: string;
385
+ min: number;
386
+ default: number;
387
+ max: number;
388
+ }>>;
389
+ }, "strip", z.ZodTypeAny, {
390
+ family: string;
391
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
392
+ name: string;
393
+ min: number;
394
+ default: number;
395
+ max: number;
396
+ }>>;
397
+ }, {
398
+ family: string;
399
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
400
+ name: string;
401
+ min: number;
402
+ default: number;
403
+ max: number;
404
+ }>>;
405
+ }>]>;
406
+ type: z.ZodLiteral<"font">;
407
+ id: z.ZodString;
408
+ projectId: z.ZodString;
409
+ size: z.ZodNumber;
410
+ name: z.ZodString;
411
+ description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
412
+ createdAt: z.ZodString;
413
+ }, "strip", z.ZodTypeAny, {
414
+ type: "font";
415
+ name: string;
416
+ meta: ({
417
+ family: string;
418
+ style: "normal" | "italic" | "oblique";
419
+ weight: number;
420
+ } | {
421
+ family: string;
422
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
423
+ name: string;
424
+ min: number;
425
+ default: number;
426
+ max: number;
427
+ }>>;
428
+ }) & ({
429
+ family: string;
430
+ style: "normal" | "italic" | "oblique";
431
+ weight: number;
432
+ } | {
433
+ family: string;
434
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
435
+ name: string;
436
+ min: number;
437
+ default: number;
438
+ max: number;
439
+ }>>;
440
+ } | undefined);
441
+ description: string | null;
442
+ id: string;
443
+ format: "ttf" | "woff" | "woff2";
444
+ projectId: string;
445
+ size: number;
446
+ createdAt: string;
447
+ }, {
448
+ type: "font";
449
+ name: string;
450
+ meta: ({
451
+ family: string;
452
+ style: "normal" | "italic" | "oblique";
453
+ weight: number;
454
+ } | {
455
+ family: string;
456
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
457
+ name: string;
458
+ min: number;
459
+ default: number;
460
+ max: number;
461
+ }>>;
462
+ }) & ({
463
+ family: string;
464
+ style: "normal" | "italic" | "oblique";
465
+ weight: number;
466
+ } | {
467
+ family: string;
468
+ variationAxes: Partial<Record<"wght" | "wdth" | "slnt" | "opsz" | "ital" | "GRAD" | "XTRA" | "XOPQ" | "YOPQ" | "YTLC" | "YTUC" | "YTAS" | "YTDE" | "YTFI", {
469
+ name: string;
470
+ min: number;
471
+ default: number;
472
+ max: number;
473
+ }>>;
474
+ } | undefined);
475
+ description: string | null;
476
+ id: string;
477
+ format: "ttf" | "woff" | "woff2";
478
+ projectId: string;
479
+ size: number;
480
+ createdAt: string;
481
+ }>, z.ZodObject<{
482
+ format: z.ZodString;
483
+ meta: z.ZodObject<{
484
+ width: z.ZodNumber;
485
+ height: z.ZodNumber;
486
+ }, "strip", z.ZodTypeAny, {
487
+ height: number;
488
+ width: number;
489
+ }, {
490
+ height: number;
491
+ width: number;
492
+ }>;
493
+ type: z.ZodLiteral<"image">;
494
+ id: z.ZodString;
495
+ projectId: z.ZodString;
496
+ size: z.ZodNumber;
497
+ name: z.ZodString;
498
+ description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
499
+ createdAt: z.ZodString;
500
+ }, "strip", z.ZodTypeAny, {
501
+ type: "image";
502
+ name: string;
503
+ meta: {
504
+ height: number;
505
+ width: number;
506
+ };
507
+ description: string | null;
508
+ id: string;
509
+ format: string;
510
+ projectId: string;
511
+ size: number;
512
+ createdAt: string;
513
+ }, {
514
+ type: "image";
515
+ name: string;
516
+ meta: {
517
+ height: number;
518
+ width: number;
519
+ };
520
+ description: string | null;
521
+ id: string;
522
+ format: string;
523
+ projectId: string;
524
+ size: number;
525
+ createdAt: string;
526
+ }>]>>;
527
+ export type Assets = z.infer<typeof Assets>;
@@ -0,0 +1,56 @@
1
+ import { z } from "zod";
2
+ export declare const Breakpoint: z.ZodEffects<z.ZodObject<{
3
+ id: z.ZodString;
4
+ label: z.ZodString;
5
+ minWidth: z.ZodOptional<z.ZodNumber>;
6
+ maxWidth: z.ZodOptional<z.ZodNumber>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ label: string;
9
+ id: string;
10
+ minWidth?: number | undefined;
11
+ maxWidth?: number | undefined;
12
+ }, {
13
+ label: string;
14
+ id: string;
15
+ minWidth?: number | undefined;
16
+ maxWidth?: number | undefined;
17
+ }>, {
18
+ label: string;
19
+ id: string;
20
+ minWidth?: number | undefined;
21
+ maxWidth?: number | undefined;
22
+ }, {
23
+ label: string;
24
+ id: string;
25
+ minWidth?: number | undefined;
26
+ maxWidth?: number | undefined;
27
+ }>;
28
+ export type Breakpoint = z.infer<typeof Breakpoint>;
29
+ export declare const Breakpoints: z.ZodMap<z.ZodString, z.ZodEffects<z.ZodObject<{
30
+ id: z.ZodString;
31
+ label: z.ZodString;
32
+ minWidth: z.ZodOptional<z.ZodNumber>;
33
+ maxWidth: z.ZodOptional<z.ZodNumber>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ label: string;
36
+ id: string;
37
+ minWidth?: number | undefined;
38
+ maxWidth?: number | undefined;
39
+ }, {
40
+ label: string;
41
+ id: string;
42
+ minWidth?: number | undefined;
43
+ maxWidth?: number | undefined;
44
+ }>, {
45
+ label: string;
46
+ id: string;
47
+ minWidth?: number | undefined;
48
+ maxWidth?: number | undefined;
49
+ }, {
50
+ label: string;
51
+ id: string;
52
+ minWidth?: number | undefined;
53
+ maxWidth?: number | undefined;
54
+ }>>;
55
+ export type Breakpoints = z.infer<typeof Breakpoints>;
56
+ export declare const initialBreakpoints: Array<Breakpoint>;