Rework the dashboard, environment topology view, header navigation, and status rendering, and standardise selects on a shadcn-vue component. Replace the thin database seeder with a SimulatedEnvironmentSeeder that builds a fully wired, mostly-running organisation (ACTIVE server fleet, managed + GHCR registries, Gitea source provider, ClipBin app with production/staging environments, services, slices, endpoints, managed variables, build artifacts, and a completed/in-progress/failed operations history) so the new UI renders against realistic data.
11 lines
644 B
TypeScript
11 lines
644 B
TypeScript
export { default as Select } from "./Select.vue";
|
|
export { default as SelectContent } from "./SelectContent.vue";
|
|
export { default as SelectGroup } from "./SelectGroup.vue";
|
|
export { default as SelectItem } from "./SelectItem.vue";
|
|
export { default as SelectLabel } from "./SelectLabel.vue";
|
|
export { default as SelectScrollDownButton } from "./SelectScrollDownButton.vue";
|
|
export { default as SelectScrollUpButton } from "./SelectScrollUpButton.vue";
|
|
export { default as SelectSeparator } from "./SelectSeparator.vue";
|
|
export { default as SelectTrigger } from "./SelectTrigger.vue";
|
|
export { default as SelectValue } from "./SelectValue.vue";
|