string match mode, group items, allow disabling URL control for certain filters - #2
string match mode, group items, allow disabling URL control for certain filters#2saitho wants to merge 5 commits into
Conversation
|
I added two new features (disable URL control for certain filters and filter groups) match-mode can be tested here: https://conan-tcg.net/cards/ |
filter-match-mode allows to define how strings should match. Options: strict (default) or contains
"substr" is deprecated and replaced by "substring"
ce3d894 to
8fd358a
Compare
|
New attribute |
Add new setting
filter-match-modeto control how strings should be matched.Per default it matches strictly (string completely equals the input).
But it allows matching substrings:
<filter-container oninit delimiter="," filter-mode="any" filter-match-mode="contains">or restrict it to input named "title":
<filter-container oninit delimiter="," filter-mode="any" filter-match-mode-title="contains">Additional features included: