-
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.
Merge pull request #62 from Caleydo/release-2.0.0
- Loading branch information
Showing
152 changed files
with
9,759 additions
and
1,309 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
Validating CODEOWNERS rules …
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 @@ | ||
* @thinkh |
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,13 +1,11 @@ | ||
/.tscache | ||
/.idea | ||
/build/ | ||
/dist/ | ||
/lib/ | ||
node_modules/ | ||
/src/**/*.js | ||
/src/**/*.d.ts | ||
/tests/**/*.js | ||
/tests/**/*.d.ts | ||
*.map | ||
/src/**/*.map | ||
/tests/**/*.map | ||
*.css | ||
*.log | ||
/.cache-loader | ||
package-lock.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,15 @@ | |
"entries": "./index.js", | ||
"ignores": [], | ||
"extensions": [], | ||
"name": "touring", | ||
"author": "Klaus Eckelt", | ||
"name": "tourdino", | ||
"author": "The Caleydo Team", | ||
"today": "Wed, 19 Sep 2018 10:27:30 GMT", | ||
"githubAccount": "caleydo" | ||
"githubAccount": "caleydo", | ||
"promptValues": { | ||
"authorName": "The Caleydo Team", | ||
"authorEmail": "[email protected]", | ||
"authorUrl": "https://caleydo.org/", | ||
"githubAccount": "caleydo" | ||
} | ||
} | ||
} | ||
} |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import '../scss/main.scss'; | ||
import 'd3.parsets/d3.parsets'; | ||
import 'd3-grubert-boxplot/box'; | ||
import { LocalDataProvider } from 'lineupjs'; | ||
import { PanelTab } from 'tdp_core/dist/lineup/internal/panel/PanelTab'; | ||
import { IPanelTabExtensionDesc } from 'tdp_core/dist/lineup/internal/LineUpPanelActions'; | ||
import { RowComparison } from '../tasks/RowComparisonTask'; | ||
import { ColumnComparison } from '../tasks/ColumnComparisonTask'; | ||
export declare const tasks: (ColumnComparison | RowComparison)[]; | ||
export declare class TouringPanel { | ||
private readonly _desc; | ||
private readonly tab; | ||
private readonly provider; | ||
private readonly node; | ||
private ranking; | ||
private currentTask; | ||
private active; | ||
constructor(_desc: IPanelTabExtensionDesc, tab: PanelTab, provider: LocalDataProvider); | ||
private init; | ||
private initTasks; | ||
private insertTasks; | ||
private addEventListeners; | ||
updateOutput(forceUpdate?: boolean): Promise<void>; | ||
private updateTask; | ||
/** | ||
* | ||
* @param tab PanelTab | ||
* @param provider Instance of the LocalDataProvider that contains all ranking | ||
* @param desc Options provided through the extension point i.e `headerCssClass, headerTitle` | ||
*/ | ||
static create(desc: IPanelTabExtensionDesc, tab: PanelTab, provider: LocalDataProvider): void; | ||
} |
Oops, something went wrong.