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

igniteui-astro-components

v0.0.19

Published

Reusable Astro components, layouts, and integrations for Infragistics / Ignite UI documentation sites. Replaces the Starlight defaults with project-specific implementations.

Readme

igniteui-astro-components

Reusable Astro components, layouts, integrations, and utilities used to build Infragistics / Ignite UI documentation sites.

This package provides the navbar, sidebar, search, page frame, and MDX components for Infragistics documentation sites, keeping the integration story simple for consumer repos.

Status: internal — published from this repo as a parallel copy of the components living in docs-template. Both trees are kept in sync until consumers migrate fully.


Installation

npm install igniteui-astro-components

astro@^5 || ^6 is required as a peer dependency.


Quick start

Add the integration to your astro.config.ts:

import { defineConfig } from 'astro/config';
import { createDocsSite } from 'igniteui-astro-components/integration';

export default createDocsSite({
  site: 'https://my-org.github.io/my-docs',
  title: 'My Library',
  description: 'Reference docs for My Library.',
  platform: 'angular',          // 'angular' | 'react' | 'web-components' | 'blazor' | …
  navLang: 'en',                // 'en' | 'jp' | 'kr'
  source: {
    tocPath:   './my-docs/toc.yml',
    docsDir:   './my-docs/en/components',
    imagesDir: './my-docs/en/images',
  },
});

Use the layout in a route:

---
import DocsLayout from 'igniteui-astro-components/layouts/DocsLayout.astro';
import DocsSidebar from 'igniteui-astro-components/components/sidebar/DocsSidebar.astro';

const { slug } = Astro.params;
---
<DocsLayout title="Hello" hasSidebar currentSlug={slug}>
  <DocsSidebar slot="sidebar" currentSlug={slug} />
  <slot />
</DocsLayout>

Import MDX components in a page or mdx-components.ts:

export { default as ApiLink }      from 'igniteui-astro-components/components/mdx/ApiLink.astro';
export { default as ApiRef }       from 'igniteui-astro-components/components/mdx/ApiRef.astro';
export { default as PlatformBlock } from 'igniteui-astro-components/components/mdx/PlatformBlock.astro';
export { default as Sample }       from 'igniteui-astro-components/components/mdx/Sample.astro';

Pull in the base styles once (e.g. from your root layout or astro.config):

import 'igniteui-astro-components/styles/custom.scss';
import 'igniteui-astro-components/styles/ig-theme.scss';

Fonts

createDocsSite (and the playground) configure Instrument Sans and JetBrains Mono via Astro's built-in font API (stable since Astro 6). This is better than a <link> to Google Fonts because fonts are downloaded and self-hosted at build time — no third-party CDN request, no user data sent to Google, faster load (one fewer network round-trip), and an auto-generated fallback stack that prevents layout shift (CLS).

DocsLayout injects the @font-face declarations and <link rel="preload"> tags into <head> via the <Font> component, and references the fonts through the CSS custom properties var(--font-sans) and var(--font-mono).

Not using createDocsSite? Add the font configuration manually to your own astro.config.*:

import { defineConfig, fontProviders } from 'astro/config';

export default defineConfig({
  fonts: [
    { provider: fontProviders.google(), name: 'Instrument Sans', cssVariable: '--font-sans', weights: ['400..700'], styles: ['normal', 'italic'] },
    { provider: fontProviders.google(), name: 'JetBrains Mono',  cssVariable: '--font-mono', weights: ['100..800'], styles: ['normal', 'italic'] },
  ],
});

Prop-driven usage (without siteMetaIntegration)

By default, DocsLayout, DocsSidebar, and DocsSubHeader read their data (site title, sidebar tree, product links) from the virtual:docs-template/site-meta virtual module that is provided by siteMetaIntegration / createDocsSite.

If you are not using the integration — for example when consuming the package via a GitHub dependency in a project that builds its own config — every piece of data can be passed directly as a prop instead.

DocsLayout

| Prop | Overrides | |------|-----------| | siteTitle | virtual:docs-template/site-metatitle |

---
import DocsLayout from 'igniteui-astro-components/layouts/DocsLayout.astro';
---
<DocsLayout title="Toast" siteTitle="My Library" hasSidebar currentSlug="components/toast">
  <slot />
