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/header-rgm

v1.1.0

Published

ReX React UI Component

Downloads

19

Readme

ReX React UI Components Library

ReX React UI Component: header-rgm

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/header-rgm/

2) Choose the distribution builds

ReX Component + ReX Core (with ReX Fonts)

For projects with full ReX implementation.

import RexComponent from '@rakuten-rex/header-rgm';

ReX Component + ReX Core (without ReX Fonts)

For integration projects.

import RexComponent from '@rakuten-rex/header-rgm/without-fonts.js';

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 RexComponent from '@rakuten-rex/header-rgm/without-core.js';

How to integrate ReX in your project

A) JavaScript modules

React component (JavaScript + CSS Styles)

For plug and play components integration.

Example:

import RexComponent from '@rakuten-rex/header-rgm';

function MyComponent() {
  return <RexComponent>Hello World</RexComponent>;
}

CSS Styles only

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

Example:

import '@rakuten-rex/header-rgm/css';

function MyComponent() {
  return <h1 className="rex-core-h1 rex-h1">Hello World</h1>;
}

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/header-rgm/1.1.0/header-rgm.development.css

Production mode URL:
https://r.r10s.jp/com/rex/header-rgm/1.1.0/header-rgm.production.min.css

Single component integration

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

<!-- ReX header-rgm -->
<link href="https://r.r10s.jp/com/rex/header-rgm/1.1.0/header-rgm.production.min.css" rel="stylesheet">

Multiple component integration

Note: use header-rgm-without-core.min.css version to avoid duplicated code from ReX Core.

<!-- ReX Core -->
<link href="https://r.r10s.jp/com/rex/core/2.3.1/full-version.production.min.css" rel="stylesheet">

<!-- ReX header-rgm -->
<link href="https://r.r10s.jp/com/rex/header-rgm/1.1.0/header-rgm-without-core.production.min.css" rel="stylesheet">

Example:

<div class="rex-header-rgm">
  <h1 class="rex-core-h1 rex-h1">Welcome to React</h1>
</div>