All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.hooks.useOptions.d.ts Maven / Gradle / Ivy

The newest version!
import * as React from 'react';
import type { FieldNames, RawValueType } from '../Select';
/**
 * Parse `children` to `options` if `options` is not provided.
 * Then flatten the `options`.
 */
declare const useOptions: (options: OptionType[], children: React.ReactNode, fieldNames: FieldNames, optionFilterProp: string, optionLabelProp: string) => {
    options: OptionType[];
    valueOptions: Map;
    labelOptions: Map;
};
export default useOptions;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy