Skip to main content
VelinStyle v1.3.0
⌂ Home
  1. Docs
  2. Getting Started
  3. Download

Download 1.2.2

Get VelinStyle via self-hosted dist/, npm for build-tool integration, or a pinned CDN build. Pin @birdapi/velinstyle@1.3.0 (or your chosen tag) so CSS and components stay aligned. For go-live, prefer velinstyle production over shipping the full CDN bundle. Deutsch: Herunterladen

Maturity

Package CSS / components are stable. Optional CLI Design Intelligence commands remain beta after install.

When to use

When not

After load, optionally call initA11y() — see Accessibility bootstrap.

Self-hosted (recommended)

Copy dist/ from the framework repository or this docs site. Optional third-party CDNs may reference older npm builds — pin what you ship.

<!-- VelinStyle CSS -->
<link rel="stylesheet"
      href="/dist/velinstyle.min.css">

<!-- VelinStyle Web Components (optional, IIFE) -->
<script
        src="/dist/velinstyle-components.iife.js"></script>

You can also use jsDelivr as an alternative CDN:

<link rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/@birdapi/velinstyle@1.3.0/dist/velinstyle.min.css">

npm

Install VelinStyle as a dependency in your Node.js project to integrate it with your build pipeline (Vite, Webpack, Rollup, etc.):

# npm
npm install @birdapi/velinstyle

# yarn
yarn add @birdapi/velinstyle

# pnpm
pnpm add @birdapi/velinstyle

Then import the CSS in your entry file:

// Import all of VelinStyle CSS
import '@birdapi/velinstyle/dist/velinstyle.min.css';

// Optional: import Web Components
import '@birdapi/velinstyle/dist/velinstyle-components.min.js';

Vendor, monorepo & Windows

Compiled CSS & JS

Download the ready-to-use compiled files. The archive contains minified and unminified versions, theme presets, and the Web Components bundle.

Download VelinStyle v1.2.2

Contains CSS, JS components, theme presets, and plain CSS source modules.

Source Files

If you want to compile VelinStyle yourself or customize the CSS source, clone the repository and build from source:

git clone https://github.com/SkyliteDesign/velinstyle.git
cd velinstyle
npm install
npm run build