diff --git a/BlazorFluentUI/Components/Layout/NavMenu.razor b/BlazorFluentUI/Components/Layout/NavMenu.razor index 5adc22f..6f10621 100644 --- a/BlazorFluentUI/Components/Layout/NavMenu.razor +++ b/BlazorFluentUI/Components/Layout/NavMenu.razor @@ -36,7 +36,8 @@ Search Slider Switch - TextArea + TextArea + TextField diff --git a/BlazorFluentUI/Components/Pages/FormInputs/FormInputTextField.razor b/BlazorFluentUI/Components/Pages/FormInputs/FormInputTextField.razor new file mode 100644 index 0000000..2da6537 --- /dev/null +++ b/BlazorFluentUI/Components/Pages/FormInputs/FormInputTextField.razor @@ -0,0 +1,39 @@ +@page "/forminputtexfield" + +@rendermode RenderMode.InteractiveServer + +TextField + + + The FluentTextField wraps a web component of a text field element. + + +Default Example + + +
+
Without label
+ +

You entered: @eval1

+
+
+
With label
+ +

You entered: @eval2

+
+
+
Minlength
+ +

You entered: @eval3

+
+
+
Maxlengthl
+ +

You entered: @eval4

+
+
+
+ +@code { + string? eval1, eval2, eval3, eval4; +}