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

@ucalgary-design-system/all-components

v1.3.0

Published

A library that aggregates all components in the UCalgary Design system.

Downloads

147

Readme

UCalgary Design System — All Components

This package provides all web components in the UCalgary Design System. It includes all core UI components in a single package and supports two distribution formats:

  • Standard (ESM): For projects using a package manager like npm.
  • Bundled: A fully self-contained version that includes all components and dependencies—ideal for projects that don't use a build system or package manager.

Installation (via npm)

Install using your preferred package manager:

npm install @ucalgary-design-system/all-components

Usage

Option 1: Import via JavaScript (Recommended)

For projects using a bundler (like Vite, Webpack, or Rollup):

import '@ucalgary-design-system/all-components';

Then use the components in your HTML:

<ucds-button>Click me</ucds-button>

💡 Our components automatically load global design tokens when first used. You don’t need to import them manually!


Option 2: Use the Bundled Build (No Build System Required)

For projects not using a package manager, you can include the bundled JavaScript and CSS directly in your HTML:

<link rel="stylesheet" href="dist/bundle/index.css" />
<script type="module" src="dist/bundle/index.js"></script>

Once included, you can use any UCalgary Design System component:

<ucds-text-input label="Your name"></ucds-text-input>

💡 Make sure the dist/bundle directory is served publicly by your server.

Option 3: Load from a CDN

If you don’t want to install the package locally, you can load the bundled files directly from jsDelivr:

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@ucalgary-design-system/[email protected]/bundle/index.css"
/>
<script
  type="module"
  src="https://cdn.jsdelivr.net/npm/@ucalgary-design-system/[email protected]/bundle/index.js">
</script>

Once included, you can use any UCalgary Design System component:

<ucds-dropdown label="Choose one">
  <ucds-dropdown-item value="1">Option 1</ucds-dropdown-item>
  <ucds-dropdown-item value="2">Option 2</ucds-dropdown-item>
</ucds-dropdown>

💡 You can pin to a specific version (recommended) or use @latest to always get the newest release:

<script type="module" src="https://cdn.jsdelivr.net/npm/@ucalgary-design-system/all-components@latest/bundle/index.js"></script>

Components Included

The following components are available:

  • ucds-accordion
  • ucds-accordion-group
  • ucds-breadcrumb
  • ucds-button
  • ucds-button-group
  • ucds-checkbox
  • ucds-chip
  • ucds-chip-group
  • ucds-dropdown
  • ucds-fieldset
  • ucds-icon
  • ucds-icon-button
  • ucds-link
  • ucds-radio
  • search-input
  • ucds-text-input
  • ucds-text-area