UNPKG

z-react-dynamic-form

Version:

A dynamic form builder for React applications with various input types and validation

13 lines (12 loc) 410 B
import React from "react"; interface SelectDropdownContextType { openDropdownId: string | null; isDropdownOpen: (id: string) => boolean; openDropdown: (id: string) => void; closeDropdown: (id: string) => void; } export declare const SelectDropdownProvider: React.FC<{ children: React.ReactNode; }>; export declare const useSelectDropdownContext: () => SelectDropdownContextType; export {};