-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
made the entities component become more generic that can support Workflow, Task, and others added the inputs and outputs to task details page added the versions table in task details page added the version details page added task details link in node side panel Signed-off-by: eugenejahn <eugenejahnjahn@gmail.com> Co-authored-by: Eugene Jahn <eugenejahnjahn@gmail.com>
- Loading branch information
1 parent
42d2632
commit 324b4f5
Showing
38 changed files
with
900 additions
and
131 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
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
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,32 @@ | ||
import * as React from 'react'; | ||
import { Typography } from '@material-ui/core'; | ||
import { makeStyles, Theme } from '@material-ui/core/styles'; | ||
import { COLOR_SPECTRUM } from 'components/Theme/colorSpectrum'; | ||
|
||
const useStyles = makeStyles((theme: Theme) => ({ | ||
row: { | ||
display: 'flex', | ||
marginBottom: theme.spacing(1), | ||
}, | ||
title: { | ||
width: 100, | ||
color: COLOR_SPECTRUM.gray25.color, | ||
}, | ||
})); | ||
|
||
interface MyProps { | ||
children?: React.ReactNode; | ||
title: String; | ||
} | ||
export const Row: React.FC<MyProps> = (props) => { | ||
const styles = useStyles(); | ||
|
||
return ( | ||
<div className={styles.row}> | ||
<div className={styles.title}> | ||
<Typography>{props.title}</Typography> | ||
</div> | ||
<div>{props.children}</div> | ||
</div> | ||
); | ||
}; |
Oops, something went wrong.