-
-
Notifications
You must be signed in to change notification settings - Fork 36
feat: support horizontal scrolling (#141) #221
Conversation
👷 Deploy request for vue-virtual-scroll-grid accepted.
|
.gitignore
Outdated
| dist | ||
| dist-ssr | ||
| *.local | ||
| .env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should keep .env out of .gitignore. For local env, we should use .env.local as Vue/Vite's convention.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks awesome! Thanks for your contribution!
Two minor things:
- Would you mind updating the documentation in
README.mdto cover this new feature? - We just merged #220 , which lead to some conflicts with your PR here. Could you rebase your PR to resolve these conflicts?
src/demo/Control.vue
Outdated
| <p :class="$style.category">Scroll mode:</p> | ||
|
|
||
| <div :class="$style.radioList"> | ||
| <label for="all" :class="$style.radioLabel"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <label for="all" :class="$style.radioLabel"> | |
| <label for="vertical" :class="$style.radioLabel"> |
src/demo/Control.vue
Outdated
| Vertical | ||
| </label> | ||
|
|
||
| <label for="mens" :class="$style.radioLabel"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <label for="mens" :class="$style.radioLabel"> | |
| <label for="horizontal" :class="$style.radioLabel"> |
|
@rocwang I can rebase, but i have no idea what i should write in |
|
Mb something like that. I also did some fixes of #220 during rebase i hope it's ok. |
|
🎉 This PR is included in version 1.6.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Support of horizontal scrolling. This feature uses
grid-auto-flowcss property to infer scroll mode. Demo updated.