djust-theming | Demo Home Components | Gallery Storybook Editor Diff

Currency Input

python component Forms 14 params
PREVIEW
Preview not available — component requires runtime dependencies or no examples defined.
USAGE
python
from djust_components.components.currency_input import CurrencyInput

component = CurrencyInput(name='',
    currency='USD',
    value='',
    label='',
    min=None,
    max=None,
    step='0.01',
    placeholder='0.00',
    event='',
    disabled=False,
    required=False,
    error='',
    custom_class='',
    kwargs)
html = component.render()
PARAMETERS 14
NameTypeDefault
name <class 'str'> ''
currency <class 'str'> 'USD'
value <class 'str'> ''
label <class 'str'> ''
min typing.Optional[float] None
max typing.Optional[float] None
step <class 'str'> '0.01'
placeholder <class 'str'> '0.00'
event <class 'str'> ''
disabled <class 'bool'> False
required <class 'bool'> False
error <class 'str'> ''
custom_class <class 'str'> ''
kwargs