</DocsLayout>

DocsSidebar

| Prop | Overrides | |------|-----------| | items | virtual:docs-template/site-metasidebar |

---
import DocsSidebar from 'igniteui-astro-components/components/sidebar/DocsSidebar.astro';
import type { SidebarEntry } from 'igniteui-astro-components/lib/sidebar/types';

const sidebar: SidebarEntry[] = [
  {
    label: 'Getting Started',
    collapsed: false,
    items: [
      { label: 'Introduction', slug: '' },
      { label: 'Installation', slug: 'installation' },
    ],
  },
  {
    label: 'Components',
    collapsed: false,
    items: [
      { label: 'Toast', slug: 'components/toast' },
    ],
  },
];
---
<DocsSidebar items={sidebar} currentSlug="components/toast" />

DocsSubHeader

| Prop | Overrides | |------|-----------| | siteTitle | virtual:docs-template/site-metatitle | | productLinks | virtual:docs-template/site-metaproductLinks | | sidebarItems | virtual:docs-template/site-metasidebar (used for breadcrumb) |

---
import DocsSubHeader from 'igniteui-astro-components/components/DocsSubHeader.astro';

const productLinks = [
  { label: 'Angular', href: '/angular/', platform: 'angular' },
  { label: 'React',   href: '/react/',   platform: 'react' },
];
---
<DocsSubHeader
  siteTitle="My Library"
  productLinks={productLinks}
  currentSlug="components/toast"
/>

Combining prop-driven components without the integration

A minimal setup that needs no virtual modules or Astro integration:

---
// src/layouts/MyDocsLayout.astro
import DocsLayout from 'igniteui-astro-components/layouts/DocsLayout.astro';
import DocsSidebar from 'igniteui-astro-components/components/sidebar/DocsSidebar.astro';
import DocsToc from 'igniteui-astro-components/components/DocsToc.astro';
import type { SidebarEntry } from 'igniteui-astro-components/lib/sidebar/types';
import type { MarkdownHeading } from 'astro';

interface Props {
  title: string;
  currentSlug: string;
  headings?: MarkdownHeading[];
}

const { title, currentSlug, headings } = Astro.props;

const sidebar: SidebarEntry[] = [/* … your tree … */];
---
<DocsLayout
  title={title}
  siteTitle="My Library"
  hasSidebar
  currentSlug={currentSlug}
>
  <DocsSidebar slot="sidebar" items={sidebar} currentSlug={currentSlug} />
  {headings && <DocsToc slot="toc" headings={headings} offsetTarget=".docs-subheader" />}
  <slot />
</DocsLayout>

The virtual modules still need to be resolvable at build time (they are declared in src/virtual-modules.d.ts). When not using siteMetaIntegration, add stub exports to your astro.config.ts using the playground's virtualDocsModules pattern — see playground/astro.config.mjs for a reference implementation.


What's included

Astro integration

| Export | Purpose | | --- | --- | | igniteui-astro-components/integration | createDocsSite(), siteMetaIntegration(), staticImagesIntegration(), buildSidebarFromToc() re-export |

Layouts

| Export | Purpose | Docs | | --- | --- | --- | | igniteui-astro-components/layouts/DocsLayout.astro | Top-level page shell — global nav + sub-header + optional sidebar + main frame + footer | README |

Chrome components

| Export | Purpose | Docs | | --- | --- | --- | | …/components/GlobalNavBar.astro | IG global navigation bar | README | | …/components/GlobalFooter.astro | IG global footer | README | | …/components/DocsSubHeader.astro | Secondary fixed bar — site title + breadcrumb + product links + search | README | | …/components/Search.astro | Pagefind-powered full-text search modal | README | | …/components/ThemingWidget.astro | Theming widget | README | | …/components/MobileSidebarToggle.astro | Mobile-only sidebar disclosure button | README | | …/components/DocsToc.astro | "On this page" table of contents with scroll-spy | README |

Sidebar suite

