@doyosi/laravel
Version:
Complete JavaScript plugins collection for Laravel applications - AJAX, forms, UI components, and more
42 lines (39 loc) • 1.55 kB
JavaScript
// Export all 11 plugins
export { default as AjaxDivBox } from './AjaxDivBox.js';
export { default as AjaxTable } from './AjaxTable.js';
export { default as CodeInput } from './CodeInput.js';
export { default as DeleteContent } from './DeleteContent.js';
export { default as EditContent } from './EditContent.js';
export { default as FormSubmit } from './FormSubmit.js';
export { default as ImageInput } from './ImageInput.js';
export { default as LanguageSwitch } from './LanguageSwitch.js';
export { default as SelectDropdown } from './SelectDropdown.js';
export { default as SelectMultipleDropdown } from './SelectMultipleDropdown.js';
export { default as Toast } from './Toast.js';
// Named exports for convenience
import AjaxDivBox from './AjaxDivBox.js';
import AjaxTable from './AjaxTable.js';
import CodeInput from './CodeInput.js';
import DeleteContent from './DeleteContent.js';
import EditContent from './EditContent.js';
import FormSubmit from './FormSubmit.js';
import ImageInput from './ImageInput.js';
import LanguageSwitch from './LanguageSwitch.js';
import SelectDropdown from './SelectDropdown.js';
import SelectMultipleDropdown from './SelectMultipleDropdown.js';
import Toast from './Toast.js';
// Default export object with all 11 plugins
export default {
AjaxDivBox,
AjaxTable,
CodeInput,
DeleteContent,
EditContent,
FormSubmit,
ImageInput,
LanguageSwitch,
SelectDropdown,
SelectMultipleDropdown,
Toast
};
export const version = '1.0.0';