UNPKG

@elrayes/dynamic-form-builder

Version:

A flexible and customizable dynamic form builder with theming support

18 lines 662 B
/** * Dynamic Form Builder - Main Entry Point * * This file exports all the components of the Dynamic Form Builder package. */ // Import and re-export jQuery import $ from 'jquery'; export { $ }; // Export the main DynamicForm class export { default as DynamicForm } from './dynamic-form-builder'; // Export theme-related classes export { default as Theme } from './themes/Theme'; export { default as ThemeManager } from './themes/ThemeManager'; export { default as Bootstrap5Theme } from './themes/Bootstrap5Theme'; export { default as TailwindTheme } from './themes/TailwindTheme'; // Export types export * from './types'; //# sourceMappingURL=index.js.map