File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export class InputEditor implements IEditor {
1515 col ?: number ;
1616 row ?: number ;
1717 // 存储事件处理器,用于在移除元素前解绑
18- private eventHandlers : Array < { type : string ; handler : EventListener } > = [ ] ;
18+ protected eventHandlers : Array < { type : string ; handler : EventListener } > = [ ] ;
1919 constructor ( editorConfig ?: InputEditorConfig ) {
2020 this . editorConfig = editorConfig ;
2121 }
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ import { detectFunctionParameterPosition } from './formula-helper';
77export class FormulaInputEditor extends VTable_editors . InputEditor {
88 private formulaAutocomplete : FormulaAutocomplete | null = null ;
99 private sheet : VTableSheet | null = null ;
10- // 定义存储事件处理函数的数组
11- private eventHandlers : Array < { type : string ; handler : EventListener } > = [ ] ;
1210 /**
1311 * 设置 Sheet 实例
1412 */
You can’t perform that action at this time.
0 commit comments