-
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.
Merge branch 'master' of https://github.com/flyteorg/flyteconsole int…
…o devmain
- Loading branch information
Showing
164 changed files
with
6,677 additions
and
2,306 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "launch generator", | ||
"type": "node", | ||
"request": "launch", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}/script/generator/src/index.js", | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
flyte/docker_build | ||
flyte/pull_request_template | ||
flyte/welcome_bot | ||
flyte/code_of_conduct |
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
24 changes: 24 additions & 0 deletions
24
packages/composites/ui-atoms/src/Icons/MapCacheIcon/index.tsx
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,24 @@ | ||
import * as React from 'react'; | ||
import SvgIcon, { SvgIconProps } from '@material-ui/core/SvgIcon'; | ||
|
||
export const MapCacheIcon = React.forwardRef<SVGSVGElement, SvgIconProps>((props, ref) => { | ||
return ( | ||
<SvgIcon {...props} ref={ref} viewBox="0 0 17 17"> | ||
<g clipPath="url(#clip0_6712_89419)"> | ||
<path | ||
d="M5.68615 2.99228L6.91566 7.15285L4.89438 6.0537C4.31136 7.12586 4.17812 8.3857 4.52399 9.55609C4.86986 10.7265 5.45103 11.4847 6.52318 12.0677C7.19695 12.4341 8.24054 12.5388 8.96464 12.5397L9.41341 14.0583C8.25879 14.1378 6.70623 14.0476 5.68964 13.4944C4.2601 12.717 3.51417 11.5513 3.05301 9.99079C2.59185 8.43027 2.76949 6.75048 3.54686 5.32094L1.52558 4.22179L5.68615 2.99228Z" | ||
fill="#666666" | ||
/> | ||
<path | ||
d="M9.90614 2.76737C11.152 3.02647 12.2756 3.69438 13.0985 4.66504C13.9214 5.6357 14.3964 6.85346 14.4481 8.12494C14.4998 9.39642 14.1252 10.6487 13.3839 11.683C12.6425 12.7173 11.5768 13.4742 10.3561 13.8336L8.74374 8.35689L9.90614 2.76737Z" | ||
fill="#DDDDE5" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_6712_89419"> | ||
<rect width="16" height="16" fill="white" transform="translate(0.406982 0.356445)" /> | ||
</clipPath> | ||
</defs> | ||
</SvgIcon> | ||
); | ||
}); |
39 changes: 39 additions & 0 deletions
39
packages/composites/ui-atoms/src/Icons/MuiLaunchPlanIcon/index.tsx
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,39 @@ | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import { SvgIconProps, Theme } from '@material-ui/core'; | ||
import classnames from 'classnames'; | ||
import * as React from 'react'; | ||
|
||
const useStyles = makeStyles((theme: Theme) => ({ | ||
svg: { | ||
marginTop: 0, | ||
marginRight: theme.spacing(2), | ||
display: 'inline-block', | ||
fontSize: '1.5rem', | ||
transition: 'fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms', | ||
flexShrink: 0, | ||
userSelect: 'none', | ||
color: '#666666', | ||
}, | ||
})); | ||
|
||
export const MuiLaunchPlanIcon = (props: SvgIconProps): JSX.Element => { | ||
const { fill, className, width = '1em', height = '1em', fontSize } = props; | ||
const styles = useStyles(); | ||
return ( | ||
<svg | ||
className={classnames(styles.svg, className)} | ||
width={width} | ||
height={height} | ||
viewBox="0 0 16 16" | ||
xmlns="http://www.w3.org/2000/svg" | ||
fontSize={fontSize} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M2 15V2C2 1.44772 2.44772 1 3 1H12.7391C13.2914 1 13.7391 1.44772 13.7391 2V11.4421H9.82593H9.32593V11.9421V16H3C2.44772 16 2 15.5523 2 15ZM10.3259 12.4421H13.384L10.3259 15.5002V12.4421ZM5.1307 5.93466H11.0003V4.93466H5.1307V5.93466ZM11.0004 8.83351H5.13079V7.83351H11.0004V8.83351ZM5.13079 11.732H8.02934V10.732H5.13079V11.732Z" | ||
fill={fill || 'currentColor'} | ||
/> | ||
</svg> | ||
); | ||
}; |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export { FlyteLogo } from './FlyteLogo'; | ||
export { InfoIcon } from './InfoIcon'; | ||
export { RerunIcon } from './RerunIcon'; | ||
export { MapCacheIcon } from './MapCacheIcon'; | ||
export { MuiLaunchPlanIcon } from './MuiLaunchPlanIcon'; |
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.