Skip to content

Releases: PolymerElements/iron-list

v2.0.0

15 May 22:52
Compare
Choose a tag to compare

🎉 Port to a hybrid Polymer 2.0 element 🎉

v1.4.6

03 May 19:14
Compare
Choose a tag to compare
v1.4.6

v1.4.5

16 Mar 22:11
Compare
Choose a tag to compare
  • Fixes a potential memory leak introduced in v1.4.4

v1.4.4

14 Mar 23:23
Compare
Choose a tag to compare

v1.4.3

09 Mar 00:59
Compare
Choose a tag to compare

v1.4.2

28 Feb 19:09
Compare
Choose a tag to compare

v1.4.1

11 Feb 07:02
Compare
Choose a tag to compare

v1.4.0

17 Jan 20:25
Compare
Choose a tag to compare
<dom-module id="custom-list">
  <template>
    <style>
      :host {
        display: block;
      }
      iron-list {
        @apply(--layout-fit);
      }
    </style>

    <iron-list items="[[items]]" as="item">
      <slot></slot>
    </iron-list>
  </template>
</dom-module>

Then you can place the template in the light DOM of custom-list:

<custom-list items="[[items]]">
   <template>
     <div>[[item]]</div>
   </template>
</custom-list>

Fixes #356, #373, #235, #139

v1.3.15

13 Dec 19:42
Compare
Choose a tag to compare
  • Fixes #362. Support for RTL in grid mode.

v1.3.14

09 Nov 23:52
Compare
Choose a tag to compare
v1.3.14