forked from eyra/feldspar
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed all side-interface components
These are now provided by the server-side Feldspar system.
- Loading branch information
Showing
11 changed files
with
7 additions
and
298 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file modified
BIN
+3 Bytes
(100%)
src/framework/processing/py/dist/port-0.0.0-py3-none-any.whl
Binary file not shown.
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
153 changes: 0 additions & 153 deletions
153
src/framework/visualisation/react/ui/pages/splash_screen.tsx
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
src/framework/visualisation/react/ui/pages/templates/footer.tsx
This file was deleted.
Oops, something went wrong.
17 changes: 2 additions & 15 deletions
17
src/framework/visualisation/react/ui/pages/templates/page.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 |
---|---|---|
@@ -1,24 +1,11 @@ | ||
interface PageProps { | ||
body: JSX.Element | ||
sidebar: JSX.Element | ||
footer: JSX.Element | ||
} | ||
|
||
export const Page = (props: PageProps): JSX.Element => { | ||
return ( | ||
<div className='flex flex-col w-full h-full gap-4'> | ||
<div className='flex flex-row w-full gap-10 pt-20 pr-14'> | ||
<div className='flex-1 pl-14'> | ||
{props.body} | ||
</div> | ||
<div className='w-sidebar flex-shrink-0'> | ||
{props.sidebar} | ||
</div> | ||
</div> | ||
<div className='flex-grow' /> | ||
<div className='h-footer flex-shrink-0'> | ||
{props.footer} | ||
</div> | ||
<div className='w-full h-full'> | ||
{props.body} | ||
</div> | ||
) | ||
} |
Oops, something went wrong.