fix(Table): handle loading animation in RTL mode (#2771)

This commit is contained in:
Malik-Jouda
2024-11-26 15:45:03 +02:00
committed by GitHub
parent e7b69b7d6f
commit b1550d58ad
3 changed files with 22 additions and 22 deletions

View File

@@ -56,13 +56,13 @@ export default (options: Required<ModuleOptions>) => ({
loading: true,
loadingAnimation: 'carousel',
class: {
thead: 'after:animate-[carousel_2s_ease-in-out_infinite]'
thead: 'after:animate-[carousel_2s_ease-in-out_infinite] rtl:after:animate-[carousel-rtl_2s_ease-in-out_infinite]'
}
}, {
loading: true,
loadingAnimation: 'carousel-inverse',
class: {
thead: 'after:animate-[carousel-inverse_2s_ease-in-out_infinite]'
thead: 'after:animate-[carousel-inverse_2s_ease-in-out_infinite] rtl:after:animate-[carousel-inverse-rtl_2s_ease-in-out_infinite]'
}
}, {
loading: true,