
    Vf                     *    d dl mZmZ  G d de      Zy)    )	Component_explicitize_argsc                       e Zd ZdZg ZdgZdZd Zede	j                  e	j                  e	j                  e	j                  e	j                  e	j                  e	j                  e	j                  e	j                  e	j                  f fd	       Z xZS )Loadinga  A Loading component.
    A Loading component that wraps any other component and displays a spinner until the wrapped component has rendered.

    Keyword arguments:

    - children (list of a list of or a singular dash component, string or numbers | a list of or a singular dash component, string or number; optional):
        Array that holds components to render.

    - id (string; optional):
        The ID of this component, used to identify dash components in
        callbacks. The ID needs to be unique across all of the components
        in an app.

    - className (string; optional):
        Additional CSS class for the spinner root DOM node.

    - color (string; default '#119DFF'):
        Primary colour used for the loading spinners.

    - debug (boolean; optional):
        If True, the spinner will display the component_name and prop_name
        while loading.

    - fullscreen (boolean; optional):
        Boolean that makes the spinner display full-screen.

    - loading_state (dict; optional):
        Object that holds the loading state object coming from
        dash-renderer.

        `loading_state` is a dict with keys:

        - component_name (string; optional):
            Holds the name of the component that is loading.

        - is_loading (boolean; optional):
            Determines if the component is loading or not.

        - prop_name (string; optional):
            Holds which property is loading.

    - parent_className (string; optional):
        Additional CSS class for the outermost dcc.Loading parent div DOM
        node.

    - parent_style (dict; optional):
        Additional CSS styling for the outermost dcc.Loading parent div
        DOM node.

    - style (dict; optional):
        Additional CSS styling for the spinner root DOM node.

    - type (a value equal to: 'graph', 'cube', 'circle', 'dot', 'default'; default 'default'):
        Property that determines which spinner to show one of 'graph',
        'cube', 'circle', 'dot', or 'default'.childrendash_core_componentsNc                    g d| _         g | _        g d| _        g | _        |j	                  d      }t               }|j                  |       |D ci c]  }|dk7  s	|||    }}t        t        | &  dd|i| y c c}w )N)r   id	classNamecolordebug
fullscreenloading_stateparent_classNameparent_stylestyletype_explicit_argsr    )
_prop_names_valid_wildcard_attributesavailable_propertiesavailable_wildcard_propertiespoplocalsupdatesuperr   __init__)selfr   r
   r   r   r   r   r   r   r   r   r   kwargsr   _localskargs	__class__s                    Y/var/www/html/software/conda/envs/catlas/lib/python3.12/site-packages/dash/dcc/Loading.pyr   zLoading.__init__D   s     
 +-'%
! .0*$45(v'5I!j71:IIgt%@x@4@ Js   
A=A=)__name__
__module____qualname____doc___children_props_base_nodes
_namespace_typer   r   	UNDEFINEDr   __classcell__)r$   s   @r%   r   r      s    62p O,K'JE   &&!!%%",,!!((!!))0A 0A    r   N)dash.development.base_componentr   r   r   r   r0   r%   <module>r2      s    IoAi oAr0   