JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2703
  • Score
    100M100P100Q94093F
  • License MIT

Angular package for GridNexa

Package Exports

  • @gridnexa/angular
  • @gridnexa/angular/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gridnexa/angular) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@gridnexa/angular

Angular package for GridNexa.

import { Component } from "@angular/core";
import { GridNexaAngularComponent } from "@gridnexa/angular";

@Component({
  selector: "app-root",
  standalone: true,
  imports: [GridNexaAngularComponent],
  template: `
    <grid-nexa
      [columns]="columns"
      [rows]="rows"
      [rowNumbers]="true"
      [checkboxSelection]="true"
      (rowSelectionChange)="onSelection($event)"
    />
  `,
})
export class AppComponent {
  columns = columns;
  rows = rows;

  onSelection(rows: unknown[]) {
    console.log(rows);
  }
}