@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
17 lines • 660 B
TypeScript
/// <reference types="react" />
import { TableProps } from '../interfaces';
interface OnEditEndOptions {
cancelled: boolean;
refocusCell: boolean;
}
interface InlineEditorProps<ItemType> {
ariaLabels: TableProps['ariaLabels'];
column: TableProps.ColumnDefinition<ItemType>;
item: ItemType;
onEditEnd: (options: OnEditEndOptions) => void;
submitEdit: TableProps.SubmitEditFunction<ItemType>;
__onRender?: () => void;
}
export declare function InlineEditor<ItemType>({ ariaLabels, item, column, onEditEnd, submitEdit, __onRender, }: InlineEditorProps<ItemType>): JSX.Element;
export {};
//# sourceMappingURL=inline-editor.d.ts.map