You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exposes `ignoreAccents` (`boolean | 'query' | 'target'`) on the shared
filter props, so VSelect, VAutocomplete, VCombobox, VDataTable and other
filterable components can match accent-insensitively. `defaultFilter` now
emits index-mapped match ranges, so the highlighted spans stay correct.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: packages/api-generator/src/locale/en/filter.json
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
"customKeyFilter": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified.",
5
5
"filterKeys": "Array of specific keys to filter on the item.",
6
6
"filterMode": "Controls how the results of `customFilter` and `customKeyFilter` are combined. All modes only apply `customFilter` to columns not specified in `customKeyFilter`.\n\n- **some**: There is at least one match from either the custom filter or the custom key filter.\n- **every**: All columns match either the custom filter or the custom key filter.\n- **union**: There is at least one match from the custom filter, or all columns match the custom key filters.\n- **intersection**: There is at least one match from the custom filter, and all columns match the custom key filters.",
7
+
"ignoreAccents": "Folds accents before filtering. Use `'query'` to normalize only the search term, `'target'` to normalize only the item value, or `true` for both.",
0 commit comments