| Export | Purpose | Docs | | --- | --- | --- | | …/components/sidebar/DocsSidebar.astro | Composition root — filter input + recursive tree | README | | …/components/sidebar/SidebarTree.astro | Recursive <ul> of items | README | | …/components/sidebar/SidebarItem.astro | One link or <details> group | README | | …/components/sidebar/SidebarFilterInput.astro | Filter input markup | README | | …/components/sidebar/sidebar-filter | <sidebar-filter> custom element + cross-navigation hooks | README | | …/lib/sidebar/types | SidebarEntry, SidebarGroup, SidebarLink, SidebarBadge | — | | …/lib/sidebar/helpers | isActive, isGroup, isInitiallyOpen, getBreadcrumb, joinPath, … | — | | …/sidebar | buildSidebarFromToc() — TOC → sidebar tree converter (build-time) | — |

MDX components

| Export | Purpose | Docs | | --- | --- | --- | | …/components/mdx/ApiLink.astro | Inline link to an API symbol with platform-aware URLs | README | | …/components/mdx/ApiRef.astro | Block API reference card | README | | …/components/mdx/PlatformBlock.astro | Show content only on selected platforms | README | | …/components/mdx/Sample.astro | Embedded code-view sample widget | README |

Build helpers

| Export | Purpose | | --- | --- | | …/platform | Platform / nav-language types | | …/content | Content collection helpers | | …/content-config | Default content collection schema | | …/llms | llms.txt manifest generator | | …/plugins/remark-env-vars | Remark plugin — {Environment.X} token substitution | | …/plugins/remark-md-links | Remark plugin — .md → slug link rewriting + DOCS_BASE prepending | | …/plugins/remark-html-transforms | Remark plugin — divider→<hr>, code lang normalization, img src fixes |

Styles

| Export | Purpose | | --- | --- | | …/styles/custom.scss | Base tokens + sidebar/sample styles | | …/styles/ig-theme.scss | IG color palette mapped to design tokens |


Subpath exports

Every component is reachable through an explicit subpath in package.json#exports. Bare-specifier imports (igniteui-astro-components) resolve to the JS/TS barrel src/index.ts which re-exports the runtime helpers only — .astro files must always be imported via their full subpath because Astro components are not plain ES modules.


Using from another repo without publishing a package

You do not need to release a version to npm to consume these components. Use one of the two approaches below.

Option A — npm file: link (recommended for active development)

In the consumer repo, add a file: reference in package.json:

{
  "dependencies": {
    "igniteui-astro-components": "file:../path/to/astro-components"
  }
}

Run npm install in the consumer repo. npm creates a symlink so every save in the components repo is instantly visible. All package.json#exports subpaths work exactly as they would with a published package.

# Consumer repo
npm install
# or, to refresh after adding new exports:
npm install ../path/to/astro-components

Windows note: symlinks require Developer Mode or running your terminal as Administrator.

Option B — TypeScript / Vite path alias (no install step)

Add a path alias in the consumer's tsconfig.json and astro.config.ts that maps the package name to the local source:

tsconfig.json

{
  "compilerOptions": {
    "paths": {
      "igniteui-astro-components":            ["../astro-components/src/index.ts"],
      "igniteui-astro-components/*":          ["../astro-components/src/*"]
    }
  }
}

astro.config.ts

import path from 'node:path';
import { defineConfig } from 'astro/config';

export default defineConfig({
  vite: {
    resolve: {
      alias: {
        'igniteui-astro-components': path.resolve('../astro-components/src/index.ts'),
      },
    },
  },
});

The alias covers the JS/TS barrel. .astro component imports such as 'igniteui-astro-components/layouts/DocsLayout.astro' resolve automatically through the paths wildcard in tsconfig.json — Astro's Vite pipeline handles them at build time.

Option C — direct relative imports (quick prototype)

Import component files directly by relative path without any alias or install:

---
import DocsLayout from '../../astro-components/src/layouts/DocsLayout/DocsLayout.astro';
import DocsSidebar from '../../astro-components/src/components/sidebar/DocsSidebar.astro';
import ApiLink from '../../astro-components/src/components/mdx/ApiLink/ApiLink.astro';
---

This works immediately but ties your import paths to the internal folder structure. Switch to Option A or B before the project matures.


Development

npm install

There is no build step — sources are published as-is and consumers compile them through their own Astro / Vite pipeline. TypeScript is used only for type-checking during development:

npx tsc --noEmit

License

MIT