gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
16 lines (15 loc) • 417 B
JavaScript
// Bootstrap styles
import "./bs";
// Import the IE fix
import "./ie";
// Bootstrap Components
import * as Components from "./components";
export { Components };
// Icons
import { Icons, IconTypes } from "./icons";
export { Icons, IconTypes };
// Bootstrap Global library
const BS = { Components, Icons, IconTypes };
window["GD"] = window["GD"] || BS;
// Custom Elements
import "./custom-elements.js";