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.
23 lines (22 loc) • 952 B
TypeScript
import { AbstractComboBox } from '../combobox/abstract-combobox.component';
import { ChangeDetectorRef, Renderer2 } from '@angular/core';
import { PreferencesService } from 'systelab-preferences';
import * as i0 from "@angular/core";
declare class Element {
id: string;
description: string;
constructor(id: string, description: string);
}
export declare class ModulabSelect extends AbstractComboBox<Element> {
myRenderer: Renderer2;
chRef: ChangeDetectorRef;
preferencesService?: PreferencesService;
constructor(myRenderer: Renderer2, chRef: ChangeDetectorRef, preferencesService?: PreferencesService);
getInstance(): Element;
getDescriptionField(): string;
getCodeField(): string;
getIdField(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<ModulabSelect, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ModulabSelect, "systelab-select", never, {}, {}, never, never, false, never>;
}
export {};