"""
@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
from streamlit.proto import LabelVisibility_pb2 as _LabelVisibility_pb2
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

DESCRIPTOR: _descriptor.FileDescriptor

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

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

    class _DataTypeEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[Slider._DataType.ValueType], _builtins.type):
        DESCRIPTOR: _descriptor.EnumDescriptor
        INT: Slider._DataType.ValueType  # 0
        """What numeric type are we working with? This doesn't change how the
        data is stored, but the frontend needs to know for input parsing.
        """
        FLOAT: Slider._DataType.ValueType  # 1
        DATETIME: Slider._DataType.ValueType  # 2
        """Note: Represented as microseconds since epoch"""
        DATE: Slider._DataType.ValueType  # 3
        TIME: Slider._DataType.ValueType  # 4

    class DataType(_DataType, metaclass=_DataTypeEnumTypeWrapper): ...
    INT: Slider.DataType.ValueType  # 0
    """What numeric type are we working with? This doesn't change how the
    data is stored, but the frontend needs to know for input parsing.
    """
    FLOAT: Slider.DataType.ValueType  # 1
    DATETIME: Slider.DataType.ValueType  # 2
    """Note: Represented as microseconds since epoch"""
    DATE: Slider.DataType.ValueType  # 3
    TIME: Slider.DataType.ValueType  # 4

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

    class _TypeEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[Slider._Type.ValueType], _builtins.type):
        DESCRIPTOR: _descriptor.EnumDescriptor
        UNSPECIFIED: Slider._Type.ValueType  # 0
        SLIDER: Slider._Type.ValueType  # 1
        SELECT_SLIDER: Slider._Type.ValueType  # 2

    class Type(_Type, metaclass=_TypeEnumTypeWrapper): ...
    UNSPECIFIED: Slider.Type.ValueType  # 0
    SLIDER: Slider.Type.ValueType  # 1
    SELECT_SLIDER: Slider.Type.ValueType  # 2

    ID_FIELD_NUMBER: _builtins.int
    FORM_ID_FIELD_NUMBER: _builtins.int
    LABEL_FIELD_NUMBER: _builtins.int
    FORMAT_FIELD_NUMBER: _builtins.int
    DATA_TYPE_FIELD_NUMBER: _builtins.int
    DEFAULT_FIELD_NUMBER: _builtins.int
    MIN_FIELD_NUMBER: _builtins.int
    MAX_FIELD_NUMBER: _builtins.int
    STEP_FIELD_NUMBER: _builtins.int
    VALUE_FIELD_NUMBER: _builtins.int
    SET_VALUE_FIELD_NUMBER: _builtins.int
    OPTIONS_FIELD_NUMBER: _builtins.int
    HELP_FIELD_NUMBER: _builtins.int
    DISABLED_FIELD_NUMBER: _builtins.int
    LABEL_VISIBILITY_FIELD_NUMBER: _builtins.int
    TYPE_FIELD_NUMBER: _builtins.int
    RAW_VALUE_FIELD_NUMBER: _builtins.int
    QUERY_PARAM_KEY_FIELD_NUMBER: _builtins.int
    id: _builtins.str
    form_id: _builtins.str
    label: _builtins.str
    format: _builtins.str
    data_type: Global___Slider.DataType.ValueType
    min: _builtins.float
    max: _builtins.float
    step: _builtins.float
    set_value: _builtins.bool
    help: _builtins.str
    disabled: _builtins.bool
    type: Global___Slider.Type.ValueType
    query_param_key: _builtins.str
    """If set, widget value is bound to this query parameter key
    Next: 20
    """
    @_builtins.property
    def default(self) -> _containers.RepeatedScalarFieldContainer[_builtins.float]: ...
    @_builtins.property
    def value(self) -> _containers.RepeatedScalarFieldContainer[_builtins.float]: ...
    @_builtins.property
    def options(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
    @_builtins.property
    def label_visibility(self) -> _LabelVisibility_pb2.LabelVisibility: ...
    @_builtins.property
    def raw_value(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]:
        """String-based value for select_slider to support dynamic option changes.
        Stores formatted option strings instead of indices.
        """

    def __init__(
        self,
        *,
        id: _builtins.str = ...,
        form_id: _builtins.str = ...,
        label: _builtins.str = ...,
        format: _builtins.str = ...,
        data_type: Global___Slider.DataType.ValueType = ...,
        default: _abc.Iterable[_builtins.float] | None = ...,
        min: _builtins.float = ...,
        max: _builtins.float = ...,
        step: _builtins.float = ...,
        value: _abc.Iterable[_builtins.float] | None = ...,
        set_value: _builtins.bool = ...,
        options: _abc.Iterable[_builtins.str] | None = ...,
        help: _builtins.str = ...,
        disabled: _builtins.bool = ...,
        label_visibility: _LabelVisibility_pb2.LabelVisibility | None = ...,
        type: Global___Slider.Type.ValueType = ...,
        raw_value: _abc.Iterable[_builtins.str] | None = ...,
        query_param_key: _builtins.str | None = ...,
    ) -> None: ...
    _HasFieldArgType: _TypeAlias = _typing.Literal["_query_param_key", b"_query_param_key", "label_visibility", b"label_visibility", "query_param_key", b"query_param_key"]  # noqa: Y015
    def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
    _ClearFieldArgType: _TypeAlias = _typing.Literal["_query_param_key", b"_query_param_key", "data_type", b"data_type", "default", b"default", "disabled", b"disabled", "form_id", b"form_id", "format", b"format", "help", b"help", "id", b"id", "label", b"label", "label_visibility", b"label_visibility", "max", b"max", "min", b"min", "options", b"options", "query_param_key", b"query_param_key", "raw_value", b"raw_value", "set_value", b"set_value", "step", b"step", "type", b"type", "value", b"value"]  # noqa: Y015
    def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
    _WhichOneofReturnType__query_param_key: _TypeAlias = _typing.Literal["query_param_key"]  # noqa: Y015
    _WhichOneofArgType__query_param_key: _TypeAlias = _typing.Literal["_query_param_key", b"_query_param_key"]  # noqa: Y015
    def WhichOneof(self, oneof_group: _WhichOneofArgType__query_param_key) -> _WhichOneofReturnType__query_param_key | None: ...

Global___Slider: _TypeAlias = Slider  # noqa: Y015
