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

@ludens-reklame/react-crisscross

v1.2.1

Published

A flexible layout component for React based on CSS flexbox

Downloads

2

Readme

GitHub release GitHub license Build Status PRs Welcome GitHub issues

Table of contents

Installation

With yarn

yarn add @ludens-reklame/react-crisscross

With npm

npm install @ludens-reklame/react-crisscross


Usage

import Layout from '@ludens-reklame/react-crisscross';

<Layout container>
  <Layout item>{/* Content */}</Layout>
</Layout>;

Properties

You have accesss to all the same properties as in flexbox.

Base properties

| Property | Value | Description | | --------- | ------- | ---------------------------------------------------------------------------------- | | container | boolean | Makes the element a flex container, and allows all container properties to be used | | item | boolean | Makes the element a flex item, and allows all item properties to be used | | inline | boolean | Make a flex container use display: inline-flex |

Media queries

| Property | Value | Description | | -------- | ------ | ------------------------------------------------------------ | | xs | object | Use container and/or item properties on the xs media query | | sm | object | Use container and/or item properties on the sm media query | | md | object | Use container and/or item properties on the md media query | | lg | object | Use container and/or item properties on the lg media query | | xl | object | Use container and/or item properties on the xl media query |

Container properties

| Property | Value | Description | | ---------- | ----------------------------------------------------------------------------------------- | -------------------------------------------------- | | direction | 'row' (default), 'column', 'row-reverse', 'column-reverse' | Same as the flex-direction property in flexbox. | | justify | 'flex-start' (default), 'flex-end', 'center', 'space-between', 'space-around' | Same as the justify-content property in flexbox. | | alignItems | 'stretch' (default), 'flex-start', 'flex-end', 'center', 'baseline' | Same as the align-items property in flexbox. | | wrap | 'nowrap' (default), 'wrap', 'wrap-reverse' | Same as the flex-wrap property in flexbox. | | gap | number | Size of gap between each flex item. |

Item properties

| Property | Value | Description | | --------- | ----------------------------------------------------------------------------------------- | ---------------------------------------------- | | flex | string (eg. '1 0 auto') | Same as the flex property in flexbox. | | grow | number | Same as the flex-grow property in flexbox. | | shrink | number | Same as the flex-shrink property in flexbox. | | alignSelf | 'auto' (default), 'flex-start', 'flex-end', 'center', 'baseline', 'stretch' | Same as the flex-grow property in flexbox. | | order | number | Same as the order property in flexbox. |


Settings

Sometimes you want to override the default settings for the layout, such as media queries. React Crisscross ships with a module that can help you inject custom settings.

Layout Provider

import Layout, { LayoutProvider } from '@ludens-reklame/react-crisscross';

const mySettings = {
  mediaQueries: {
    lg: 1500
  }
}

<LayoutProvider settings={mySettings}>
  <Layout container>
    <Layout item>
      {/* Content */}
    </Layout>
  </Layout>
</LayoutProvider>

Default settings

These settings can be overwritten by the LayoutProvider.

const settings = {
  mediaQueries: {
    xs: 0,
    sm: 600,
    md: 960,
    lg: 1280,
    xl: 1920
  },
  columns: 12
};

Development

Although all instructions for development in React Crisscross use yarn as package manager, npm can also be used.

Install

$ git clone [email protected]:ludens-reklamebyra/react-crisscross.git
$ cd react-crisscross
$ yarn

Storybook

React crisscross uses storybook as a visual UI-test. To run the stories, use the command:

yarn storybook

Unit tests

React crisscross is tested with snapshots using Jest. Run the test suite using the command:

yarn test

To run test suite in watch mode use:

yarn test:watch

Snapshots

When you have to do breaking changes to React crisscross, the snapshots needs to be updated, or else they will fail the tests. You can do this by running the command:

yarn test:update-snapshots

Formatting

Formatting is automatically done using Prettier. It runs a new formatting on every commit, using a pre-commit hook.

Contributing

Have a look at our contribution guidelines.