amis 1.9.1-beta.3 → 1.9.1-beta.4
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.
- package/lib/SchemaRenderer.js +6 -9
- package/lib/SchemaRenderer.js.map +2 -2
- package/lib/actions/CmptAction.js +4 -4
- package/lib/actions/CmptAction.js.map +2 -2
- package/lib/components/WithRemoteConfig.d.ts +2 -2
- package/lib/components/WithRemoteConfig.js +6 -3
- package/lib/components/WithRemoteConfig.js.map +2 -2
- package/lib/components/table/ItemActionsWrapper.d.ts +10 -0
- package/lib/components/table/ItemActionsWrapper.js +25 -0
- package/lib/components/table/ItemActionsWrapper.js.map +13 -0
- package/lib/components/table/index.d.ts +48 -41
- package/lib/components/table/index.js +46 -18
- package/lib/components/table/index.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Form/JSONSchema.js +3 -3
- package/lib/renderers/Form/JSONSchema.js.map +2 -2
- package/lib/renderers/Form/Options.js +11 -5
- package/lib/renderers/Form/Options.js.map +2 -2
- package/lib/renderers/Form/wrapControl.js.map +2 -2
- package/lib/renderers/Table-v2/index.d.ts +14 -2
- package/lib/renderers/Table-v2/index.js +33 -3
- package/lib/renderers/Table-v2/index.js.map +2 -2
- package/package.json +1 -1
- package/schema.json +13 -2
- package/sdk/barcode.js +51 -51
- package/sdk/charts.js +14 -14
- package/sdk/codemirror.js +7 -7
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +16 -16
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk.js +1299 -1297
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/SchemaRenderer.tsx +1 -4
- package/src/actions/CmptAction.ts +4 -4
- package/src/components/WithRemoteConfig.tsx +20 -11
- package/src/components/table/ItemActionsWrapper.tsx +32 -0
- package/src/components/table/index.tsx +115 -58
- package/src/renderers/Form/JSONSchema.tsx +3 -3
- package/src/renderers/Form/Options.tsx +17 -7
- package/src/renderers/Form/wrapControl.tsx +0 -1
- package/src/renderers/Table-v2/index.tsx +65 -2
| @@ -10,7 +10,7 @@ import { LocaleProps } from '../../locale'; | |
| 10 10 | 
             
            export interface ColumnProps {
         | 
| 11 11 | 
             
                title: string | React.ReactNode | Function;
         | 
| 12 12 | 
             
                key: string;
         | 
| 13 | 
            -
                className?:  | 
| 13 | 
            +
                className?: Function;
         | 
| 14 14 | 
             
                children?: Array<ColumnProps>;
         | 
| 15 15 | 
             
                render: Function;
         | 
| 16 16 | 
             
                fixed?: boolean | string;
         | 
| @@ -111,6 +111,7 @@ export interface TableProps extends ThemeProps, LocaleProps { | |
| 111 111 | 
             
                showHeader?: boolean;
         | 
| 112 112 | 
             
                onSelect?: Function;
         | 
| 113 113 | 
             
                onSelectAll?: Function;
         | 
| 114 | 
            +
                itemActions?: Function;
         | 
| 114 115 | 
             
            }
         | 
| 115 116 | 
             
            export interface ScrollProps {
         | 
| 116 117 | 
             
                x: number | string | true;
         | 
| @@ -121,6 +122,11 @@ export interface TableState { | |
| 121 122 | 
             
                dataSource: Array<any>;
         | 
| 122 123 | 
             
                expandedRowKeys: Array<string | number>;
         | 
| 123 124 | 
             
                colWidths: Array<number>;
         | 
| 125 | 
            +
                hoverRow: {
         | 
| 126 | 
            +
                    rowIndex?: number;
         | 
| 127 | 
            +
                    record: any;
         | 
| 128 | 
            +
                    target: HTMLTableRowElement;
         | 
| 129 | 
            +
                } | null;
         | 
| 124 130 | 
             
            }
         | 
| 125 131 | 
             
            export declare class Table extends React.PureComponent<TableProps, TableState> {
         | 
| 126 132 | 
             
                static defaultProps: {
         | 
| @@ -173,6 +179,7 @@ export declare class Table extends React.PureComponent<TableProps, TableState> { | |
| 173 179 | 
             
                onRowClick(event: React.ChangeEvent<any>, record?: any, rowIndex?: number): void;
         | 
| 174 180 | 
             
                onRowMouseEnter(event: React.ChangeEvent<any>, record?: any, rowIndex?: number): void;
         | 
| 175 181 | 
             
                onRowMouseLeave(event: React.ChangeEvent<any>, record?: any, rowIndex?: number): void;
         | 
| 182 | 
            +
                onMouseLeave(event: React.ChangeEvent<any>): void;
         | 
| 176 183 | 
             
                onExpandRow(data: any): void;
         | 
| 177 184 | 
             
                onCollapseRow(data: any): void;
         | 
| 178 185 | 
             
                getChildrenColumnName(): string;
         | 
| @@ -208,7 +215,7 @@ export declare class Table extends React.PureComponent<TableProps, TableState> { | |
| 208 215 | 
             
                render(): JSX.Element;
         | 
| 209 216 | 
             
            }
         | 
| 210 217 | 
             
            declare const _default: {
         | 
| 211 | 
            -
                new (props: Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 218 | 
            +
                new (props: Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 212 219 | 
             
                    title: string;
         | 
| 213 220 | 
             
                    className: string;
         | 
| 214 221 | 
             
                    dataSource: never[];
         | 
| @@ -225,7 +232,7 @@ declare const _default: { | |
| 225 232 | 
             
                    getWrappedInstance(): any;
         | 
| 226 233 | 
             
                    render(): JSX.Element;
         | 
| 227 234 | 
             
                    context: any;
         | 
| 228 | 
            -
                    setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 235 | 
            +
                    setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 229 236 | 
             
                        title: string;
         | 
| 230 237 | 
             
                        className: string;
         | 
| 231 238 | 
             
                        dataSource: never[];
         | 
| @@ -238,7 +245,7 @@ declare const _default: { | |
| 238 245 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 239 246 | 
             
                    }, keyof ThemeProps> & import("../../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
         | 
| 240 247 | 
             
                    forceUpdate(callback?: (() => void) | undefined): void;
         | 
| 241 | 
            -
                    readonly props: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 248 | 
            +
                    readonly props: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 242 249 | 
             
                        title: string;
         | 
| 243 250 | 
             
                        className: string;
         | 
| 244 251 | 
             
                        dataSource: never[];
         | 
| @@ -257,7 +264,7 @@ declare const _default: { | |
| 257 264 | 
             
                        [key: string]: React.ReactInstance;
         | 
| 258 265 | 
             
                    };
         | 
| 259 266 | 
             
                    componentDidMount?(): void;
         | 
| 260 | 
            -
                    shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 267 | 
            +
                    shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 261 268 | 
             
                        title: string;
         | 
| 262 269 | 
             
                        className: string;
         | 
| 263 270 | 
             
                        dataSource: never[];
         | 
| @@ -271,7 +278,7 @@ declare const _default: { | |
| 271 278 | 
             
                    }, keyof ThemeProps> & import("../../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
         | 
| 272 279 | 
             
                    componentWillUnmount?(): void;
         | 
| 273 280 | 
             
                    componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
         | 
| 274 | 
            -
                    getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 281 | 
            +
                    getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 275 282 | 
             
                        title: string;
         | 
| 276 283 | 
             
                        className: string;
         | 
| 277 284 | 
             
                        dataSource: never[];
         | 
| @@ -283,7 +290,7 @@ declare const _default: { | |
| 283 290 | 
             
                        locale?: string | undefined;
         | 
| 284 291 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 285 292 | 
             
                    }, keyof ThemeProps> & import("../../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
         | 
| 286 | 
            -
                    componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 293 | 
            +
                    componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 287 294 | 
             
                        title: string;
         | 
| 288 295 | 
             
                        className: string;
         | 
| 289 296 | 
             
                        dataSource: never[];
         | 
| @@ -297,7 +304,7 @@ declare const _default: { | |
| 297 304 | 
             
                    }, keyof ThemeProps> & import("../../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
         | 
| 298 305 | 
             
                    componentWillMount?(): void;
         | 
| 299 306 | 
             
                    UNSAFE_componentWillMount?(): void;
         | 
| 300 | 
            -
                    componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 307 | 
            +
                    componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 301 308 | 
             
                        title: string;
         | 
| 302 309 | 
             
                        className: string;
         | 
| 303 310 | 
             
                        dataSource: never[];
         | 
| @@ -309,7 +316,7 @@ declare const _default: { | |
| 309 316 | 
             
                        locale?: string | undefined;
         | 
| 310 317 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 311 318 | 
             
                    }, keyof ThemeProps> & import("../../theme").ThemeOutterProps>, nextContext: any): void;
         | 
| 312 | 
            -
                    UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 319 | 
            +
                    UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 313 320 | 
             
                        title: string;
         | 
| 314 321 | 
             
                        className: string;
         | 
| 315 322 | 
             
                        dataSource: never[];
         | 
| @@ -321,7 +328,7 @@ declare const _default: { | |
| 321 328 | 
             
                        locale?: string | undefined;
         | 
| 322 329 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 323 330 | 
             
                    }, keyof ThemeProps> & import("../../theme").ThemeOutterProps>, nextContext: any): void;
         | 
| 324 | 
            -
                    componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 331 | 
            +
                    componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 325 332 | 
             
                        title: string;
         | 
| 326 333 | 
             
                        className: string;
         | 
| 327 334 | 
             
                        dataSource: never[];
         | 
| @@ -333,7 +340,7 @@ declare const _default: { | |
| 333 340 | 
             
                        locale?: string | undefined;
         | 
| 334 341 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 335 342 | 
             
                    }, keyof ThemeProps> & import("../../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
         | 
| 336 | 
            -
                    UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 343 | 
            +
                    UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 337 344 | 
             
                        title: string;
         | 
| 338 345 | 
             
                        className: string;
         | 
| 339 346 | 
             
                        dataSource: never[];
         | 
| @@ -349,7 +356,7 @@ declare const _default: { | |
| 349 356 | 
             
                displayName: string;
         | 
| 350 357 | 
             
                contextType: React.Context<string>;
         | 
| 351 358 | 
             
                ComposedComponent: React.ComponentType<{
         | 
| 352 | 
            -
                    new (props: Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 359 | 
            +
                    new (props: Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 353 360 | 
             
                        title: string;
         | 
| 354 361 | 
             
                        className: string;
         | 
| 355 362 | 
             
                        dataSource: never[];
         | 
| @@ -366,7 +373,7 @@ declare const _default: { | |
| 366 373 | 
             
                        getWrappedInstance(): any;
         | 
| 367 374 | 
             
                        render(): JSX.Element;
         | 
| 368 375 | 
             
                        context: any;
         | 
| 369 | 
            -
                        setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 376 | 
            +
                        setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 370 377 | 
             
                            title: string;
         | 
| 371 378 | 
             
                            className: string;
         | 
| 372 379 | 
             
                            dataSource: never[];
         | 
| @@ -379,7 +386,7 @@ declare const _default: { | |
| 379 386 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 380 387 | 
             
                        }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
         | 
| 381 388 | 
             
                        forceUpdate(callback?: (() => void) | undefined): void;
         | 
| 382 | 
            -
                        readonly props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 389 | 
            +
                        readonly props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 383 390 | 
             
                            title: string;
         | 
| 384 391 | 
             
                            className: string;
         | 
| 385 392 | 
             
                            dataSource: never[];
         | 
| @@ -398,7 +405,7 @@ declare const _default: { | |
| 398 405 | 
             
                            [key: string]: React.ReactInstance;
         | 
| 399 406 | 
             
                        };
         | 
| 400 407 | 
             
                        componentDidMount?(): void;
         | 
| 401 | 
            -
                        shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 408 | 
            +
                        shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 402 409 | 
             
                            title: string;
         | 
| 403 410 | 
             
                            className: string;
         | 
| 404 411 | 
             
                            dataSource: never[];
         | 
| @@ -412,7 +419,7 @@ declare const _default: { | |
| 412 419 | 
             
                        }>, nextState: Readonly<{}>, nextContext: any): boolean;
         | 
| 413 420 | 
             
                        componentWillUnmount?(): void;
         | 
| 414 421 | 
             
                        componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
         | 
| 415 | 
            -
                        getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 422 | 
            +
                        getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 416 423 | 
             
                            title: string;
         | 
| 417 424 | 
             
                            className: string;
         | 
| 418 425 | 
             
                            dataSource: never[];
         | 
| @@ -424,7 +431,7 @@ declare const _default: { | |
| 424 431 | 
             
                            locale?: string | undefined;
         | 
| 425 432 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 426 433 | 
             
                        }>, prevState: Readonly<{}>): any;
         | 
| 427 | 
            -
                        componentDidUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 434 | 
            +
                        componentDidUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 428 435 | 
             
                            title: string;
         | 
| 429 436 | 
             
                            className: string;
         | 
| 430 437 | 
             
                            dataSource: never[];
         | 
| @@ -438,7 +445,7 @@ declare const _default: { | |
| 438 445 | 
             
                        }>, prevState: Readonly<{}>, snapshot?: any): void;
         | 
| 439 446 | 
             
                        componentWillMount?(): void;
         | 
| 440 447 | 
             
                        UNSAFE_componentWillMount?(): void;
         | 
| 441 | 
            -
                        componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 448 | 
            +
                        componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 442 449 | 
             
                            title: string;
         | 
| 443 450 | 
             
                            className: string;
         | 
| 444 451 | 
             
                            dataSource: never[];
         | 
| @@ -450,7 +457,7 @@ declare const _default: { | |
| 450 457 | 
             
                            locale?: string | undefined;
         | 
| 451 458 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 452 459 | 
             
                        }>, nextContext: any): void;
         | 
| 453 | 
            -
                        UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 460 | 
            +
                        UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 454 461 | 
             
                            title: string;
         | 
| 455 462 | 
             
                            className: string;
         | 
| 456 463 | 
             
                            dataSource: never[];
         | 
| @@ -462,7 +469,7 @@ declare const _default: { | |
| 462 469 | 
             
                            locale?: string | undefined;
         | 
| 463 470 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 464 471 | 
             
                        }>, nextContext: any): void;
         | 
| 465 | 
            -
                        componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 472 | 
            +
                        componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 466 473 | 
             
                            title: string;
         | 
| 467 474 | 
             
                            className: string;
         | 
| 468 475 | 
             
                            dataSource: never[];
         | 
| @@ -474,7 +481,7 @@ declare const _default: { | |
| 474 481 | 
             
                            locale?: string | undefined;
         | 
| 475 482 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 476 483 | 
             
                        }>, nextState: Readonly<{}>, nextContext: any): void;
         | 
| 477 | 
            -
                        UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 484 | 
            +
                        UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 478 485 | 
             
                            title: string;
         | 
| 479 486 | 
             
                            className: string;
         | 
| 480 487 | 
             
                            dataSource: never[];
         | 
| @@ -494,7 +501,7 @@ declare const _default: { | |
| 494 501 | 
             
                    ComposedComponent: typeof Table;
         | 
| 495 502 | 
             
                }>;
         | 
| 496 503 | 
             
            } & import("hoist-non-react-statics").NonReactStatics<{
         | 
| 497 | 
            -
                new (props: Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 504 | 
            +
                new (props: Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 498 505 | 
             
                    title: string;
         | 
| 499 506 | 
             
                    className: string;
         | 
| 500 507 | 
             
                    dataSource: never[];
         | 
| @@ -511,7 +518,7 @@ declare const _default: { | |
| 511 518 | 
             
                    getWrappedInstance(): any;
         | 
| 512 519 | 
             
                    render(): JSX.Element;
         | 
| 513 520 | 
             
                    context: any;
         | 
| 514 | 
            -
                    setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 521 | 
            +
                    setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 515 522 | 
             
                        title: string;
         | 
| 516 523 | 
             
                        className: string;
         | 
| 517 524 | 
             
                        dataSource: never[];
         | 
| @@ -524,7 +531,7 @@ declare const _default: { | |
| 524 531 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 525 532 | 
             
                    }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
         | 
| 526 533 | 
             
                    forceUpdate(callback?: (() => void) | undefined): void;
         | 
| 527 | 
            -
                    readonly props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 534 | 
            +
                    readonly props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 528 535 | 
             
                        title: string;
         | 
| 529 536 | 
             
                        className: string;
         | 
| 530 537 | 
             
                        dataSource: never[];
         | 
| @@ -543,7 +550,7 @@ declare const _default: { | |
| 543 550 | 
             
                        [key: string]: React.ReactInstance;
         | 
| 544 551 | 
             
                    };
         | 
| 545 552 | 
             
                    componentDidMount?(): void;
         | 
| 546 | 
            -
                    shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 553 | 
            +
                    shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 547 554 | 
             
                        title: string;
         | 
| 548 555 | 
             
                        className: string;
         | 
| 549 556 | 
             
                        dataSource: never[];
         | 
| @@ -557,7 +564,7 @@ declare const _default: { | |
| 557 564 | 
             
                    }>, nextState: Readonly<{}>, nextContext: any): boolean;
         | 
| 558 565 | 
             
                    componentWillUnmount?(): void;
         | 
| 559 566 | 
             
                    componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
         | 
| 560 | 
            -
                    getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 567 | 
            +
                    getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 561 568 | 
             
                        title: string;
         | 
| 562 569 | 
             
                        className: string;
         | 
| 563 570 | 
             
                        dataSource: never[];
         | 
| @@ -569,7 +576,7 @@ declare const _default: { | |
| 569 576 | 
             
                        locale?: string | undefined;
         | 
| 570 577 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 571 578 | 
             
                    }>, prevState: Readonly<{}>): any;
         | 
| 572 | 
            -
                    componentDidUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 579 | 
            +
                    componentDidUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 573 580 | 
             
                        title: string;
         | 
| 574 581 | 
             
                        className: string;
         | 
| 575 582 | 
             
                        dataSource: never[];
         | 
| @@ -583,7 +590,7 @@ declare const _default: { | |
| 583 590 | 
             
                    }>, prevState: Readonly<{}>, snapshot?: any): void;
         | 
| 584 591 | 
             
                    componentWillMount?(): void;
         | 
| 585 592 | 
             
                    UNSAFE_componentWillMount?(): void;
         | 
| 586 | 
            -
                    componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 593 | 
            +
                    componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 587 594 | 
             
                        title: string;
         | 
| 588 595 | 
             
                        className: string;
         | 
| 589 596 | 
             
                        dataSource: never[];
         | 
| @@ -595,7 +602,7 @@ declare const _default: { | |
| 595 602 | 
             
                        locale?: string | undefined;
         | 
| 596 603 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 597 604 | 
             
                    }>, nextContext: any): void;
         | 
| 598 | 
            -
                    UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 605 | 
            +
                    UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 599 606 | 
             
                        title: string;
         | 
| 600 607 | 
             
                        className: string;
         | 
| 601 608 | 
             
                        dataSource: never[];
         | 
| @@ -607,7 +614,7 @@ declare const _default: { | |
| 607 614 | 
             
                        locale?: string | undefined;
         | 
| 608 615 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 609 616 | 
             
                    }>, nextContext: any): void;
         | 
| 610 | 
            -
                    componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 617 | 
            +
                    componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 611 618 | 
             
                        title: string;
         | 
| 612 619 | 
             
                        className: string;
         | 
| 613 620 | 
             
                        dataSource: never[];
         | 
| @@ -619,7 +626,7 @@ declare const _default: { | |
| 619 626 | 
             
                        locale?: string | undefined;
         | 
| 620 627 | 
             
                        translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 621 628 | 
             
                    }>, nextState: Readonly<{}>, nextContext: any): void;
         | 
| 622 | 
            -
                    UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 629 | 
            +
                    UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 623 630 | 
             
                        title: string;
         | 
| 624 631 | 
             
                        className: string;
         | 
| 625 632 | 
             
                        dataSource: never[];
         | 
| @@ -639,7 +646,7 @@ declare const _default: { | |
| 639 646 | 
             
                ComposedComponent: typeof Table;
         | 
| 640 647 | 
             
            }, {}> & {
         | 
| 641 648 | 
             
                ComposedComponent: {
         | 
| 642 | 
            -
                    new (props: Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 649 | 
            +
                    new (props: Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 643 650 | 
             
                        title: string;
         | 
| 644 651 | 
             
                        className: string;
         | 
| 645 652 | 
             
                        dataSource: never[];
         | 
| @@ -656,7 +663,7 @@ declare const _default: { | |
| 656 663 | 
             
                        getWrappedInstance(): any;
         | 
| 657 664 | 
             
                        render(): JSX.Element;
         | 
| 658 665 | 
             
                        context: any;
         | 
| 659 | 
            -
                        setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 666 | 
            +
                        setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 660 667 | 
             
                            title: string;
         | 
| 661 668 | 
             
                            className: string;
         | 
| 662 669 | 
             
                            dataSource: never[];
         | 
| @@ -669,7 +676,7 @@ declare const _default: { | |
| 669 676 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 670 677 | 
             
                        }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
         | 
| 671 678 | 
             
                        forceUpdate(callback?: (() => void) | undefined): void;
         | 
| 672 | 
            -
                        readonly props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 679 | 
            +
                        readonly props: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 673 680 | 
             
                            title: string;
         | 
| 674 681 | 
             
                            className: string;
         | 
| 675 682 | 
             
                            dataSource: never[];
         | 
| @@ -688,7 +695,7 @@ declare const _default: { | |
| 688 695 | 
             
                            [key: string]: React.ReactInstance;
         | 
| 689 696 | 
             
                        };
         | 
| 690 697 | 
             
                        componentDidMount?(): void;
         | 
| 691 | 
            -
                        shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 698 | 
            +
                        shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 692 699 | 
             
                            title: string;
         | 
| 693 700 | 
             
                            className: string;
         | 
| 694 701 | 
             
                            dataSource: never[];
         | 
| @@ -702,7 +709,7 @@ declare const _default: { | |
| 702 709 | 
             
                        }>, nextState: Readonly<{}>, nextContext: any): boolean;
         | 
| 703 710 | 
             
                        componentWillUnmount?(): void;
         | 
| 704 711 | 
             
                        componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
         | 
| 705 | 
            -
                        getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 712 | 
            +
                        getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 706 713 | 
             
                            title: string;
         | 
| 707 714 | 
             
                            className: string;
         | 
| 708 715 | 
             
                            dataSource: never[];
         | 
| @@ -714,7 +721,7 @@ declare const _default: { | |
| 714 721 | 
             
                            locale?: string | undefined;
         | 
| 715 722 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 716 723 | 
             
                        }>, prevState: Readonly<{}>): any;
         | 
| 717 | 
            -
                        componentDidUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 724 | 
            +
                        componentDidUpdate?(prevProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 718 725 | 
             
                            title: string;
         | 
| 719 726 | 
             
                            className: string;
         | 
| 720 727 | 
             
                            dataSource: never[];
         | 
| @@ -728,7 +735,7 @@ declare const _default: { | |
| 728 735 | 
             
                        }>, prevState: Readonly<{}>, snapshot?: any): void;
         | 
| 729 736 | 
             
                        componentWillMount?(): void;
         | 
| 730 737 | 
             
                        UNSAFE_componentWillMount?(): void;
         | 
| 731 | 
            -
                        componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 738 | 
            +
                        componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 732 739 | 
             
                            title: string;
         | 
| 733 740 | 
             
                            className: string;
         | 
| 734 741 | 
             
                            dataSource: never[];
         | 
| @@ -740,7 +747,7 @@ declare const _default: { | |
| 740 747 | 
             
                            locale?: string | undefined;
         | 
| 741 748 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 742 749 | 
             
                        }>, nextContext: any): void;
         | 
| 743 | 
            -
                        UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 750 | 
            +
                        UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 744 751 | 
             
                            title: string;
         | 
| 745 752 | 
             
                            className: string;
         | 
| 746 753 | 
             
                            dataSource: never[];
         | 
| @@ -752,7 +759,7 @@ declare const _default: { | |
| 752 759 | 
             
                            locale?: string | undefined;
         | 
| 753 760 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 754 761 | 
             
                        }>, nextContext: any): void;
         | 
| 755 | 
            -
                        componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 762 | 
            +
                        componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 756 763 | 
             
                            title: string;
         | 
| 757 764 | 
             
                            className: string;
         | 
| 758 765 | 
             
                            dataSource: never[];
         | 
| @@ -764,7 +771,7 @@ declare const _default: { | |
| 764 771 | 
             
                            locale?: string | undefined;
         | 
| 765 772 | 
             
                            translate?: ((str: string, ...args: any[]) => string) | undefined;
         | 
| 766 773 | 
             
                        }>, nextState: Readonly<{}>, nextContext: any): void;
         | 
| 767 | 
            -
                        UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 774 | 
            +
                        UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TableProps, keyof LocaleProps>, "classPrefix" | "classnames" | "footer" | "theme" | "scroll" | "onSelect" | "loading" | "sticky" | "size" | "draggable" | "onDrag" | "lineHeight" | "resizable" | "expandable" | "rowClassName" | "itemActions" | "rowSelection" | "keyField" | "childrenColumnName" | "bordered" | "onSelectAll" | "onSort" | "onFilter" | "headSummary" | "footSummary" | "onRow"> & Partial<Pick<Omit<TableProps, keyof LocaleProps>, "title" | "className" | "columns" | "placeholder" | "showHeader" | "indentSize" | "dataSource">> & Partial<Pick<{
         | 
| 768 775 | 
             
                            title: string;
         | 
| 769 776 | 
             
                            className: string;
         | 
| 770 777 | 
             
                            dataSource: never[];
         |