As this is currently written an entire GridOptions must be provided.
This doesn't fall in line with other Angular libraries like Angular Material where options are bound on individual attributes.
I would like to see something like this.
<div muuriGrid fillGaps rounding [horizontal]="false">
<div *ngFor="let item of blockItems" muuriGridItem>
<div>
{{ item }}
</div>
</div>
</div>
These would also need to support being updated after the grid is created in the event that a property binding is used.
As this is currently written an entire
GridOptionsmust be provided.This doesn't fall in line with other Angular libraries like Angular Material where options are bound on individual attributes.
I would like to see something like this.
These would also need to support being updated after the grid is created in the event that a property binding is used.