UNPKG

@vladimirdukelic/revolutionary-ui-factory

Version:

Revolutionary UI Factory System v2 - Generate ANY UI component for ANY framework with 60-95% code reduction

21 lines (20 loc) 786 B
/** * UI Component Libraries Configuration for Revolutionary UI Factory * Comprehensive list of all installed UI libraries and design systems */ export interface UILibraryConfig { id: string; name: string; version: string; category: 'component-library' | 'design-system' | 'utility' | 'css-framework'; description: string; documentation: string; packageName: string; frameworks?: string[]; features: string[]; icon?: string; } export declare const UI_LIBRARIES: UILibraryConfig[]; export declare const getUILibraryById: (id: string) => UILibraryConfig | undefined; export declare const getUILibrariesByCategory: (category: string) => UILibraryConfig[]; export declare const getUILibrariesByFramework: (framework: string) => UILibraryConfig[];