projects/netgrif-components-core/src/lib/search/models/persistance/filter-text-segment.ts
Represents a segment of the extracted filter text
Properties |
bold |
bold:
|
Type : boolean
|
Optional |
Whether the segment should be displayed in bold font face |
segment |
segment:
|
Type : string
|
The text content Should be passed through the translate pipe |
uppercase |
uppercase:
|
Type : boolean
|
Optional |
Whether the segment should be displayed with uppercase letters |
export interface FilterTextSegment {
/**
* The text content
*
* Should be passed through the translate pipe
*/
segment: string;
/**
* Whether the segment should be displayed in bold font face
*/
bold?: boolean;
/**
* Whether the segment should be displayed with uppercase letters
*/
uppercase?: boolean;
}