Skip to content

Releases: dennisameling/muuri-angular

v0.3.4

08 May 19:26
Compare
Choose a tag to compare
  • Update dependencies to their latest versions

v0.3.2

21 Jan 16:25
Compare
Choose a tag to compare

Includes a dependency updates which fixes a security issue.

v0.3.1

15 Dec 11:29
Compare
Choose a tag to compare

This version only contains security updates for dependencies.

v0.3.0

14 Oct 13:50
Compare
Choose a tag to 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

<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

30 Sep 12:22
Compare
Choose a tag to compare

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

16 Sep 11:42
Compare
Choose a tag to compare

This version is just to test auto-publishing to NPM 🚀

0.1.0

16 Sep 11:03
Compare
Choose a tag to 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

0.0.6

10 Sep 13:54
Compare
Choose a tag to compare

Updates the minimal Muuri version and provides a potential fix for overlapping items (#5). To update using NPM, simply run npm update muuri-angular.

0.0.4

16 Jul 18:43
Compare
Choose a tag to compare

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.