diff --git a/examples/Demo/Shared/Microsoft.FluentUI.AspNetCore.Components.xml b/examples/Demo/Shared/Microsoft.FluentUI.AspNetCore.Components.xml index c5be64a70f..0e80cc1459 100644 --- a/examples/Demo/Shared/Microsoft.FluentUI.AspNetCore.Components.xml +++ b/examples/Demo/Shared/Microsoft.FluentUI.AspNetCore.Components.xml @@ -795,6 +795,11 @@ The minimum value for the underlying type + + + Defines an interface for components with values that can be parsed from a string. + + Gets or sets the error message to show when the field can not be parsed. diff --git a/examples/Demo/Shared/Pages/List/Listbox/ListboxPage.razor b/examples/Demo/Shared/Pages/List/Listbox/ListboxPage.razor index 65f7aa8a2e..4cee41cae6 100644 --- a/examples/Demo/Shared/Pages/List/Listbox/ListboxPage.razor +++ b/examples/Demo/Shared/Pages/List/Listbox/ListboxPage.razor @@ -26,6 +26,16 @@

+
+

+ Note: Although the component supports the Multiple parameter, the underlying web component does not correctly handle it.
+ The selected items state will not correspond with the rendered options.
+
+ We strongly advise not to use the Multiple parameter with the <FluentListbox> at this time. +

+
+ +

Examples