feat(core): Repeater multiple item templates implementation (#8981)

This commit is contained in:
Dimitris - Rafail Katsampas
2020-10-27 05:13:22 +02:00
committed by GitHub
parent 0bbdeaf0b5
commit b113f1916d
12 changed files with 343 additions and 21 deletions

View File

@ -1772,6 +1772,10 @@ export class Repeater extends CustomLayoutView {
itemTemplate: string | Template;
itemTemplates: string | Array<KeyedTemplate>;
itemTemplateSelector: string | ((item: any, index: number, items: any) => string);
refresh();
}