@agile_jy/word-editor 0.0.1-beta.13 → 0.0.1-beta.15
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.
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import './assets/css/index.css';
|
|
2
|
-
import '../style.css';
|
|
3
2
|
import { IEditorData, IEditorOption, IEditorResult } from './interface/Editor';
|
|
4
3
|
import { IElement, IFormInputImage, IUpdateElementByIdOption } from './interface/Element';
|
|
5
4
|
import { IFormImageProperties, ISignatureImage, ISealImage, IRiskCopyImage } from '../utils';
|
|
@@ -46,6 +46,7 @@ export declare function convertTextNodeToElement(textNode: Element | Node): IEle
|
|
|
46
46
|
export interface IGetElementListByHTMLOption {
|
|
47
47
|
innerWidth: number;
|
|
48
48
|
container?: HTMLDivElement;
|
|
49
|
+
_visitedNodes?: WeakSet<Node>;
|
|
49
50
|
}
|
|
50
51
|
export declare function getElementListByHTML(htmlText: string, options: IGetElementListByHTMLOption): IElement[];
|
|
51
52
|
export declare function getTextFromElementList(elementList: IElement[]): string;
|
package/package.json
CHANGED