unlayer-types 1.449.0 → 1.455.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 +3 -2
- package/package.json +1 -1
package/embed.d.ts
CHANGED
|
@@ -2248,6 +2248,7 @@ declare module "packages/editor/src/engine/config/features" {
|
|
|
2248
2248
|
};
|
|
2249
2249
|
sendTestEmail?: boolean;
|
|
2250
2250
|
syncedBlocks?: boolean;
|
|
2251
|
+
normalizeEmailLineHeights?: boolean;
|
|
2251
2252
|
}
|
|
2252
2253
|
export const betaFeaturesPaths: readonly [];
|
|
2253
2254
|
export const betaEntitlements: readonly [];
|
|
@@ -2552,7 +2553,7 @@ declare module "packages/editor/src/embed/Frame" {
|
|
|
2552
2553
|
}
|
|
2553
2554
|
}
|
|
2554
2555
|
declare module "packages/editor/src/engine/config/entitlements" {
|
|
2555
|
-
import {
|
|
2556
|
+
import type { Entitlements } from '@libs/entitlements/types';
|
|
2556
2557
|
export const normalizeEntitlements: any;
|
|
2557
2558
|
export function setEntitlements(newEntitlements: Entitlements): void;
|
|
2558
2559
|
export function getEntitlements(): Entitlements;
|
|
@@ -2611,7 +2612,7 @@ declare module "packages/editor/src/editor/helpers/sortArrayByPosition" {
|
|
|
2611
2612
|
declare module "packages/editor/src/engine/config/tools" {
|
|
2612
2613
|
import type { JSONSchema } from "packages/editor/src/state/types/types";
|
|
2613
2614
|
import Mustache from 'mustache';
|
|
2614
|
-
import { Entitlements } from '@libs/entitlements';
|
|
2615
|
+
import type { Entitlements } from '@libs/entitlements/types';
|
|
2615
2616
|
import type { PropertyEditorJSONSchemas, PropertyEditorZodSchemas } from '@libs/schemas/types/property_editor';
|
|
2616
2617
|
import type { OptionConfig } from '@libs/schemas/types/options';
|
|
2617
2618
|
import type { Option } from '@libs/schemas/types/options';
|
package/package.json
CHANGED