Skip to content

Releases: StratoDem/sd-material-ui

v2.13.2

18 May 16:55
Compare
Choose a tag to compare

Fixes

  • Updates prop names internally in Card from initialyExpanded to initiallyExpanded to fix syntax (spelling) error

v2.13.1

18 May 16:00
ea006a9
Compare
Choose a tag to compare

Fixes

  • Updates prop names internally in CardText for style and color to allow textColor and textStyle props to actually change CardText subcomponent

Added

  • Adds id and headerIconStyle props to CardComponent:
    • id as a string to allow for callbacks assigned to the card
    • headerIconStyle to allow for styling the icon in the CardHeader subcomponent

PR: #74

v2.13.0

17 May 19:30
Compare
Choose a tag to compare

Added

  • Adds uncontrolled Card component

PR: #72

v2.12.0

19 Apr 13:54
Compare
Choose a tag to compare

Changed

  • Adds functionality to AutoComplete component to allow for sending back value instead of searchText

Example

# SDAutoComplete with exactMatch
# This ships back 1 when the user types in 'magenta' exactly
# This ships back {'testKey': 'testVal'} when the user types in 'aqua' exactly
sd_material_ui.AutoComplete(
    id='input-autocomplete-exactmatch',
    anchorOrigin={'vertical': 'center', 'horizontal': 'middle'},
    animated=True,
    exactMatch=True,
    dashCallbackDelay=3000,
    dataSource=[
        dict(label='pink', value=0),
        dict(label='magenta', value=1),
        dict(label='aqua', value={'testKey': 'testVal'}),
        dict(label='aquamarine', value=3),
    ],
    fullWidth=True,
    floatingLabelText="Type here",
    filter='caseSensitiveFilter')

v2.11.1

19 Apr 12:50
Compare
Choose a tag to compare

Fixes

  • Updates metadata.json for new props in v2.11.0

v2.11.0

19 Apr 12:40
Compare
Choose a tag to compare

Added

  • Adds containerClosedClassName prop to Drawer which applies additional
    classes to the drawer when it is closed to allow for custom styling (like offsets or transitions)

Changed

  • 📣 BREAKING Changes containerclassName prop to containerClassName in Drawer to match material-ui prop naming format.

Example

# This has 'my-test-class my-closed-class' as the class name when closed
# and 'my-test-class' as the class name when open
sd_material_ui.Drawer(
    open=False,
    containerClassName='my-test-class',
    containerClosedClassName='my-closed-class')

v2.10.1

09 Apr 18:51
f6b7e99
Compare
Choose a tag to compare

Fixes

  • Fixes package.json and version.py mismatch

v2.10.0

09 Apr 18:49
f6b7e99
Compare
Choose a tag to compare

Added

  • Add Subheader Component

v2.9.0

09 Apr 18:43
305e2f2
Compare
Choose a tag to compare

Added

  • Add Paper Component

v2.8.0

09 Apr 18:39
15873ec
Compare
Choose a tag to compare

Added

  • Add RadioButtonGroup Component