Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork5
Releases: dennisameling/muuri-angular
v0.3.4
Compare
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.3.2
Compare
Includes a dependency updates which fixes a security issue.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.3.1
Compare
This version only contains security updates for dependencies.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.3.0
Compare
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
<divmuuriGridItem(itemCreated)="onItemCreated($event)"></div>
app.component.ts
importItemfrom'muuri';onItemCreated(item:Item){// Now you can do anything you want with the grid item}
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.2.0
Compare
This version introduces support forremoving grid elements 🚀
Let's say if you have the following code:
<buttonid="add-item-button"(click)="addToGrid()">+ Add new block</button><br><br><div#gridclass="grid"muuriGrid[config]="layoutConfig"><divclass="grid-item"muuriGridItem*ngFor="let item of blockItems"><divclass="grid-item-content"> {{ item }}</div></div></div>
If you now remove an item from theblockItems
array, the corresponding Muuri grid item is also removed.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.1.1
Compare
This version is just to test auto-publishing to NPM 🚀
Assets2
Uh oh!
There was an error while loading.Please reload this page.
0.1.0
Compare
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
Assets2
Uh oh!
There was an error while loading.Please reload this page.
0.0.6
Compare
Updates the minimal Muuri version and provides a potential fix for overlapping items (#5). To update using NPM, simply runnpm update muuri-angular
.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
0.0.4
Compare
This is the first GitHub release, which provides a basic Angular wrapper for theMuuri JavaScript library. In future releases, we'll provide changelogs with every release.
Assets2
Uh oh!
There was an error while loading.Please reload this page.