This package provides a variaty of useful components and tools that is based on bootstrap.
<image-input>which is a component that provides an image input that supports drag and drop and provides anImageInputValue<image-gallery>which is a component that provides gallery image input that uses<image-input>provides an array ofGalleryImageValuewhich extendsImageInputValue<advanced-select>
[popover]is a directive that adds popover on the component used on that is fully customizable and supports rtl, you can pass content asstringorng-template-ref, and also assign the[popoverPlacement]<input advanceInput><div *loading="boolean">
First things first we need to install bootstrap styles in angular.
run this command:
npm i bootstrap-rtlized
Then in styles.scss
...
import '~bootstrap-rtlized';
...
Some components and tools needs Font Awesome to be installed.
run this command:
npm i @monabbous/ng-bootstrap
and then import in your module
...
imports : [
...
NabbousBootstrapComponentsModule,
...
],
...
coming soon