The only required dependency is Angular CDK.
Install @bootkit/angular and Angular CDK libraries via npm:
npm install @bootkit/angular
Important:
Bootkit does not depend on Bootstrap.js, jQuery, Popper.js, or any other JavaScript library. Its only dependency is Angular CDK.The Angular CDK (Component Development Kit) is a library developed by Google that provides a set of tools and utilities specifically designed for building and enhancing Angular component libraries.
Import CSS
Import the CSS of Bootstrap and Angular CDK to your angular project. add following lines to the styles.scss file in your project.
/*
Import the Bootstrap CSS
If you don't use all Bootkit components, you can import a customized Bootstrap CSS file
that includes only the necessary styles
*/
@import 'bootstrap/dist/css/bootstrap.min.css';
/* Import the Angular CDK CSS (Lightweight, size < 1 KB) */
@import '@angular/cdk/overlay-prebuilt.css';