Estoy tratando de usar AutoCompleteCellSelector en la versión empresarial ag-grid. Así es como se ve la definición de mi columna -->
fieLd: MY NAME_FIELD; headerName: MY_NAME, width: 400. colId: MY_FIELD, cellEditor: AutocompleteSelectCellEditor, cellEditorParams:{ cellRenderer: "rowDropDownCellRenderer" required: true, selectData:[ { value: 0, label: "this" } { value: 1, label: "is" }, { value: 2, label: "sparta" } { value: 3, label: "yolo" }, ] placeholder: "Desk" }, valueFormatter: (params: any) => { if (params. value) { return params. value. label || params.value,value I| params. value; } return "" }, editable: truePero cuando inicio la aplicación, falla con el siguiente error:
Types of property 'cellEditor' are incompatible. Type 'typeof AutocompleteselectcellEditor* is not assignable to type "string | (new () => ICellEditorcomp) | undefined* Type 'typeof AutocompleteselectcellEditor' is not assignable to type "new () -> ICellEditorcomp' Type 'Autocompleteselectcelleditor' is not assignable to type 'ICelleditorComp' Types of property 'init' are incompatible. Type * (parameters: IAutacompleteselectCellEditorParameters«AutocompleteSelectcelleditor»)=›void'isnotassignabletotype'(params: ICellEditorParams) =› void | AgPromiservoid»' Types of parameters "parameters' and 'params' are incompatible. Property 'selectData' is missing in type 'ICellEditorParams' but required in type "AutocompleteSelectcellEditorParameters<AutocompleteselectCellEditors'.Entonces, ¿supongo que AutocompleteSelectcelleditor no es compatible con ag grid enterprise? ¿O estoy cometiendo algún error?