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

@rakuten-rex/search-bar

v1.0.1

Published

ReX React UI Component

Downloads

5

Readme

ReX React UI Components Library

ReX React UI Component: search-bar

This project is part of ReX Design Language and it can be used to create React UI Components.
For more information visit:

Github
https://github.com/rakuten-rex

NPM
https://www.npmjs.com/org/rakuten-rex

How it was built:

  1. webpack 4 (static module bundler)
  2. HTML5
  3. CSS3 & Sass (Normalize.css + Fork of Bootstrap project + ReX custom styles)
  4. JavaScript ES6 Modules & Components based on React

How to install

npm install @rakuten-rex/[email protected] --save

Getting started

1) Storybook Live examples

For a complete guide of properties for React and HTML classes please visit the Storybook site:

https://rakuten-rex.github.io/search-bar/

2) Choose the distribution builds

ReX Component Only (without ReX Core)

For integration projects using Static HTML or if you use a build tools without duplicated CSS classes removal.

Note: Requires global import of ReX Core.

import { Prominent, Secondary } from '@rakuten-rex/search-bar';

ReX Component + ReX Core (with ReX Fonts)

For projects with full ReX implementation.

import { Prominent, Secondary } from '@rakuten-rex/search-bar/with-core';

ReX Component + ReX Core (without ReX Fonts)

For integration projects.

import { Prominent, Secondary } from '@rakuten-rex/search-bar/without-fonts';

How to integrate ReX in your project

A) JavaScript modules

React component (JavaScript + CSS Styles)

For plug and play components integration.

Example:

import ProminentSearchBar from '@rakuten-rex/search-bar';

function MyComponent() {
  return <SearchBar />;
}

CSS Styles only

For your own JavaScript integration (React, Vue, Angular, etc.) or Static HTML.

Example:

import '@rakuten-rex/search-bar/css';

function MyComponent() {
  return (
    <div class="rex-searchbar-prominent">
      <input type="text" class="rex-core-textfield rex-searchbar__text-field" aria-label="Search" placeholder="Search" value="" />
      <button class="rex-core-button rex-searchbar__search-btn" type="submit" style="background-color:#bf0000">
        <svg viewBox="0 0 24 24" class="rex-searchbar__search-btn__search-icon" width="16px" height="16px" fill="#ffffff">
          <path fill-rule="evenodd" clip-rule="evenodd" d="M9.75 16.5A6.758 6.758 0 0 1 3 9.75 6.757 6.757 0 0 1 9.75 3a6.758 6.758 0 0 1 6.75 6.75 6.758 6.758 0 0 1-6.75 6.75zm0-15a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5zM17.146 16.085a9.85 9.85 0 0 1-1.06 1.061L21.44 22.5l1.06-1.061-5.354-5.354z">
          </path>
        </svg>
      </button>
    </div>
  );
}

B) Static HTML

Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS.

You can choose between development (dev comments and unminified) or production (without dev comments and minified) mode.

We recommend to use production mode if your build process doesn't support to switch between both.

Development mode URL:
https://r.r10s.jp/com/rex/search-bar/1.0.1/search-bar.development.css

Production mode URL:
https://r.r10s.jp/com/rex/search-bar/1.0.1/search-bar.production.min.css

Single component integration

Add it from our CDN into your HTML template or HTML static page.

<!-- ReX search-bar -->
<link href="https://r.r10s.jp/com/rex/search-bar/1.0.1/search-bar.production.min.css" rel="stylesheet">