UIForAll
http://dataforall.fr/)
UI Library project, primarly to be used on the Dataforall project (
Components
- ResourceListComponent
- Display data painlessly within a Material-based table
- EmptyStateComponent
- Display text and imnage when there is no data
Installing
Warning: we strongly recommend node >=v8
$> npm install @dataforall/uiforall
You may have peer dependencies to install as well.
You can import the library in any Angular module:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import everything
import { UIForAllModule } from '@dataforall/uiforall';
// Import only specific module
import { ResourceListModule } from '@dataforall/uiforall';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
UIForAllModule,
ResourceListModule,
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
Once the library is imported, you can use its components in the app.
License
MIT