This package is deprecated in favor of our new design system.
Thus:
- no new developments will be made;
- all issue will be closed with the tag
won't fix
; - no new pull-requests will be accepted (except for bug fixes - see below);
- only blocking bugs will be fixed, if necessary.
Polymer 1.x version (stable)
$ npm install [email protected]
# --- or ----
$ yarn add [email protected]
Polymer 3.x (preview)
$ npm install [email protected]
# --- or ----
$ yarn add [email protected]
Legacy version on Bower
$ bower install clab-ui-components#1.3.7
WARNING: both versions of the Contactlab Pattern Library make use of the Shady DOM
instead of the Shadow DOM
and styles are applied via a global CSS file, so after the package installation you should move (manually or with an automation tool) the ./_assets/css/contactlab-pattern.min.css
file in a distributable folder and link to it.
To start a development server on localhost:3000
plus Webpack in watch mode, you can use the command
$ npm run dev
To run the unit tests written with AVA
$ npm test
Please refer to CONTRIBUTING.md to better understand how to develop and integrate changes on this repo.
Apply the styles
In the head of your HTML document, copy and paste the following CDN links:
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/contactlab-ui-components/assets/css/clab-pattern.min.css"
/>
</head>
Use the components
Import all of the components included with the Contactlab Pattern Library. More details are available in the official documentation:
import 'contactlab-ui-components';
Any feature/bug fixing/refactor must be developed on a feature branch derived from the master branch and integrate the changes through a pull request in order to have a code review.
Released under the Apache 2.0 license.