From a0c222a702fd8bdf4ec8785652631c01237712b3 Mon Sep 17 00:00:00 2001 From: eriklimakc Date: Mon, 15 Jul 2024 20:04:00 +0100 Subject: [PATCH] docs: Add TextBox Placeholder and Header breaking change section (cherry picked from commit 0d113d07789381f7d31e20c5ad6b25f1fd39136b) --- doc/material-migration.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/doc/material-migration.md b/doc/material-migration.md index 6d1ebf193..c5abfcc22 100644 --- a/doc/material-migration.md +++ b/doc/material-migration.md @@ -8,6 +8,33 @@ uid: Uno.Themes.Material.Migration The Uno Material v5 packages introduce a new dependency on the [Uno Themes](https://www.nuget.org/packages/Uno.Themes.WinUI) package. Uno Themes is the base library for all design system implementations going forward. As a result, the following changes have been made: +### Upgrading to Uno Themes 5.1 + +#### TextBox `PlaceholderText` and `Header` + +Previously, the `PlaceholderText` property acted as a header, displaying in the normal state and animating upwards when the text is set or being entered. And, the `Header` property did nothing. Now, both `PlaceholderText` and `Header` are supported and their behaviors have changed. + +##### New Behavior + +- **PlaceholderText**: Displays inside the TextBox when it's empty. Disappears when text is entered. +- **Header**: Acts as a label. Animates upwards when the TextBox is focused. + +##### Example + +**Old Usage:** + +```xml + +``` + +**New Usage:** + +```xml + +``` + +Update your TextBox elements to use `Header` for labels and `PlaceholderText` for placeholders. + ### Converters All Converters were moved to the base `Uno.Themes` library, and the new `namespace` is `Uno.Themes`.