@dataforall/uiforall
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i @dataforall/uiforall

Weekly Downloads

9

Version

0.0.8

License

none

Unpacked Size

594 kB

Total Files

47

Last publish

Collaborators

  • coldiary