Bump TinyMCE from 8.3.2 to 8.4.0

This commit is contained in:
johnnyq
2026-04-08 12:51:25 -04:00
parent 123a581583
commit 82b5613335
59 changed files with 67 additions and 61 deletions

View File

@@ -172,6 +172,7 @@ interface BlobInfoData {
base64: string;
blobUri?: string;
uri?: string;
allowEmptyFile?: boolean;
}
interface BlobInfo {
id: () => string;
@@ -683,6 +684,7 @@ interface DropZoneSpec extends FormComponentWithLabelSpec {
buttonLabel?: string;
allowedFileTypes?: string;
allowedFileExtensions?: string[];
onInvalidFiles?: () => Promise<void>;
}
interface GridSpec {
type: 'grid';
@@ -2069,6 +2071,7 @@ interface BaseEditorOptions {
allow_conditional_comments?: boolean;
allow_html_data_urls?: boolean;
allow_html_in_named_anchor?: boolean;
allow_noneditable?: boolean;
allow_script_urls?: boolean;
allow_svg_data_urls?: boolean;
allow_unsafe_link_target?: boolean;
@@ -2238,6 +2241,7 @@ interface BaseEditorOptions {
submit_patch?: boolean;
suffix?: string;
user_id?: string;
content_id?: string;
table_tab_navigation?: boolean;
target?: HTMLElement;
text_patterns?: RawPattern[] | false;
@@ -2269,6 +2273,7 @@ interface BaseEditorOptions {
valid_elements?: string;
valid_styles?: string | Record<string, string>;
verify_html?: boolean;
view_show?: string;
visual?: boolean;
visual_anchor_class?: string;
visual_table_class?: string;
@@ -2936,6 +2941,7 @@ interface Theme {
getNotificationManagerImpl?: () => NotificationManagerImpl;
getWindowManagerImpl?: () => WindowManagerImpl;
getPromotionElement?: () => HTMLElement | null;
getSinkElement?: (type: 'dialog' | 'popup') => HTMLElement;
}
type ThemeManager = AddOnManager<void | Theme>;
interface EditorConstructor {