Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,18 @@ The `options` prop is an object with the following props
- `type` - Tabbed filter type. Can be `date` or `range`
- `field` - Field to filter
- `value` - Initial value of checkbox or dropdown filter
- `placeholder` - Dropdown filter placeholder
- `placeholder` - Dropdown filter placeholder,
- `options` - An array of options for dropdown filters. Can be strings or objects with `label` and `value` keys
- `multiple` - `true` or `false`. Whether dropdown filter can select multiple values

- `multiselect` - If any of the dropdown filters has `multiple = true`, you can use this option to tweak the multi-select look and feel
- `bg` - Multi-select background color. Any valid css color value is acceptable
- `border` - Multi-select border. Any valid css border value is acceptable
- `selectedBg` - Selected item background color. Any valid css color value is acceptable
- `selectedColor` - Selected item color. Accepts any valid css color value
- `selectedBorder` - Selected item border. Accepts any valid css border value
- `deselectIconColor` - Deselect icon color. Accepts any valid css color value

- `linking` - Configuration for converting a whole table row into a link
- `enabled` - True or false to enable/disable linking
- `link` - A function called with row data and returns a router-link `:to` prop value
Expand Down
Loading