digitalnsw / nsw-design-system-v2

This is the previous version of the NSW Design System. Use this version if you're supporting from v2.14.0 and below. The new version 3 is hosted in the main NSW Design System repo.

Home Page:https://nswdesignsystem.surge.sh/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NSW Design System

This project is using Percy.io for visual regression testing.

You are looking at an old version (<2.14.0) of the design system. There is a new version 3 here.

NSW Design system is a collection of reusable UI components used on the NSW government websites.

See live examples of NSW Digital Design system components and guidance on how to use them on you website at NSW Design System.

Using the design system

How you use the NSW Design System depends on your team's capabilities. We recommend using npm but also provided in a CDN, and a downloadable starter kit which includes all the compiled assets.

  1. Installing with NPM
  2. Import styles
  3. Adding the font and icons
  4. Importing javascript into your project
  5. Using JSDelivr CDN
  6. Download starter kit

Installing with NPM

  1. Install Node/npm.

  2. Generate a package.json file using the npm init command in the terminal. You will be prompted to enter several pieces of information, like the name of your application, version, description etc.

  3. Add nsw-design-system to your project’s package.json:

    • npm install --save nsw-design-system@2

The NSW Design System is now installed as a dependancy of your project, check out how to import styles and javascript in to your project build.

Option 1: Import all styles

The NSW Design System styles need to be added to the main Sass file in your project.
Use the below snippet to import the NSW Design System (ideally placed before any other imports or sass):

@import 'node_modules/nsw-design-system/src/main';

Option 2: Import core and certain components

The core library includes the design system's base theme, typography, mixins and helper functions. You can import this and take advantage of our variables and helpers.

In your own main Sass file, you can import NSW Design System’s core library.

// Core libraries
@import 'node_modules/nsw-design-system/src/global/scss/settings/settings';
@import 'node_modules/nsw-design-system/src/global/scss/tools/all';
@import 'node_modules/nsw-design-system/src/global/scss/helpers/all';
@import 'node_modules/nsw-design-system/src/global/scss/style/all';
@import 'node_modules/nsw-design-system/src/styles/section/section';
@import 'node_modules/nsw-design-system/src/styles/spacing/spacing';
@import 'node_modules/nsw-design-system/src/styles/typography/typography';

You can choose to import components as you need it. In the same file, import the Sass files of each component

// Components
@import 'node_modules/nsw-design-system/src/components/accordion/accordion';
@import 'node_modules/nsw-design-system/src/components/card/card';
@import 'node_modules/nsw-design-system/src/components/notification/notification';

With this setup you can also start theming with a few sets of variable changes.

Adding the font and the icons

In your main html document add this line of code inside the <head> tag. Make sure that it's placed before the NSW Design System styles import.

  <link href="https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap" rel="stylesheet">
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

Another way is to import it in css:

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

Importing javascript into your project

Some NSW Design System components require javascript to provide advanced functionality. To ensure the page is ready for javascript to run, include the follow scripts tags at the end of the html document.

    <script src="path/to/main.js"></script>
    <script>window.NSW.initSite()</script>
  </body>
</html>

Depending on your project set up, you might wish to copy the file into your project from node_modules or add the reference to your build workflow.

Using JSDelivr CDN

The bundled css and js files are also hosted in JSDelivr.

You can add the files to your main html document

<html>
  <head>
    ...
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/nsw-design-system@2/dist/css/main.css">
  </head>
  <body>
    ...
    <script src="https://cdn.jsdelivr.net/npm/nsw-design-system@2/dist/js/main.min.js"></script>
    <script>window.NSW.initSite()</script>
  </body>
</html>

Download starter kit

You can download the compiled design system assets (HTML, CSS, JavaScript) in the HTMLStarterkit zip file from the latest release.

Design System Figma UI kit

Get access to the latest Design System UI patterns and styles via the Design System Figma UI kit.

Getting updates

To be notified when there’s a new release, you can either join the NSW Design System community or watch the NSW Design System Github

About

This is the previous version of the NSW Design System. Use this version if you're supporting from v2.14.0 and below. The new version 3 is hosted in the main NSW Design System repo.

https://nswdesignsystem.surge.sh/

License:MIT License


Languages

Language:Handlebars 67.9%Language:SCSS 25.0%Language:JavaScript 7.0%Language:Shell 0.0%