Skip to content

Commit eedfc20

Browse files
committed
fix conflicts
1 parent 3ea4bd6 commit eedfc20

File tree

3 files changed

+4
-24
lines changed

3 files changed

+4
-24
lines changed

demo/scripts/controlsV2/demoButtons/createImageEditButtons.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function createImageFlipButton(handler: ImageEditor): RibbonButton<'buttonNameFl
6262
items: flipDirections,
6363
},
6464
isDisabled: formatState => !formatState.canAddImageAltText,
65-
onClick: (editor, flipDirection) => {
65+
onClick: (_editor, flipDirection) => {
6666
handler.flipImage(flipDirection as 'horizontal' | 'vertical');
6767
},
6868
};

demo/scripts/utils/imageEditOperator.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

packages/roosterjs-content-model-types/lib/parameter/FormatContentModelOptions.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ export interface FormatContentModelOptions {
4444
*/
4545
scrollCaretIntoView?: boolean;
4646

47+
/**
48+
* When true, selection change event will not be triggered bt formatContentModel function
49+
*/
4750
skipSelectionChangedEvent?: boolean;
4851
}
4952

0 commit comments

Comments
 (0)