Skip to content

v0.25.0

Compare
Choose a tag to compare
@metonym metonym released this 27 Nov 14:18
· 1036 commits to master since this release

Features

  • Add padding prop to Grid, Row, Column components (PR #420, issue #410)

    <!-- applies vertical padding to all child columns -->
    <Grid padding>...</Grid>
    
    <!-- applies vertical padding to child columns in a specific row -->
    <Grid><Row padding>...</Row></Grid>
    
    <!-- applies vertical padding to a specific column -->
    <Grid><Row><Column padding>...</Column></Row></Grid>
  • Add transition prop to UI Shell HeaderAction to customize panel slide transition; by default, the slide duration is 200ms (PR #419, issue #384)

    Custom slide transition parameters:

    <script>
      import { quintOut } from "svelte/easing";
    </script>
    
    <HeaderAction transition="{{ duration: 1200, delay: 200, easing: quintOut }}">...</HeaderAction>

    Disabled:

    <HeaderAction transition="{false}">...</HeaderAction>

Fixes

Documentation

Housekeeping

  • pin development dependency sveld to version 0.3.0

Contributors