Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.