@hailin-zheng/editor-core 2.1.19 → 2.1.20
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/index-cjs.js +273 -1077
 - package/index-cjs.js.map +1 -1
 - package/index.js +270 -1078
 - package/index.js.map +1 -1
 - package/med_editor/framework/document-paint.d.ts +0 -2
 - package/med_editor/framework/element-define.d.ts +1 -1
 - package/med_editor/framework/element-props.d.ts +8 -0
 - package/med_editor/framework/impl/checkbox/checkbox-impl.d.ts +2 -3
 - package/med_editor/framework/impl/comments/comment-content-impl.d.ts +1 -2
 - package/med_editor/framework/impl/comments/comment-element-impl.d.ts +1 -2
 - package/med_editor/framework/impl/comments/comments-container-impl.d.ts +2 -6
 - package/med_editor/framework/impl/comments/validate-msg-impl.d.ts +1 -2
 - package/med_editor/framework/impl/data-element/data-decorate-impl.d.ts +1 -2
 - package/med_editor/framework/impl/data-element/data-element-barcode.d.ts +2 -5
 - package/med_editor/framework/impl/data-element/data-element-base-impl.d.ts +0 -1
 - package/med_editor/framework/impl/data-element/data-element-check-impl.d.ts +1 -2
 - package/med_editor/framework/impl/data-element/data-element-group-impl.d.ts +1 -2
 - package/med_editor/framework/impl/data-element/data-element-image-impl.d.ts +2 -5
 - package/med_editor/framework/impl/decorate/fill-null-space-imple.d.ts +1 -2
 - package/med_editor/framework/impl/document/doc-body-impl.d.ts +1 -2
 - package/med_editor/framework/impl/document/doc-body-part-impl.d.ts +1 -2
 - package/med_editor/framework/impl/document/doc-container-impl.d.ts +1 -2
 - package/med_editor/framework/impl/document/doc-footer-impl.d.ts +1 -2
 - package/med_editor/framework/impl/document/doc-header-impl.d.ts +1 -2
 - package/med_editor/framework/impl/document/doc-impl.d.ts +1 -2
 - package/med_editor/framework/impl/index.d.ts +1 -0
 - package/med_editor/framework/impl/media-formula/menstrual-history.d.ts +1 -2
 - package/med_editor/framework/impl/media-formula/permanent-teeth.d.ts +1 -2
 - package/med_editor/framework/impl/paragraph/p-impl.d.ts +0 -2
 - package/med_editor/framework/impl/picture/RectEle.d.ts +1 -6
 - package/med_editor/framework/impl/picture/image-impl.d.ts +2 -5
 - package/med_editor/framework/impl/radio/radio-impl.d.ts +1 -2
 - package/med_editor/framework/impl/svg/svg-impl.d.ts +20 -0
 - package/med_editor/framework/impl/symbol/br-symbol-impl.d.ts +1 -2
 - package/med_editor/framework/impl/symbol/p-symbol-impl.d.ts +1 -2
 - package/med_editor/framework/impl/symbol/page-br-symbol-impl.d.ts +1 -2
 - package/med_editor/framework/impl/symbol/tab-symbol-impl.d.ts +1 -2
 - package/med_editor/framework/impl/table/table-cell-impl.d.ts +1 -2
 - package/med_editor/framework/impl/table/table-impl.d.ts +1 -2
 - package/med_editor/framework/impl/table/table-row-impl.d.ts +1 -2
 - package/med_editor/framework/impl/text/text-impl.d.ts +1 -2
 - package/med_editor/framework/impl/text/track-run-impl.d.ts +1 -2
 - package/med_editor/framework/render-define.d.ts +0 -2
 - package/package.json +1 -1
 
| 
         @@ -16,7 +16,6 @@ export declare abstract class RenderObject<T extends Element = Element> { 
     | 
|
| 
       16 
16 
     | 
    
         
             
                disableClick: boolean;
         
     | 
| 
       17 
17 
     | 
    
         
             
                constructor(element: T);
         
     | 
| 
       18 
18 
     | 
    
         
             
                abstract clone(): RenderObject;
         
     | 
| 
       19 
     | 
    
         
            -
                pagePaintCompleted(e: Omit<IRenderData, 'nextRender'>): void;
         
     | 
| 
       20 
19 
     | 
    
         
             
                destroy(): void;
         
     | 
| 
       21 
20 
     | 
    
         
             
                /**
         
     | 
| 
       22 
21 
     | 
    
         
             
                 * 获取内容区域框体
         
     | 
| 
         @@ -31,7 +30,6 @@ export declare abstract class RenderObject<T extends Element = Element> { 
     | 
|
| 
       31 
30 
     | 
    
         
             
                 */
         
     | 
| 
       32 
31 
     | 
    
         
             
                updateRenderHeight(innerRect: Rect | number): void;
         
     | 
| 
       33 
32 
     | 
    
         
             
                getIndex(): number;
         
     | 
| 
       34 
     | 
    
         
            -
                abstract render(e: IRenderData): void;
         
     | 
| 
       35 
33 
     | 
    
         
             
                exportHTML(event: IEditorVNodeOptions): any;
         
     | 
| 
       36 
34 
     | 
    
         
             
            }
         
     | 
| 
       37 
35 
     | 
    
         
             
            export declare type ElementExportTypes = 'svg';
         
     |