diff --git a/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx b/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx index 1af82a7d1d..396d3b465d 100644 --- a/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx +++ b/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx @@ -189,6 +189,9 @@ export interface TableColumnSetupProps { popupWidth?: TreeSelectProps['popupWidth']; popupPlacement?: PopperPlacement; + /** + * @deprecated + */ renderControls?: RenderControls; } diff --git a/src/components/Table/hoc/withTableSettings/withTableSettings.tsx b/src/components/Table/hoc/withTableSettings/withTableSettings.tsx index e9e85913d6..5dde42b076 100644 --- a/src/components/Table/hoc/withTableSettings/withTableSettings.tsx +++ b/src/components/Table/hoc/withTableSettings/withTableSettings.tsx @@ -124,6 +124,9 @@ export interface WithTableSettingsProps { settings: TableSettingsData; updateSettings: (data: TableSettingsData) => void; + /** + * @deprecated + */ renderControls?: RenderControls; }