Skip to content

sul-dlss/component-library

Repository files navigation

DLSS design component library

Reference implementation of components for DLSS. A live version is hosted via GitHub Pages at https://sul-dlss.github.io/component-library/.

A note about color. The primary color will always be "digital blue". A site may choose a secondary color like "cardinal" or "digital green".

See https://identity.stanford.edu/design-elements/color/web/

Components

HTML head link

  <link rel="icon" href="https://cdn.jsdelivr.net/gh/sul-dlss/component-library@v2025-01-24/styles/icon.png" type="image/png">
  <link rel="icon" href="https://cdn.jsdelivr.net/gh/sul-dlss/component-library@v2025-01-24/styles/icon.svg" type="image/svg+xml">
  <link rel="apple-touch-icon" href="https://cdn.jsdelivr.net/gh/sul-dlss/component-library@v2025-01-24/styles/icon.png">

For developers

Setup

npm install

All dependencies are for local development only.

Dev server

Run a simple HTTP server:

npm start

Note that this is required to resolve some paths in development, e.g. url() references to files in CSS will not resolve unless the server is running to serve them.

Linting

Lint the styles with stylelint:

npm run lint

This also runs in CI.

Deploying

The site is built and deployed to GitHub Pages automatically on every push to main, by a workflow that merges changes into the gh-pages branch.

When PRs are opened, the pages-preview workflow will commit a preview of the site to a subdirectory on the gh-pages branch so that it is available to view on the web. The URL for the preview will be:

https://sul-dlss.github.io/component-library/preview-[PR-number]

When the PR is merged, the subdirectory will be cleaned up via another commit to the gh-pages branch.

Releasing

Currently these are hosted via jsDelivr which creates hosted versions of every release. The best way to update the component library is to cut a release here and then link to the primary style in the <head> of the HTML. https://cdn.jsdelivr.net/gh/sul-dlss/component-library@[version]/styles/sul.css:

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/gh/sul-dlss/component-library@v2025-01-24/styles/sul.css"
/>