From 1f63506b4a4d1f98e3092a8f0673658102cd04f6 Mon Sep 17 00:00:00 2001 From: hreyes Date: Wed, 29 Apr 2026 09:15:30 -0600 Subject: [PATCH] feature/tabla-errores --- .../components/ui/error-panel-notice.svelte | 203 ++++++++++++++++++ 1 file changed, 203 insertions(+) diff --git a/frontend/src/lib/components/ui/error-panel-notice.svelte b/frontend/src/lib/components/ui/error-panel-notice.svelte index e69de29b..996f4db3 100644 --- a/frontend/src/lib/components/ui/error-panel-notice.svelte +++ b/frontend/src/lib/components/ui/error-panel-notice.svelte @@ -0,0 +1,203 @@ + + +{#if open} +
+ +
+ +

{title}

+ + + + +
+ + {#if expanded && rows.length > 0} +
+ + + + + + + {#if dismissibleRows && onDismissRow} + + {/if} + + + + {#each rows as row, i (i)} + + + + + {#if dismissibleRows && onDismissRow} + + {/if} + + {/each} + +
+ {labels.columnType} + + {labels.columnField} + + {labels.columnMessage} +
+ + + {row.field || labels.emptyField} + + {row.message} + + +
+
+ {/if} +
+{/if}