@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
14 lines (13 loc) • 776 B
TypeScript
import React from 'react';
import type { SelectProps } from '../../ui/Select/interfaces';
import { FormItemProps } from '../Item';
export interface SelectInputProps extends SelectProps, FormItemProps {
name: string;
onChange?: (value: any) => void;
}
export declare const SelectInput: React.FC<SelectInputProps> & {
inputName: "ArrayInput" | "BooleanInput" | "ColorPickerInput" | "DatePickerInput" | "DateRangePickerInput" | "DraggerInput" | "EditorInput" | "FilePictureInput" | "MultilineTextInput" | "PasswordInput" | "SelectInput" | "TextInput" | "TimePickerInput" | "SlugInput" | "TranslatableInput" | "AjaxSelectInput" | "RadioInput";
} & {
Option: import("rc-select/lib/Option").OptionFC;
OptGroup: import("rc-select/lib/OptGroup").OptionGroupFC;
};