-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Docs, EuiBasicTable] Recreating props tables with props loader (#4125)
* Using prop loader to create props table for basic table * Added CL * Reverting criteria types * More improvements * More improvements * Fixing DefaultItemAction prop table not showing * Es lint fix * Update src-docs/src/views/tables/basic/props.tsx Co-authored-by: Greg Thompson <[email protected]> * CL Co-authored-by: Greg Thompson <[email protected]>
- Loading branch information
1 parent
028aec0
commit 7e712e5
Showing
8 changed files
with
236 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React, { FunctionComponent } from 'react'; | ||
import { DefaultItemAction } from '../../../../../src/components/basic_table/action_types'; | ||
|
||
// Simulating the `item` generic | ||
type T = {}; | ||
|
||
export const DefaultItemActionProps: FunctionComponent<DefaultItemAction< | ||
T | ||
>> = () => <div />; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.