@umbraco-cms/backoffice 14.0.0--preview004-37a447e4 → 14.0.0--preview004-46945657
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/dist-cms/external/tinymce/index.d.ts +5 -4
- package/dist-cms/external/tinymce/index.js +21 -21
- package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.defaults.d.ts +3 -3
- package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.element.js +1 -1
- package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.handlers.d.ts +3 -3
- package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.sanitizer.d.ts +2 -2
- package/dist-cms/packages/core/components/input-tiny-mce/tiny-mce-plugin.d.ts +3 -3
- package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/toolbar/property-editor-ui-tiny-mce-toolbar-configuration.element.js +1 -1
- package/dist-cms/shared/utils/media-helper.service.d.ts +4 -4
- package/dist-cms/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -6,12 +6,13 @@
|
|
|
6
6
|
*
|
|
7
7
|
* TODO: Load the plugins that we want to use in the editor.
|
|
8
8
|
*/
|
|
9
|
-
import
|
|
9
|
+
import tinymce, { type RawEditorOptions } from '../../tinymce';
|
|
10
10
|
declare global {
|
|
11
11
|
interface Window {
|
|
12
|
-
tinymce: typeof
|
|
12
|
+
tinymce: typeof tinymce;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
import '../../tinymce/icons/default/icons.js';
|
|
16
|
-
export declare function renderEditor(userConfig?:
|
|
17
|
-
export {
|
|
16
|
+
export declare function renderEditor(userConfig?: RawEditorOptions): Promise<import("../../tinymce").Editor[]>;
|
|
17
|
+
export { tinymce };
|
|
18
|
+
export type { RawEditorOptions, AstNode, EditorEvent, Editor } from '../../tinymce';
|