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.
- package/dist/esm/components.js +3 -0
- package/package.json +1 -1
package/dist/esm/components.js
CHANGED
|
@@ -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() {
|