-
Notifications
You must be signed in to change notification settings - Fork 461
List related refactoring and maintenance #1372
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
- AutoComplete: remove virtual keyword - Make Option<> with Icon work for all types - Cleanup IssueTester
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://black-pebble-0dc79cb03-1372.westeurope.3.azurestaticapps.net |
Move List examples into 1 folder
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://black-pebble-0dc79cb03-1372.westeurope.3.azurestaticapps.net |
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://black-pebble-0dc79cb03-1372.westeurope.3.azurestaticapps.net |
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://black-pebble-0dc79cb03-1372.westeurope.3.azurestaticapps.net |
* [DataGrid] - Add Loading and LoadingContent parameters * Additional height work * Process review comments * - Simplyfy option rendering - AutoComplete: remove virtual keyword - Make Option<> with Icon work for all types - Cleanup IssueTester * Fix compiler warnings/messages * Undo compiler warning fix because of side-effects Move List examples into 1 folder
Change components in such a way that it does not matter if the options come from an
IEnumerable<TOption>or from manually specifiedFluentOptions. We find the selected option with JS in the aria-activedescendant attribute and then callOnClickHandleron on the correspondingFluentOption<TOption>Simplify option rendering by using a single
RenderOptionsmethod. Move check if Items exist to this method. If no, just outpud ChildContent. If yes, render theFluentOptionsMake Option with Icon work for all types in
RenderOptions. In earlier code this only worked when T was a stringAutoComplete: remove virtual keyword
Cleanup IssueTester