mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
19 lines
501 B
Handlebars
19 lines
501 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<div
|
|
data-test-flex-masonry
|
|
class="flex-masonry {{if @withSpacing "with-spacing"}} flex-masonry-columns-{{@columns}}"
|
|
{{did-insert this.captureElement}}
|
|
{{did-insert this.reflow}}
|
|
{{did-update this.reflow @columns}}
|
|
{{window-resize this.reflow}}>
|
|
{{#each @items as |item|}}
|
|
<div data-test-flex-masonry-item class="flex-masonry-item">
|
|
{{yield item (action this.reflow)}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|