-
Notifications
You must be signed in to change notification settings - Fork 16
Update support for material theme and theme variant #245
Conversation
Add APIs for theme variant support. These two apis are generated from by the generator, as we don't use generated code for grid, these two are moved here in this way.
@@ -109,7 +110,8 @@ | |||
@HtmlImport("frontend://flow-component-renderer.html") | |||
@JavaScript("frontend://gridConnector.js") | |||
public class Grid<T> extends Component implements HasDataProvider<T>, HasStyle, | |||
HasSize, Focusable<Grid<T>>, SortNotifier<Grid<T>, GridSortOrder<T>> { | |||
HasSize, Focusable<Grid<T>>, SortNotifier<Grid<T>, GridSortOrder<T>>, | |||
HasTheme { | |||
|
|||
protected static class UpdateQueue implements TreeUpdate { | |||
private List<Runnable> queue = new ArrayList<>(); |
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.
SonarQube analysis reported 29 issues Watch the comments in this conversation to review them. Top 10 extra issuesNote: The following issues were found on lines that were not modified in the pull request. Because these issues can't be reported as line comments, they are summarized here:
|
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.
Reviewed 2 of 3 files at r4, 1 of 1 files at r5, 2 of 2 files at r6.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @vaadin-bot)
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.
Dismissed @vaadin-bot from a discussion.
Reviewable status: complete! all files reviewed, all discussions resolved
This change is