npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@eveworld/ui-components

v0.0.8

Published

React UI components used across EVE Frontier's dApps

Downloads

113

Readme

@eveworld/ui-components

EVE Frontier UI Components Library

This package contains the UI Component library for EVE Frontier dApps. Built with TypeScript, Material UI, and Tailwind CSS, it offers a range of reusable components that are easy to integrate into EVE Frontier dApps.

Table of Contents

  1. Installation 📦
  2. Usage 🔧
  3. Styling with Tailwind CSS 🎨
  4. Components 🧩
  5. License 📜

Installation 📦

To install the library, run the following command:

pnpm install @eveworld/ui-components

Usage 🔧

To use a component from this library, import it into your project:

import { SmartAssemblyInfo } from "@eveworld/ui-components";

Then use it in your React component:

<SmartAssemblyInfo />

Styling with Tailwind CSS 🎨

This library utilizes Tailwind CSS for styling. To ensure that the styles are properly applied, the tailwind.config.js file must be configured to include the path to this component library.

Configuring Tailwind

Add the path to the UI component library in the content array of tailwind.config.js:

module.exports = {
  content: [
    // ...other file paths
    "./node_modules/@eveworld/ui-components/**/*.{js,ts,jsx,tsx}",
  ],
  // ...other Tailwind configurations
};

This step is necessary for Tailwind to process the classes used in the library.

Components 🧩

The library includes a variety of components designed for EVE Frontier dApps. Some of the key components are:

<ClickToCopy />
<ConnectWallet />
<ErrorNotice />
<EveAlert />
<EveButton />
<EveLayout />
<EveLinearBar />
<EveLoadingAnimation />
<EveScroll />
<Header />
<SmartAssemblyInfo />
<EveInput />

Component Props and Types

Some components require props that are defined using types from the @eveworld/types package. To use these components, ensure you import the necessary types.

Example:

import { SmartAssemblyInfo } from "@eveworld/ui-components";
import { SmartAssembly } from "@eveworld/types";

const smartAssemblyData: SmartAssembly = {
  // populate with required data
};

const App = () => (
  <div>
    <SmartAssemblyInfo {...smartAssemblyData} />
  </div>
);

Static Assets 🖼️

The library also includes static SVG assets that can be accessed from @eveworld/ui-components/assets. These assets can be used for icons, logos, and other visual elements in your application.

To use an SVG asset, import it into your project like this:

import { Logo } from '@eveworld/ui-components/assets';

const App = () => (
  <div>
    <Logo />
  </div>
);

License 📜

This project is licensed under the MIT License. See the LICENSE file for details.