UNPKG

@gzued/antd-compiled

Version:

Pre-bundled Ant Design 4.x and related dependencies for @gzued packages

12 lines (11 loc) 499 B
import * as React from 'react'; import type { FieldNames, RawValueType } from '../Select'; /** * Parse `children` to `options` if `options` is not provided. * Then flatten the `options`. */ export default function useOptions<OptionType>(options: OptionType[], children: React.ReactNode, fieldNames: FieldNames, optionFilterProp: string, optionLabelProp: string): { options: OptionType[]; valueOptions: Map<RawValueType, OptionType>; labelOptions: Map<React.ReactNode, OptionType>; };