-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
889 additions
and
644 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "coral_public", | ||
"description": "Coral is a web-based cohort analysis tool to interactively create, refine, and analyze patient cohorts.", | ||
"homepage": "https://caleydo.org", | ||
"version": "3.2.0", | ||
"version": "4.0.0", | ||
"author": { | ||
"name": "PatrickAdelberger", | ||
"email": "[email protected]", | ||
|
@@ -31,7 +31,7 @@ | |
"dist": "mkdir lib && cd dist && tar cvzf ../lib/bundle.tar.gz *", | ||
"docs": "visyn_scripts docs", | ||
"lint:fix": "visyn_scripts lint --fix", | ||
"lint": "visyn_scripts lint || true", | ||
"lint": "visyn_scripts lint", | ||
"prepack": "yarn run build", | ||
"start": "visyn_scripts start --env workspace_mode=single", | ||
"storybook:build": "NODE_OPTIONS=--max_old_space_size=4096 build-storybook", | ||
|
@@ -52,17 +52,21 @@ | |
"node": ">=16" | ||
}, | ||
"dependencies": { | ||
"canvas-confetti": "^1.4.0", | ||
"coral": "git+ssh://[email protected]/Caleydo/coral#semver:^4.1.0", | ||
"ordino": "git+ssh://[email protected]/Caleydo/ordino#semver:^13.0.1", | ||
"canvas-confetti": "^1.5.1", | ||
"coral": "git+ssh://[email protected]:Caleydo/coral#semver:^5.0.0", | ||
"ordino": "git+ssh://[email protected]:Caleydo/ordino#semver:^14.0.0", | ||
"react": "^16.13.0", | ||
"react-dom": "^16.13.0", | ||
"react-router-dom": "^5.2.0", | ||
"visyn_scripts": "^1.1.1" | ||
"visyn_scripts": "^4.1.0" | ||
}, | ||
"resolutions": { | ||
"@types/react": "~18.2.0", | ||
"@types/react-dom": "~18.2.0", | ||
"react": "~18.2.0", | ||
"react-dom": "~18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^16.14.6", | ||
"@types/react-dom": "^16.9.5", | ||
"@types/react-router-dom": "^5.1.7", | ||
"mkdirp": "0.5.1", | ||
"tslint": "~5.20.1", | ||
|
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
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,11 +0,0 @@ | ||
// export * from './data'; | ||
// export * from './Overview'; | ||
// export * from './Taskview'; | ||
|
||
// export * from './app'; | ||
// export * from './Cohort'; | ||
// export * from './CohortInterfaces'; | ||
// export * from './CohortRepresentations'; | ||
// export * from './cohortview'; | ||
// export * from './LoginDialog'; | ||
// export * from './rest'; | ||
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,16 +1,16 @@ | ||
import {OrdinoFooter} from 'ordino'; | ||
import { OrdinoFooter } from 'ordino'; | ||
import * as React from 'react'; | ||
import {BrowserRouter} from 'react-router-dom'; | ||
import {DevelopedByAffiliations} from '../pages/components/DevelopedByAffiliations'; | ||
import {CoralHelpSection} from '../pages/components/CoralHelpSection'; | ||
import { BrowserRouter } from 'react-router-dom'; | ||
import { DevelopedByAffiliations } from '../pages/components/DevelopedByAffiliations'; | ||
import { CoralHelpSection } from '../pages/components/CoralHelpSection'; | ||
|
||
export default function HelpTab() { | ||
return <> | ||
<BrowserRouter basename="/#"> | ||
<CoralHelpSection openInNewWindow> | ||
<DevelopedByAffiliations></DevelopedByAffiliations> | ||
<OrdinoFooter openInNewWindow></OrdinoFooter> | ||
</CoralHelpSection> | ||
</BrowserRouter> | ||
</>; | ||
return ( | ||
<BrowserRouter basename="/#"> | ||
<CoralHelpSection openInNewWindow> | ||
<DevelopedByAffiliations /> | ||
<OrdinoFooter openInNewWindow /> | ||
</CoralHelpSection> | ||
</BrowserRouter> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
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,16 +1,18 @@ | ||
import * as React from 'react'; | ||
import {HeaderNavigation, OrdinoFooter} from 'ordino'; | ||
import { HeaderNavigation, OrdinoFooter } from 'ordino'; | ||
|
||
export function Error404Page() { | ||
return ( | ||
<> | ||
<HeaderNavigation bg="none"></HeaderNavigation> | ||
<HeaderNavigation bg="none" /> | ||
<div className="container"> | ||
<div className="row"> | ||
<div className="col"><h2>Page Not Found</h2></div> | ||
<div className="col"> | ||
<h2>Page Not Found</h2> | ||
</div> | ||
</div> | ||
</div> | ||
<OrdinoFooter></OrdinoFooter> | ||
<OrdinoFooter /> | ||
</> | ||
); | ||
} |
Oops, something went wrong.