1.1.4 • Published 4 years ago

@e11/angular v1.1.4

Weekly downloads
-
License
-
Repository
github
Last release
4 years ago

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;
}
1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.5

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago