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

@0xfacet/component-library

v1.0.10

Published

A reusable component library for Next.js applications.

Downloads

69

Readme

@0xfacet/component-library

A reusable component library for Next.js applications, designed to offer a comprehensive suite of UI components that are essential for building modern web applications. This library is developed with flexibility and customization in mind, featuring components like BlockieAvatar, Card, Carousel, and many more, to help you build your Next.js applications faster and more efficiently.

Installation

Install the component library in your project with npm or yarn:

npm install @0xfacet/component-library

or

yarn add @0xfacet/component-library

Usage

Here's how to use various components from the library in your application:

import React from "react";
import { Card, Button, Carousel } from "@0xfacet/component-library";

function App() {
  return (
    <div>
      <Card>
        <h2>Card Title</h2>
        <p>This is a card from the @0xfacet/component-library</p>
        <Button>Click Me</Button>
      </Card>
      <Carousel>{/* Carousel items */}</Carousel>
    </div>
  );
}

export default App;

Components Overview

Our component library is meticulously crafted to support a wide range of design and development needs, organized into foundational UI components and advanced Core components. This structure ensures that developers can easily access exactly what they need, from simple building blocks to complex, feature-rich components.

UI Components

Located in the ui folder, these components are the versatile building blocks of your application's UI. Designed for maximum reusability and customization, they include:

  • Accordion: Collapsible sections for efficient space use and content organization.
  • Button: The quintessential interactive element for user actions.
  • Checkbox: For user selections and toggles.
  • Dialog: Modal overlays for critical user confirmations and interactions.
  • DropdownMenu: Selectable lists for option-rich inputs.
  • Input: Text fields for user input, supporting various data types.
  • Label: Descriptive text for form elements and user interface controls.
  • RadioGroup: Exclusive selection controls for setting preferences or options.
  • Select: Dropdowns for single or multiple selections from a list.
  • Sheet: Sliding panels for secondary content or actions.
  • Spinner: A visual cue for loading processes, elegantly indicating background activities.
  • Tooltip: Contextual hints and brief messages tied to UI elements.

Core Components

These components leverage the foundational UI components to create more sophisticated, ready-to-use functionalities. They address common UI patterns and complex interactions, making them indispensable for building rich interfaces. They include:

  • Avatar: Displays user or entity profile pictures, often with status indicators.
  • Button (Enhanced): Extends the foundational Button with extended functionalities like loading states.
  • Card: A versatile container for grouping related information and actions in a clear, concise format.
  • Carousel: A dynamic component for browsing through a collection of items, images, or content.
  • CopyText: A utility component that simplifies text copying to the clipboard with a single click.
  • Grid: A layout tool for creating responsive, grid-based designs.
  • Heading: Typography component for defining hierarchical content structure.
  • Link: Enhanced navigation elements for in-app routing or external linking.
  • List: Organized display for lists of items, supporting various styles and interactions.
  • Modal (Enhanced): Extends the foundational Dialog with additional features.
  • Pagination: Navigation component for managing content spread across multiple pages.
  • Section: Layout component that provides thematic grouping for content, enhancing readability and structure.
  • SegmentedControl: A control component for toggling between different views or modes within the same context.
  • ShowMoreText: Text display with built-in mechanisms for expanding and collapsing long content.
  • Table: A component for simple data presentation.
  • Toast: Timed, non-disruptive messages for user notifications and feedback.
  • Tooltip (Enhanced): Extends the foundational Tooltip.

Importing Components

Utilize components in your project seamlessly:

// Importing UI components
import { Button as UIButton, Input } from "@0xfacet/component-library/ui";

// Importing Core components for more complex scenarios
import { Button as CoreButton, Modal } from "@0xfacet/component-library";

Our components are designed to be intuitive and flexible, catering to a broad spectrum of design requirements and ensuring that your applications remain at the forefront of modern UI design.

Integrating with Tailwind CSS

To ensure that the Tailwind CSS class names used in @0xfacet/component-library are correctly applied and compiled in your project, you need to include the library's component files in your Tailwind configuration. This step is crucial for Tailwind CSS to apply its styles to the components imported from @0xfacet/component-library.

Follow these instructions to update your tailwind.config.js file:

  1. Locate Your Tailwind Configuration File

    Open your project's tailwind.config.js file. If you do not have this file, you may need to initialize Tailwind CSS in your project first. Refer to Tailwind CSS Installation for guidance.

  2. Update the content Array

    In the tailwind.config.js file, find the content array. You will add a new pattern that matches the JavaScript files within the @0xfacet/component-library package. Add the following line to the array:

    "./node_modules/@0xfacet/component-library/**/*.js";

    After adding, your content array should look something like this:

    module.exports = {
      content: [
        // Other contents...
        "./node_modules/@0xfacet/component-library/**/*.js", // Add this line
      ],
      // Other Tailwind configuration...
    };

Contributing

We welcome contributions to make this library even better! Whether it's adding new components, fixing bugs, or improving documentation, please feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License.

Support

For support, please open an issue in the GitHub issue tracker. We'll do our best to address it as quickly as possible.