import * as React from 'react'; import { type ComponentsOverrides } from '@mui/material/styles'; import { type ChangeEvent } from 'react'; import { type SelectProps, type FormControlProps } from '@mui/material'; import { type ChoicesProps, type RaRecord } from 'ra-core'; import type { CommonInputProps } from './CommonInputProps'; import { type SupportCreateSuggestionOptions } from './useSupportCreateSuggestion'; /** * An Input component for a select box allowing multiple selections, using an array of objects for the options * * Pass possible options as an array of objects in the 'choices' attribute. * * By default, the options are built from: * - the 'id' property as the option value, * - the 'name' property as the option text * @example * const choices = [ * { id: 'programming', name: 'Programming' }, * { id: 'lifestyle', name: 'Lifestyle' }, * { id: 'photography', name: 'Photography' }, * ]; * * * You can also customize the properties to use for the option name and value, * thanks to the 'optionText' and 'optionValue' attributes. * @example * const choices = [ * { _id: 123, full_name: 'Leo Tolstoi', sex: 'M' }, * { _id: 456, full_name: 'Jane Austen', sex: 'F' }, * ]; * * * `optionText` also accepts a function, so you can shape the option text at will: * @example * const choices = [ * { id: 123, first_name: 'Leo', last_name: 'Tolstoi' }, * { id: 456, first_name: 'Jane', last_name: 'Austen' }, * ]; * const optionRenderer = choice => `${choice.first_name} ${choice.last_name}`; * * * `optionText` also accepts a React Element, that can access * the related choice through the `useRecordContext` hook. You can use Field components there. * @example * const choices = [ * { id: 123, first_name: 'Leo', last_name: 'Tolstoi' }, * { id: 456, first_name: 'Jane', last_name: 'Austen' }, * ]; * const FullNameField = () => { * const record = useRecordContext(); * return ({record.first_name} {record.last_name}) * }; * }/> * * The choices are translated by default, so you can use translation identifiers as choices: * @example * const choices = [ * { id: 'programming', name: 'myroot.tags.programming' }, * { id: 'lifestyle', name: 'myroot.tags.lifestyle' }, * { id: 'photography', name: 'myroot.tags.photography' }, * ]; */ export declare const SelectArrayInput: (inProps: SelectArrayInputProps) => React.JSX.Element; export type SelectArrayInputProps = ChoicesProps & Omit & Omit & Omit & { options?: SelectProps; disableValue?: string; source?: string; onChange?: (event: ChangeEvent | RaRecord) => void; }; export declare const SelectArrayInputClasses: { chips: string; chip: string; }; declare module '@mui/material/styles' { interface ComponentNameToClassKey { RaSelectArrayInput: 'root' | 'chips' | 'chip'; } interface ComponentsPropsList { RaSelectArrayInput: Partial; } interface Components { RaSelectArrayInput?: { defaultProps?: ComponentsPropsList['RaSelectArrayInput']; styleOverrides?: ComponentsOverrides>['RaSelectArrayInput']; }; } } //# sourceMappingURL=SelectArrayInput.d.ts.map