@pdfme/common
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -6,3 +6,3 @@ "use strict"; | ||
const zod_1 = require("zod"); | ||
const langs = ['en', 'ja', 'ar', 'th']; | ||
const langs = ['en', 'ja', 'ar', 'th', 'pl']; | ||
exports.Lang = zod_1.z.enum(langs); | ||
@@ -9,0 +9,0 @@ exports.Size = zod_1.z.object({ height: zod_1.z.number(), width: zod_1.z.number() }); |
/* eslint dot-notation: "off"*/ | ||
import { z } from 'zod'; | ||
const langs = ['en', 'ja', 'ar', 'th']; | ||
const langs = ['en', 'ja', 'ar', 'th', 'pl']; | ||
export const Lang = z.enum(langs); | ||
@@ -5,0 +5,0 @@ export const Size = z.object({ height: z.number(), width: z.number() }); |
{ | ||
"name": "@pdfme/common", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"sideEffects": false, | ||
@@ -5,0 +5,0 @@ "author": "hand-dot", |
/* eslint dot-notation: "off"*/ | ||
import { z } from 'zod'; | ||
const langs = ['en', 'ja', 'ar', 'th'] as const; | ||
const langs = ['en', 'ja', 'ar', 'th', 'pl'] as const; | ||
export const Lang = z.enum(langs); | ||
@@ -6,0 +6,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
1040701