chore(pr): drop web-layer changes from MCP stream-order fix
This commit is contained in:
parent
74fee9ed48
commit
6b52f5df3f
3 changed files with 1 additions and 3 deletions
|
|
@ -1801,7 +1801,6 @@ function InlineInput({
|
|||
return (
|
||||
<div className="flex gap-2">
|
||||
<Input
|
||||
type={request.secure ? "password" : "text"}
|
||||
ref={inputRef}
|
||||
value={value}
|
||||
onChange={(e) => setValue(e.target.value)}
|
||||
|
|
|
|||
|
|
@ -180,7 +180,6 @@ function InputRenderer({
|
|||
}}
|
||||
>
|
||||
<Input
|
||||
type={request.secure ? "password" : "text"}
|
||||
value={value}
|
||||
onChange={(e) => setValue(e.target.value)}
|
||||
placeholder={request.placeholder || "Enter a value"}
|
||||
|
|
|
|||
|
|
@ -380,7 +380,7 @@ export interface WorkspaceLiveState {
|
|||
export type ExtensionUiRequestEvent =
|
||||
| { type: "extension_ui_request"; id: string; method: "select"; title: string; options: string[]; timeout?: number; allowMultiple?: boolean }
|
||||
| { type: "extension_ui_request"; id: string; method: "confirm"; title: string; message: string; timeout?: number }
|
||||
| { type: "extension_ui_request"; id: string; method: "input"; title: string; placeholder?: string; timeout?: number; secure?: boolean }
|
||||
| { type: "extension_ui_request"; id: string; method: "input"; title: string; placeholder?: string; timeout?: number }
|
||||
| { type: "extension_ui_request"; id: string; method: "editor"; title: string; prefill?: string }
|
||||
| { type: "extension_ui_request"; id: string; method: "notify"; message: string; notifyType?: "info" | "warning" | "error" }
|
||||
| { type: "extension_ui_request"; id: string; method: "setStatus"; statusKey: string; statusText: string | undefined }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue