UNPKG

@apexcura/ui-builder

Version:

A low-code UI builder library for dynamic form generation and reusable components built with React, Redux, Tailwind, and Ant Design.

20 lines (19 loc) 549 B
import React from 'react'; interface ACListProps { items: any[]; className?: string; itemClassName?: string; selectedItemClassName?: string; displayKey?: string; displayFormat?: string; displayRenderer?: (item: any) => React.ReactNode; valueKey?: string; onChange?: (selectedItem: any | null | any[]) => void; value?: any; compareKey?: string; multiSelect?: boolean; showSelectAll?: boolean; selectAllText?: string; } export declare const ACList: React.FC<ACListProps>; export default ACList;