-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: matching border color for range selector in darkmode #1679
feat: matching border color for range selector in darkmode #1679
Conversation
Run & review this pull request in StackBlitz Codeflow. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1679 +/- ##
========================================
+ Coverage 99.8% 99.8% +0.1%
========================================
Files 187 187
Lines 31087 31090 +3
Branches 9784 9786 +2
========================================
+ Hits 30998 31001 +3
Misses 89 89 ☔ View full report in Codecov by Sentry. |
ouch ... turns out this ones much harder than thought since the grid isn't yet available in the ctor. The Hm I could recreate the SlickCellRangeSelector inside init, or expose a public selectionCss override so we can keep the instance. |
Wow this is quite interesting, there's so much we can do with custom extensions in VSCode nowadays Does the filtering/sorting and everything else works like it does in a regular webpage? that's really something 😮
ahh yeah that's my fault, the thing is that I often use this pattern because of these plugins have no choice but to execute the
it seems to work, so why not! |
yeah seams so at least, hadnt had any issues so far. I'll take one more look at it tomorrow and let you know when rdy to merge. perhaps I can find more stuff while at it |
I'll go ahead and merge, just because I'm going ahead with a new release. Thanks |
one thing I havent checked but suspect is still missing is to react to option changes. but nevermind that can also be another PR |
I needed a new project to get to know the react wrapper of Slickgrid Universal better. So why not build a whole VSCode extension right ? ;)
Also, I used that as the first time to try out the darkMode in more detail and noticed this little gotcha when selecting cells via mouse (at the end of the gif). This PR fixes it.