@webstudio-is/sdk 0.274.5 → 0.276.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.
@@ -1,90 +1,42 @@
1
1
  import { z } from "zod";
2
- export declare const breakpoint: z.ZodEffects<z.ZodEffects<z.ZodObject<{
2
+ export declare const breakpoint: z.ZodPipe<z.ZodObject<{
3
3
  id: z.ZodString;
4
4
  label: z.ZodString;
5
5
  minWidth: z.ZodOptional<z.ZodNumber>;
6
6
  maxWidth: z.ZodOptional<z.ZodNumber>;
7
7
  condition: z.ZodOptional<z.ZodString>;
8
- }, "strip", z.ZodTypeAny, {
8
+ }, z.core.$strip>, z.ZodTransform<{
9
9
  id: string;
10
10
  label: string;
11
- maxWidth?: number | undefined;
12
- minWidth?: number | undefined;
13
- condition?: string | undefined;
14
- }, {
15
- id: string;
16
- label: string;
17
- maxWidth?: number | undefined;
18
11
  minWidth?: number | undefined;
19
- condition?: string | undefined;
20
- }>, {
21
- id: string;
22
- label: string;
23
12
  maxWidth?: number | undefined;
24
- minWidth?: number | undefined;
25
13
  condition?: string | undefined;
26
14
  }, {
27
15
  id: string;
28
16
  label: string;
29
- maxWidth?: number | undefined;
30
17
  minWidth?: number | undefined;
31
- condition?: string | undefined;
32
- }>, {
33
- id: string;
34
- label: string;
35
18
  maxWidth?: number | undefined;
36
- minWidth?: number | undefined;
37
19
  condition?: string | undefined;
38
- }, {
39
- id: string;
40
- label: string;
41
- maxWidth?: number | undefined;
42
- minWidth?: number | undefined;
43
- condition?: string | undefined;
44
- }>;
20
+ }>>;
45
21
  export type Breakpoint = z.infer<typeof breakpoint>;
46
- export declare const breakpoints: z.ZodMap<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodObject<{
22
+ export declare const breakpoints: z.ZodMap<z.ZodString, z.ZodPipe<z.ZodObject<{
47
23
  id: z.ZodString;
48
24
  label: z.ZodString;
49
25
  minWidth: z.ZodOptional<z.ZodNumber>;
50
26
  maxWidth: z.ZodOptional<z.ZodNumber>;
51
27
  condition: z.ZodOptional<z.ZodString>;
52
- }, "strip", z.ZodTypeAny, {
28
+ }, z.core.$strip>, z.ZodTransform<{
53
29
  id: string;
54
30
  label: string;
55
- maxWidth?: number | undefined;
56
- minWidth?: number | undefined;
57
- condition?: string | undefined;
58
- }, {
59
- id: string;
60
- label: string;
61
- maxWidth?: number | undefined;
62
31
  minWidth?: number | undefined;
63
- condition?: string | undefined;
64
- }>, {
65
- id: string;
66
- label: string;
67
32
  maxWidth?: number | undefined;
68
- minWidth?: number | undefined;
69
33
  condition?: string | undefined;
70
34
  }, {
71
35
  id: string;
72
36
  label: string;
73
- maxWidth?: number | undefined;
74
37
  minWidth?: number | undefined;
75
- condition?: string | undefined;
76
- }>, {
77
- id: string;
78
- label: string;
79
38
  maxWidth?: number | undefined;
80
- minWidth?: number | undefined;
81
39
  condition?: string | undefined;
82
- }, {
83
- id: string;
84
- label: string;
85
- maxWidth?: number | undefined;
86
- minWidth?: number | undefined;
87
- condition?: string | undefined;
88
- }>>;
40
+ }>>>;
89
41
  export type Breakpoints = z.infer<typeof breakpoints>;
90
42
  export declare const initialBreakpoints: Array<Breakpoint>;