1.2.2 • Published 5 years ago

dzam-components v1.2.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

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

ComponentDescriptionDemo
AlertAlert componentDocs

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>