mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
/*
|
|
* This is the main entry point.
|
|
*
|
|
* You can import other modules here, including external packages. When bundling using rollup you can mark those modules as external and have them excluded or, if they have a jsnext:main entry in their package.json (like this package does), let rollup bundle them into your dist file.
|
|
*
|
|
* at your application entry point. This is necessary for browsers that do not yet support some ES2015 runtime necessities such as Symbol. We do this in `index-iife.js` for our iife rollup bundle.
|
|
*/
|
|
|
|
// Bootstrap components
|
|
import "bootstrap/js/src/alert";
|
|
import "bootstrap/js/src/button";
|
|
import "bootstrap/js/src/carousel";
|
|
import "bootstrap/js/src/collapse";
|
|
import "bootstrap/js/src/modal";
|
|
import "bootstrap/js/src/popover";
|
|
import "bootstrap/js/src/scrollspy";
|
|
import "bootstrap/js/src/tab";
|
|
import "bootstrap/js/src/tooltip";
|
|
import "bootstrap/js/src/util";
|
|
|
|
// invalidComponentMatches is currently disabled due to https://github.com/rollup/rollup/issues/428#issuecomment-170066452
|
|
import "./checkbox";
|
|
import "./checkboxInline";
|
|
import "./collapseInline";
|
|
import "./file";
|
|
import "./radio";
|
|
import "./radioInline";
|
|
import "./select";
|
|
import "./switch";
|
|
import "./text";
|
|
import "./textarea";
|
|
import "./dropdown";
|
|
|
|
import "./drawer";
|
|
|
|
import "./ripples";
|
|
import "./autofill";
|
|
import "./bootstrapMaterialDesign";
|