-
+
{[1, 2, 3, 4].map((i) => (
))}
diff --git a/apps/web/src/features/tracks/components/track-filters/types.ts b/apps/web/src/features/tracks/components/track-filters/types.ts
index 434cd7556..bd2817bdf 100644
--- a/apps/web/src/features/tracks/components/track-filters/types.ts
+++ b/apps/web/src/features/tracks/components/track-filters/types.ts
@@ -20,7 +20,7 @@ export interface TrackFiltersProps {
}
export const INPUT_CLASS = [
- 'w-full px-4 py-2 border border-input bg-background rounded-[var(--radius-md)]',
+ 'w-full px-4 py-2 border border-input bg-background rounded-md',
'text-foreground placeholder:text-muted-foreground',
'transition-[border-color,box-shadow] duration-[var(--duration-normal)]',
'focus:outline-none focus:ring-2 focus:ring-ring focus:border-transparent focus-visible:ring-primary/30',
@@ -30,7 +30,7 @@ export const LABEL_CLASS =
'block text-sm font-medium text-foreground text-muted-foreground/90 tracking-tight mb-1';
export const SELECT_CLASS = [
- 'w-full px-4 py-2 border border-input bg-background rounded-[var(--radius-md)] text-foreground',
+ 'w-full px-4 py-2 border border-input bg-background rounded-md text-foreground',
'transition-[border-color,box-shadow] duration-[var(--duration-normal)]',
'focus:outline-none focus:ring-2 focus:ring-ring focus:border-transparent focus-visible:ring-primary/30',
].join(' ');
diff --git a/apps/web/src/features/tracks/components/track-history/TrackHistory.tsx b/apps/web/src/features/tracks/components/track-history/TrackHistory.tsx
index 4916e554e..3e1609ad0 100644
--- a/apps/web/src/features/tracks/components/track-history/TrackHistory.tsx
+++ b/apps/web/src/features/tracks/components/track-history/TrackHistory.tsx
@@ -37,7 +37,7 @@ export function TrackHistory({
if (error) {
return (
diff --git a/apps/web/src/features/tracks/components/track-history/TrackHistoryEmpty.tsx b/apps/web/src/features/tracks/components/track-history/TrackHistoryEmpty.tsx
index a6ea4d6b7..0015abe8a 100644
--- a/apps/web/src/features/tracks/components/track-history/TrackHistoryEmpty.tsx
+++ b/apps/web/src/features/tracks/components/track-history/TrackHistoryEmpty.tsx
@@ -2,7 +2,7 @@ import { History } from 'lucide-react';
export function TrackHistoryEmpty() {
return (
-
+
Aucune modification enregistrée
diff --git a/apps/web/src/features/tracks/components/track-history/TrackHistoryItemRow.tsx b/apps/web/src/features/tracks/components/track-history/TrackHistoryItemRow.tsx
index 816f13944..f38b7b9b0 100644
--- a/apps/web/src/features/tracks/components/track-history/TrackHistoryItemRow.tsx
+++ b/apps/web/src/features/tracks/components/track-history/TrackHistoryItemRow.tsx
@@ -46,13 +46,13 @@ export function TrackHistoryItemRow({ item }: TrackHistoryItemRowProps) {
{(oldValue !== null || newValue !== null) && (
-
+
{oldValue !== null && (
Ancienne valeur:
-
+
{formatValue(oldValue)}
@@ -62,7 +62,7 @@ export function TrackHistoryItemRow({ item }: TrackHistoryItemRowProps) {
Nouvelle valeur:
-
+
{formatValue(newValue)}
diff --git a/apps/web/src/features/tracks/components/track-history/TrackHistorySkeleton.tsx b/apps/web/src/features/tracks/components/track-history/TrackHistorySkeleton.tsx
index 326bd73e7..fbf6e7a6a 100644
--- a/apps/web/src/features/tracks/components/track-history/TrackHistorySkeleton.tsx
+++ b/apps/web/src/features/tracks/components/track-history/TrackHistorySkeleton.tsx
@@ -9,9 +9,9 @@ export function TrackHistorySkeleton() {
@@ -21,10 +21,10 @@ export function TrackHistorySkeleton() {
))}
diff --git a/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationNav.tsx b/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationNav.tsx
index c3d26eb9c..33c3859f4 100644
--- a/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationNav.tsx
+++ b/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationNav.tsx
@@ -17,14 +17,14 @@ interface TrackListPaginationNavProps {
}
const navButtonClass = [
- 'p-2 rounded-[var(--radius-md)] text-muted-foreground/90',
+ 'p-2 rounded-md text-muted-foreground/90',
'transition-[color,background-color,transform] duration-[var(--duration-normal)]',
'hover:bg-primary/10 hover:text-primary focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
'disabled:opacity-50 disabled:cursor-not-allowed active:scale-95',
].join(' ');
const pageButtonClass = [
- 'px-4 py-1.5 rounded-[var(--radius-md)] text-sm font-medium tabular-nums tracking-tight',
+ 'px-4 py-1.5 rounded-md text-sm font-medium tabular-nums tracking-tight',
'transition-[color,background-color,transform] duration-[var(--duration-normal)]',
'focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
'disabled:opacity-50 disabled:cursor-not-allowed active:scale-95',
diff --git a/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationSkeleton.tsx b/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationSkeleton.tsx
index 2f70367a5..7f45f35a5 100644
--- a/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationSkeleton.tsx
+++ b/apps/web/src/features/tracks/components/track-list-pagination/TrackListPaginationSkeleton.tsx
@@ -17,17 +17,17 @@ export function TrackListPaginationSkeleton({
)}
role="presentation"
>
-
+
-
-
+
+
{Array.from({ length: 5 }, (_, i) => (
-
+
))}
-
-
+
+
);
diff --git a/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFilters.tsx b/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFilters.tsx
index ba6dcba19..8eede7fc3 100644
--- a/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFilters.tsx
+++ b/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFilters.tsx
@@ -40,7 +40,7 @@ export function TrackSearchFilters({
variant="ghost"
size="sm"
onClick={() => setShowAdvanced(!showAdvanced)}
- className="text-sm tracking-tight rounded-[var(--radius-md)] transition-colors duration-[var(--duration-normal)] hover:bg-primary/10 hover:text-primary"
+ className="text-sm tracking-tight rounded-md transition-colors duration-[var(--duration-normal)] hover:bg-primary/10 hover:text-primary"
>
{showAdvanced ? 'Masquer' : 'Afficher'} les filtres avancés
diff --git a/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFiltersAdvanced.tsx b/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFiltersAdvanced.tsx
index e889d0d02..fdcd85ebd 100644
--- a/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFiltersAdvanced.tsx
+++ b/apps/web/src/features/tracks/components/track-search-filters/TrackSearchFiltersAdvanced.tsx
@@ -14,7 +14,7 @@ interface TrackSearchFiltersAdvancedProps {
const labelClass = 'text-muted-foreground/90 tracking-tight';
const inputClass =
- 'rounded-[var(--radius-md)] transition-[border-color,box-shadow] duration-[var(--duration-normal)]';
+ 'rounded-md transition-[border-color,box-shadow] duration-[var(--duration-normal)]';
export function TrackSearchFiltersAdvanced({
filters,
@@ -23,7 +23,7 @@ export function TrackSearchFiltersAdvanced({
updateFilter,
}: TrackSearchFiltersAdvancedProps) {
return (
-
+
);
}