Skip to content

Commit d12d2cd

Browse files
committed
deploy f3d0f41 (f3d0f41)
1 parent d91a7df commit d12d2cd

9 files changed

Lines changed: 281 additions & 0 deletions

File tree

.nojekyll

Whitespace-only changes.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
model-browser.datasafe.dev

assets/index-B7SyX3Mo.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/index-DYE5SxIg.js

Lines changed: 135 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

favicon.svg

Lines changed: 28 additions & 0 deletions
Loading

hds-logo-white.svg

Lines changed: 33 additions & 0 deletions
Loading

hds-logo.svg

Lines changed: 46 additions & 0 deletions
Loading

index.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en" class="palette-doctor">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>HDS Data Model Browser</title>
7+
<meta name="description" content="Search and browse the Health Data Safe data model — items, streams, eventTypes, settings." />
8+
<meta name="author" content="Health Data Safe" />
9+
10+
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
11+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" />
12+
<script>
13+
// Auto-switch to palette-dark when the OS prefers dark.
14+
// Apps can later add a manual toggle that persists in localStorage.
15+
(function () {
16+
var saved = localStorage.getItem('palette');
17+
var prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
18+
var palette = saved || (prefersDark ? 'palette-dark' : 'palette-doctor');
19+
var root = document.documentElement;
20+
root.classList.remove('palette-doctor', 'palette-patient', 'palette-dark');
21+
root.classList.add(palette);
22+
if (palette === 'palette-dark') root.classList.add('dark');
23+
})();
24+
</script>
25+
<script type="module" crossorigin src="./assets/index-DYE5SxIg.js"></script>
26+
<link rel="stylesheet" crossorigin href="./assets/index-B7SyX3Mo.css">
27+
</head>
28+
<body>
29+
<div id="root"></div>
30+
</body>
31+
</html>

version.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"commit": "f3d0f412819b41f9a7f936e02edb42aa393e320d",
3+
"commitShort": "f3d0f41",
4+
"branch": "main",
5+
"buildDate": "2026-04-07T15:58:34Z"
6+
}

0 commit comments

Comments
 (0)