import { TableAutoCellOptions, TableColorTextCellOptions } from '@grafana/schema'; import { Field, Switch, Badge, Label } from '@grafana/ui'; import { TableCellEditorProps } from '../TableCellOptionEditor'; export const AutoCellOptionsEditor = ({ cellOptions, onChange, }: TableCellEditorProps) => { // Handle row coloring changes const onWrapTextChange = () => { cellOptions.wrapText = !cellOptions.wrapText; onChange(cellOptions); }; const label = ( ); return ( <> ); };