| 12345678910111213141516171819 |
- import { FilterMatchMode } from "@primevue/core/api"
- export const matchModes = [
- {
- name: "starts with",
- icon: "ph:arrow-line-left-bold",
- matchMode: FilterMatchMode.STARTS_WITH
- },
- {
- name: "contains",
- icon: "ph:dots-three-outline-fill",
- matchMode: FilterMatchMode.CONTAINS
- },
- {
- name: "ends with",
- icon: "ph:arrow-line-right-bold",
- matchMode: FilterMatchMode.ENDS_WITH
- }
- ]
|