-
Notifications
You must be signed in to change notification settings - Fork 270
feat: Added support for single select in tree dropdown #217
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
Merged
Merged
Changes from all commits
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
73a3bc9
feat: Added support for single select in tree dropdown
d3e68e9
fix: Removed trailing white space
8921d56
fix: Refactor identical blocks
ae83e09
fix: Avoid prop is never used
ec90256
fix: Add some tests for singleselect
eea1595
Merge branch 'develop' into fix/#119
ellinge 73140c5
fix: No need for spread
3de97b0
Merge branch 'fix/#119' of https://github.com/ellinge/react-dropdown-…
fc1cd47
Merge branch 'develop' into fix/#119
mrchief 4c10100
Merge branch 'develop'
ellinge c8b8ce6
fix: Convert to separate radio select instead
ellinge 863f177
fix: Try to fix code climate issues
ellinge e14c737
fix: Code complexity
ellinge 9a25354
fix: Code complexity
ellinge f01f428
fix: Not sure what's similiar
ellinge 18a7fd0
fix: Random eof issue with css
ellinge 0d23a4c
fix: Code climate issues
ellinge 4aa38df
fix: Code climate issues
ellinge a8f16af
fix: Clarify single select
ellinge 3b3777b
fix: Update docs
ellinge 368aa26
fix: Lint issue and fixed check on mark visit sub node
ellinge 3820cbf
fix: Add comma on single select node in readme
ellinge a6ca244
fix: Modified readme note for single select
ellinge ce015e2
fix: Code review adjustments
ellinge 7c80caa
fix: Rewrote single select ensurance
ellinge fadb8d9
fix: Code climate issues
ellinge 763c7d6
fix: Code climate issues
ellinge 98f0d9f
fix: Code climate issue
ellinge 75f865a
fix: Code climate issues
ellinge fc3aa89
fix: IE11 does not close single selects
ellinge 6fa5941
fix: Allow unselect/delete node on single select
ellinge 6b392c9
Merge branch 'develop'
519dc02
fix: Use clientId for name
ellinge e60b8d4
fix: Add brackets to name on checkboxes
ellinge ccc5d2c
fix: Restored old styling
ellinge bd47c70
fix: Change so isDefaultValue has precedence
aab7a40
fix: Try to optimize traversing
ellinge 852bb4a
fix: Restore 'old name' for checkboxes
ellinge ba037f4
Merge branch 'develop' into 'fix/#119'
782e8ca
fix: Codeclimate
ac488a6
fix: Code climate, last workaround
9e3a0d1
Merge branch 'develop' into fix/#119
mrchief e7e40b1
fix: Added radioSelect to typings
ellinge 813c282
feat: Added Keep tree open on select (for radio/simple)
a1991da
Merge branch 'develop' into fix/#119
ellinge 937db59
Merge branch 'develop' into fix/#119
ellinge 26a302d
style: Add prettier changes from develop
mrchief f2fd2d2
Merge remote-tracking branch 'upstream/develop' into fix/#119
mrchief 21403cb
fix: Bundle radio and simple into mode instead
ellinge ff5d4fa
fix: Bundle radio and simple into mode instead
ellinge f8a3958
fix: Added migration guide
ellinge dedb6f2
fix: Story
ellinge d891408
fix: Bundle text props
ellinge 31c2e34
Revert "fix: Bundle text props"
ellinge 501cd3e
Revert "fix: Story"
ellinge 84330e6
Revert "fix: Added migration guide"
ellinge 1a8b112
Revert "fix: Bundle radio and simple into mode instead"
ellinge b1d6ef6
Revert "fix: Bundle radio and simple into mode instead"
ellinge 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
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
Binary file not shown.
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
Binary file not shown.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # Snapshot report for `src\radio\index.test.js` | ||
|
|
||
| The actual snapshot is saved in `index.test.js.snap`. | ||
|
|
||
| Generated by [AVA](https://ava.li). | ||
|
|
||
| ## Radio component | ||
|
|
||
| > Snapshot 1 | ||
|
|
||
| <input | ||
| className="sample" | ||
| name="sample" | ||
| type="radio" | ||
| /> | ||
|
|
||
| ## renders disabled state | ||
|
|
||
| > Snapshot 1 | ||
|
|
||
| <input | ||
| disabled={true} | ||
| name="sample" | ||
| type="radio" | ||
| /> |
Binary file not shown.
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
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.