davidjerleke / embla-carousel

A lightweight carousel library with fluid motion and great swipe precision.
https://www.embla-carousel.com
MIT License
5.39k stars 166 forks source link

problem importing types from embla-carousel-react #665

Closed 3eisa closed 6 months ago

3eisa commented 6 months ago

Bug is related to

problem importing types from embla-carousel-react

Screenshot 2023-12-27 at 6 56 20 PM

if we jump to node_modules/embla-carousel-react/cjs/index.d.ts on line 1 : export { EmblaOptionsType, EmblaEventType, EmblaPluginType, EmblaCarouselType } from 'embla-carousel/index.ts'; . cant find 'embla-carousel/index.ts

Screenshot 2023-12-27 at 6 59 20 PM

...

workaround

Screenshot 2023-12-27 at 7 00 46 PM

by adding "../../" to point to the 'embla-carousel/index.ts'

changed line 1 to : export { EmblaOptionsType, EmblaEventType, EmblaPluginType, EmblaCarouselType } from '../../embla-carousel/index.ts';

davidjerleke commented 6 months ago

@3eisa see this.