Daybrush (Younkue Choi)

Results 714 comments of Daybrush (Younkue Choi)

@Chloe-Bang 안녕하세요. template에서는 document, window 변수를 따로 등록해줘야 합니다. 또한 document, window 같은 경우 node 환경에서 존재하지 않기 때문에 다음과 같이 사용해보시길 바랍니다. ```js return { document: typeof document !==...

@Chloe-Bang selecto에는 `keycon` 모듈이 내장되어 있습니다. `keycon` 모듈 또는 vue3용 keycon 을 사용해보시길 바랍니다. * keycon: https://www.npmjs.com/package/keycon * vue3 keycon: https://www.npmjs.com/package/vue-keycon 또한 전체 해제하고 싶다면 `.setSelectedTargets` 를 사용하시길 바랍니다. 결과값이...

@RichPitul https://daybrush.com/selecto/release/latest/doc/Selecto.html#setSelectedTargets Use `setSelectedTargets` method. (result: added, removed, beforeSelected, selected) However, the selectStart, select, and selectEnd events do not occur.

@RichPitul Can you do this? ```js .setSelectedTargets([]) ```

@qinyao86 1. use `preventClickEventOnDrag` option to true 2. use `selectFromInside` option to true 3. Try calling `.setSelectedTargets` method on the your target, item, dom's `click` event. 4. Use the Drag...

@Chloe-Bang vue3-selecto 1.8.3 버전으로 업데이트 했습니다. touchstart 때 preventDefault를 발생시키지 않는 방향으로 수정했습니다. 확인해보시길 바랍니다.

@ehd1120gus 안녕하세요. 1.26.2 버전을 배포했습니다. 아마도 클릭 이벤트가 동작하는 것으로 보이는데 확인해보실래요? https://codesandbox.io/p/sandbox/competent-ben-fhrrwv?file=%2Fpackage.json%3A1%2C1-41%2C2

@ehd1120gus 안녕하세요. 확인해보니 files 필드 문제로 declaration이 누락되고 있었습니다. 1.26.3 버전으로 배포했습니다. 확인해보시길 바랍니다.

@quankhuc use scrollOptions and scroll event ```js :scrollOptions="scrollOptions" @scroll="onScroll" ``` ```js const scrollOptions = { container: () => document.documentElement, throttleTime: 20, checkScrollEvent: true, }; const onScroll = ({ direction, container...

@quankhuc Take a selecto with the console. It is an example of selecto, but it works. https://stackblitz.com/edit/nuxt-starter-ztkeam?file=package.json,app.vue