
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@unicef/design-system
Advanced tools
The status of this project is ALFA. So, incompatible changes may appear.
The goal of this project is to:
Designers, product managers and anyone that has to define the user interface of a web application we provide the following UX/UI design guidelines.
For developers, we provide a reference implementation. Documentation for developers can be found here
This reference implementation is based on based on Bootstrap 4.3.
In order to use the UNICEF's UI in your project you can reference a CDN or download using npm.
CDNs can offer a performance benefit by hosting on servers spread across the globe. This also offers an advantage that if the visitor to your webpage has already downloaded a copy of the files from the same CDN, it won't have to be re-downloaded.
For the CSS:
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@unicef/design-system/dist/css/unicef.css">
If you need to include the JavaScript, you have two options. The first one, a minified javascript bundle file that includes all bootstrap JavaScript (bootstrap, popper, jquery). You need this if you require dropdowns, tabs, etc.
<!-- All js bundled -->
<script src="https://cdn.jsdelivr.net/npm/@unicef/design-syste/dist/js/unicef-bundle.min.js"></script>
<!-- only the scripts that were created by UNICEF (no requirement)-->
<script src="https://cdn.jsdelivr.net/npm/@unicef/design-system/dist/js/unicef.min.js"></script>
This bootstrap customization is based on SASS, and therefore you can easily override the CSS classes for your particular project.
First, install the npm package
npm install @unicef/design-system
Import unicef.scss
in your global scss
file. For example:
/* you may need to change the path to the node_modules dir */
@import "../node_modules/@unicef/design-system/scss/unicef"
We have used bootstrap variables whenever possible. Custom created variables are defined in scss/_variables.scss
.
In order to make bootstrap version leaner, the following colors have been
removed from $theme-colors
: secondary
,info
,light
,dark
. This means
that, for example, <button class="btn btn-info">Info button</button>
will not
work. You can activate them back in _variables.scss
.
We use jekyll for generating the documentation and gulp for automating the tasks.
Get source code from git repository
$ git clone https://github.com/unicef/design-system.git
Install dependencies
$ cd design-system
$ npm install
$ bundle install
To run the local server
$ bundle exec jekyll serve --livereload
Then browse to http://localhost:4000/
While developing run in another terminal the watch
task to compile and minimize the SCSS and JavaScript:
$ gulp watch
To continuously compile SASS run
$ gulp watch-sass
Just clone the project and make a pull request.
Distributed under GLPv3.
FAQs
UNICEF's design system for creating our web applications.
The npm package @unicef/design-system receives a total of 0 weekly downloads. As such, @unicef/design-system popularity was classified as not popular.
We found that @unicef/design-system demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.