bryntum / support

An issues-only repository for the Bryntum project management component suite which includes powerful Grid, Scheduler, Calendar, Kanban Task Board and Gantt chart components all built in pure JS / CSS / TypeScript
https://www.bryntum.com
53 stars 6 forks source link

Angular - Multiple Product guide have wrong imports in code snippets #10049

Closed khattakdev closed 1 week ago

khattakdev commented 2 weeks ago

The docs says:

import { GridProps } from '@bryntum/grid-angular-thin';

const gridProps : GridProps = {
    // Grid configuration
};

It should be:

import { BryntumGridProps } from '@bryntum/grid-angular-thin';

const gridProps : BryntumGridProps = {
    // Grid configuration
};