Skip to content

Commit

Permalink
refactor: monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Mar 3, 2019
1 parent d57eabb commit 3e27250
Show file tree
Hide file tree
Showing 26 changed files with 5,321 additions and 0 deletions.
15 changes: 15 additions & 0 deletions webcomponents/charts/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# http://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
14 changes: 14 additions & 0 deletions webcomponents/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<a name="1.0.0-alpha.5"></a>
# [1.0.0-alpha.5](https://github.com/fluster/deckdeckgo-charts/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2019-02-07)

### Features

* feat: redraw chart if width, height or src change ([01aa026](https://github.com/deckgo/deckdeckgo-charts/commit/01aa026f0ab746684abf1e9e83b975ea15eaaef1))
* feat: add text variable to bar and line charts ([54cbbb2](https://github.com/deckgo/deckdeckgo-charts/commit/54cbbb2a11a4873e9462b48dd41d0fb6985d5ef5))

<a name="1.0.0-alpha.4"></a>
# [1.0.0-alpha.4](https://github.com/fluster/deckdeckgo-charts/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2019-02-02)

### Lib

* update Stencil and d3js ([530c090](https://github.com/deckgo/deckdeckgo-charts/commit/530c090eb85862576758c31886c9d38d1c2c98df))
21 changes: 21 additions & 0 deletions webcomponents/charts/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 DeckDeckGo team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
32 changes: 32 additions & 0 deletions webcomponents/charts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# DeckDeckGo - Charts

This component is the charts' plotter of [DeckDeckGo].

It is developed with [Stencil](https://stenciljs.com) and use [D3js](https://d3js.org) to create and draw the charts.

## Table of contents

- [Getting Started](#getting-started)
- [Develop](#develop)
- [License](#license)

## Getting Started

To get started with this Web Component, have a look to its [documentation](https://docs.deckdeckgo.com/components/chart).

## Develop

To develop and run this Web Component locally, proceed as following:

```
git clone https://github.com/deckgo/deckdeckgo
cd deckdeckgo/webcomponents/charts
npm install
npm run start
```

## License

MIT © DeckDeckGo team

[DeckDeckGo]: https://deckdeckgo.com
Loading

0 comments on commit 3e27250

Please sign in to comment.