Ivan Kalinin

Results 12 comments of Ivan Kalinin

Hide your gallery using ng-style="opacity: showGallery ? 1 : 0" and add in your controller/directive ``` scope.slickCarousel.on('init', function() { scope.slickCarousel.on('setPosition', function(){ scope.showGallery = true; }); }); ```

I was able to test it by using the `paste` event rather than `change`. And here is what I do: Component: ``` ``` Test: ``` .... import userEvent from '@testing-library/user-event';...

Good question. It seems like there might be some issues with React Native. As an option, React Native developers can include a polyfill. https://github.com/facebook/react-native/issues/38656#issuecomment-1660117381 Also, I think it is still...

Could somebody give me any suggestions on how I can prevent the reload? I use the latest vite **4.5.0** with SSR, createViteServer in middlewareMode and Express.js. Most of my config...

Same issue with vitest ended up with this override in `setup-test-env.js` ```javascript vi.mock('@tiptap/html', async () => { try { const mod = await import('@tiptap/core'); return mod; } catch { return...

The keys is not the main issue here. And like I said earlier, 800 lines render with no issues, when it is just a paragraph, not the ` You have...

> Thanks for contributing this. I was wondering if there was an alternative name to “onPageChange”, given the word “page” doesn’t feel intuitive for a date picker. > > Wondering...

@segunadebayo Did you make a decision? Do you want me to rename the callback to `onNavigate`? Or it is good to go as is, where `onPageChange` makes the perfect sense...

@segunadebayo Is there an ETA for when the PR can be merged in Zag and delivered to the Ark UI? I need the feature to replace a few of my...

@IvanKalinin, I guess I just misunderstood you. Although the "page" term makes perfect sense to me, I replaced it with onNextTriggerClick and onPrevTriggerClick if you like this more.