1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from "react";
6 import { Field } from "redux-form";
7 import { TextField } from "~/components/text-field/text-field";
8 import { Checkbox, FormControlLabel } from '@material-ui/core';
10 export const SearchBarTypeField = () =>
16 export const SearchBarClusterField = () =>
20 label="Cluster name" />;
22 export const SearchBarProjectField = () =>
26 label="Project name" />;
28 export const SearchBarTrashField = () =>
39 export const SearchBarDataFromField = () =>
45 export const SearchBarDataToField = () =>
51 export const SearchBarKeyField = () =>
57 export const SearchBarValueField = () =>
63 export const SearchBarSaveSearchField = () =>
72 label="Save search query" />;
74 export const SearchBarQuerySearchField = () =>
78 label="Search query name" />;