roosterjs 8.59.0 → 8.60.0
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/rooster-amd-min.js +1 -1
- package/dist/rooster-amd-min.js.map +1 -1
- package/dist/rooster-amd.d.ts +2 -9
- package/dist/rooster-amd.js +136 -154
- package/dist/rooster-amd.js.map +1 -1
- package/dist/rooster-min.js +1 -1
- package/dist/rooster-min.js.map +1 -1
- package/dist/rooster.d.ts +2 -9
- package/dist/rooster.js +136 -154
- package/dist/rooster.js.map +1 -1
- package/package.json +7 -7
package/dist/rooster-amd.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for roosterjs (Version 8.
|
|
1
|
+
// Type definitions for roosterjs (Version 8.60.0)
|
|
2
2
|
// Generated by dts tool from roosterjs
|
|
3
3
|
// Project: https://github.com/Microsoft/roosterjs
|
|
4
4
|
|
|
@@ -10496,10 +10496,6 @@ export class ImageEdit implements EditorPlugin {
|
|
|
10496
10496
|
* The span element that wraps the image and opens shadow dom
|
|
10497
10497
|
*/
|
|
10498
10498
|
private isCropping;
|
|
10499
|
-
/**
|
|
10500
|
-
* If the image is a gif, this is the png source of the gif image
|
|
10501
|
-
*/
|
|
10502
|
-
private pngSource;
|
|
10503
10499
|
/**
|
|
10504
10500
|
* Create a new instance of ImageEdit
|
|
10505
10501
|
* @param options Image editing options
|
|
@@ -10797,7 +10793,7 @@ export class TableResize implements EditorPlugin {
|
|
|
10797
10793
|
* The container must not be affected by transform: scale(), otherwise the position calculation will be wrong.
|
|
10798
10794
|
* If not specified, the plugin will be inserted in document.body
|
|
10799
10795
|
*/
|
|
10800
|
-
constructor(onShowHelperElement?: ((elementData: CreateElementData, helperType: 'CellResizer' | 'TableInserter' | 'TableResizer' | 'TableSelector') => void) | undefined, anchorContainerSelector?: string | undefined);
|
|
10796
|
+
constructor(onShowHelperElement?: ((elementData: CreateElementData, helperType: 'CellResizer' | 'TableInserter' | 'TableResizer' | 'TableSelector', tableOrTd: HTMLTableElement | HTMLTableCellElement) => void) | undefined, anchorContainerSelector?: string | undefined);
|
|
10801
10797
|
/**
|
|
10802
10798
|
* Get a friendly name of this plugin
|
|
10803
10799
|
*/
|
|
@@ -10871,7 +10867,6 @@ export class Watermark implements EditorPlugin {
|
|
|
10871
10867
|
export class TableCellSelection implements EditorPlugin {
|
|
10872
10868
|
private editor;
|
|
10873
10869
|
private state;
|
|
10874
|
-
private shadowEditCoordinatesBackup;
|
|
10875
10870
|
constructor();
|
|
10876
10871
|
/**
|
|
10877
10872
|
* Get a friendly name of this plugin
|
|
@@ -10891,8 +10886,6 @@ export class TableCellSelection implements EditorPlugin {
|
|
|
10891
10886
|
* @param event PluginEvent object
|
|
10892
10887
|
*/
|
|
10893
10888
|
onPluginEvent(event: PluginEvent): void;
|
|
10894
|
-
private handleLeavingShadowEdit;
|
|
10895
|
-
private handleEnteredShadowEdit;
|
|
10896
10889
|
}
|
|
10897
10890
|
|
|
10898
10891
|
/**
|