ghost-design-system v1.4.13
Ghost Design System - React Components library
Available components:
- Atoms:
- Molecules:
- Organisms:
Usage
- In the root directory of your project, ensure you have a .npmrc file with your valid fontawesome license (you can skip this step if it is configured for your session)
- Run the command:
npm install ghost-design-system- Define the set of colors by copying the file: ~ghost-design-system/dist/assets/_colors.scss)
// Neutral pallet
$chalk: rgb(228, 228, 228);
$charcoal: rgb(51, 51, 51);
$pebble: rgb(117, 117, 117);
$silver: rgb(196, 196, 196);
$smoke: rgb(248, 248, 248);
$white: rgb(255, 255, 255);
// Additional pallet
$scooter: rgb(38, 186, 212);
$buttercup: rgb(244, 174, 38);
$cerulean: rgb(1, 82, 129);
$cinnabar: rgb(232, 61, 71);
$fern: rgb(92, 184, 92);
$sky: rgb(16, 156, 241);
$tangerine: rgb(229, 114, 0);
$error: rgb(255, 52, 24);
$primary: $scooter;
$secondary: $pebble;
$tertiary: $charcoal;- Create your
index.scssfile by starting it with:
@import 'colors.scss';
@import '~ghost-design-system/dist/assets/_global.scss';
@import '~ghost-design-system/dist/assets/_general.scss';- You should be ready to use any of the components of the library.
References
This react components library uses the following:
- @fortawesome
- classnames
- color-alpha
- color-rgba
- date-fns
- lodash
- numeral
- react-datepicker
- react-number-format
- react-select
- suneditor
Peer dependencies:
Dev dependencies:
To go further
Basic Folder Structure
├── .storybook
├── src
│ ├── components
| | ├── Example
| | | ├── __tests__
| | | | ├── Example.test.tsx
| | | ├── Example.stories.tsx
| | | ├── Example.tsx
| | | ├── index.ts
| | ├── index.ts
| ├── index.ts
├── LICENSE
├── package.json
├── README.mdOnce you have created your new component make sure you have exported it in the src/components/index.ts file. Doing so allows the component to be compiled.
// src/components/index.ts
export \* from './MyComponent';
export \* from './SomeOtherComponent';You can develop your new component using storybook as your playground. Once you have added the .stories.tsx file for you new component, you can run yarn storybook to start the service.
Tests
$ npm run testWatch
$ npm run test:watchCoverage
$ npm run test:coveragePrettier
$ npm run formatValidate project formatting
$ npm run format:checkLint
$ npm run lintFix
$ npm run lint:fixStorybook
$ npm run storybookBuild storybook
$ npm run build-storybookBuilding your library
$ npm run buildThe build output will go into the dist directory
Type
Must be one of the following:
- build: Changes that affect the build system or external dependencies (this correlates with
PATCHin semantic versioning) - ci: Changes to our CI configuration files and scripts (no version changes)
- docs: Documentation only changes (no version changes)
- feat: A new feature (this correlates with
MINORin semantic versioning). - fix: A bug fix (this correlates with
PATCHin semantic versioning). - perf: A code change that improves performance (this correlates with
PATCHin semantic versioning). - refactor: A code change that neither fixes a bug nor adds a feature (no version changes)
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semicolons, etc) (no version changes)
- test: Adding missing tests or correcting existing tests (no version changes)
- revert: Reverts a previous commit (this correlates with
PATCHin semantic versioning).
Description
The Description contains a succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize the first letter
- no dot (.) at the end
Body (optional)
Use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.
Footer (optional)
The footer should contain any information about Breaking Changes and is also the place to reference issues that this commit Closes.
Breaking Changes
A commit that has the text BREAKING CHANGE: at the beginning of its optional body or footer section introduces a breaking API change (correlating with MAJOR in semantic versioning). A BREAKING CHANGE can be part of commits of any type.
should start with the word BREAKING CHANGE: with a space or two newlines. The rest of the commit message is then used for this.
Revert
If the commit reverts a previous commit, it should begin with revert:, followed by the header of the reverted commit. In the body it should say: This reverts commit <hash>., where the hash is the SHA of the commit being reverted.
Examples
Changelog
The changelog.md is automatically generated from the following types of commits:
featfixperfrevert
In addition to these types, any breaking change will also be added to the changelog.
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago