"""
@generated by mypy-protobuf.  Do not edit manually!
isort:skip_file
*!
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

from collections import abc as _abc
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf.internal import containers as _containers
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
import builtins as _builtins
import sys
import typing as _typing

if sys.version_info >= (3, 10):
    from typing import TypeAlias as _TypeAlias
else:
    from typing_extensions import TypeAlias as _TypeAlias

if sys.version_info >= (3, 13):
    from warnings import deprecated as _deprecated
else:
    from typing_extensions import deprecated as _deprecated

DESCRIPTOR: _descriptor.FileDescriptor

@_typing.final
class PlotlyChart(_message.Message):
    DESCRIPTOR: _descriptor.Descriptor

    class _SelectionMode:
        ValueType = _typing.NewType("ValueType", _builtins.int)
        V: _TypeAlias = ValueType  # noqa: Y015

    class _SelectionModeEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[PlotlyChart._SelectionMode.ValueType], _builtins.type):
        DESCRIPTOR: _descriptor.EnumDescriptor
        POINTS: PlotlyChart._SelectionMode.ValueType  # 0
        """Point selection mode"""
        BOX: PlotlyChart._SelectionMode.ValueType  # 1
        """Box selection mode"""
        LASSO: PlotlyChart._SelectionMode.ValueType  # 2
        """Lasso selection mode"""

    class SelectionMode(_SelectionMode, metaclass=_SelectionModeEnumTypeWrapper):
        """Available selection modes:"""

    POINTS: PlotlyChart.SelectionMode.ValueType  # 0
    """Point selection mode"""
    BOX: PlotlyChart.SelectionMode.ValueType  # 1
    """Box selection mode"""
    LASSO: PlotlyChart.SelectionMode.ValueType  # 2
    """Lasso selection mode"""

    USE_CONTAINER_WIDTH_FIELD_NUMBER: _builtins.int
    THEME_FIELD_NUMBER: _builtins.int
    ID_FIELD_NUMBER: _builtins.int
    SELECTION_MODE_FIELD_NUMBER: _builtins.int
    FORM_ID_FIELD_NUMBER: _builtins.int
    SPEC_FIELD_NUMBER: _builtins.int
    CONFIG_FIELD_NUMBER: _builtins.int
    URL_FIELD_NUMBER: _builtins.int
    FIGURE_FIELD_NUMBER: _builtins.int
    @_builtins.property
    @_deprecated("""This field has been marked as deprecated using proto field options.""")
    def use_container_width(self) -> _builtins.bool:
        """DEPRECATED: If True, will overwrite the chart width spec to fit to container.
        Use widthConfig in layout configuration instead.
        """

    @use_container_width.setter
    @_deprecated("""This field has been marked as deprecated using proto field options.""")
    def use_container_width(self, value: _builtins.bool) -> None:
        """DEPRECATED: If True, will overwrite the chart width spec to fit to container.
        Use widthConfig in layout configuration instead.
        """

    theme: _builtins.str
    """override the properties with a theme. Currently, only "streamlit" or None are accepted."""
    id: _builtins.str
    """The unique element ID of this chart."""
    form_id: _builtins.str
    """Form ID, filled if selections are activated."""
    spec: _builtins.str
    """JSON-serialized dict containing keys from the set {data, frames, layout}."""
    config: _builtins.str
    """JSON-serialized dict with Plotly's config object."""
    url: _builtins.str
    """DEPRECATED and unused."""
    @_builtins.property
    def selection_mode(self) -> _containers.RepeatedScalarFieldContainer[Global___PlotlyChart.SelectionMode.ValueType]:
        """Activate selections types on the chart."""

    @_builtins.property
    def figure(self) -> Global___Figure:
        """DEPRECATED and unused."""

    def __init__(
        self,
        *,
        use_container_width: _builtins.bool = ...,
        theme: _builtins.str = ...,
        id: _builtins.str = ...,
        selection_mode: _abc.Iterable[Global___PlotlyChart.SelectionMode.ValueType] | None = ...,
        form_id: _builtins.str = ...,
        spec: _builtins.str = ...,
        config: _builtins.str = ...,
        url: _builtins.str = ...,
        figure: Global___Figure | None = ...,
    ) -> None: ...
    _HasFieldArgType: _TypeAlias = _typing.Literal["chart", b"chart", "figure", b"figure", "url", b"url"]  # noqa: Y015
    def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
    _ClearFieldArgType: _TypeAlias = _typing.Literal["chart", b"chart", "config", b"config", "figure", b"figure", "form_id", b"form_id", "id", b"id", "selection_mode", b"selection_mode", "spec", b"spec", "theme", b"theme", "url", b"url", "use_container_width", b"use_container_width"]  # noqa: Y015
    def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
    _WhichOneofReturnType_chart: _TypeAlias = _typing.Literal["url", "figure"]  # noqa: Y015
    _WhichOneofArgType_chart: _TypeAlias = _typing.Literal["chart", b"chart"]  # noqa: Y015
    def WhichOneof(self, oneof_group: _WhichOneofArgType_chart) -> _WhichOneofReturnType_chart | None: ...

Global___PlotlyChart: _TypeAlias = PlotlyChart  # noqa: Y015

@_typing.final
class Figure(_message.Message):
    """DEPRECATED and unused."""

    DESCRIPTOR: _descriptor.Descriptor

    SPEC_FIELD_NUMBER: _builtins.int
    CONFIG_FIELD_NUMBER: _builtins.int
    spec: _builtins.str
    config: _builtins.str
    def __init__(
        self,
        *,
        spec: _builtins.str = ...,
        config: _builtins.str = ...,
    ) -> None: ...
    _ClearFieldArgType: _TypeAlias = _typing.Literal["config", b"config", "spec", b"spec"]  # noqa: Y015
    def ClearField(self, field_name: _ClearFieldArgType) -> None: ...

Global___Figure: _TypeAlias = Figure  # noqa: Y015
