ngx-ui-lib
v0.0.3
Published
ngx-ui-lib is a UI library for Angular that provides highly customisable and easy to use components to enhance the user experience, the main component is an image carousel.
Downloads
2
Readme
ngx ui lib 📚
ngx-ui-lib is a UI library for Angular that provides highly customisable and easy to use components to enhance the user experience, the main component is an image carousel.
Demo 🎉
Installation 💻
You can install ngx-ui-lib via npm:
npm i ngx-ui-lib
Usage 👨🎓👩🎓
Module🚝
Import UiImageGaleryModule
from ngx-lightbox
import { UiImageGaleryModule } from 'ngx-ui-lib';
@NgModule({
imports: [ UiImageGaleryModule ]
})
Component🪁
<ngx-ui-image-galery [images]="myImages"></ngx-ui-image-galery>
import { Images } from 'ngx-ui-lib';
myImages: Images[] = [
{
url: '../assets/images/movie1.PNG', //Your image
name: 'Character 1' //Your alt
},
{
url: '../assets/images/movie2.PNG',
name: 'Character 2'
},
{
url: '../assets/images/movie3.PNG',
name: 'Character 3'
},
]
Contribute👪
Contributions are always welcome!
For make a contribution:
Clone the project, and install dependencies.
$ git clone https://github.com/rubenperegrina/ngx-ui-lib.git
$ npm install
Create a new branch
$ git checkout -b feature/someFeature
or
$ git checkout -b hotfix/someFix
Make sure everything is running properly
Commit & push, and make a pull request!