From fa34d6f99e1e66755ba24e8ac0339b922e7bb4ce Mon Sep 17 00:00:00 2001 From: Ranjith Date: Fri, 19 Dec 2025 12:04:07 +0530 Subject: [PATCH] Add auto capitalize property to Text widget documentation --- learn/app-development/widgets/form-widgets/text.md | 1 + 1 file changed, 1 insertion(+) diff --git a/learn/app-development/widgets/form-widgets/text.md b/learn/app-development/widgets/form-widgets/text.md index f3c20e412..d4c840760 100644 --- a/learn/app-development/widgets/form-widgets/text.md +++ b/learn/app-development/widgets/form-widgets/text.md @@ -47,6 +47,7 @@ Using Text widget, you can do the following: | Update value on | If the selected value is `blur`: data value will be updated on blur event, `default`: data value will be updated on key up. | | Update delay | The amount of delay in milliseconds to update the data value. | | Skip on change event from script | When enabled, the `Change` callback will only trigger when the user updates the value from the UI, and not when it's updated through scripts. This property is disabled by default. | +| Auto capitalize | Controls how text is automatically capitalized in the input field. Supported values are `characters` (all characters in uppercase), `words` (first letter of each word in uppercase), `sentences` (first letter of each sentence in uppercase), and `none` (no automatic capitalization). | ## Events