šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

@dataforall/uiforall

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dataforall/uiforall

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

0.0.8
latest
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
Ā 
Created
Source

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

FAQs

Package last updated on 06 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts