This creates a number input in the Shiny UI.
chakraNumberInput(
inputId,
label = NULL,
value,
min,
max,
step = NULL,
size = "md",
options = list()
)
the input slot that will be used to access the value
the label for the widget; this can be some HTML code
initial value
minimum allowed value
maximum allowed value
stepping interval to use when adjusting the value
size of the widget, can be "sm"
(small),
"md"
(medium) or "lg"
(large)
a list of options for the number input created with
numberInputOptions
; note that the width has to be set
here