dzam-components

The Devzambra Framework project is a custom components framework to use with Angular


Keywords
framework, components, ui, Angular, css, client-side
License
MIT
Install
npm install dzam-components@1.2.2

Documentation

Devzambra Framework

codecov Build Status npm version

This is a custom UI Components Framework built with and for Angular. The intention is to have a set of ready-to-use components to speed up development of new apps.

A demo of the framework can be seen at Devzambra Framework

Please, note that this framework requires Angular 8.1 or higher.

Components

Component Description Demo
Alert Alert component Docs

Getting Started

To use any of the components of this framework, run the following command in your Angular application project.

npm i dzam-components

Then add the module you want to use to the imports array of your application module. For example, to use the AlertModule:

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule, AlertModule],
  providers: [],
  bootstrap: [AppComponent],
  schemas: []
})
export class AppModule {}

Then use the component you want to use in your html template. For example, to use the AlertComponent:

<dzam-alert></dzam-alert>