refactor: replace Wizard with CoopBuilder in navigation, enhance budget store structure, and streamline template components for improved user experience
This commit is contained in:
parent
eede87a273
commit
f67b138d95
33 changed files with 4970 additions and 2451 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue