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

@neoburst/grid

v1.0.0

Published

<div align="center">

Downloads

7

Readme

Neoburst logo

Introducing @neoburst/grid: Revolutionize Your Layouts

Welcome to @neoburst/grid, the game-changer in Angular grid components! Developed by Neoburst, this npm package introduces a responsive grid that empowers Angular developers to create dynamic layouts effortlessly.

Features

  • Grid Resizing: Take control of your layout with the ability to resize grid items. Tailor your interface to fit your content, providing a truly personalized user experience.

  • Drag-Drop Functionality: Reimagine your design process by enabling drag-and-drop functionality for grid items. Effortlessly reorder elements for a seamless and intuitive layout arrangement.

Getting Started

  1. Installation: Install @neoburst/grid package via npm with the following command:
npm install @neoburst/grid

And include our predefined grid stylesheet in the root stylesheet of your project:

@import "@neoburst/grid";
  1. Creating a Responsive Grid: Dive into our comprehensive documentation to effortlessly create a responsive grid in Angular. Learn how to define the layout, configure resizing options, and implement drag-and-drop features. Below you will find a quick setup for the nb-grid component:
<!-- .html -->

<nb-grid [displayResizers]="true" (valueChange)="handleChange($event)">
  @for (tile of tiles; track tile.text) {
  <div [nbGridItem]="tile.gridItem" [nbGridItemDrag]="true">{{ tile.text }}</div>
  }
</nb-grid>
// .ts

interface Tile {
  text: string;
  gridItem: NbGridItem;
}

tiles: Tile[] = [
  { text: 'One', gridItem: { cols: 1, rows: 1 } },
  { text: 'Two', gridItem: { cols: 1, rows: 1 } },
  { text: 'Three', gridItem: { cols: 1, rows: 1 } },
  { text: 'Four', gridItem: { cols: 1, rows: 1 } },
  { text: 'Five', gridItem: { cols: 1, rows: 1 } },
  { text: 'Six', gridItem: { cols: 1, rows: 1 } },
  { text: 'Seven', gridItem: { cols: 1, rows: 1 } },
  { text: 'Eight', gridItem: { cols: 1, rows: 1 } },
  { text: 'Nine', gridItem: { cols: 1, rows: 1 } },
  { text: 'Ten', gridItem: { cols: 1, rows: 1 } },
];

handleChange(gridItems: NbGridItem[]): void {
  console.log('gridItems', gridItems);
}
  1. Displaying Your Grid: Showcase your responsive grid within Angular templates effortlessly. With our package, displaying dynamic layouts has never been more straightforward.

  2. Utilizing the Power: Learn the ins and outs of leveraging a responsive grid in Angular. From beginners to seasoned developers, @neoburst/grid caters to all skill levels, offering a powerful and intuitive solution for your layout needs.

For All Angular Users

Whether you're just starting with Angular or you're a seasoned pro, @neoburst/grid brings a new level of flexibility to your layouts. Our packages ensure you're equipped with the tools needed to unlock the full potential of your Angular applications.

Ready to transform your layouts? Dive into the future with @neoburst/grid. Start today and experience a responsive grid like never before.

Visit our documentation for in-depth guides, examples, and everything you need to get started on the path to effortless data visualization.