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

ebombo-ui

v1.1.2

Published

![NPM Version](https://img.shields.io/npm/v/ebombo-ui?link=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2Febombo-ui)

Downloads

283

Readme

ebombo-ui

NPM Version

React UI library packaged for NPM for ebombo, offering a collection of components designed for rapid development of user interfaces. It requires Node.js v16.

Installation

To install ebombo-ui in a Next.js project, run the following command:

npm i ebombo-ui

Then, in your project's entry file (e.g., _app.js for Next.js projects), import the stylesheet:

import "ebombo-ui/dist/ebombo.css";

Components

ebombo-ui includes a wide range of components to help you build your application:

  • Button
  • Input
  • Switch
  • Tab
  • Select
  • DatePicker
  • Check
  • Alert
  • Anchor
  • Collapsible
  • Dropdown
  • ModalConfirm
  • Paths
  • Table
  • QuillRichTextEditor
  • Toast
  • Tooltip

Development Setup

Testing Locally

To test Ebombo UI locally, follow these steps:

  1. npm run build:css [ui]
  2. npm run build [ui]
  3. npm run build:copy [ui]
  4. npm pack [ui]
  5. copy "full path + ebombo-ui-0.0.6.tgz" [ui]
  6. npm i "full path + ebombo-ui-0.0.6.tgz" --force [events]
  7. example. npm i /Users/peruhop/Projects/bombo/ebombo-ui/ebombo-ui-0.0.16.tgz --force

Generating Releases

This guide outlines the steps required to propose and merge changes within our project. Please follow these instructions carefully to ensure a smooth and efficient development process.

1. Creating a Changeset

Before proposing changes, you'll need to create a changeset that records the modifications you intend to introduce:

  • Step: On your feature branch, execute the command npx changeset.
npx changeset
  • Action: Follow the on-screen prompts to describe the changes you're making. This information is crucial for versioning and release notes.

2. Submitting a Pull Request (PR) to the red Branch

Once your changeset is prepared, the next step involves integrating your changes into the main codebase:

  • Step: Commit the changeset generated in the previous step to the .changeset directory. Ensure this commit also includes your code modifications.
  • Action: Create a PR targeting the red branch. This PR should contain both your changes and the changeset file(s).

3. Documentation Updates

Maintaining accurate documentation is essential for project usability and maintenance:

  • Requirement: If your changes affect any components or hooks, update the README.md file accordingly. Document new features or modifications under the Components or Hooks sections.

4. Merging the PR into the red Branch

After your PR has been reviewed and approved, it's time to merge it:

  • Step: Once your PR is reviewed and approved, merge it into the red branch. Ensure you follow any project-specific merge strategies or requirements.

5. Automatic Versioning and Publishing

Finalizing the change process involves automated versioning and publishing to NPM:

  • Process: Once your PR with the changeset is merged, a new PR titled chore: version package will be automatically created. Merging this PR will trigger a GitHub Action that handles the publishing of the updated package to NPM.

Additional Notes

  • Ensure that your feature branch is up to date with the red branch before creating a PR.
  • Review the project's contribution guidelines for more information on code style, commit messages, and review processes.