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

gcs-flexbox

v1.1.1

Published

`gcs-flexbox` is a React and styled-components based Flexbox layout component with customizable colors. It allows you to create responsive and flexible layouts with ease, while also providing a way to customize the colors used in the components.

Downloads

34

Readme

gcs-flexbox

gcs-flexbox is a React and styled-components based Flexbox layout component with customizable colors. It allows you to create responsive and flexible layouts with ease, while also providing a way to customize the colors used in the components.

Installation

Install the package using npm:

npm install gcs-flexbox

Usage

Importing Components

Import the Row and Column components from the package:

import React from 'react';
import { Row, Column, mergeColors } from 'gcs-flexbox';
import defaultColors from 'gcs-flexbox/constants/colors';

Using the Components

Use the Row and Column components to create a flexible layout. You can also customize the colors by using the mergeColors function.

import React from 'react';
import { Row, Column, mergeColors } from 'gcs-flexbox';

const userColors = {
  "primary-500": "#ff5733",
  "secondary-500": "#33c4ff",
  ...
};

const colors = mergeColors(userColors);

const App = () => (
  <Row backgroundColor="primary-500">
    <Column size={6} difference={2}>
      Content here
    </Column>
  </Row>
);

export default App;

Props

Row Component

| Prop | Type | Description | | --------------- | ---------------------------------------- | ----------------------------------------------- | | wrap | TWrap or { [K in TMedia]?: TWrap } | Flex wrap property | | direction | TDirection or { [K in TMedia]?: TDirection } | Flex direction property | | content | TContent or { [K in TMedia]?: TContent } | Justify content property | | align_items | TItems or { [K in TMedia]?: TItems } | Align items property | | align_content | TItems or { [K in TMedia]?: TItems } | Align content property | | gap | number or { [K in TMedia]?: number } | Gap property | | row_gap | number or { [K in TMedia]?: number } | Row gap property | | column_gap | number or { [K in TMedia]?: number } | Column gap property | | width | string | Width of the row | | minWidth | string | Minimum width of the row | | height | string | Height of the row | | backgroundColor | TColors | Background color of the row | | padding | string | Padding of the row | | borderRadius | string | Border radius of the row |

Column Component

| Prop | Type | Description | | ------------ | ----------------------------------------- | ---------------------------------------------- | | wrap | TWrap or { [K in TMedia]?: TWrap } | Flex wrap property | | direction | TDirection or { [K in TMedia]?: TDirection } | Flex direction property | | content | TContent or { [K in TMedia]?: TContent } | Justify content property | | align_items | TItems or { [K in TMedia]?: TItems } | Align items property | | align_content | TItems or { [K in TMedia]?: TItems } | Align content property | | gap | number or { [K in TMedia]?: number } | Gap property | | row_gap | number or { [K in TMedia]?: number } | Row gap property | | column_gap | number or { [K in TMedia]?: number } | Column gap property | | size | number or { [K in TMedia]?: number } | Size of the column | | difference | number or { [K in TMedia]?: number } | Difference in size for responsive adjustments |

Custom Colors

You can customize the colors used in the components by providing your own color values using the mergeColors function. This function takes an object with your custom colors and merges them with the default colors.

import { mergeColors } from 'gcs-flexbox';

const userColors = {
  "primary-500": "#ff5733",
  "secondary-500": "#33c4ff",
  ...
};

const colors = mergeColors(userColors);

License

This project is licensed under the ISC License.