Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lendi-ui/breakpoint

Package Overview
Dependencies
Maintainers
46
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lendi-ui/breakpoint

Breakpoint CSS style with `between`, `gte` and `map`.

  • 5.2.4
  • latest
  • npm
  • Socket score

Version published
Maintainers
46
Created
Source

@lendi-ui/breakpoint

Breakpoint CSS style with between, gte and map.

Installation

yarn add @lendi-ui/breakpoint

Testing

When testing with getBreakpoint or useBreakpoint it is advised to mock @lendi-ui/breakpoint as window.matchMedia is not available on the JSDOM. If you need to test resize functionality, you can instead add something like the following code to your tests to mock the window.matchMedia function:

import { match } from 'css-mediaquery';

const width: number = 1201;

window.matchMedia = jest.fn().mockImplementation((query: string) => ({
  matches: match(query, { type: 'screen', width: `${width}px` }),
}));

Usage

  • between receives two parameters. The first one is the smaller breakpoint and the second one is the larger breakpoint. The CSS style will be between these two breakpoints.
import { between } from '@lendi-ui/breakpoint';
const Component = styled.div`
  ${between('xs', 'md')`
    color: red;
  `} ${between('lg', 'xl')`
    color: green;
  `}
  color: pink;
`;
  • gte receives one parameter that CSS style will be larger than this breakpoint.
import { gte } from '@lendi-ui/breakpoint';
const Mobile = styled.code`
  ${gte('sm')`
    background-color: ${getColour('fill', 'accent')};
  `};
`;
  • map will match different breakpoint style for this property.
import { map } from '@lendi-ui/breakpoint';
const TextWithDifferentColoursForEachBreakpoint = styled(Text)`
  ${map({ xs: 'red', sm: 'green', md: 'pink', lg: '#ffee12' }, (value: Colors) => `color: ${value}`)};
`;

FAQs

Package last updated on 05 Sep 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc