feat: add wbs and component catalogue workspace
ci / static (push) Failing after 10s
ci / backend (push) Failing after 1s
ci / static (pull_request) Failing after 10s
ci / backend (pull_request) Failing after 0s
ci / publish (push) Has been cancelled
ci / frontend (push) Has been cancelled
Build & Test with Secrets / build (pull_request) Failing after 1s
ci / publish (pull_request) Has been cancelled
ci / frontend (pull_request) Has been cancelled
Build & Test with Secrets / notification (pull_request) Has been cancelled
Build & Test with Secrets / security-scan (pull_request) Has been cancelled
Build & Test with Secrets / frontend (pull_request) Has been cancelled

This commit is contained in:
2026-08-06 14:03:21 +09:00
parent 158bd90f77
commit 021ca5aa13
5 changed files with 42 additions and 2 deletions
@@ -1,5 +1,6 @@
<script setup lang="ts">
defineProps<{ productName?: string; environment?: string; automationStatus?: string }>()
const appVersion = import.meta.env.VITE_APP_VERSION ?? '0.1.0'
</script>
<template>
<div class="ks-shell">
@@ -12,6 +13,9 @@ defineProps<{ productName?: string; environment?: string; automationStatus?: str
<aside class="ks-shell__nav" aria-label="주요 메뉴"><slot name="navigation" /></aside>
<main id="ks-main" class="ks-shell__main" tabindex="-1"><slot /></main>
<footer class="ks-shell__footer"><slot name="footer">RESEARCH_CANDIDATE_NOT_PRODUCTION</slot></footer>
<div class="ks-shell__version" data-testid="app-version" aria-label="애플리케이션 버전">
v{{ appVersion }} · UI contract 4.0
</div>
</div>
</template>
<style scoped>
@@ -22,6 +26,7 @@ defineProps<{ productName?: string; environment?: string; automationStatus?: str
.ks-shell__nav { grid-area: nav; padding: var(--ks-space-4); border-right: 1px solid var(--ks-color-neutral-200); background: #fff; }
.ks-shell__main { grid-area: main; min-width: 0; padding: var(--ks-space-6); }
.ks-shell__footer { grid-area: footer; padding: var(--ks-space-2) var(--ks-space-6); border-top: 1px solid var(--ks-color-neutral-200); background: #fff; color: var(--ks-color-neutral-600); font-size: var(--ks-font-caption); }
.ks-shell__version { position: fixed; left: var(--ks-space-3); bottom: var(--ks-space-2); z-index: 20; padding: .25rem .5rem; border: 1px solid var(--ks-color-neutral-200); border-radius: var(--ks-radius-sm); background: rgb(255 255 255 / 92%); color: var(--ks-color-neutral-600); font-size: .7rem; box-shadow: 0 .15rem .5rem rgb(15 23 42 / 8%); }
.ks-skip { position: fixed; left: var(--ks-space-2); top: -4rem; z-index: 1000; padding: var(--ks-space-2); background: #fff; } .ks-skip:focus { top: var(--ks-space-2); }
@media (max-width: 900px) { .ks-shell { grid-template-columns: 1fr; grid-template-areas: 'header' 'nav' 'main' 'footer'; } .ks-shell__header { align-items: flex-start; flex-direction: column; } .ks-shell__nav { border-right: 0; border-bottom: 1px solid var(--ks-color-neutral-200); } }
</style>