Attempted import error: 'MDBCarouselInner' is not exported f


Topic: Attempted import error: 'MDBCarouselInner' is not exported from 'mdb-react-ui-kit'

Rishi Purwar asked 2 years ago

I'm building a testimonial slider using the mdb-react-ui-kit but I'm getting this error message: Attempted import error: 'MDBCarouselInner' is not exported from 'mdb-react-ui-kit'.

Code sandbox link: https://codesandbox.io/s/intelligent-jang-1pzotz?file=/src/App.js

Anyone please help me with this issue!


mlazaru staff answered 2 years ago

Please remove MDBCarouselInner import and get rid of this component from the code. There must be an error in the documentation, you shouldn't use it. We're going to fix it soon.

https://codesandbox.io/s/inspiring-mcclintock-qvk1qi?file=/src/App.js

Correct Carousel structure is like:

<MDBCarousel>
  <MDBCarouselItem/>
  <MDBCarouselItem/>
  <MDBCarouselItem/>
</MDBCarousel>

Rishi Purwar commented 2 years ago

@mlazaru Thanks for your answer, but after removing the MDBCarouselInner import, it is not showing anything on the browser window.

https://codesandbox.io/s/intelligent-jang-1pzotz?file=/src/App.js


mlazaru staff commented a year ago

Well, it looks like Carousel has some problems in this case, because MDBCarouselItem must have a src attribute, and it creates an <img/> tag automatically. It needs some changes to increase its usability.

I've prepared a working workaround. It's far from perfection, but maybe you will find something useful.https://codesandbox.io/s/new-thunder-tu9rk9?file=/src/App.js


Rishi Purwar commented a year ago

Your workaround works fine for me, but it's not showing anything on the smaller screen size. Any suggestions on How I can fix this issue?


mlazaru staff commented a year ago

This could probably be done with additional code and styles, but I'm afraid it would be quite complicated and unstable. I would advise waiting until we fix it.


Rishi Purwar commented a year ago

Ok, thanks for your help!


Rishi Purwar commented a year ago

Hello @mlazaru, Is the issue fixed now?


Grzegorz Bujański staff commented a year ago

Not yet. We'll fix it soon


Rishi Purwar commented a year ago

okay, thanks for your response.


Mohammed Thabrez commented 8 months ago

Looks like the MDBCarouselInner Problem is still not fixed yet


chalicham pro premium priority answered 11 months ago

  <MDBCarouselItem style={{ 


  backgroundSize: 'contain', // Ensure the background image contains the container
}} 
    className='rounded carousel-item-custom img-fluid'
    itemId={'Every Decision Matters'}
    src='https://opengrit.com/images/SaaSPromotional'    
    alt='...'
  >

   <MDBBtn className=" bg-success text-white bg-opacity-75" onClick={() => setIsLoginRequired(true)}> 
      <h3>Every Decision Matters</h3>

    </MDBBtn>

  </MDBCarouselItem>

this item , i.e MDBBtn , or any thing in MDBCarousel is not visible in small view which less than 768px


Mateusz Lazaru staff commented 11 months ago

It's default behavior to hide caption on mobiles, in order to change it, you would need to override styles by adding the following CSS:

.carousel-caption {
  display: block !important;
}

Please insert min. 20 characters.

FREE CONSULTATION

Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.

Status

Answered

Specification of the issue
  • User: Free
  • Premium support: No
  • Technology: MDB React
  • MDB Version: MDB5 6.0.0
  • Device: Macbook Air m1
  • Browser: Chrome
  • OS: MacOs
  • Provided sample code: No
  • Provided link: Yes