({
({
{/* Pagination */}
{pagination && totalPages > 1 && (
-
-
+
+
Mostrando {startItem} a {endItem} de {pagination.total} resultados
-
+
Página {pagination.page} de {totalPages}
);
}
@@ -123,10 +123,10 @@ export const TextareaField = forwardRef
{label && (
)}
);
}
@@ -169,8 +169,8 @@ export const CheckboxField = forwardRef (
id={checkboxId}
type="checkbox"
className={clsx(
- 'h-4 w-4 rounded border-gray-300 text-blue-600',
- 'focus:ring-2 focus:ring-blue-500',
+ 'h-4 w-4 rounded border-border dark:border-border text-primary',
+ 'focus:ring-2 focus:ring-primary',
className
)}
{...props}
@@ -181,17 +181,17 @@ export const CheckboxField = forwardRef(
{label && (
)}
{description && (
- {description}
+ {description}
)}
)}
- {error && {error} }
+ {error && {error} }
);
}
diff --git a/web/src/components/common/LoadingSpinner.tsx b/web/src/components/common/LoadingSpinner.tsx
index a485b4e..8d67a22 100644
--- a/web/src/components/common/LoadingSpinner.tsx
+++ b/web/src/components/common/LoadingSpinner.tsx
@@ -19,7 +19,7 @@ export function LoadingSpinner({ size = 'md', className }: LoadingSpinnerProps)
return (
);
}
diff --git a/web/src/components/common/Modal.tsx b/web/src/components/common/Modal.tsx
index 16f9295..b9613cf 100644
--- a/web/src/components/common/Modal.tsx
+++ b/web/src/components/common/Modal.tsx
@@ -64,7 +64,7 @@ export function Modal({
{/* Overlay */}
@@ -73,21 +73,21 @@ export function Modal({
e.stopPropagation()}
>
{/* Header */}
{(title || showCloseButton) && (
-
+
{title && (
- {title}
+ {title}
)}
{showCloseButton && (
|