From 8d3f75a3c297c5b819f660e3f794cc46cbbf2408 Mon Sep 17 00:00:00 2001 From: Vitaliy Dobriyan Date: Mon, 6 Jul 2026 12:11:47 +0300 Subject: [PATCH] ITextInput now implements `IHasValue` --- .../Controls/Interfaces/Typified/ITextInput.cs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs b/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs index b0c13bb..fa02a2f 100644 --- a/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs +++ b/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs @@ -1,19 +1,11 @@ namespace Unicorn.UI.Core.Controls.Interfaces.Typified { /// - /// Interface for text inputs (text edits) implementation. + /// Interface for text inputs (text edits) implementation. /// Has definitions of basic methods and properties. /// - public interface ITextInput + public interface ITextInput : IHasValue { - /// - /// Gets text input value. - /// - string Value - { - get; - } - /// /// Send keys (add text) to already existing input value. ///