Tier 2: Property/event gaps + health detection fixes (6 components to 100%)#483
Merged
csharpfritz merged 5 commits intoFritzAndFriends:devfrom Mar 19, 2026
Conversation
Health detection: - Add TypeAliases mapping in ComponentHealthService for components whose class name differs from the tracked name (AspNetValidationSummary) - Fix reference baselines: FileUpload read-only props, TreeView DataSourceID on stop type, CustomValidator ServerValidate as Func not EventCallback Component property/event additions: - TreeView: 9 new properties (image URLs, tooltips, config stubs) - BulletedList: 4 properties + 3 events (Click alias, SelectedIndexChanged, TextChanged, AutoPostBack, SelectedIndex, SelectedValue, Text) - SiteMapPath: 2 events (ItemCreated, ItemDataBound) + SiteMapNodeItemEventArgs - CustomValidator: 2 properties (ClientValidationFunction, IsValid) Fix existing AutoGenerateDataBindings="False" "false" in sample + test Health: 6 components raised to 100% (44 50/59) Tests: 2,470 pass (22 new) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
New sample pages: - TreeView/ImageAndConfig: CollapseImageUrl, ExpandImageUrl, tooltips, MaxDataBindDepth, AutoGenerateDataBindings, EnableClientScript - BulletedList/Selection: Click alias, SelectedIndex, SelectedValue, AutoPostBack, Text, SelectedIndexChanged, TextChanged - SiteMapPath/Events: ItemCreated and ItemDataBound events Updated sample: - CustomValidator: ClientValidationFunction and IsValid properties Documentation updates: - TreeView.md: Image Customization and Data Binding Config references - BulletedList.md: Selection properties, Click alias, events - SiteMapPath.md: Events section, removed ItemDataBound from NOT Supported - CustomValidator.md: Full documentation (was _TODO_) Integration tests: - Added 3 new InlineData entries for new sample pages Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Add SubPages entries to ComponentCatalog.cs so the sample app navigation links to the new pages: - BulletedList: added "Selection" sub-page - SiteMapPath: added "Events" sub-page - TreeView: added "ImageAndConfig" sub-page (alphabetical order) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Click alias demo remains interactive with clear CTA - New OnClick+SelectedIndex tracking demo shows functional selection - Migration stub section clearly labeled as markup compatibility only - Removed misleading SelectedIndexChanged/TextChanged interactive demos - Updated docs to clarify stubs are accepted but not fired Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Events now fire during OnParametersSetAsync when navigation path changes - Uses URL change tracking to prevent re-render loops - ItemCreated fires for each node after path is built - ItemDataBound fires for each node after ItemCreated - All 2,470 bUnit tests pass - All 243 integration tests pass (including SiteMapPath/Events) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Raises 6 components from sub-100% to 100% health, bringing the dashboard from 44 to 50/59 at 100%. Includes documentation, sample pages, and integration tests for all new features.
Health Detection Fixes
Component Property/Event Additions
Documentation, Samples, and Integration Tests
Docs: TreeView.md, BulletedList.md, SiteMapPath.md, CustomValidator.md
Samples: TreeView/ImageAndConfig, BulletedList/Selection, SiteMapPath/Events, CustomValidator
Tests: 3 new integration test entries, 22 new bUnit tests, 2470 total pass