ontotext-reusable-ui-components
Version:
Unified reusable UI components designed for the Ontotext ecosystem.
18 lines (17 loc) • 469 B
TypeScript
/**
* Configuration of the search input and mat-chip integration.
*/
export declare class SearchFieldConfiguration {
/**
* Determines whether a selected phrase can be selected
*/
static selectable: boolean;
/**
* Determines whether a selected phrase can be deleted from list
*/
static removable: boolean;
/**
* A list of characters that can be used as a phrase separator
*/
static separatorKeysCodes: number[];
}