unlayer-types 1.229.0 → 1.231.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 +5 -0
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -10,6 +10,7 @@ declare module "engine/config/editorSettings" {
|
|
10
10
|
autoSelectOnDrop: boolean;
|
11
11
|
columns?: boolean;
|
12
12
|
confirmOnDelete?: boolean;
|
13
|
+
title?: string;
|
13
14
|
}
|
14
15
|
export function overrideEditorSettings(editorSettingsOverrides: EditorSettings): void;
|
15
16
|
export function getEditorSettings(): EditorSettings;
|
@@ -2135,6 +2136,10 @@ declare module "editor/design-system/components/Input" {
|
|
2135
2136
|
ClearButton: import("styled-components").StyledComponent<any, any, any, any>;
|
2136
2137
|
};
|
2137
2138
|
}
|
2139
|
+
declare module "editor/helpers/extractStringsFromReactNode" {
|
2140
|
+
import React from 'react';
|
2141
|
+
export function extractStringsFromReactNode(node: React.ReactNode): string;
|
2142
|
+
}
|
2138
2143
|
declare module "editor/design-system/components/Button" {
|
2139
2144
|
import React from 'react';
|
2140
2145
|
import * as Ariakit from '@ariakit/react';
|
package/package.json
CHANGED