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

@dictu/page-container

v2.0.0

Published

Page container CSS component.

Readme

De page-container component biedt een basis container-element van het Dictu Design Systeem.

Gebruik deze component

Je kunt de CSS zo in je project installeren:

npm install --save-dev @dictu/page-container

Je kunt de CSS uit node_modules/ importeren:

<link
  rel="stylesheet"
  href="node_modules/@dictu/page-container/dist/index.css"
/>

Als je CSS imports gebruikt vanuit JavaScript:

import "@dictu/page-container/dist/index.css";

Richtlijnen

  • Gebruik altijd de .dictu-page-container class voor de container-element.
  • Gebruik semantische HTML: <div> of <main> voor de hoofdcontainer.
  • Voeg indien nodig een id attribuut toe voor navigatie en toegankelijkheid.
  • De component zorgt voor consistente maximale breedte en centrering van content.

Voorbeeldgebruik

<div class="dictu-page-container">
  <h1 class="dictu-heading dictu-heading--level-1">Pagina titel</h1>
  <p class="dictu-paragraph">
    Dit is de inhoud van de pagina met consistente styling en spacing.
  </p>
</div>

<!-- Als hoofdcontainer voor de pagina -->
<main class="dictu-page-container">
  <section class="dictu-page-section">
    <h2 class="dictu-heading dictu-heading--level-2">Sectie titel</h2>
    <p class="dictu-paragraph">
      Deze container zorgt voor consistente breedte en centrering.
    </p>
  </section>
</main>

<!-- Met ID voor navigatie en toegankelijkheid -->
<div class="dictu-page-container" id="main-content">
  <h1 class="dictu-heading dictu-heading--level-1">Welkom</h1>
  <p class="dictu-paragraph">
    Deze container heeft een ID voor betere toegankelijkheid.
  </p>
</div>

CSS Klassen

  • .dictu-page-container — hoofdcontainer voor de pagina content

Design Tokens / CSS-variabelen

De component gebruikt design tokens voor breedte en spacing. Voorbeeld:

.dictu-page-container {
  --govnl-container-max-inline-width: 80rem;
  --govnl-container-padding-inline: 1rem;
  --govnl-container-max-width: 1280px;
  /* ... */
}

Toegankelijkheid

  • Gebruik een semantisch juist HTML element (<div>, <main>, <article>, etc.).
  • Voeg indien nodig een id attribuut toe voor navigatie.
  • Zorg dat alle interactieve elementen binnen de container toegankelijk zijn.
  • Gebruik logische heading niveaus binnen de container.

Varianten

Basis PageContainer

De standaard page-container component met consistente maximale breedte en centrering.

export const Default = {
  args: {
    content: `
      <h1>Pagina titel</h1>
      <p>Dit is de inhoud van de pagina met consistente styling en spacing.</p>
    `,
    id: "page-container-1",
  },
};

Styling

De styling wordt verzorgd door de page-container CSS:

  • .dictu-page-container — basis container styling met maximale breedte, centrering en padding

Functies

  • Maximale breedte: Gecontroleerde maximale breedte via design tokens
  • Centrering: Automatische centrering van content
  • Padding: Horizontale padding voor consistente uitlijning
  • Reset margins: Alle margins worden gereset voor predictable styling
  • Responsief: Flexibele breedte die zich aanpast aan het scherm

Licentie

EUPL-1.2