
    !kh	1                        d Z ddlmZ ddlZddlZddlmZmZ ddlm	Z	m
Z
mZmZ ddlmZ ddlmZmZ ddlmZ dd	lmZ e	rdd
lmZ  e       ej0                   G d d                    Z e        G d de             Zy)zgr.Textbox() component.    )annotationsN)CallableSequence)TYPE_CHECKINGAnyLiteralOptional)document)	ComponentFormComponent)Events)I18nData)Timerc                      e Zd ZU dZdZded<   dZded<   dZded<   dZd	ed
<   dZ	ded<   dZ
ded<   dZd	ed<   dZd	ed<   dZd	ed<   dZd	ed<   y)InputHTMLAttributesa(  
    A dataclass for specifying HTML attributes for the input/textarea element. If any of these attributes are not provided, the browser will use its default value.
    Parameters:
        autocapitalize: The autocapitalize attribute for the input/textarea element. Can be "off", "none", "on", "sentences", "words", or "characters".
        autocorrect: The autocorrect attribute for the input/textarea element. Can be True (enabled) or False (disabled).
        spellcheck: The spellcheck attribute for the input/textarea element. Can be True (enabled) or False (disabled).
        autocomplete: The autocomplete attribute for the input/textarea element. Can be "on", "off", or specific values like "email", "current-password", "new-password", etc.
        tabindex: The tabindex attribute for the input/textarea element. An integer specifying the tab order.
        enterkeyhint: The enterkeyhint attribute for the input/textarea element. Can be "enter", "done", "go", "next", "previous", "search", or "send".
        lang: The lang attribute for the input/textarea element. A string containing a language code (e.g., "en", "es", "fr").
        aria_label: The aria-label attribute for the input/textarea element. A string providing an accessible name for screen readers.
        aria_describedby: The aria-describedby attribute for the input/textarea element. A string containing IDs of elements that describe this element.
        aria_placeholder: The aria-placeholder attribute for the input/textarea element. A string providing placeholder text for screen readers.
    NzJOptional[Literal['off', 'none', 'on', 'sentences', 'words', 'characters']]autocapitalizezOptional[Literal['on', 'off']]autocorrectzOptional[bool]
spellcheckzOptional[str]autocompletezOptional[int]tabindexzNOptional[Literal['enter', 'done', 'go', 'next', 'previous', 'search', 'send']]enterkeyhintlang
aria_labelaria_describedbyaria_placeholder)__name__
__module____qualname____doc__r   __annotations__r   r   r   r   r   r   r   r   r        U/opt/mcp/mcp-sentiment/venv/lib/python3.12/site-packages/gradio/components/textbox.pyr   r      s    " 	    37K/6!%J%"&L-&"Hm" 	    D- $J$&*m*&*m*r"   r   c                      e Zd ZdZej
                  ej                  ej                  ej                  ej                  ej                  ej                  ej                  gZ	 dddddddddddddddddddddddddddddd		 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 d fd
ZddZddZddZddZddZ xZS )Textboxz
    Creates a textarea for user to enter string input or display string output.

    Demos: hello_world, diff_texts, sentence_builder
    Guides: creating-a-chatbot, real-time-speech-recognition
    Ntext   T   Fvalue)typelines	max_linesplaceholderlabelinfoeveryinputs
show_label	containerscale	min_widthinteractivevisibleelem_id	autofocus
autoscrollelem_classesrenderkeypreserved_by_key
text_alignrtlshow_copy_button
max_length
submit_btnstop_btnhtml_attributesc                  |dvrt        d      |dv r7|dk7  rt        j                  d       d}|dvrt        j                  d       d}|| _        || _        || _        || _        || _        || _        || _	        || _
        t        | 1  ||||	|
