refactor: replace Wizard with CoopBuilder in navigation, enhance budget store structure, and streamline template components for improved user experience

This commit is contained in:
Jennie Robinson Faber 2025-08-17 17:25:04 +01:00
parent eede87a273
commit f67b138d95
33 changed files with 4970 additions and 2451 deletions

View file

@ -2,9 +2,8 @@
<div class="export-options" :class="containerClass">
<div class="export-content">
<div class="export-section">
<h3 class="export-title">Export Options:</h3>
<div class="export-buttons">
<button
<UButton
@click="copyToClipboard"
class="export-btn"
:disabled="isProcessing"
@ -13,9 +12,9 @@
<UIcon name="i-heroicons-clipboard" />
<span>Copy as Text</span>
<UIcon v-if="showCopySuccess" name="i-heroicons-check" class="success-icon" />
</button>
</UButton>
<button
<UButton
@click="downloadAsMarkdown"
class="export-btn"
:disabled="isProcessing"
@ -28,7 +27,7 @@
name="i-heroicons-check"
class="success-icon"
/>
</button>
</UButton>
</div>
</div>
</div>
@ -582,6 +581,7 @@ const downloadFile = (content: string, filename: string, type: string) => {
}
.export-buttons {
@apply font-mono;
display: flex;
flex-wrap: wrap;
gap: 0.75rem;