# @heyheychicken/infinite-grid

> Fast and minimalist grid system for your Angular project.

Latest version **17.0.4** (published 2023-12-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install @heyheychicken/infinite-grid
pnpm add @heyheychicken/infinite-grid
yarn add @heyheychicken/infinite-grid
bun add @heyheychicken/infinite-grid
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 17.0.4 |
| Published | 2023-12-08 |
| First published | 2022-10-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 729.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | Antoine Duval |
| Maintainers | heyheychicken |
| Keywords | angular, javascript, typescript, grid, row, container, column |

## Links

- npm: https://www.npmjs.com/package/@heyheychicken/infinite-grid
- Repository: https://github.com/HeyHeyChicken/ng-infinite-grid
- Issues: https://github.com/HeyHeyChicken/ng-infinite-grid/issues
- npm.io page: https://npm.io/package/@heyheychicken/infinite-grid

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^2.3.0

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 17.0.4 (latest) — 2023-12-08
- 0.0.5 — 2022-10-20
- 0.0.4 — 2022-10-19
- 0.0.3 — 2022-10-18
- 0.0.2 — 2022-10-18
- 0.0.1 — 2022-10-18

## README

<div align="center">

<img src="https://raw.githubusercontent.com/HeyHeyChicken/Angular-infinite-grid/main/.github/logo.png" alt="Angular-infinite-grid" width="300">

**Angular-infinite-grid** is fast and minimalist grid system for your Angular project.<br>
</div>

## 👋 Introduction

**Angular-infinite-grid** is fast and minimalist grid system for your Angular project.<br>
The philosophy behind Angular-infinite-grid is to provide a lightweight and fast Bootstrap-style grid system.<br>
Your grid is responsive, and you can define the number of columns per line as you wish.<br>
```html
<container>
  <row>
    <column [xs]="12" [sm]="4" [md]="6" [lg]="5" [xl]="4" [xxl]="3">
      My first col content
    </column>
    <column [xs]="'auto'" text_lg="start">
      My second col content
    </column>
    <column [xs]="12" [sm]="4" [md]="2">
      My third col content
    </column>
  </row>
</container>
```

## 🔧 Prerequisites

[<img src="https://raw.githubusercontent.com/HeyHeyChicken/Angular-infinite-grid/main/.github/nodeJSLogo.png" width="18" /> Node.js](//nodejs.org/)<br/>
[<img src="https://raw.githubusercontent.com/HeyHeyChicken/Angular-infinite-grid/main/.github/npmLogo.png" width="18" /> npm](//npmjs.com/)<br/>
[<img src="https://raw.githubusercontent.com/HeyHeyChicken/Angular-infinite-grid/main/.github/angularLogo.png" width="18" /> Angular](//angular.io/)<br/>

## ⬇️ Installation

This is a [Node.js](//nodejs.org/en/) module available through the [npm registry](//www.npmjs.com/).<br>
If this is a brand new project, make sure to create an Angular project first with the [`npx ng new myProjectName` command](//angular.io/tutorial/tour-of-heroes/toh-pt0).<br>
Installation is done using the [`npm install` command](//docs.npmjs.com/getting-started/installing-npm-packages-locally):

```console
npm i @heyheychicken/infinite-grid
```

## 💼 Features

<ul>
  <li>Focus on high performance.</li>
  <li>Text alignment per breakpoint.</li>
</ul>

```html
<container>
  <row>
    <column [text_xs]="'start'" [text_md]="'center'" [text_xl]="'end'">
      ...
    </column>
  </row>
</container>
```

<ul>
  <li>Use align-self utilities on column items to individually change their alignment on the y-axis.<br/>Choose from the following options: start, end, center, baseline, or stretch (browser default).</li>
</ul>

```html
<container>
  <row>
    <column [align_self_sm]="'start'" [align_self_lg]="'baseline'" [align_self_xxl]="'end'">
      ...
    </column>
  </row>
</container>
```

<ul>
  <li>Customizable number of columns per row.<br/>By default, the number of columns is set to 12.<br/>You can modify it as you wish with the "size" attribute on the "row" element.</li>
</ul>

```html
<container>
  <row [size]="24">
    <column [xs]="16">
      ...
    </column>
    <column [xs]="8">
      ...
    </column>
  </row>
</container>
```

## 💻 Compatibility

"Angular-infinite-grid" has only been officially tested on Angular 17.

<br>
<br>

Created by [Antoine Duval (HeyHeyChicken)](//antoine.cuffel.fr) with ❤ and ☕ (chocolate) in [Mesnil-Panneville](//en.wikipedia.org/wiki/Mesnil-Panneville).

---
_Source: https://npm.io/package/@heyheychicken/infinite-grid · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