|||||||||||       || _        || _        || _        || _        || _        y	)
a(  
        Parameters:
            value: text to show in textbox. If a function is provided, the function will be called each time the app loads to set the initial value of this component.
            type: The type of textbox. One of: 'text' (which allows users to enter any text), 'password' (which masks text entered by the user), 'email' (which suggests email input to the browser). For "password" and "email" types, `lines` must be 1 and `max_lines` must be None or 1.
            lines: minimum number of line rows to provide in textarea.
            max_lines: maximum number of line rows to provide in textarea. Must be at least `lines`. If not provided, the maximum number of lines is max(lines, 20) for "text" type, and 1 for "password" and "email" types.
            placeholder: placeholder hint to provide behind textarea.
            label: the label for this component, displayed above the component if `show_label` is `True` and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component corresponds to.
            info: additional component description, appears below the label in smaller font. Supports markdown / HTML syntax.
            every: continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.
            inputs: components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.
            show_label: if True, will display the label. If False, the copy button is hidden as well as well as the label.
            container: if True, will place the component in a container - providing some extra padding around the border.
            scale: relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.
            min_width: minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.
            interactive: if True, will be rendered as an editable textbox; if False, editing will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.
            visible: If False, component will be hidden.
            autofocus: If True, will focus on the textbox when the page loads. Use this carefully, as it can cause usability issues for sighted and non-sighted users.
            elem_id: An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.
            elem_classes: An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.
            render: If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.
            key: in a gr.render, Components with the same key across re-renders are treated as the same component, not a new component. Properties set in 'preserved_by_key' are not reset across a re-render.
            preserved_by_key: A list of parameters from this component's constructor. Inside a gr.render() function, if a component is re-rendered with the same key, these (and only these) parameters will be preserved in the UI (if they have been changed by the user or an event listener) instead of re-rendered based on the values provided during constructor.
            text_align: How to align the text in the textbox, can be: "left", "right", or None (default). If None, the alignment is left if `rtl` is False, or right if `rtl` is True. Can only be changed if `type` is "text".
            rtl: If True and `type` is "text", sets the direction of the text to right-to-left (cursor appears on the left of the text). Default is False, which renders cursor on the right.
            show_copy_button: If True, includes a copy button to copy the text in the textbox. Only applies if show_label is True.
            autoscroll: If True, will automatically scroll to the bottom of the textbox when the value changes, unless the user scrolls up. If False, will not scroll to the bottom of the textbox when the value changes.
            max_length: maximum number of characters (including newlines) allowed in the textbox. If None, there is no maximum length.
            submit_btn: If False, will not show a submit button. If True, will show a submit button with an icon. If a string, will use that string as the submit button text. When the submit button is shown, the border of the textbox will be removed, which is useful for creating a chat interface.
            stop_btn: If False, will not show a stop button. If True, will show a stop button with an icon. If a string, will use that string as the stop button text. When the stop button is shown, the border of the textbox will be removed, which is useful for creating a chat interface.
            html_attributes: An instance of gr.InputHTMLAttributes, which can be used to set HTML attributes for the input/textarea elements. Example: InputHTMLAttributes(autocorrect="off", spellcheck=False) to disable autocorrect and spellcheck.
        )r&   passwordemailz5`type` must be one of "text", "password", or "email".)rG   rH   r'   zZThe `lines` parameter must be 1 for `type` of 'password' or 'email'. Setting `lines` to 1.)Nr'   zjThe `max_lines` parameter must be None or 1 for `type` of 'password' or 'email'. Setting `max_lines` to 1.)r.   r/   r0   r1   r2   r3   r4   r5   r6   r7   r8   r;   r<   r=   r>   r)   N)
ValueErrorwarningswarnr+   r,   r-   rA   rC   rD   r9   r:   super__init__r*   r@   r?   rB   rE   )selfr)   r*   r+   r,   r-   r.   r/   r0   r1   r2   r3   r4   r5   r6   r7   r8   r9   r:   r;   r<   r=   r>   r?   r@   rA   rB   rC   rD   rE   	__class__s                                 r#   rM   zTextbox.__init__J   s   B 44TUU((zp 	) A 	
"& 0$ "$!#%-! 	 	
$ 	$$.r"   c                     |dS t        |      S )z
        Parameters:
            payload: the text entered in the textarea.
        Returns:
            Passes text value as a {str} into the function.
        Nstr)rN   payloads     r#   
preprocesszTextbox.preprocess   s     t8CL8r"   c                     |dS t        |      S )z
        Parameters:
            value: Expects a {str} returned from function and sets textarea value to it.
        Returns:
            The value to display in the textarea.
        NrQ   )rN   r)   s     r#   postprocesszTextbox.postprocess   s     }t4#e*4r"   c                
    ddiS )Nr*   stringr!   rN   s    r#   api_infozTextbox.api_info   s    !!r"   c                     yNzHello!!r!   rY   s    r#   example_payloadzTextbox.example_payload       r"   c                     yr\   r!   rY   s    r#   example_valuezTextbox.example_value   r^   r"   )N):r)   z str | I18nData | Callable | Noner*   z$Literal['text', 'password', 'email']r+   intr,   
int | Noner-   str | I18nData | Noner.   rc   r/   rc   r0   zTimer | float | Noner1   z7Component | Sequence[Component] | set[Component] | Noner2   bool | Noner3   boolr4   rb   r5   ra   r6   rd   r7   re   r8   
str | Noner9   re   r:   re   r;   list[str] | str | Noner<   re   r=   z(int | str | tuple[int | str, ...] | Noner>   rg   r?   zLiteral['left', 'right'] | Noner@   re   rA   re   rB   rb   rC   str | bool | NonerD   rh   rE   zInputHTMLAttributes | None)rS   rf   returnrf   )r)   rf   ri   rf   )ri   zdict[str, Any])ri   r   )r   r   r   r   r   changeinputselectsubmitfocusblurstopcopyEVENTSrM   rT   rV   rZ   r]   r`   __classcell__)rO   s   @r#   r%   r%   6   s    		F 37n/ 6< $-1'+&*&*JN"& #'"/38<3:6:!&!%(-&+6:?n//n/ 3	n/
 n/ n/ +n/ %n/ $n/ $n/ Hn/  n/ n/ n/ n/  !!n/" #n/$ %n/& 'n/( )n/* -+n/, -n/. 6/n/0 11n/2 43n/4 5n/6 7n/8 9n/: &;n/< $=n/> 4?n/`95"r"   r%   )r   
__future__r   dataclassesrJ   collections.abcr   r   typingr   r   r   r	   gradio_client.documentationr
   gradio.components.baser   r   gradio.eventsr   gradio.i18nr   gradio.componentsr   	dataclassr   r%   r!   r"   r#   <module>r~      sv     "   . 8 8 0 ;    ' 
+ +  +@ 
\m \ \r"   