-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Javed Habib <100477031+JaeAeich@users.noreply.github.com> Co-authored-by: Javed Habib <jh4official@gmail.com> Co-authored-by: Javed Habib <100477031+JaeAeich@users.noreply.github.com>
- Loading branch information
1 parent
d7d38bc
commit 223aa30
Showing
9 changed files
with
1,366 additions
and
1,615 deletions.
There are no files selected for viewing
1,501 changes: 523 additions & 978 deletions
1,501
apps/documentation/docs/design/components/details.md
Large diffs are not rendered by default.
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
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,32 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-GB"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<style> | ||
body { | ||
background: #fafafa; | ||
} | ||
</style> | ||
</head> | ||
<title>ecc-client-ga4gh-wes-runs</title> | ||
<body> | ||
<div id="demo"></div> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<style> | ||
body { | ||
background: #fafafa; | ||
} | ||
</style> | ||
</head> | ||
<title>ecc-client-ga4gh-wes-runs</title> | ||
<body> | ||
<div id="demo"></div> | ||
|
||
<script type="module"> | ||
import { html, render } from "lit"; | ||
import "../../dist/index.js"; | ||
<script type="module"> | ||
import { html, render } from "lit"; | ||
import "../../dist/index.js"; | ||
|
||
const baseURL = "http://localhost:8090/ga4gh/wes/v1"; | ||
const pageSize = 10; | ||
const filter = false; | ||
render( | ||
html`<ecc-client-lit-ga4gh-wes-runs | ||
.pageSize="${pageSize}" | ||
.baseURL="${baseURL}" | ||
.filter=${filter} | ||
/>`, | ||
document.querySelector("#demo") | ||
); | ||
</script> | ||
</body> | ||
// const baseURL = "http://localhost:8090/ga4gh/wes/v1"; | ||
const pageSize = 10; | ||
const filter = false; | ||
// .baseURL="${baseURL}" | ||
render( | ||
html`<ecc-client-lit-ga4gh-wes-runs | ||
.pageSize="${pageSize}" | ||
.filter=${filter} | ||
/>`, | ||
document.querySelector("#demo") | ||
); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.