beca-ui 2.0.20-beta.25 → 2.0.20-beta.27

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.
@@ -1,5 +1,5 @@
1
1
  import { TableProps as AntTableProps } from "antd";
2
- import { ColumnGroupType, ColumnType as AntColumnType, TableRowSelection as AntTableRowSelection, ColumnTitle as AntColumnTitle } from "antd/lib/table/interface";
2
+ import { ColumnGroupType, ColumnType as AntColumnType, TableRowSelection as AntTableRowSelection, ColumnTitle as AntColumnTitle, FilterDropdownProps } from "antd/lib/table/interface";
3
3
  export interface TableProps<T = any> extends Omit<AntTableProps<T>, "rowSelection"> {
4
4
  transparent?: boolean;
5
5
  rowSelection?: TableRowSelection<any>;
@@ -29,3 +29,4 @@ export type ColumnType<RecordType = any> = AntColumnType<RecordType> & {
29
29
  editable?: boolean;
30
30
  };
31
31
  export type ColumnTitle<RecordType = any> = AntColumnTitle<RecordType>;
32
+ export type { FilterDropdownProps };