Skip to content
Dev utils
Attention!
This package is still in design phase. But you can use it during the development.
The @zurich/dev-utils
NPM package is a package wit JavaScript (TypesCript) and SCSS code that can help to improve the whole DX (Development Experience) and QA (Quality Assurance) processes when su are using the Zurich Design System.
Install
The are two ways of installing the package:
Via CDN
Simply import the script in the <head>
of your HTML:
html
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module" src="https://zds.zurich.com/0.5.19/@zurich/dev-utils/web-cli.js"></script>
</head>
</html>
The available files are:
Local installation
You can also install it locally and get access to the SCSS and all the tools provided. We need to install the package:
bash
npm i -D @zurich/dev-utils
And then import the functionality in the context where is going to be used.
ts
import { isBoolean } from '@zurich/dev-utils/helpers'
Check each section to know about the imports.
Helpers
We offer a big collection of useful functions that can help developers. We do not recommend to use it via CDN because of performance issues, since you will be importing all the helpers.
You can import them from @zurich/dev-utils/helpers
:
ts
import { isBoolean } from '@zurich/dev-utils/helpers'
DRY (Don't Repeat Yourself)
We provide some very useful functions with strong typing that might be really useful to complement the development process when you are using the Zurich Design System. We recommend to have a look to the available ones and get familiar with them, since they can save hours of development and they are already unit tested and documented from our side.
Check all the available helpers in here.
Type helpers
There's also a collection of type helpers that can be imported from @zurich/dev-utils/helpers
:
ts
import type { Enumerate, KeysExcluding } from '@zurich/dev-utils/helpers'
type Result_1 = Enumerate<5>; // type Result_1 = 0 | 1 | 2 | 3 | 4
type Example = {
a: string;
b: number;
c: boolean;
};
type Result_2 = KeysExcluding<Example, string>; // type Result_2 = 'b' | 'c'
Web CLI
Attention!
Do not use the Web CLI in production. This is only a tool for development and QA.
In order to use the Web CLI, we need to import it in the use context.
scss
@import '@zurich/dev-utils/web-cli';
It can be import via CDN too:
html
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module" src="https://zds.zurich.com/0.5.19/@zurich/dev-utils/web-cli.js"></script>
</head>
</html>
Once the import is done, you would be able to access the Web CLI just by opening the dev tools of the browser and opening the console. Then just type ZDS.
and the list of available commands will appear:
INFO
The Web CLI is included in every page of this documentation, so you can play with it.
Functions
This is the list of available function:
help
: prints the help text.Printers:
print
: prints a content with the given styles.printImage
: prints in the console the image provided via param.printCodeBlock
: prints a code block in the console.
Inventory:
listCSSComponents
: returns a list with the ZDS' CSS components in the document.listWebComponents
: returns a list with the ZDS' Web components in the document.listAngularComponents
: returns a list with the ZDS' Angular components in the document.
Report:
reportCSSComponents
: elaborates a table of CSS components and helpers and their attributes.reportWebComponents
: elaborates a table of Web components and their attributes.
SCSS
In order to use the SCSS functionality, we recommend to import the index.scss
using @use
:
scss
@use "@zurich/dev-utils/src/SCSS/index.scss" as *;
SCSS component vars
You can access the components' tokens aliases via the components.scss
file:
scss
@use "@zurich/dev-utils/src/components.scss" as comp;
$my-var: comp.$button--bg;
These SCSS variables point to the primitive and semantic CSS tokens used in @zurich/design-tokens
.
SCSS Functions
We offer functions to ease the development.
This is the list of available functions:
- Operators:
@function if($condition, $if-value, $else-value)
: a regular tertiary operator.
SCSS Mixins
We offer mixins to ease the development based on our foundations.
This is the list of available mixins:
- Breakpoints:
desktop
: a media query to use CSS only indesktop
size.landscape
: a media query to use CSS only inlandscape
size.landscapeOrSmaller
: a media query to use CSS only inlandscape
or smaller sizes.landscapeOrBigger
: a media query to use CSS only inlandscape
or bigger sizes.portrait
: a media query to use CSS only inportrait
size.portraitOrSmaller
: a media query to use CSS only inportrait
or smaller sizes.portraitOrBigger
: a media query to use CSS only inportrait
or bigger sizes.mobile
: a media query to use CSS only inmobile
size.portraitAndLandscape
: a media query to use CSS only betweenportrait
andlandscape
sizes.
Data
We expose some of the data about the ZDS that might be useful for creating integrations with platforms or specific tooling. This includes things like the metadata of the available icons, pictograms, or the BlueRoom images and their corresponding types (literals).
It can be imported from @zurich/dev-utils/data
:
ts
import { ICONS, PICTOGRAMS } from '@zurich/dev-utils/data';
Locales
The available locales can be imported from @zurich/dev-utils/locales
or individually:
ts
import { en, es } from '@zurich/dev-utils/locales';
import { LOCALES as de } from '@zurich/dev-utils/locales/de';
They are also available to be imported via CDN collectively or individually:
html
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module">
import("https://zds.zurich.com/0.5.19/@zurich/dev-utils/locales.js")
.then(({ en, es }) => {
console.log(en, es); // Locales for English and Spanish
});
import("https://zds.zurich.com/0.5.19/@zurich/dev-utils/locales/de.js")
.then(({ LOCALES: de }) => {
console.log(de); // Locales for German
});
</script>
</head>
</html>
ZDS and i18n (Internationalization)
ZDS has integrated localization systems. Learn more about the localization mechanisms in here.