X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c33dec559093730850c578cb37e0606d33a9ca8a..2ab43f230662c3f5d7d7ff75c08bdab0c66b22b0:/src/views-components/form-fields/search-bar-form-fields.tsx diff --git a/src/views-components/form-fields/search-bar-form-fields.tsx b/src/views-components/form-fields/search-bar-form-fields.tsx index 837f13cb..777fa824 100644 --- a/src/views-components/form-fields/search-bar-form-fields.tsx +++ b/src/views-components/form-fields/search-bar-form-fields.tsx @@ -2,26 +2,26 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from "react"; +import React from "react"; import { Field, WrappedFieldProps, FieldArray } from 'redux-form'; -import { TextField, DateTextField } from "~/components/text-field/text-field"; -import { CheckboxField } from '~/components/checkbox-field/checkbox-field'; -import { NativeSelectField } from '~/components/select-field/select-field'; -import { ResourceKind } from '~/models/resource'; -import { HomeTreePicker } from '~/views-components/projects-tree-picker/home-tree-picker'; -import { SEARCH_BAR_ADVANCED_FORM_PICKER_ID } from '~/store/search-bar/search-bar-actions'; -import { SearchBarAdvancedPropertiesView } from '~/views-components/search-bar/search-bar-advanced-properties-view'; -import { TreeItem } from "~/components/tree/tree"; -import { ProjectsTreePickerItem } from "~/views-components/projects-tree-picker/generic-projects-tree-picker"; -import { PropertyKeyField, } from '~/views-components/resource-properties-form/property-key-field'; -import { PropertyValueField } from '~/views-components/resource-properties-form/property-value-field'; +import { TextField, DateTextField } from "components/text-field/text-field"; +import { CheckboxField } from 'components/checkbox-field/checkbox-field'; +import { NativeSelectField } from 'components/select-field/select-field'; +import { ResourceKind } from 'models/resource'; +import { HomeTreePicker } from 'views-components/projects-tree-picker/home-tree-picker'; +import { SEARCH_BAR_ADVANCED_FORM_PICKER_ID } from 'store/search-bar/search-bar-actions'; +import { SearchBarAdvancedPropertiesView } from 'views-components/search-bar/search-bar-advanced-properties-view'; +import { TreeItem } from "components/tree/tree"; +import { ProjectsTreePickerItem } from "views-components/projects-tree-picker/generic-projects-tree-picker"; +import { PropertyKeyField, } from 'views-components/resource-properties-form/property-key-field'; +import { PropertyValueField } from 'views-components/resource-properties-form/property-value-field'; import { connect } from "react-redux"; -import { RootState } from "~/store/store"; +import { RootState } from "store/store"; export const SearchBarTypeField = () => ); @@ -71,20 +71,26 @@ export const SearchBarTrashField = () => component={CheckboxField} label="In trash" />; +export const SearchBarPastVersionsField = () => + ; + export const SearchBarDateFromField = () => ; + component={DateTextField as any} />; export const SearchBarDateToField = () => ; + component={DateTextField as any} />; export const SearchBarPropertiesField = () => ; + component={SearchBarAdvancedPropertiesView as any} />; export const SearchBarKeyField = () => ; @@ -101,5 +107,5 @@ export const SearchBarSaveSearchField = () => export const SearchBarQuerySearchField = () => ;