Refactor carousel components (#36425)

Co-authored-by: diondiondion <mail@diondiondion.com>
This commit is contained in:
Echo
2025-10-29 15:44:46 +01:00
committed by GitHub
parent 2a9c7d2b9e
commit e7cd5a430e
10 changed files with 591 additions and 301 deletions

6
app/javascript/types/dom.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
declare namespace React {
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
// Add inert attribute support, which is only in React 19.2. See: https://github.com/facebook/react/pull/24730
inert?: '';
}
}