FilterFieldForm โ
Source: client/lib/theme/vueda-tailwind/form/index.js
Submit row at the foot of the form. Apply alone (right-aligned) when adding; Remove + Apply split apart when editing an active filter.
Vue component: FilterFieldForm
| Slot | Default classes | Description |
|---|---|---|
| actions | callback | Submit row at the foot of the form. Apply alone (right-aligned) when adding; Remove + Apply split apart when editing an active filter. |
| remove | text-destructive | Remove control, shown only when editing an active filter; destructive text since it discards the filter. |
actions โ
Submit row at the foot of the form. Apply alone (right-aligned) when adding; Remove + Apply split apart when editing an active filter.
Callback:
javascript
({ showRemove }) => ["mt-1 flex items-center gap-2", showRemove ? "justify-between" : "justify-end"]Source: client/lib/theme/vueda-tailwind/form/FilterFieldForm.theme.js:19
remove โ
Remove control, shown only when editing an active filter; destructive text since it discards the filter.
Default classes:
text-destructive
Source: client/lib/theme/vueda-tailwind/form/FilterFieldForm.theme.js:23