New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

rex-text

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rex-text

ReX React UI Component

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
3
Created
Source

ReX React UI Components Library

ReX React UI Component: rex-text

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

  • Build tool: webpack 4
  • Codebase: Fork of Bootstrap project + ReX custom styles
  • Css engine: Sass
  • JavaScript component: React

How to install

npm install rex-text@1.2.0 --save

What you can do

Use this styles for any related Text content.

This are the properties you can use:

  • Text Aligment
  • Text Transform
  • Sizes
  • Weight

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

Live examples

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

https://rakuten-rex.github.io/rex-text/

JavaScript modules

React component (JavaScript + CSS Styles)

For plug and play components integration.

Example:

import 'rex-core'; // ReX Core dependency
import Text from 'rex-text';

function MyText()  {
  return 
  <Text
    align='text-left'
    transform='text-uppercase'
    size='text-large'
    weight='text-ligth'
  >
        {sampletext}
  </Text>;
}

CSS Styles only

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

Example:

import 'rex-core/css'; // ReX Core dependency
import 'rex-text/css';

function MyText() {
  return <p class="text-right text-uppercase text-extra-large text-bold">This is a sample text. Try all different options here.</p>;
}

Static HTML

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

For development mode:

<!-- ReX Core -->
<link href="https://r.r10s.jp/com/rex/rex-core/1.4.0/rex-core.development.css" rel="stylesheet">
<!-- rex-text -->
<link href="https://r.r10s.jp/com/rex/rex-text/1.2.0/rex-text.development.css" rel="stylesheet">

For production mode:

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

Example:

<p class="text-right text-uppercase text-extra-large text-bold">This is a sample text. Try all different options here.</p>

Take a look to this nice documentation pages to be more familiar with React and modern Javascript:

Official site

https://reactjs.org/docs/getting-started.html

Google Web Fundamentals (the whole site is a must to read)

https://developers.google.com/web/fundamentals/

Webpack as magic bundler

https://webpack.js.org/

Composing Software series (how to understand Funcional Programming)

https://medium.com/javascript-scene/composing-software-an-introduction-27b72500d6ea

Common React patterns

https://reactpatterns.com

Understanding Storybook with nice images

https://blog.hichroma.com/the-delightful-storybook-workflow-b322b76fd07

Some guidelines for clean code

https://americanexpress.io/clean-code-dirty-code/

Keywords

css

FAQs

Package last updated on 19 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts