@undp/carbon-library 1.0.274-CARBON-363.39 → 1.0.274-CARBON-338.2

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.
@@ -9,16 +9,13 @@ interface EditableRowProps {
9
9
  index: number;
10
10
  }
11
11
  export declare const EditableRow: React.FC<EditableRowProps>;
12
- interface EditableCellProps extends React.HTMLAttributes<HTMLElement> {
13
- editing: boolean;
14
- dataIndex: string;
15
- title: any;
16
- inputType: "number" | "text";
17
- record: Item;
18
- index: number;
12
+ interface EditableCellProps {
13
+ title: React.ReactNode;
14
+ editable: boolean;
19
15
  children: React.ReactNode;
20
- onBlurHandler: any;
21
- t: any;
16
+ dataIndex: keyof Item;
17
+ record: Item;
18
+ handleSave: (record: Item) => void;
22
19
  }
23
20
  export declare const EditableCell: React.FC<EditableCellProps>;
24
21
  export {};