import { ICaInput } from "../../../ca-input/config"; export class FilterDropdownFields { static stateSearch: ICaInput = { name: 'search', type: 'text', label: 'Search State', placeholderIcon: 'ic_search', placeholderInsteadOfLabel: true, blackInput: true } static dispatcher: ICaInput = { name: 'search', type: 'text', label: 'Search Dispatcher', placeholderIcon: 'ic_search', placeholderInsteadOfLabel: true, blackInput: true } static dateFrom: ICaInput = { name: 'datepicker', type: 'text', label: 'From', isDropdown: true, placeholderIcon: 'date', isRequired: true, customClass: 'datetimeclass', } static dateTo: ICaInput = { name: 'datepicker', type: 'text', label: 'To', isDropdown: true, placeholderIcon: 'date', isRequired: true, customClass: 'datetimeclass', } }