Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lightningjs/ui-components

Package Overview
Dependencies
Maintainers
7
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningjs/ui-components

A collection of reusable UI components aimed at reducing the development cycle required to build apps with Lightning.

  • 1.1.0-beta.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.2K
decreased by-18.18%
Maintainers
7
Weekly downloads
 
Created
Source

Lightning UI Components

A collection of reusable UI components aimed at reducing the development cycle required to build apps with Lightning.

See the Storybook

Quick Start

Install from NPM:

npm install --save @lightningjs/ui-components

Import components as ES Modules

import { FocusManager } from '@lightningjs/ui-components';

Use components in your application

import from '@lightningjs/ui-components';
import { FocusManager } from '@lightningjs/ui-components';

class MyComponent extends lng.Component {
  static _template() {
    return {
      FocusManager: {
        type: FocusManager,
        direction: 'row',
        children: []
      }
    };
  }
  _getFocused() {
    return this.tag('FocusManager');
  }
};

Questions?

Join the Lightning Community on Slack

FAQs

Package last updated on 20 Sep 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc