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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jetonpeche/angular-responsive

v1.1.0

Published

grid responsive comme bootstrap avec plus de fonctionnalités

Downloads

21

Readme

Angular responsive

grid container

Attributs

  • gap: gap CSS (defaut 6)
  • nbColDefault: nombre de colonnes (defaut 12)
  • nbColXs: nombre de colonnes sur taille d'écran XS et plus
  • nbColSm: nombre de colonnes sur taille d'écran SM et plus
  • nbColMd: nombre de colonnes sur taille d'écran MD et plus
  • nbColLg: nombre de colonnes sur taille d'écran LG et plus
  • nbColXl: nombre de colonnes sur taille d'écran XL
  • gridFlowDefault: Organisation des elements de la grid (defaut row)
  • gridFlowXs: Organisation des elements de la grid sur taille d'écran XS et plus
  • gridFlowSm: Organisation des elements de la grid sur taille d'écran SM et plus
  • gridFlowMd: Organisation des elements de la grid sur taille d'écran MD et plus
  • gridFlowLg: Organisation des elements de la grid sur taille d'écran LG et plus
  • gridFlowXl: Organisation des elements de la grid sur taille d'écran XL

Information

gridFlow*: voir cette page

Sub grid container

Ajouter une sous grid dans une grid

grid element

Attributs

  • class: Class CSS

  • colDefault: Taille de la colonne (defaut 1 (1 - nbCol))

  • colXs: Taille de l'element pour un écran XS et plus (1 - nbCol)

  • colSm: Taille de l'element pour un écran S et Plus (1 - nbCol)

  • colMd: Taille de l'element pour un écran MD et Plus (1 - nbCol)

  • colLg: Taille de l'element pour un écran LG et plus (1 - nbCol)

  • colXl: Taille de l'element pour un écran XL (1 - nbCol)

  • rowDefault: Nombre de lignes occupés

  • rowXs: Nombre de lignes occupés pour un écran XS et plus

  • rowSm: Nombre de lignes occupés pour un écran S et plus

  • rowMd: Nombre de lignes occupés pour un écran MD et plus

  • rowLg: Nombre de lignes occupés pour un écran LG et plus

  • rowXl: Nombre de lignes occupés pour un écran XL

Exemple

<jp-grid-container gridFlowDefault="column dense" [nbColDefault]="12" [gap]="6">
      <jp-grid-element [colMd]="6" [rowMd]="2" [rowLg]="1">
         <h4>Titre</h4>
         <p>...</p>
      </jp-grid-element>

      <jp-grid-element [colMd]="6" [rowLg]="2">
         <h4>Titre</h4>
         <p>...</p>
      </jp-grid-element>

      <jp-grid-element [colMd]="6">
         <h4>Titre</h4>
         <p>...</p>
      </jp-grid-element>
</jp-grid-container>

exemple avec des sous grid

<jp-grid-container> 
   <jp-sub-grid-container>
      <jp-grid-element [colMd]="4">Item A</jp-grid-element>
      <jp-grid-element [colMd]="8">Item B</jp-grid-element>
   </jp-sub-grid-container>

   <jp-sub-grid-container>
      <jp-grid-element [colMd]="2" [rowMd]="2">C</jp-grid-element>
      <jp-grid-element [colMd]="5">D</jp-grid-element>
      <jp-grid-element [colMd]="5">E</jp-grid-element>
   </jp-sub-grid-container>

   <jp-grid-element [colMd]="2">F</jp-grid-element>
   <jp-grid-element [colMd]="7">G</jp-grid-element>
   <jp-grid-element [colMd]="5">H</jp-grid-element>
</jp-grid-container>