v31.5.0
Minor Changes
-
Stack: Add support for span elements (#1060)
Stack now supports using
spanelements for it's markup, this is useful when using layout components inside elements that should not contain adivelement, e.g.button.EXAMPLE USAGE:
<Stack component="span" space="medium"> ... </Stack>
-
Stepper: Add component (#1060)
See documentation for full feature set and usage details.
EXAMPLE USAGE:
<Stepper label="Linear steps" progress={3}> <Step>1. First step</Step> <Step>2. Second step</Step> <Step>3. Third step</Step> <Step>4. Forth step</Step> </Stepper>