Udutha UI is an open source Angular v9 component library based on Vanilla Framework by Canonical.
-
Install the Angular package through npm:
npm i @fourthofaugust/udutha-ui
-
Import the
UduthaUiModule
into your Angular application's module.// Sample app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { UduthaUiModule } from '@foa/udutha-ui'; import { AppComponent } from './app.component'; @NgModule({ imports: [ BrowserModule, UduthaUiModule, ], declarations: [ AppComponent ], bootstrap: [ AppComponent ] }) export class AppModule {}
-
Add the following file to the styles array in
angular.json
"styles": [ "node_modules/@fourthofaugust/udutha-ui/src/lib/styles/udutha.scss" ]
Click here for documentation including a list of components, usage, and examples.
If you find a bug or want to request a new feature, please open a GitHub issue.
MIT