@omnia/fx-models 7.11.0-preview.5 → 7.11.0-preview.6
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.
|
@@ -2,6 +2,8 @@ import { GuidValue } from ".";
|
|
|
2
2
|
export interface RichTextEditorSettingsModel {
|
|
3
3
|
extensions: Array<RichTextEditorExtensionRegistration>;
|
|
4
4
|
limitedExtensions: Array<RichTextEditorExtensionRegistration>;
|
|
5
|
+
enableAutoCleanTextFormatAfterPaste?: boolean;
|
|
6
|
+
enableAutoCleanLimitedTextFormatAfterPaste?: boolean;
|
|
5
7
|
}
|
|
6
8
|
export interface RichTextEditorExtensionRegistration {
|
|
7
9
|
id: GuidValue;
|
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ export interface RemoveFormattingCommand extends EditorCommand {
|
|
|
5
5
|
format_clear?: (context: PastedContext) => void;
|
|
6
6
|
}
|
|
7
7
|
export interface RemoveFormattingToolbarProperties extends PastedToolbarProperties<RemoveFormattingCommand> {
|
|
8
|
+
showOnPasted?: boolean;
|
|
8
9
|
}
|
|
9
10
|
export interface RemoveFormattingMenuBar extends EditorMenuBar<RemoveFormattingCommand> {
|
|
10
11
|
}
|