Daybrush (Younkue Choi)
Daybrush (Younkue Choi)
@bytasv ```js * `infinite-viewer` 0.25.0 * `lit-infinite-viewer` 0.24.0 * `preact-infinite-viewer` 0.22.0 * `react-infinite-viewer` 0.25.0 * `svelte-infinite-viewer` 0.24.0 * `vue-infinite-viewer` 0.24.0 * `vue3-infinite-viewer` 0.14.0 * `ngx-infinite-viewer` 0.24.0 ``` infinite-viewer's new version...
ok i'll check it out. I'll try with a configuration similar to Figma. #44
@lukebitts infinite-viewers' new version is released. Try it again.
@lukebitts The scroll bar behavior has been changed. When the viewport is completely inside the screen, the scrollbar disappears. In case 1, if all the viewports are in the screen...
@lukebitts > I finally managed to test version 0.24. I still find the scrollbar behavior to be unexpected: in a viewport larger than the screen, the scrollbar changes size as...
@lukebitts Would you like to update to the new version? Also, if you want the same scrollbar as before, try setting `useBounceScrollBar` to true.
@musta-sd use `defaultGuides` prop.
@musta-sd Based on react, it is as follows. ```tsx defaultGuides={useMemo(() => [0, 100, 200], [])} ``` When the defaultGuides change, the guides are updated.
@musta-sd Is it Vue3? Is it Vue2? ```vue setup() { const guides = [0, 100, 200]; return { guides, }; } // or data() { return { guides: [0, 100,...
@musta-sd Can you show the code you used Guides on?