-
Notifications
You must be signed in to change notification settings - Fork 6.8k
feat(cdk/tree): improve aria attributes #24658
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(cdk/tree): improve aria attributes #24658
Conversation
f102c0c
to
31c328b
Compare
3b1be6b
to
8389cff
Compare
8389cff
to
0e85175
Compare
0e85175
to
eee0128
Compare
8b3a358
to
3a91226
Compare
* Base tree control. It has basic toggle/expand/collapse operations on a single data node. | ||
* | ||
* @deprecated Use one of levelAccessor or childrenAccessor | ||
* @breaking-change 14.0.0 |
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.
Might be good to leave a placeholder for these breaking changes version markers to make sure they are updated when merged to main
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.
done.
import {mapTo} from 'rxjs/operators'; | ||
import {NestedFoodNode, NESTED_DATA} from '../tree-data'; | ||
|
||
function* allNodes(nodes: NestedFoodNode[]): Iterable<NestedFoodNode> { |
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.
Can we avoid creating a generator for the example? This would be too advanced to introduce in an example
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.
done.
eee0128
to
379aa71
Compare
379aa71
to
23ce029
Compare
42351e4
to
088a314
Compare
fbacbf3
to
d37541b
Compare
d37541b
to
7e0b304
Compare
565eb38
to
fbe321d
Compare
7e0b304
to
92b3d98
Compare
Rebase and probably run |
63ab1d8
to
57e7964
Compare
45ba5e5
to
141808d
Compare
Looks like its just blocked on a small lint issue with |
not really sure what's going on with the tests, I'll take a look tomorrow |
They seem unrelated to me, we can merge this one |
thanks! I'll prune the PRs that this one subsumes & rebase the rest |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Based on #26585. Followed by #24659.