Select filter

One or many options; a long list gets its own search box.

is / is not
const definition: FilterDefinition = {
	kind: "select",
	key: "status",
	label: "Status",
	multiple: true,
	allowExclusion: true,
	options: [
		{ value: "sent", label: "Sent" },
		{ value: "failed", label: "Failed" },
	],
};