Socket
Socket
Sign inDemoInstall

@lightningtv/solid-ui

Package Overview
Dependencies
Maintainers
0
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningtv/solid-ui

A shared library of components for the LightningJS Solid Framework.


Version published
Weekly downloads
363
decreased by-13.37%
Maintainers
0
Weekly downloads
 
Created
Source

Solid UI

This library contains a suite of themeable UI components written for the SolidJS Lightning Framework. check them out in our storybook docs.

npm version

Getting Started

If you haven't already, follow the steps found here to bootstrap your SolidJS Lightning app. Then:

  1. install this package and the base theme with your package manager of choice
pnpm add @lightningtv/solid-ui @lightningtv/l3-ui-theme-base # or npm/yarn
  1. add the theme package as an alias in your vite config(see the theming docs for more information on this)
// vite.config.js
  resolve: {
    alias: {
      theme: '@lightningtv/l3-ui-theme-base',
    }
  },
  1. and finally, use a component
// App.jsx
import { Button } from '@lightningtv/solid-ui';
<App>
  <Button>a button!</Button>
</App>;

Reporting a Bug

If you come across a bug in this library, please open an issue with a detailed description of what you've encountered

Development

If you don't have pnpm

npm install -g pnpm

Run the solid storybook dev environment:

pnpm i
pnpm dev

Run the solid sandbox environment:

pnpm sandbox

Theming

Theming in the context of solid-ui is a system for providing a set of values to control the look and feel of the components. Head over to our theming documentation for more information

FAQs

Package last updated on 09 Oct 2024

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