Releases: dennisameling/muuri-angular
v0.3.4
v0.3.2
Includes a dependency updates which fixes a security issue.
v0.3.1
This version only contains security updates for dependencies.
v0.3.0
This version adds the following two features:
- Automatically rebuild the grid when the GridOptions config changes
- Add new event: itemCreated
New event: itemCreated
You can now get the grid item when it is created:
app.component.html
<div muuriGridItem (itemCreated)="onItemCreated($event)"></div>
app.component.ts
import Item from 'muuri';
onItemCreated(item: Item) {
// Now you can do anything you want with the grid item
}
v0.2.0
This version introduces support for removing grid elements 🚀
Let's say if you have the following code:
<button id="add-item-button" (click)="addToGrid()">+ Add new block</button>
<br><br>
<div #grid class="grid" muuriGrid [config]="layoutConfig">
<div class="grid-item" muuriGridItem *ngFor="let item of blockItems">
<div class="grid-item-content">
{{ item }}
</div>
</div>
</div>
If you now remove an item from the blockItems
array, the corresponding Muuri grid item is also removed.
v0.1.1
This version is just to test auto-publishing to NPM 🚀
0.1.0
This version adds support for Muuri's Events ✨
You can now subscribe to all of Muuri's events. For more details, please see the dedicated section in the docs: https://github.com/dennisameling/muuri-angular#advanced-usage
0.0.6
0.0.4
This is the first GitHub release, which provides a basic Angular wrapper for the Muuri JavaScript library. In future releases, we'll provide changelogs with every release.