matchModes.js 419 B

12345678910111213141516171819
  1. import { FilterMatchMode } from "@primevue/core/api"
  2. export const matchModes = [
  3. {
  4. name: "starts with",
  5. icon: "ph:arrow-line-left-bold",
  6. matchMode: FilterMatchMode.STARTS_WITH
  7. },
  8. {
  9. name: "contains",
  10. icon: "ph:dots-three-outline-fill",
  11. matchMode: FilterMatchMode.CONTAINS
  12. },
  13. {
  14. name: "ends with",
  15. icon: "ph:arrow-line-right-bold",
  16. matchMode: FilterMatchMode.ENDS_WITH
  17. }
  18. ]