Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
erikhallaraaker committed Jun 8, 2018
2 parents e6073dc + 789e23f commit 8d60f63
Show file tree
Hide file tree
Showing 78 changed files with 4,433 additions and 5,600 deletions.
16 changes: 15 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ about: Create a report to help us improve

---

<!--- Provide a general summary of the issue in the Title above -->

**Describe the bug**
A clear and concise description of what the bug is.

Provide a more detailed introduction to the issue itself, and why you consider it to be a bug.

**To Reproduce**
Steps to reproduce the behavior:
Expand All @@ -15,9 +18,19 @@ Steps to reproduce the behavior:
4. See error

**Expected behavior**

A clear and concise description of what you expected to happen.

**Actual behavior**

A clear and concise description of what actually happened.

**Possible fix**

Not obligatory, but suggest a fix or reason for the bug.

**Screenshots**

If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
Expand All @@ -32,4 +45,5 @@ If applicable, add screenshots to help explain your problem.
- Version [e.g. 22]

**Additional context**

Add any other context about the problem here.
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,29 @@ about: Suggest an idea for this project

---

<!--- Provide a general summary of the issue in the Title above -->

**Is your feature request related to a problem? Please describe.**

A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**

A clear and concise description of what you want to happen.

**Describe alternatives you've considered**

A clear and concise description of any alternative solutions or features you've considered.

**Additional context**

Add any other context or screenshots about the feature request here.

**Context**

Why is this change important to you? How would you use it?
How can it benefit other users?

**Possible Implementation**

Not obligatory, but suggest an idea for implementing addition or change.
3 changes: 2 additions & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"color-hex-length": "long",
"max-empty-lines": [2, { "ignore": ["comments"] }],
"string-quotes": "double",
"font-family-no-missing-generic-family-keyword": null
"font-family-no-missing-generic-family-keyword": null,
"at-rule-no-unknown": null
}
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

All notable changes to this project will be documented in this file.

## [0.6.0] - 2018-06-08

### Added

- Added polyfill for `Nodelist.forEach`.
- Added polyfill for `Object.assign`.
- Added badge component.
- Added utility classes for visibility.
- Added utility classes for display properties.
- Added more variants of the rangeslider.

### Changed

- Reworked grid to resemble that of Bootstrap v4.
- Refactored the rangeslider.
- Updated documentation for rangeslider.

### Fixed

- Fixed issue with documentation not being viewable in the edge and ie browsers.

## [0.5.0] - 2018-05-29

### Added
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* create tests for your contribution.
* run all tests.
* run build scripts.
* add changes to changelog.
* if everything works, create a pull request.

## Creating a new component
Expand Down
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
![PayEx logo](./src/img/px-logo.svg)

# design.payex.com

![PayEx logo](./src/img/px-logo.svg)
[![Build status](https://ci.appveyor.com/api/projects/status/u04ft9aha1uwiex4/branch/master?svg=true)](https://ci.appveyor.com/project/erikhallaraaker/design-payex-com/branch/master)

## Installing / Getting started

Expand All @@ -17,7 +19,7 @@ DesignGuide requires [Node.js](https://nodejs.org/en/) (includes npm).
1. `npm start`
* If encountering an error, you might need to install [webpack-dev-server](https://github.com/webpack/webpack-dev-server) globally. You can do this by running the command `npm i webpack-dev-server -g`.
1. Go to <http://localhost:3000>
1. Works? If not, contact us on Slack ([#dev-design-guide](https://payex.slack.com/messages/C0L3W8B2S/)).
1. Works? If not, contact us on Slack ([#design-guide-general](https://payex.slack.com/messages/C0L3W8B2S/)).
1. Get to work.

## Developing
Expand Down Expand Up @@ -45,7 +47,7 @@ Design Guide uses [semantic versioning](http://semver.org/). This means that int

1. Open a terminal and navigate to repo root
1. Run the command `npm test`
* Many of the tests are snapshot based, and runs against already created snapshots. If you need to update the snapshots due to changes run the command `npm test:update`.
* Many of the tests are snapshot based, and runs against already created snapshots. If you need to update the snapshots due to changes run the command `npm run test:update`.
* A test coverage report is generated after running the tests. This can be found in `./coverage` or.
> Note: Snapshot testing is pretty unforgiving, so if you make __ANY__ changes to a component which already has a snapshot, the tests __WILL__ crash! So make sure to run `npm test:update` before committing.
Expand Down Expand Up @@ -80,12 +82,15 @@ __*Make sure to follow the syntax rules enforced by eslint & stylelint.*__
## Notable files

* `.babelrc` - [Babel](https://babeljs.io/) configuration.
* `.eslintignore` - List of files/directories eslint will ignore (similar to .gitignore).
* `.eslintrc` - [Eslint](https://eslint.org/) configuration.
* `.stylelintrc` - [Stylelint](https://stylelint.io/) configuration.
* `.eslintignore` - List of files/directories eslint will ignore (similar to .gitignore).
* `jest.config.js` - [jest](https://facebook.github.io/jest/) configuration.
* `jest.setup.js` - Script file that will run before jest executes the tests, this includes [enzyme](http://airbnb.io/enzyme/) setup, polyfills and other useful snippets.
* `webpack.config.js` - [Webpack](https://webpack.js.org/) configuration.

## Copyright, license and credits

Code and documentation © PayEx and contributors, released under the [MIT License](LICENSE).
Inspired by [Bootstrap](http://getbootstrap.com/) and [Materialize](https://materializecss.com/).

Inspired by [Bootstrap](http://getbootstrap.com/) and [Materialize](https://materializecss.com/).
7 changes: 0 additions & 7 deletions dist/0.5.0/scripts/app.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/0.5.0/scripts/app.js.map

This file was deleted.

1 change: 0 additions & 1 deletion dist/0.5.0/scripts/core-libraries.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/0.5.0/scripts/polyfills.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/0.5.0/scripts/polyfills.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/0.5.0/scripts/px-script.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/0.5.0/scripts/px-script.js.map

This file was deleted.

31 changes: 0 additions & 31 deletions dist/0.5.0/scripts/react-libraries.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/0.5.0/scripts/react-libraries.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions dist/0.5.0/styles/px.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/0.5.0/styles/px.css.map

This file was deleted.

1 change: 0 additions & 1 deletion dist/0.5.0/styles/templates/documentation.css.map

This file was deleted.

7 changes: 7 additions & 0 deletions dist/0.6.0/scripts/app.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/0.6.0/scripts/app.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/0.6.0/scripts/core-libraries.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/0.6.0/scripts/polyfills.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8d60f63

Please sign in to comment.