Bartosz Cylwik

Results 88 comments of Bartosz Cylwik

@szprytny Does the IDE show an error in some of the modules? We do not export type definitions in TE package. We only declare the `tw-elements` module.

Hi, I cannot recreate your issue. I've created a new vite app, used picker and it's working as it should. What stack are you using? How are you adding the...

Hi! Maybe try creating a new component that would receive a `slot` between an element with ripple? Something like that: ``` ``` ... and then try using it wherever you...

Hi I'm not sure if I uderstand correctly. We do not support adding the `dark` class to a single element. Some of the components have content that is added at...

Hi! Thanks for letting us know! Im adding this issue to our to-fix list.

Enabling automatic component initialization via DOM change watchers would not be the most efficient approach. In situations where the DOM content undergoes changes, it's preferable for users to initialize needed...

Hi! Have you tried using the Datepicker's `update` method? I think it could be useful in your case ![image](https://github.com/mdbootstrap/Tailwind-Elements/assets/52455076/9f2cb276-1e6c-4578-874b-f577fd4b54b8) https://tailwind-elements.com/docs/standard/forms/datepicker/#docsTabsAPI

@manalkaff The only thing I can think right now is to call `close` and `open` method together with `update`. ``` datepickerInstance.close(); datepickerInstance.update({ filter: filterFunction }); datepickerInstance.open(); ``` It will make...

@manalkaff I see. Seems that the datepicker doesn't have time to close properly before opening and blocks the picker. You can try delaying the update and open methods but then...

@jamesito0923 Does it throw any errors?