Bump TinyMCE from 7.1.1 to 7.3.0

This commit is contained in:
johnnyq
2024-08-24 16:36:29 -04:00
parent 918c202e83
commit 08b94dcae4
68 changed files with 86 additions and 104 deletions

View File

@@ -560,7 +560,9 @@ interface GridSpec {
interface HtmlPanelSpec {
type: 'htmlpanel';
html: string;
onInit?: (el: HTMLElement) => void;
presets?: 'presentation' | 'document';
stretched?: boolean;
}
interface IframeSpec extends FormComponentWithLabelSpec {
type: 'iframe';
@@ -586,6 +588,7 @@ interface LabelSpec {
label: string;
items: BodyComponentSpec[];
align?: Alignment;
for?: string;
}
interface ListBoxSingleItemSpec {
text: string;
@@ -2662,6 +2665,7 @@ interface Options {
set: <K extends string, T>(name: K, value: K extends keyof NormalizedEditorOptions ? NormalizedEditorOptions[K] : T) => boolean;
unset: (name: string) => boolean;
isSet: (name: string) => boolean;
debug: () => void;
}
interface UploadResult$1 {
element: HTMLImageElement;