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/table

v2.0.5

Published

<div align="center">

Downloads

10

Readme

Neoburst logo

Introducing @neoburst/table: Your Angular Data Management Solution

Are you an Angular developer looking for an intuitive way to manage and display data tables in your applications? Look no further! We're excited to introduce the @neoburst/table npm package, brought to you by Neoburst. Whether you're a beginner or an experienced Angular user, our feature-packed table component is here to make data visualization a breeze.

Features

  • Effortless Data Management: Creating tables in Angular has never been easier. With @neoburst/table, you can seamlessly integrate data from various sources such as arrays, observables or even signals, eliminating the hassle of manual data manipulation.

  • Interactive Sorting and Ordering: Empower your users with the ability to sort and reorder table columns effortlessly. Our component provides an intuitive interface for dynamic data organization, enhancing the user experience.

  • Simplified Column Grouping: Take control of your data presentation by grouping columns logically. Present related data together, giving users a comprehensive view of the information at hand.

  • Personalize with Ease: Styling your table to align with your application's aesthetics is a breeze. Tailor the appearance of the table to match your design effortlessly, ensuring a seamless integration within your Angular project.

Getting Started

  1. Installation: Install the @neoburst/table package via npm using the command:
npm install @neoburst/table

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

@import "@neoburst/table";
  1. Creating a Table: Follow our intuitive documentation to create a table instance within your Angular application. Define your data structure, specify column attributes, and enable features like sorting and grouping with ease. Below you will find a quick setup for the nb-table component:
<!-- .html -->

<nb-table [dataSource]="data">
  @for (column of columns; track: column) {
  <th *nbColumnHeader="column" [nbHeaderCell]="column">{{ column }}</th>
  <td *nbColumnCell="column; let dataItem = dataItem; let row = row" [nbCell]="column" [nbCellRow]="row">{{ dataItem[column] }}</td>
  }

  <tr *nbHeaderRow></tr>
  <tr *nbRow nbTableRow (click)="clickRow($event)"></tr>
</nb-table>
// .ts

interface Person {
  id: number;
  name: string;
  age: number;
  height: number;
  weight: number;
}

columns = ['id', 'name', 'age', 'height', 'weight'];
data: Array<Person> = [
  { id: 1, name: 'Harry', age: 30, height: 183, weight: 86 },
  { id: 2, name: 'Barry', age: 34, height: 186, weight: 76 },
  { id: 3, name: 'Larry', age: 63, height: 165, weight: 46 },
  { id: 4, name: 'Carry', age: 28, height: 168, weight: 63 },
  { id: 5, name: 'Perry', age: 30, height: 148, weight: 54 },
  { id: 6, name: 'Jerry', age: 58, height: 178, weight: 75 },
  { id: 7, name: 'Kerri', age: 38, height: 183, weight: 76 },
];

clickRow(event: any): void {
  console.log(event);
}
  1. Displaying the Table: Displaying your table is a breeze. Incorporate the table component within your Angular templates, and let our package handle the heavy lifting of data rendering and interaction.

  2. HTML Table Integration: Need to display your table as an HTML table? We've got you covered. Our package provides seamless integration options, allowing you to leverage your existing knowledge while benefiting from advanced data management capabilities.

For All Skill Levels

Whether you're diving into Angular development for the first time or you're a seasoned pro, @neoburst/table offers a seamless solution to your data visualization needs. Our mission is to empower you with tools that enhance your projects without causing confusion. The documentation and resources we provide are designed to ensure you have the guidance required to make the most out of our package. With a focus on clarity and simplicity, we're here to enable you to achieve your data management goals effortlessly.

So why wait? Elevate your Angular applications with the power of @neoburst/table. Get started today and unlock a new level of data management possibilities.

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