Skip to content

ricardo-a-alves-alb/Lightning-UI-Components

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Packages

No packages published

Languages

  • JavaScript 99.6%
  • Shell 0.4%