-
Notifications
You must be signed in to change notification settings - Fork 11
fix: support disabling select options #968
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
Conversation
Codecov Report
@@ Coverage Diff @@
## main #968 +/- ##
=======================================
Coverage 85.04% 85.05%
=======================================
Files 812 812
Lines 16745 16754 +9
Branches 2166 2168 +2
=======================================
+ Hits 14241 14250 +9
Misses 2473 2473
Partials 31 31
Continue to review full report at Codecov.
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
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.
LGTM
@@ -114,7 +114,7 @@ import { SelectSize } from './select-size'; | |||
*ngFor="let item of items" | |||
(click)="this.onSelectionChange(item)" | |||
class="select-option" | |||
[ngClass]="this.size" | |||
[ngClass]="this.getStyleClassesForSelectItem(item)" |
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 the polling? Probably use htMemoize?
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.
@anandtiwary done.
Dependent on #966
Description
support disabling select options
Testing
Manually tested. UTs added.
Checklist: