@pdfme/ui 5.3.8-dev.61 → 5.3.8-dev.63
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.
@@ -12,7 +12,7 @@ export declare abstract class BaseUIClass {
|
|
12
12
|
constructor(props: UIProps);
|
13
13
|
protected getLang(): "en" | "zh" | "ja" | "ko" | "ar" | "th" | "pl" | "it" | "de" | "es" | "fr";
|
14
14
|
protected getFont(): Record<string, {
|
15
|
-
data: string | ArrayBuffer | Uint8Array
|
15
|
+
data: string | ArrayBuffer | Uint8Array<ArrayBufferLike>;
|
16
16
|
fallback?: boolean | undefined;
|
17
17
|
subset?: boolean | undefined;
|
18
18
|
}>;
|
@@ -113,7 +113,7 @@ export declare abstract class BaseUIClass {
|
|
113
113
|
}>>;
|
114
114
|
__isSplit: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
115
115
|
}, import("zod").ZodTypeAny, "passthrough">>, "many">, "many">;
|
116
|
-
basePdf: import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodType<ArrayBuffer, import("zod").ZodTypeDef, ArrayBuffer>, import("zod").ZodType<Uint8Array
|
116
|
+
basePdf: import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodType<ArrayBuffer, import("zod").ZodTypeDef, ArrayBuffer>, import("zod").ZodType<Uint8Array<ArrayBufferLike>, import("zod").ZodTypeDef, Uint8Array<ArrayBufferLike>>]>, import("zod").ZodObject<{
|
117
117
|
width: import("zod").ZodNumber;
|
118
118
|
height: import("zod").ZodNumber;
|
119
119
|
padding: import("zod").ZodTuple<[import("zod").ZodNumber, import("zod").ZodNumber, import("zod").ZodNumber, import("zod").ZodNumber], null>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { Plugins, UIOptions } from '@pdfme/common';
|
2
2
|
export declare const I18nContext: import("react").Context<(key: keyof import("@pdfme/common").Dict, dict?: import("@pdfme/common").Dict) => string>;
|
3
3
|
export declare const FontContext: import("react").Context<Record<string, {
|
4
|
-
data: string | ArrayBuffer | Uint8Array
|
4
|
+
data: string | ArrayBuffer | Uint8Array<ArrayBufferLike>;
|
5
5
|
fallback?: boolean | undefined;
|
6
6
|
subset?: boolean | undefined;
|
7
7
|
}>>;
|