@webstudio-is/css-data 0.23.0 → 0.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/schema.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/css-data",
3
- "version": "0.23.0",
3
+ "version": "0.24.0",
4
4
  "description": "CSS Data",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -15,7 +15,7 @@
15
15
  "zod": "^3.19.1",
16
16
  "@webstudio-is/scripts": "^0.0.0",
17
17
  "@webstudio-is/tsconfig": "^1.0.1",
18
- "@webstudio-is/asset-uploader": "^0.23.0"
18
+ "@webstudio-is/asset-uploader": "^0.24.0"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "zod": "^3.19.1"
package/src/schema.ts CHANGED
@@ -149,6 +149,8 @@ export const Breakpoint = z.object({
149
149
  minWidth: z.number(),
150
150
  });
151
151
 
152
+ export type Breakpoint = z.infer<typeof Breakpoint>;
153
+
152
154
  export const Breakpoints = z.array(Breakpoint);
153
155
 
154
- export type Breakpoint = z.infer<typeof Breakpoint>;
156
+ export type Breakpoints = z.infer<typeof Breakpoints>;