@qatalog/react-flex
TypeScript icon, indicating that this package has built-in type declarations

0.2.2 • Public • Published

@qatalog/react-flex

  1. What's this?
  2. Why should I use this package?
  3. What CSS-in-JS library does this package use?
  4. How do I use it?
  5. What is the full list of props?
  6. What versions of Node does it support?
  7. Is there a changelog?
  8. What license is it released under?

What's this?

A browser-agnostic flexbox component with CSS gap polyfill support. Uses feature detection to ensure consistent rendering across platforms.

Why should I use this package?

There are 3 main reasons to use this package compared to other similar packages in the ecosystem.

  1. Simplicity: This package provides only a single component called Flex which renders a single DOM element with flexbox. This allows users to compose however many layers of flexboxes they want. This package also keeps the props of the component simple and straightforward.
  2. Flexibility: This package neither assumes any responsive design logic nor hardcodes measurements. This allows users to provide these values when using the component making it usable in all scenarios.
  3. Compatibility: This package supports browsers that do not support gap CSS property by using margin CSS properties and custom calculation logic. This allows users to fearlessly use the flexbox grid design everywhere.

What CSS-in-JS library does this package use?

While we do use styled-components, we are open to any contributions that makes this package independent of styling libraries.

How do I use it?

Simply import it and use it as any regular component.

import Flex from '@qatalog/react-flex';

const Button = ({}) => {
  return (
    <Flex direction="row" alignItems="center" wrap="wrap" gap={8}>
      <div>One</div>
      <div>Two</div>
    </Flex>
  );
};

export default Button;

What is the full list of props?

All the below props are optional.

  • alignContent: Value for CSS style property align-content
  • alignItems: Value for CSS style property align-items
  • justifyContent: Value for CSS style property justify-content
  • direction: Value for CSS style property flex-direction
  • wrap: Value for CSS style property flex-wrap
  • inline: Extrapolates value for CSS style property display. Defaults to false.
    • false: Value is flex
    • true: Value is inline-flex
  • gap: Value of gap between children in px units. Defaults to 0. Uses gap CSS style property if supported.
  • as: Renders the component as this type of DOM element. Type of prop is React.ElementType. Defaults to div.

What versions of Node does it support?

Minimum supported node version is 14.

Is there a changelog?

Yes.

What license is it released under?

MIT.

Readme

Keywords

none

Package Sidebar

Install

npm i @qatalog/react-flex

Weekly Downloads

0

Version

0.2.2

License

MIT

Unpacked Size

29.4 kB

Total Files

15

Last publish

Collaborators

  • qatalog-code
  • pavan-sunkara-qatalog
  • leo-mendoza-qatalog
  • phil-booth-qatalog