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

well-rounded-ui

v1.4.6

Published

Well Rounded UI Inputs to beautify your web projects !

Downloads

31

Readme

Well Rounded UI Banner

Table of contents


Getting Started

Adding Package

Install Well Rounded UI from NPM:

npm i well-rounded-ui

Adding Well Rounded UI's styles

To use Well Rounded Ui's styles you have to wrap your app into WellRoundedUI component:

import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import { WellRoundedUI } from 'well-rounded-ui';

ReactDOM.createRoot(document.getElementById('root')!).render(
  <React.StrictMode>
    <WellRoundedUI>
      <App />
    </WellRoundedUI>
  </React.StrictMode>,
)

Importing Components

Import required Well Rounded UI components within your files:

import { Button } from 'well-rounded-ui';

Now you are ready to use the imported Well Rounded UI components ! 🔥

Displaying MDI Icons

To use Material Design Icons import them inside your index.html:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">

Import the latest version of the icons: https://www.jsdelivr.com/package/npm/@mdi/font

Now you will see all latest mdi icons !


Dependencies

Required Peer Dependencies

These libraries are not bundled with Well Rounded UI and required at runtime:


About Well Rounded

Compact yet powerful package meaning you won't have to spend many hours to understand how simple it is to use !

Reusable Components

Many reusable components:

  • Buttons with predefined styles
  • Inputs fields: All types are supported (text, textarea, date, select, checkboxes, etc)
  • Easy editable Spinners
  • Smooth Alerts like sweet-alert package
  • MultiSelect to select several entries
  • Modal to show more data over the page
  • Floating side bar for in depth information
  • Tabs to split your contents
  • Badges to highlight important texts
  • Customizable Table provided with a Pagination component !
  • And more to discover...

Homemade components

This package does not use bootstrap, sweet alert, multi-select, reactstrap and more but they are still available: reasons why?

I build my own bootstrap* column layout, buttons components, multi-select, sweet alert, ... It avoids the project to import useless css and packages prefering focusing the usefull features only.

*Many class names from bootstrap exist with the same name so you won't be lost !

Material Design Icons

Free to use popular icons with many new icons being added monthly. I have been using this icon library for many years always finding the perfect icon to use.

https://materialdesignicons.com/


Documentation

https://sachamarits.github.io/well-rounded-ui


Live Demo

Live demo: https://well-rounded-react-template.sachamarits.be/ Most components can be seen within: Template > Components and Template > Crud Table.