Upgrade to EUI@17.1.2 [table typescript types] (#52688)

* more types

* table types changes

* siem table conversions

* Updated rest of x-pack for EUI table typees

* updated x-pack changes against master

* Update to published eui 17.1.0

* kibana snapshots

* x-pack snapshots

* src snapshots

* autofixes

* autofixes, round 2
This commit is contained in:
Chandler Prall 2019-12-18 11:15:14 -07:00 committed by GitHub
parent 942fdeeb2d
commit 068f3ffa2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
150 changed files with 998 additions and 627 deletions

View file

@ -25,17 +25,4 @@ declare module '@elastic/eui' {
export const EuiDescribedFormGroup: React.FC<any>;
export const EuiCodeEditor: React.FC<any>;
export const Query: any;
export interface EuiTableCriteria {
page: { index: number; size: number };
sort?: {
field?: string;
direction?: Direction;
};
}
export const EuiBasicTable: React.ComponentClass<{
onTableChange?: (criteria: EuiTableCriteria) => void;
sorting: { sort?: EuiTableCriteria['sort'] };
[key: string]: any;
}>;
}