This repository was archived by the owner on Jun 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 73
Row IDs #412
Merged
Merged
Row IDs #412
Changes from 3 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
3065280
lint Format.py
alexcjohnson 773d0dd
remove obsolete comment about #177 and clarify
alexcjohnson 572cdf1
row IDs
alexcjohnson edd86e9
changelog for row IDs
alexcjohnson 6bb24ad
fix doubleclick with row IDs
alexcjohnson c48ea44
for realz: row/col IDs can be string or number!
alexcjohnson b1f2a39
update percy storybook tests for row IDs
alexcjohnson e203497
fix next-page test - now paging clears cell selection
alexcjohnson 76b59a9
lint percy tests: no global data/columns, so we can use these as args
alexcjohnson 35dc91d
more robust handling of missing active_cell
alexcjohnson 45928b0
:hocho: * as R from paginator
alexcjohnson 8be7509
prevent blank page at the end of pagination
alexcjohnson 397b914
propTypes can't reference patterns
alexcjohnson 8f01c25
stricter python linting
alexcjohnson 1c69cfb
clean up cell click/shift-click logic
alexcjohnson 3e31a7f
fix cell click logic for clicking the active cell again
alexcjohnson 7738a3a
clear selection on filter or sort
alexcjohnson 1490265
expand select_(row->props)_test to cover new rowID & related props
alexcjohnson 196416f
lint
alexcjohnson b6a5f55
Merge branch 'master' into row-ids
alexcjohnson 2ed6728
Merge branch 'master' into row-ids
alexcjohnson 5cec33f
lint for updated TS
alexcjohnson 9420590
warn on switchCell with no active_cell
alexcjohnson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
dunno why, but locally
npm run lint
asked me to make the changes in this commit, even though on CI it passes 🤔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.
Running the same versions? I've found that the default rules are updated frequently..
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.
oh actually
npm run lint
excluded a whole bunch of rules that we really don't need to exclude (as long as we're excluding the auto-generated files, which we are). I'll un-exclude them. Probably worth taking a look at this in other repos as well... it makes sense to have looser linting in tests but some of these rules are useful - like unused imports, can improve perf, only files setting up namespaces have any reason to include them.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.
stricter linting -> 8f01c25