0.0.9 • Published 6 years ago

dash-styled-input v0.0.9

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Dash Styled Input

Stylus radio items with row group supported

  • Future React.JS v1.6+ (Fragment supported)
<div>
    <input id="week" name="view" type="radio" checked>
    <label for="week" onclick="">Week</label>

    <input id="month" name="view" type="radio">
    <label for="month" onclick="">Month</label>

    <input id="day" name="view" type="radio">
    <label for="day" onclick="">Day</label>
</div>
  • Now React.JS v1.5 (Span as placeholder)
<div>
    <label for="w1" onclick="">
        <input id="w1" name="list" type="radio" checked>
        <span>1</span>
    </label>
    <label for="w2" onclick="">
        <input id="w2" name="list" type="radio">
        <span>2</span>
    </label>
    <label for="w3" onclick="">3</label>
        <input id="w3" name="list" type="radio">
        <span>3</span>
    </label>
</div>

Usage

Refer usage.py

More Resources

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago