UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

23 lines (22 loc) 893 B
export declare class FilterMatchMode { static readonly STARTS_WITH = "startsWith"; static readonly CONTAINS = "contains"; static readonly NOT_CONTAINS = "notContains"; static readonly ENDS_WITH = "endsWith"; static readonly EQUALS = "equals"; static readonly NOT_EQUALS = "notEquals"; static readonly IN = "in"; static readonly LESS_THAN = "lt"; static readonly LESS_THAN_OR_EQUAL_TO = "lte"; static readonly GREATER_THAN = "gt"; static readonly GREATER_THAN_OR_EQUAL_TO = "gte"; static readonly BETWEEN = "between"; static readonly IS = "is"; static readonly IS_NOT = "isNot"; static readonly BEFORE = "before"; static readonly AFTER = "after"; static readonly DATE_IS = "dateIs"; static readonly DATE_IS_NOT = "dateIsNot"; static readonly DATE_BEFORE = "dateBefore"; static readonly DATE_AFTER = "dateAfter"; }