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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@masterteam/gantt

v0.0.3

Published

Original, dependency-light enterprise Gantt chart for Angular 21. It includes a headless scheduling engine, virtualized tree-grid/timeline rendering, editing, dependencies, resources, exports, theming, i18n/RTL, accessibility-oriented keyboard flows, a

Downloads

144

Readme

@masterteam/gantt

Original, dependency-light enterprise Gantt chart for Angular 21. It includes a headless scheduling engine, virtualized tree-grid/timeline rendering, editing, dependencies, resources, exports, theming, i18n/RTL, accessibility-oriented keyboard flows, and summary task rollups.

This is not a Syncfusion wrapper. The package has no Syncfusion runtime dependency; xlsx is the only third-party runtime dependency used for Excel export.

Quick Start

import { Component } from "@angular/core";
import { Gantt, type GanttConfig } from "@masterteam/gantt";

@Component({
  selector: "app-plan",
  standalone: true,
  imports: [Gantt],
  template: `<mt-gantt [data]="tasks" [config]="config" />`,
})
export class PlanComponent {
  readonly tasks = [
    { id: 1, name: "Design", start: "2026-07-06", duration: 5, progress: 60 },
    {
      id: 2,
      name: "Build",
      start: "2026-07-13",
      duration: 10,
      dependency: "1FS",
    },
  ];

  readonly config: GanttConfig = {
    taskFields: {
      id: "id",
      name: "name",
      startDate: "start",
      duration: "duration",
      progress: "progress",
      dependency: "dependency",
    },
  };
}

Give the host element a real height. The component fills its container:

<section style="height: 640px">
  <mt-gantt [data]="tasks" [config]="config" />
</section>

Defaults

When config.columns is omitted, the grid uses a WBS-first project-plan default:

  1. WBS
  2. Task Name
  3. Start
  4. Finish
  5. Duration
  6. Progress

Task Name remains the tree/expander column by default. If a host supplies a WBS-first custom column set, keep the same behavior with treeColumnIndex: 1.

Summary Formulas

readonly config: GanttConfig = {
  taskFields,
  summaryFormula: {
    mode: 'auto',
    durationMode: 'working-span',
    progressMode: 'duration-weighted',
    baselineMode: 'child-extents',
    rollUpWork: true,
    costField: 'cost',
    customFields: {
      risk: {
        aggregator: 'worstStatus',
        statusOrder: ['low', 'medium', 'high'],
      },
    },
  },
};

The visual editor is exported as GanttSummaryFormulaEditor for host workbench or drawer UIs. Use [showActions]="false" for live-edit experiences where changes apply immediately through two-way [(config)].

i18n And RTL

Built-in English strings are embedded. Hosts can register asset dictionaries from the package:

import ar from "@masterteam/gantt/assets/i18n/ar.json";

Then pass locale, translations, and rtl through GanttConfig:

readonly config: GanttConfig = {
  taskFields,
  locale: 'ar',
  rtl: true,
  translations: ar,
};

Styling

Runtime styling is bundled with the Angular components. The package also ships @masterteam/gantt/assets/gantt.css as an optional asset for hosts that keep a central package-asset import list.

Documentation

Full documentation lives in docs/gantt/. The showcase routes under /gantt/* are the source of truth for usage patterns and demos.