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

antd-hidden

v1.0.6

Published

A React component to conditionally render children based on Ant Design's breakpoints or custom media queries.

Downloads

22

Readme

antd-hidden

Introducing a More Advanced Component: Unlike the traditional component that's dependent on ant-design's useBreakpoint hook. Excited to share a new, more advanced Hidden component that offers greater flexibility and control over your responsive design needs. This component is not tied to any specific design system or library, making it incredibly versatile for a wide range of applications.

Check out the component on NPM: globalkonvict/react-hidden

Check out the component on GitHub: globalkonvict/react-hidden

This standalone solution is designed to seamlessly integrate with your existing projects, providing an intuitive and straightforward approach to managing visibility across different screen sizes without relying on ant-design's breakpoint system. Perfect for projects looking for a lightweight and customizable alternative.

The antd-hidden component utilizes Ant Design's useBreakpoint hook to conditionally render children based on the viewport's breakpoints or custom media queries. This component is designed for responsive layouts, allowing developers to easily show or hide content at specific screen sizes or according to custom criteria.

Features

  • Seamless integration with Ant Design projects.
  • Supports predefined Ant Design breakpoints: xs, sm, md, lg, xl, xxl.
  • Allows for custom media query support, offering granular visibility control.
  • Dependency-free, relying only on react and antd.

Installation

Before installing antd-hidden, ensure your project includes react and antd.

Install via npm:

npm install antd-hidden

Or using yarn:

yarn add antd-hidden

Usage

To use Hidden, import it into your component and wrap the elements you want to conditionally render based on viewport size or custom media queries.

Examples

Hiding Content on Specific Breakpoints

import Hidden from 'antd-hidden';

const ExampleComponent = () => (
  <Hidden xs sm>
    <p>This text is hidden on extra small and small screens.</p>
  </Hidden>
);

Utilizing Custom Media Queries

import Hidden from 'antd-hidden';

const ExampleComponent = () => (
  <Hidden media="(max-width: 768px)">
    <p>This text is hidden on screens narrower than 768px.</p>
  </Hidden>
);

API

Props

| Prop | Type | Description | |---------|-----------------------|-----------------------------------------------------------------------------------------------------------| | xs | boolean | Hide content on screens < 576px. | | sm | boolean | Hide content on screens ≥ 576px. | | md | boolean | Hide content on screens ≥ 768px. | | lg | boolean | Hide content on screens ≥ 992px. | | xl | boolean | Hide content on screens ≥ 1200px. | | xxl | boolean | Hide content on screens ≥ 1600px. | | media | string \| string[] | Custom media query or queries. Content is hidden when the query matches. | | children | React.ReactNode | The content to be conditionally displayed based on the specified conditions. |

Contributing

Contributions are welcome to enhance antd-hidden. Feel free to submit pull requests or open issues to suggest improvements or report bugs.

License

antd-hidden is available under the MIT License. See the LICENSE file for more info.