@gridengine/angular-datagrid-enterprise
v0.12.0
Published
Pro/Enterprise features for the GridEngine Angular data grid (license-gated).
Readme
@gridengine/angular-datagrid-enterprise
Pro / Enterprise features for the GridEngine Angular data grid,
license-gated with offline Ed25519 verification via
@gridengine/license-core.
This package re-exports the entire open-source @gridengine/angular-datagrid
surface, so you only need a single import.
Install
npm install @gridengine/angular-datagrid-enterpriseRegister your license key
Set the key once at bootstrap:
import { bootstrapApplication } from '@angular/platform-browser';
import { provideGridEngineLicense } from '@gridengine/angular-datagrid-enterprise';
import { App } from './app/app';
bootstrapApplication(App, {
providers: [provideGridEngineLicense('YOUR-LICENSE-KEY')],
});Use the licensed grid
Wrap the base grid in <gd-data-grid-pro>. It stays fully functional without a
license (evaluation mode); an unlicensed grid simply shows a small watermark
and logs a one-time console warning.
<gd-data-grid-pro [licenseKey]="optionalPerInstanceKey">
<gd-data-grid [rowData]="rows" [columnDefs]="cols" />
</gd-data-grid-pro>Licensing
This is soft licensing, not DRM: verification is synchronous and
client-side. The bundle ships only the public verifying key, so it can check a
key's authenticity but never mint one. See LICENSE.
Purchase a license at https://angular.gridengine.dev/pricing.
