@e11/angular
v1.1.4
Published
Do `npm i @e11/angular --save` to install the latest build
Downloads
4
Readme
E11Angular
Install
Do npm i @e11/angular --save
to install the latest build
Then import the styles in your app with @import '@e11/angular/theme/core.theme';
and include the default theme with @include e11-default-theme();
And lastly import the module in your AppModule or SharedModule like this:
import { NgModule } from '@angular/core';
import { E11AngularModule } from '@e11/angular';
@NgModule({
declarations: [
AppComponent
],
imports: [
E11AngularModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Components in library
- Alerts
alerts
- Progress-bar
progress-bar
- Loading Spinner
spinner
- Slide Toggle
toggle
Services in library
- Alert
used to manage the alerts component
- Language
used to manage languages in the local storage
Override style
You should check the _variables.theme.scss
file, and in your styles override any variable you want:
:root {
--e11-color-primary: red;
}