Warning
This package is deprecated. The content is moved to the @teamleader/ahoy package. The further development of the project will be closed-source but the package will be published under the new name.
Teamleader UI is a set of React components that implement the Teamleader design specification.
Teamleader UI can be installed as an npm package:
$ npm install --save @teamleader/ui
or
$ yarn install @teamleader/ui
In this minimal example, we import a Button
with styles already bundled:
import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from '@teamleader/ui';
ReactDOM.render(<Button label="Hello World!" />, document.getElementById('app'));
Import the CSS into your project via JS or CSS.
JS
import '@teamleader/ui/es/index.css';
or CSS
@import url('@teamleader/ui/es/index.css');
This library officially supports the last two versions of the major browsers. This is mainly because of dependencies and ease of mind.
To work in the project you will need a node version supporting ES6 syntax. Although the project is built using the Babel compiler, we use some ES6 features on the development server. Consider using n or nvm to handle different node versions!
To start the spec site locally, follow these simple steps:
$ git clone https://github.com/teamleadercrm/ui
$ cd ui/
$ yarn install
$ yarn start
Open up a browser and the local spec will be available at http://localhost:3000/.
To start the project on another port, set the PORT
variable when running the start
command.
As in this example for port 3001
:
$ PORT=3001 yarn start
- component is written in Typescript
- [component].stories.tsx file is present
- component is exported in index.ts
-
Create PR with your desired changes
-
Bump the version in
package.json
and commit with messageVersion bump
. Semantic Versioning -
Update
CHANGELOG.md
-
Place
## [new.version.number] - yyy-mm-dd
above last release -
Add heading that best fits your change:
### Added ### Changed ### Deprecated ### Removed ### Fixed ### Dependency updates
-
Add you change in format
Component: short-description ([github-username](link-to-github-user)) in [#PR-ID](link-to-PR)
-
Commit with message
Update changelog
and push. -
EXAMPLE:
## [16.4.3] - 2022-10-31 ### Fixed - `Select`: Allow multiple selects being rendered at once ([@stefaandevylder](https://github.com/stefaandevylder)) in [#2422](https://github.com/teamleadercrm/ui/pull/2422)
-
-
Once the pull request has the needed amount of approvals, merge it into the
next-release
branch. -
Github Actions will create a tag + release based on the
version
property inpackage.json
-
In your
console
, pull thenext-release
branch. -
Publish
tonpm
using thenpm publish --access=public
command. -
Merge
thenext-release
branch intomaster
and push to Github
This project is licensed under the terms of the MIT license.