Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@dataforall/uiforall

coldiary10.0.8TypeScript support: included

UI Library project, primarly to be used on the Dataforall project (http://dataforall.fr/)

readme

UIForAll

UI Library project, primarly to be used on the Dataforall project (http://dataforall.fr/)

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