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

@evd-components/react-lib

v1.0.40

Published

This is a web components library from falatozz developers.

Downloads

3

Readme

EVD-components/react-lib

React components for faster development. Simple themes with unique colors and styles.

Installation

npm install @evd-components/react-lib or yarn add @evd-components/react-lib

Usage of functions

  import { removeAccents, dataFormat, isExist } from '@evd-components/react-lib';

  const accent = 'My name is Ági';
  const upper  = 'hi';
  const name   = 'john doe';
  const price  = 1200;

  dataFormat('priceFormat', price); //returns 1 200 Ft
  dataFormat('uppercaseFirst', upper); //returns 'Hi'
  dataFormat('name', name); //returns 'John Doe'

  //isExist function checks if variable has a valid content such as non empty array, non empty object etc...
  isExist(accent); //returns true
  isExist(price); //returns true
  isExist(null); //returns false
  isExist(undefined); //returns false
  isExist(' '); //returns false

  removeAccents(str); //output 'My name is Agi'

Usage of components

Some example how to use the components:.

Input

import { Input } from '@evd-components/react-lib';


<Input 
  value="value string"
  placeholder="placeholder string"
  onChange={() => alert('input changed')}
  activeColor="#333"
/>

Dropdown

import { Dropdown } from '@evd-components/react-lib';


<Dropdown
  data={dataArray} /** @param {Array} */
  placeholder="placeholder string"
  keyExtractor={(item): string => item.id}
  labelExtractor={(item): string => item.name}
  onChange={(): void => alert('input changed')}
  activeColor="#333"
/>

SearchableDropdown

import { SearchableDropdown } from '@evd-components/react-lib';


<SearchableDropdown
  data={cities} /** @param {Array} */
  placeholder="Cities"
  labelExtractor={(item): string => item.city}
  keyExtractor={(item): string => item.id}
  onChange={(selected): void => console.log('SearchableDrodown value changed')}
  activeColor="#333"
/>

Button

import { Button } from '@evd-components/react-lib';

<Button
  title="Order"
  className="primary"
  onClick={(): void => console.log('Button clicked!')}
  type="square"
  position="center"
  style={{ backgroundColor: "#fff", color: "#333", border: "1px solid #fff" }}
/>

Message

import { Message } from '@evd-components/react-lib';


<Message
  message="Ooops, something went wrong!"
  duration={3000}
  type="success"
/>