@elementor/schema 4.0.0-621 → 4.0.0-manual

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
@@ -2,3 +2,4 @@ export * from 'zod';
2
2
  export { z } from 'zod';
3
3
  import * as v3 from 'zod/v3';
4
4
  export { v3 as z3 };
5
+ export { z as z4 } from 'zod/v4';
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export * from 'zod';
2
2
  export { z } from 'zod';
3
3
  import * as v3 from 'zod/v3';
4
4
  export { v3 as z3 };
5
+ export { z as z4 } from 'zod/v4';
package/dist/index.js CHANGED
@@ -20,12 +20,15 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // src/index.ts
21
21
  var index_exports = {};
22
22
  __export(index_exports, {
23
- z: () => import_zod.z
23
+ z: () => import_zod.z,
24
+ z4: () => import_v4.z
24
25
  });
25
26
  module.exports = __toCommonJS(index_exports);
26
27
  var import_zod = require("zod");
28
+ var import_v4 = require("zod/v4");
27
29
  // Annotate the CommonJS export names for ESM import in node:
28
30
  0 && (module.exports = {
29
- z
31
+ z,
32
+ z4
30
33
  });
31
34
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
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
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export type * from 'zod';\nexport { z } from 'zod';\nexport type * as z3 from 'zod/v3';\nexport { z as z4 } from 'zod/v4';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,iBAAkB;AAElB,gBAAwB;","names":[]}
package/dist/index.mjs CHANGED
@@ -1,6 +1,8 @@
1
1
  // src/index.ts
2
2
  import { z } from "zod";
3
+ import { z as z2 } from "zod/v4";
3
4
  export {
4
- z
5
+ z,
6
+ z2 as z4
5
7
  };
6
8
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
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":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export type * from 'zod';\nexport { z } from 'zod';\nexport type * as z3 from 'zod/v3';\nexport { z as z4 } from 'zod/v4';\n"],"mappings":";AACA,SAAS,SAAS;AAElB,SAAc,KAALA,UAAe;","names":["z"]}
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": "4.0.0-621",
4
+ "version": "4.0.0-manual",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export type * from 'zod';
2
2
  export { z } from 'zod';
3
3
  export type * as z3 from 'zod/v3';
4
+ export { z as z4 } from 'zod/v4';