feat(*): Enable loading the file and creating a PR in Azure Devops

This commit is contained in:
Joshua Creek
2026-03-05 18:32:45 +00:00
parent 91a8988275
commit 0433fe5c2c
35 changed files with 5503 additions and 776 deletions
+23
View File
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Radar Editor</title>
<script type="module" src="/src/main.ts"></script>
</head>
<body>
<tech-radar-editor></tech-radar-editor>
<script>
// Listen for custom events from the web component
document.querySelector('tech-radar-editor').addEventListener('radar-data-loaded', (e) => {
console.log('Data loaded:', e.detail.data);
});
document.querySelector('tech-radar-editor').addEventListener('radar-data-change', (e) => {
console.log('Data changed:', e.detail.data);
});
</script>
</body>
</html>