Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Commit

Permalink
Merge pull request #43 from Caleydo/release-8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkh authored Aug 19, 2020
2 parents 85fde5d + 224992e commit 5c910ec
Show file tree
Hide file tree
Showing 78 changed files with 1,095 additions and 938 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/.tscache
/.idea
/build/
/dist/
*.egg-info/
*.egg
*.py[cod]
Expand All @@ -20,7 +19,7 @@ __pycache__/
node_modules/
/src/**/*.js
/tests/**/*.js
*.map
/src/**/*.map
/tests/**/*.map
*.css
/.cache-loader
package-lock.json
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
tdp_dummy [![Phovea][phovea-image]][phovea-url] [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![CircleCI](https://circleci.com/gh/Caleydo/tdp_dummy.svg?style=shield)](https://circleci.com/gh/Caleydo/tdp_dummy)
tdp_dummy
=====================
[![Phovea][phovea-image-client]][phovea-url] [![Phovea][phovea-image-server]][phovea-url] [![NPM version][npm-image]][npm-url] [![CircleCI][circleci-image]][circleci-url]

This repository provides a SQLite database with dummy data and additional views for this specific dataset for TargID.

Expand Down Expand Up @@ -34,11 +35,10 @@ npm run build
This repository is part of **[Phovea](http://phovea.caleydo.org/)**, a platform for developing web-based visualization applications. For tutorials, API docs, and more information about the build and deployment process, see the [documentation page](http://phovea.caleydo.org).


[phovea-image]: https://img.shields.io/badge/Phovea-Client%20Plugin-F47D20.svg
[phovea-image-client]: https://img.shields.io/badge/Phovea-Client%20Plugin-F47D20.svg
[phovea-image-server]: https://img.shields.io/badge/Phovea-Server%20Plugin-10ACDF.svg
[phovea-url]: https://phovea.caleydo.org
[npm-image]: https://badge.fury.io/js/tdp_dummy.svg
[npm-url]: https://npmjs.org/package/tdp_dummy
[travis-image]: https://travis-ci.org/caleydo/tdp_dummy.svg?branch=master
[travis-url]: https://travis-ci.org/caleydo/tdp_dummy
[daviddm-image]: https://david-dm.org/caleydo/tdp_dummy/status.svg
[daviddm-url]: https://david-dm.org/caleydo/tdp_dummy
[circleci-image]: https://circleci.com/gh/Caleydo/tdp_dummy.svg?style=shield
[circleci-url]: https://circleci.com/gh/Caleydo/tdp_dummy
176 changes: 0 additions & 176 deletions buildInfo.js

This file was deleted.

13 changes: 13 additions & 0 deletions dist/base/DummyMenuSection.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* Created by Holger Stitz on 10.08.2016.
*/
import { IPluginDesc } from 'phovea_core';
import { INamedSet } from 'tdp_core';
import { IStartMenuSection, IStartMenuSectionOptions } from 'ordino';
export declare class DummyMenuSection implements IStartMenuSection {
readonly desc: IPluginDesc;
private readonly idType;
private readonly list;
constructor(parent: HTMLElement, desc: IPluginDesc, options: IStartMenuSectionOptions);
push(namedSet: INamedSet): boolean;
}
45 changes: 45 additions & 0 deletions dist/base/DummyMenuSection.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/base/DummyMenuSection.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions dist/base/DummySearchProvider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { IDummyDataSource } from './config';
import '../scss/main.scss';
import { IResult, ISearchProvider } from 'tdp_core';
export declare class DummySearchProvider implements ISearchProvider {
private readonly dataSource;
constructor(dataSource: IDummyDataSource);
search(query: string, page: number, pageSize: number): Promise<Readonly<import("tdp_core").ILookupResult>>;
validate(query: string[]): Promise<IResult[]>;
}
export declare function createA(): DummySearchProvider;
export declare function createB(): DummySearchProvider;
28 changes: 28 additions & 0 deletions dist/base/DummySearchProvider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/base/DummySearchProvider.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions dist/base/config.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**
* Created by Samuel Gratzl on 29.01.2016.
*/
export declare const categories: string[];
export declare const types: string[];
export declare const samples: string[];
/**
* List of ids for parameter form elements
* Reuse this ids and activate the `useSession` option for form elements to have the same selectedIndex between different views
*/
export declare class ParameterFormIds {
static SAMPLE: string;
static TYPE: string;
static SCORE_ATTRIBUTE: string;
static SCORE_AGGREGATION: string;
}
export interface IDummyDataSource {
name: string;
idType: string;
table: string;
}
export declare const dataSourceA: IDummyDataSource;
export declare const dataSourceB: IDummyDataSource;
28 changes: 28 additions & 0 deletions dist/base/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/base/config.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/base/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './config';
export * from './DummyMenuSection';
export * from './DummySearchProvider';
4 changes: 4 additions & 0 deletions dist/base/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/base/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5c910ec

Please sign in to comment.