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

applab-grid

v0.0.1

Published

Readme

AppLab's Grid Library

Installation

Install applab-grid with npm

  npm i applab-grid --save

Implementation

In the your module importa and add to imports the applabGridModule

import { applabGridModule } from 'applab-grid';

imports: [
    ...
    applabGridModule,
    ...
],

API Reference

Container

  <applab-container>
    .......................
  </applab-container>

| Description | | :-----------------------------------------: | |Container with 50px padding on top and bottom| |and dynamic padding of 5% on left and right. |

Rows

  <applab-rows [cols]="10">
    .......................
  </applab-rows>

| Parameter | Type | Description | | :-------- | :------- | :-------------------------------- | | [cols] | number | Required. Number of culums for row |

colums

    <applab-col [size]="10" [sizeXS]="10" 
                [sizeS]="10" [sizeM]="10" 
                [sizeL]="10" [sizeXL]="10">
        .......................
    </applab-col>

| Parameter | Type | Description | | :-------- | :------- | :-------------------------------- | | [size] | number | Required. Container size automatic | | [sizeXS] | number | Container size of 0px to 575px | | [sizeS] | number | Container size equal or mayor to 576px | | [sizeM] | number | Container size equal or mayor to 768px | | [sizeL] | number | Container size equal or mayor to 992px | | [sizeXL] | number | Container size equal or mayor to 1200px| | [rows] | number | rows using column 1 to 12 Default 1 |

Note: The size of a container must be equal to or less than the number of columns in a row and the tag(s) must be inside a tag and the max number of columns on row is 12

Usage/Examples

12 columns (max number of columns)

app-module

import { applabGridModule } from 'applab-grid';

imports: [
    ...
    applabGridModule,
    ...
],

app.component.html

<applab-container>
    <applab-rows [cols]="12">
        <applab-col   [size]="12" 
                      [sizeXS]="12" 
                      [sizeS]="6" 
                      [sizeM]="6" 
                      [sizeL]="4" 
                      [sizeXL]="3">
           contain
        </applab-col>

        <applab-col [size]="5">
            contain
        </applab-col>
    </applab-rows>
</applab-container>

10 colums

app-module

import { applabGridModule } from 'applab-grid';

imports: [
    ...
    applabGridModule,
    ...
],

app.component.html

<applab-container>
    <applab-rows [cols]="10">
        <applab-col [size]="10" 
                    [sizeXS]="10" 
                    [sizeS]="10" 
                    [sizeM]="10" 
                    [sizeL]="10" 
                    [sizeXL]="10">
           contain
        </applab-col>

        <applab-col [size]="5">
            contain
        </applab-col>
    </applab-rows>
</applab-container>