angular-jsf-components
Version:
JSF Compliant Angular Components
23 lines (18 loc) • 682 B
text/typescript
import {Component, ElementRef, Input, QueryList, ViewChildren,} from '@angular/core';
import {SelectItem} from '../../objects/select-item';
import {JsfCore} from '../../superclass/jsf-core';
import {FSelectItemComponent} from '../f-select-item/f-select-item.component';
({
selector: 'f-select-items',
templateUrl: './f-select-items.component.html',
styleUrls: ['./f-select-items.component.css'],
})
export class FSelectItemsComponent extends JsfCore {
()
value: Array<SelectItem>;
(FSelectItemComponent)
items: QueryList<FSelectItemComponent>;
constructor(elementRef: ElementRef) {
super(elementRef);
}
}