flinker-dom 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -507,14 +507,17 @@ export class List extends UIComponent {
507
507
  }
508
508
  items(fn) {
509
509
  this._itemsFn = fn;
510
+ this.render('recreateChildren');
510
511
  return this;
511
512
  }
512
513
  itemRenderer(fn) {
513
514
  this._itemRenderer = fn;
515
+ this.render('recreateChildren');
514
516
  return this;
515
517
  }
516
518
  itemHash(fn) {
517
519
  this._itemHashFn = fn;
520
+ this.render('recreateChildren');
518
521
  return this;
519
522
  }
520
523
  updateDom() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "flinker-dom",
3
3
  "description": "Free TypeScript library for writing frontend apps",
4
- "version": "1.1.1",
4
+ "version": "1.1.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/Dittner/FlinkerDOM.git"