Releases: fabscale/ember-layout-components
Releases · fabscale/ember-layout-components
Release 0.11.1
0.11.1 (2021-04-01)
Breaking changes
- Rename
<Layout::VerticalStack>
to<Layout::Stack>
This includes renaming all CSS classes from layout-vertical-stack-xx to layout-stack-xx, and all other references to vertical-stack to stack.
Mostly the migration should be:
- Replace Layout::VerticalStack with Layout::Stack
- Replace any .layout-vertical-stack- classes with .layout-stack-
- Replace any --layout-vertical-stack- CSS properties with --layout-stack-
Release 0.10.0
Release 0.11.0
0.11.0 (2021-03-02)
- Drop deprecated
@size
arguments
Release 0.10.1
Release 0.9.2
Release 0.9.1
Release 0.9.0
0.9.0 (2020-10-27)
Breaking Changes
- Replace
@size
with@gap
for<Layout::Cluster>
(73d6df2) - Replace
@size
with@gap
for<Layout::VerticalStack>
(84c11b8)
You should replace @size
with @gap
for both <Layout::Cluster>
and <Layout::VerticalStack>
. Currently, both are supported, but @size
will be dropped in the next release.
Bug Fixes
- Ensure full-width-on-mobile cluster always wraps (c558d25)
- Introduce wrapper element for cluster to avoid scrollbars (6c4d66b)
Note: This change means that you can no longer apply outer-html classes to <Layout::Cluster>
. See #124 for details.