
    AHj                     ^    d Z ddlmZ ddlmZ ddlmZ ddlmZ ddl	m
Z
 dZ G d d	e
      Zy
)z"Provides a Textual welcome widget.    )Markdown)ComposeResult)	Container)Button)Statica  # Welcome!

Textual is a TUI, or *Text User Interface*, framework for Python inspired by modern web development. **We hope you enjoy using Textual!**

## Dune quote

> "I must not fear.
Fear is the mind-killer.
Fear is the little-death that brings total obliteration.
I will face my fear.
I will permit it to pass over me and through me.
And when it has gone past, I will turn the inner eye to see its path.
Where the fear has gone there will be nothing. Only I will remain."
c                        e Zd ZdZdZdefdZy)WelcomezA Textual welcome widget.

    This widget can be used as a form of placeholder within a Textual
    application; although also see
    [Placeholder][textual.widgets._placeholder.Placeholder].
    ai  
        Welcome {
            width: 100%;
            height: 100%;
            background: $surface;
        }

        Welcome Container {
            padding: 1;
            color: $foreground;
        }

        Welcome #text {
            margin:  0 1;
        }

        Welcome #close {
            dock: bottom;
            width: 100%;
        }
    returnc              #   z   K   t        t        t        t              d      d       t	        ddd       y w)Ntext)idmdOKclosesuccess)r   variant)r   r   r   
WELCOME_MDr   )selfs    P/root/tools/cai/cai_env/lib/python3.12/site-packages/textual/widgets/_welcome.pycomposezWelcome.compose9   s.     x
3?DIITgy99s   9;N)__name__
__module____qualname____doc__DEFAULT_CSSr   r        r   r	   r	      s    K,: :r   r	   N)r   rich.markdownr   textual.appr   textual.containersr   textual.widgets._buttonr   textual.widgets._staticr   r   r	   r   r   r   <module>r#      s*    ( " % ( * *
" :f  :r   