refactor: improve Svelte components and enhance user experience

- Updated various Svelte components to improve code readability and maintainability.
- Standardized button classes across components for a consistent user interface.
- Enhanced error handling and user feedback in modals and forms.
- Cleaned up unnecessary imports and optimized component structure for better performance.
This commit is contained in:
2025-11-12 16:36:29 -03:00
parent 94f4b23a39
commit 11eef4aa2a
39 changed files with 15729 additions and 15486 deletions

View File

@@ -317,7 +317,7 @@
<!-- Ações -->
<div class="card-actions mt-6 justify-end">
{#if onCancelar}
<button type="button" class="btn btn-ghost" onclick={onCancelar} disabled={processando}>
<button type="button" class="btn" onclick={onCancelar} disabled={processando}>
Cancelar
</button>
{/if}