unlayer-types 1.393.0 → 1.395.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.
- package/embed.d.ts +9 -1
- package/package.json +1 -1
package/embed.d.ts
CHANGED
|
@@ -1900,9 +1900,16 @@ declare module "packages/editor/src/engine/config/features" {
|
|
|
1900
1900
|
};
|
|
1901
1901
|
};
|
|
1902
1902
|
imageEditor?: {
|
|
1903
|
-
enabled
|
|
1903
|
+
enabled?: boolean;
|
|
1904
1904
|
tools?: {
|
|
1905
|
+
crop?: boolean;
|
|
1905
1906
|
resize?: boolean;
|
|
1907
|
+
filter?: boolean;
|
|
1908
|
+
draw?: boolean;
|
|
1909
|
+
text?: boolean;
|
|
1910
|
+
shapes?: boolean;
|
|
1911
|
+
stickers?: boolean;
|
|
1912
|
+
frame?: boolean;
|
|
1906
1913
|
};
|
|
1907
1914
|
} | boolean;
|
|
1908
1915
|
preheaderText?: boolean;
|
|
@@ -2305,6 +2312,7 @@ declare module "packages/editor/src/engine/config/env" {
|
|
|
2305
2312
|
TOOLS_API_V1_BASE_URL: string;
|
|
2306
2313
|
TOOLS_CDN_BASE_URL: string;
|
|
2307
2314
|
CONSOLE_BASE_URL: string;
|
|
2315
|
+
IMAGE_EDITOR_CDN_URL: string;
|
|
2308
2316
|
};
|
|
2309
2317
|
export function setIsTest(isTest: boolean): void;
|
|
2310
2318
|
export function isTest(): boolean;
|
package/package.json
CHANGED