diff --git a/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml b/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml index 1e6d2be054..4e4481e1f0 100644 --- a/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml +++ b/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml @@ -71,6 +71,11 @@ Gets or sets a way to prevent further propagation of the current event in the capturing and bubbling phases. + + + Gets or sets a way to tells the user agent that if the event does not get explicitly handled, its default action should not be taken as it normally would be. + + @@ -6404,6 +6409,11 @@ An Id value must be set to use this property. + + + Gets or sets the type of data that can be entered by the user when editing the element or its content. This allows a browser to display an appropriate virtual keyboard. Not supported by Safari. + + Closes the toast @@ -6892,7 +6902,12 @@ - clears all tooltips from the service. + Clears all tooltips from the service. + + + + + Updates all service tooltips. @@ -7018,6 +7033,9 @@ + + + Clears all tooltips from the service. @@ -10728,6 +10746,51 @@ In Blazor WebAssembly, file data is streamed directly into the .NET code within the browser. + + + The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard. + + + + + No virtual keyboard. For when the page implements its own keyboard input control. + + + + + Standard input keyboard for the user's current locale. (default value) + + + + + Fractional numeric input keyboard containing the digits and decimal separator for the user's locale (typically . or ,). Devices may or may not show a minus key (-). + + + + + Numeric input keyboard, but only requires the digits 0–9. Devices may or may not show a minus key. + + + + + A telephone keypad input, including the digits 0–9, the asterisk (*), and the pound (#) key. Inputs that *require* a telephone number should typically use instead. + + + + + A virtual keyboard optimized for search input. For instance, the return/submit key may be labeled "Search", along with possible other optimizations. Inputs that require a search query should typically use instead. + + + + + A virtual keyboard optimized for entering email addresses. Typically includes the @character as well as other optimizations. Inputs that require email addresses should typically use instead. + + + + + A keypad optimized for entering URLs. This may have the / key more prominent, for example. Enhanced features could include history access and so on. Inputs that require a URL should typically use instead. + + Defines the alignment of items along the main axis of a flex container. diff --git a/src/Core/Enums/InputMode.cs b/src/Core/Enums/InputMode.cs index 96598dd689..3ad7a5c53a 100644 --- a/src/Core/Enums/InputMode.cs +++ b/src/Core/Enums/InputMode.cs @@ -1,6 +1,6 @@ using System.ComponentModel; -namespace Microsoft.FluentUI.AspNetCore.Components; +namespace Microsoft.Fast.Components.FluentUI; /// /// The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.