0.0.8 • Published 5 years ago

@dataforall/uiforall v0.0.8

Weekly downloads
2
License
-
Repository
-
Last release
5 years ago

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

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago