UNPKG

systelab-components

Version:

systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.

30 lines (29 loc) 1.29 kB
import { AbstractComboBox } from '../combobox/abstract-combobox.component'; import { ChangeDetectorRef, OnInit, Renderer2 } from '@angular/core'; import { I18nService } from 'systelab-translate'; import * as i0 from "@angular/core"; declare class Element { id: string; description: string; constructor(id: string, description: string); } export declare class GenderSelect extends AbstractComboBox<Element> implements OnInit { myRenderer: Renderer2; chRef: ChangeDetectorRef; i18nService: I18nService; showAll: boolean; showUnknown: boolean; private readonly descriptionAll; private readonly descriptionUnknown; private readonly descriptionMale; private readonly descriptionFemale; constructor(myRenderer: Renderer2, chRef: ChangeDetectorRef, i18nService: I18nService); ngOnInit(): void; getInstance(): Element; getDescriptionField(): string; getCodeField(): string; getIdField(): string; static ɵfac: i0.ɵɵFactoryDeclaration<GenderSelect, never>; static ɵcmp: i0.ɵɵComponentDeclaration<GenderSelect, "systelab-gender-select", never, { "showAll": { "alias": "showAll"; "required": false; }; "showUnknown": { "alias": "showUnknown"; "required": false; }; }, {}, never, never, false, never>; } export {};