-
Notifications
You must be signed in to change notification settings - Fork 27
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
15 changed files
with
208 additions
and
106 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
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,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset='utf-8'> | ||
<meta name='viewport' content='width=device-width,initial-scale=1'> | ||
|
||
<title>SOF tests</title> | ||
|
||
<link rel='icon' type='image/png' href='favicon.png'> | ||
<link rel='stylesheet' href='global.css'> | ||
<link rel='stylesheet' href='build/bundle.css'> | ||
|
||
<script defer src='build/implsb.js'></script> | ||
</head> | ||
|
||
<body> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset='utf-8'> | ||
<meta name='viewport' content='width=device-width,initial-scale=1'> | ||
|
||
<title>SOF tests</title> | ||
|
||
<link rel='icon' type='image/png' href='favicon.png'> | ||
<link rel='stylesheet' href='global.css'> | ||
<link rel='stylesheet' href='build/bundle.css'> | ||
|
||
<script defer src='build/playgroundb.js'></script> | ||
</head> | ||
|
||
<body> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset='utf-8'> | ||
<meta name='viewport' content='width=device-width,initial-scale=1'> | ||
|
||
<title>SOF tests</title> | ||
|
||
<link rel='icon' type='image/png' href='favicon.png'> | ||
<link rel='stylesheet' href='global.css'> | ||
<link rel='stylesheet' href='build/bundle.css'> | ||
|
||
<script defer src='build/testsb.js'></script> | ||
</head> | ||
|
||
<body> | ||
</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 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,9 @@ | ||
<script> | ||
import Nav from './Nav.svelte'; | ||
import Impls from './Impls.svelte'; | ||
</script> | ||
|
||
<Nav/> | ||
<Impls/> | ||
|
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,23 @@ | ||
<script> | ||
import Tailwindcss from './Tailwindcss.svelte'; | ||
let prefix = "/extra" | ||
let items = [ | ||
{title: "Overview", href: "/index.html"}, | ||
{title: "View Definition", href: "/StructureDefinition-ViewDefinition.html"}, | ||
{title: "Artifacts", href: "/artifacts.html"}, | ||
{title: "Playground", href: prefix + "/playground.html"}, | ||
{title: "Tests", href: prefix + "/tests.html"}, | ||
{title: "Implementations", href: prefix + "/impls.html"}, | ||
{title: "Contributing", href: "/contributing.html"} | ||
] | ||
</script> | ||
|
||
<Tailwindcss /> | ||
<div class="flex space-x-4 px-4 py-1 border-b items-center text-white" style="background-color: #525ebb;"> | ||
{#each items as item} | ||
<a href="{item.href}" class="px-2 hover:text-white hover:bg-gray-150">{item.title}</a> | ||
{/each} | ||
</div> |
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,8 @@ | ||
<script> | ||
import Nav from './Nav.svelte'; | ||
import Playground from './Playground.svelte'; | ||
</script> | ||
|
||
<Nav/> | ||
<Playground/> |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<script> | ||
import Tests from './Tests.svelte'; | ||
import Nav from './Nav.svelte'; | ||
</script> | ||
|
||
<Nav/> | ||
<Tests/> |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import App from './PlaygroundApp.svelte'; | ||
|
||
const app = new App({ | ||
target: document.body, | ||
props: {} | ||
}); | ||
|
||
export default app; |
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,8 @@ | ||
import App from './TestsApp.svelte'; | ||
|
||
const app = new App({ | ||
target: document.body, | ||
props: {} | ||
}); | ||
|
||
export default app; |