mirror of https://github.com/twbs/bootstrap.git
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
/**
|
|
* --------------------------------------------------------------------------
|
|
* Bootstrap index.umd.js
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
* --------------------------------------------------------------------------
|
|
*/
|
|
|
|
import Alert from './src/alert.js'
|
|
import Button from './src/button.js'
|
|
import Carousel from './src/carousel.js'
|
|
import Collapse from './src/collapse.js'
|
|
import Datepicker from './src/datepicker.js'
|
|
import Dialog from './src/dialog.js'
|
|
import Dropdown from './src/dropdown.js'
|
|
import Offcanvas from './src/offcanvas.js'
|
|
import Strength from './src/strength.js'
|
|
import OtpInput from './src/otp-input.js'
|
|
import Popover from './src/popover.js'
|
|
import ScrollSpy from './src/scrollspy.js'
|
|
import Tab from './src/tab.js'
|
|
import Toast from './src/toast.js'
|
|
import Toggler from './src/toggler.js'
|
|
import Tooltip from './src/tooltip.js'
|
|
|
|
export default {
|
|
Alert,
|
|
Button,
|
|
Carousel,
|
|
Collapse,
|
|
Datepicker,
|
|
Dialog,
|
|
Dropdown,
|
|
Offcanvas,
|
|
Strength,
|
|
OtpInput,
|
|
Popover,
|
|
ScrollSpy,
|
|
Tab,
|
|
Toast,
|
|
Toggler,
|
|
Tooltip
|
|
}
|