@hailin-zheng/editor-core 2.2.29 → 2.2.30
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.
@@ -8,6 +8,11 @@ export declare class DynamicExecute {
|
|
8
8
|
depItems?: Map<string, RefCtxValue>;
|
9
9
|
constructor(doc: BranchElement, ss: SelectionState);
|
10
10
|
create(): DynamicExecute;
|
11
|
+
/**
|
12
|
+
* 设置当前执行上下文
|
13
|
+
* 一般情况下为document,但是如果为病程录文档,需要设置为当前病程录part
|
14
|
+
*/
|
15
|
+
setExecuteCtx(parseEle: Element): BranchElement;
|
11
16
|
setCurrentCtx(ele: Element, depItems: Map<string, RefCtxValue>): void;
|
12
17
|
clearCurrentCtx(): void;
|
13
18
|
cacheList: ReturnType<DocumentContext['getDataElementModelList']>;
|