@elementor/schema 3.33.0-99 → 3.34.2

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/dist/index.d.mts CHANGED
@@ -1,2 +1,4 @@
1
1
  export * from 'zod';
2
2
  export { z } from 'zod';
3
+ import * as v3 from 'zod/v3';
4
+ export { v3 as z3 };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
1
  export * from 'zod';
2
2
  export { z } from 'zod';
3
+ import * as v3 from 'zod/v3';
4
+ export { v3 as z3 };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export { z } from 'zod';\nexport type * from 'zod';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAkB;","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export type * from 'zod';\nexport { z } from 'zod';\nexport type * as z3 from 'zod/v3';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,iBAAkB;","names":[]}
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export { z } from 'zod';\nexport type * from 'zod';\n"],"mappings":";AAAA,SAAS,SAAS;","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export type * from 'zod';\nexport { z } from 'zod';\nexport type * as z3 from 'zod/v3';\n"],"mappings":";AACA,SAAS,SAAS;","names":[]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/schema",
3
3
  "description": "Schema validation with static type inference using Zod",
4
- "version": "3.33.0-99",
4
+ "version": "3.34.2",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -40,7 +40,7 @@
40
40
  "dev": "tsup --config=../../tsup.dev.ts"
41
41
  },
42
42
  "dependencies": {
43
- "zod": "^3.23.8"
43
+ "zod": "3.23.8"
44
44
  },
45
45
  "devDependencies": {
46
46
  "tsup": "^8.3.5"
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
- export { z } from 'zod';
2
1
  export type * from 'zod';
2
+ export { z } from 'zod';
3
+ export type * as z3 from 'zod/v3';