-
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.
Co-authored-by: Salihu <91833785+SalihuDickson@users.noreply.github.com> Co-authored-by: salihuDickson <salihudickson@gmail.com>
- Loading branch information
1 parent
a6102e5
commit cf11b71
Showing
23 changed files
with
9,034 additions
and
346 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"extends": ["@open-wc", "elixir", "prettier"], | ||
"plugins": ["prettier"], | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"class-methods-use-this": "warn", | ||
"lit/no-classfield-shadowing": "warn" | ||
} | ||
"extends": ["@open-wc", "elixir", "prettier"], | ||
"plugins": ["prettier"], | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"class-methods-use-this": "warn", | ||
"lit/no-classfield-shadowing": "warn", | ||
"no-console": ["error", { "allow": ["warn", "error"] }] | ||
} | ||
} |
43 changes: 22 additions & 21 deletions
43
packages/ecc-client-lit-ga4gh-tes/demo/create-run/index.html
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,26 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-GB"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<style> | ||
body { | ||
background: #fafafa; | ||
} | ||
</style> | ||
</head> | ||
<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/components/tes-create-run/index.js"; | ||
<script type="module"> | ||
import { html, render } from "lit"; | ||
import "../../dist/components/create-run/index.js"; | ||
|
||
render( | ||
html`<ecc-client-lit-ga4gh-tes-create-run | ||
baseURL="http://localhost:8080/ga4gh/tes/v1" | ||
/>`, | ||
document.querySelector("#demo") | ||
); | ||
</script> | ||
</body> | ||
render( | ||
html`<ecc-client-lit-ga4gh-tes-create-run | ||
baseURL="http://localhost:8080/ga4gh/tes/v1" | ||
/>`, | ||
document.querySelector("#demo") | ||
); | ||
</script> | ||
</body> | ||
</html> |
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
Oops, something went wrong.