PromptPlus

|Adr-Plus Fields|Values Migrated | |–|–| |ADR|Controls vs Widgets separation| |Version|01| |Revision|01| |Scope|| |Domain|| |Created|Proposed (2026-07-24)| |Changed|Accepted (2026-07-24)| |Superseded||

PromptPlus # PromptPlus ## **ADR0007V01R01** [![NuGet](https://img.shields.io/badge/NuGet-PromptPlus-blue)](https://www.nuget.org/packages/PromptPlus) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![.NET](https://img.shields.io/badge/.NET-8%20%7C%209%20%7C%2010-512BD4)](https://dotnet.microsoft.com/)

↑ ADR Index


ADR0007V01R01 — Controls vs Widgets separation

Context

The library offers both interactive prompts (that read the keyboard and return a value) and output-only visual elements (banners, tables, progress). Mixing them under one factory blurs their very different lifecycles.

Decision

Split the surface into two factories:

A type is a control if and only if it produces a ResultPrompt<T>.

Consequences