
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
A custom Streamlit component that combines a slider with an input box for more precise value selection
A highly customizable Streamlit component that combines a slider with an input box for more precise value selection.
pip install st-input-slider
label
(str, default None): The label for the slider component.min_value
(float, default 0): The minimum value of the slider.max_value
(float, default 100): The maximum value of the slider.value
(float, default 50): The initial value of the slider.step
(float, default 1): The step size for each slider movement.format
(str, default None): A printf-style format string controlling how the interface should display numbers. This follows the d3-format specification. Check d3-format.options
(dict, default None): Additional options for the slider component. Options include:
color
(str, default primary theme color): This sets the color of the slider.marks
(bool, default False): Set initial and final marks.disableUnderline
(bool, default False): If True
, the underline of the input box is disabled.labelPosition
(str, default "top"): The position of the label. Can be "top"
or "left"
.labelTextAlign
(str, default "left"): The text alignment of the label. Can be "left", "center", "right", "justify", or "inherit".fontSize
(float, default 12): The font size.endAdornment
(str, default None): The text at the end of the input box.labelWidth
(str, default "20%"): The width of the label.sliderWidth
(str, default "60%"): The width of the slider.inputWidth
(str, default "20%"): The width of the input box.key
(str or None, default None): An optional key that uniquely identifies this component. If this is None
, and the component's arguments are changed, the component will be re-mounted in the Streamlit frontend and lose its current state.on_change
(Callable, default None): A callback function that is called whenever the slider value changes.args
(tuple, default None): Additional arguments to pass to the callback function.kwargs
(dict, default None): Additional keyword arguments to pass to the callback function.float
: The current value of the slider. This is the value passed to Streamlit.setComponentValue
on the frontend.import streamlit as st
from st_input_slider import st_input_slider
st.title("Slider + Input Example!")
options = {
"color": "#9E9A35", # Default is the primary theme color
"disableUnderline": False, # Default is False
"marks": False, # Default is False
"labelPosition": "left", # "top" or "left". Default is "top"
"labelFontSize": 14, # Default is 14
"endAdornment": "Hz", # Default is None (no adornment)
}
slider_value = st_input_slider(
label="A custom slider", min_value=-100, max_value=200, value=50, step=0.1, options=options)
st.markdown("Value: %s" % (slider_value))
with st.sidebar:
st.markdown("This is another slider with all default options:")
slider_value = st_input_slider(
label="A custom slider1", min_value=-100, max_value=200, value=50, step=0.1)
st_input_slider(
label="A custom slider2", min_value=-1000, max_value=20000, value=50, step=0.1, options={"marks": True, "labelPosition": "left"})
st_input_slider(
label="A custom slider3", min_value=-0.00001, max_value=0.00002, value=0.000015, step=0.000001, options={"marks": True, "labelPosition": "left"})
st_input_slider(
label="Slider :)", min_value=-100, max_value=200, value=50, step=0.1, options={"marks": True, "labelPosition": "left"})
st_input_slider(
label=":)", min_value=-100, max_value=200, value=50, step=0.1, options={"labelPosition": "left"})
FAQs
A custom Streamlit component that combines a slider with an input box for more precise value selection
We found that st-input-slider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.