Is there a way to fadeIn / fadeOut rows that are added / removed from the react-bootstrap-table?
Guide contributeur
Stack technique
react
Domaine
frontend
Type d'issue
feature
DifficultéDifficulté estimée pour un nouveau contributeur, de 1 pour un très petit changement à 5 pour un travail expert.
2
Temps estiméFourchette de temps approximative pour investiguer, implémenter, tester et préparer une pull request.
under 1 hour
Statut d'activitéDisponibilité apparente de l'issue : fraîche, active, ancienne, bloquée ou en attente d'un mainteneur.
stale
ClartéClarté avec laquelle l'issue explique le changement attendu, les critères d'acceptation et la prochaine étape.
clear
Prérequis
React basicsCSS transitions
Accessibilité débutantScore de 1 à 100 estimant l'accessibilité de cette issue pour un premier contributeur.
85
Direction de recherche
The issue requests adding CSS transition effects (e.g., fadeIn/fadeOut) for rows when they are inserted or removed from the table. To implement, you would need to modify the row component (likely in src/Row.js or similar) to apply a CSS class during mount/unmount. You can use CSS animations with opacity and transition properties, or integrate a library like react transition group. Check if the current code uses any animation hooks; otherwise, add a simple fade effect by toggling a class. The repository is https://github.com/AllenFang/react bootstrap table and the source is under /src.