Skip to content

Commit

Permalink
Add new charts submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
seanlandsman committed Jan 15, 2020
1 parent cdafc35 commit d2d5ee7
Show file tree
Hide file tree
Showing 39 changed files with 417 additions and 11,141 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,6 @@ community-modules/core/typings

charts-community-modules/react/lib
charts-community-modules/react/umd

charts-community-modules/vue/lib/**
charts-community-modules/vue/main.js
charts-community-modules/vue/main.d.ts
12 changes: 12 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,15 @@
path = packages/ag-grid-charts-example
url = https://github.com/ag-grid/ag-grid-charts-example.git
branch = latest
[submodule "packages/ag-charts-react-example"]
path = packages/ag-charts-react-example
url = https://github.com/ag-grid/ag-charts-react-example.git
[submodule "packages/ag-charts-vue-example"]
path = packages/ag-charts-vue-example
url = https://github.com/ag-grid/ag-charts-vue-example.git
[submodule "packages/ag-charts-polymer-example"]
path = packages/ag-charts-polymer-example
url = https://github.com/ag-grid/ag-charts-polymer-example.git
[submodule "packages/ag-charts-angular-example"]
path = packages/ag-charts-angular-example
url = https://github.com/ag-grid/ag-charts-angular-example.git
89 changes: 45 additions & 44 deletions .idea/ag-grid.iml

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

3 changes: 3 additions & 0 deletions charts-community-modules/vue/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not ie <= 8
13 changes: 13 additions & 0 deletions charts-community-modules/vue/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules
src
.browserslistrc
.gitignore
.npmignore
github-banner.png
github-grid-demo.jpg
gulpfile.js
postcss.config.js
tsconfig.json
tsconfig-lib.json
tslint.json
vue.config.js
44 changes: 44 additions & 0 deletions charts-community-modules/vue/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Contributing to ag-charts-vue

We would love for you to contribute to ag-charts-vue and help make it even better than it is
today! As a contributor, here are the guidelines we would like you to follow:

- [Question or Problem?](#question)
- [Issues and Bugs](#issue)
- [Feature Requests](#feature)
- [Submission Guidelines](#submit)
- [Coding Rules](#rules)
- [Commit Message Guidelines](#commit)
- [Signing the CLA](#cla)

## <a name="issue"></a> Found a Bug?
If you find a bug in the source code, you can help us by
[submitting an issue](#submit-issue) to our [GitHub Repository][github].

## <a name="feature"></a> Missing a Feature?
You can *request* a new feature by [submitting an issue](#submit-issue) to our GitHub
Repository.

## <a name="submit"></a> Submission Guidelines

### <a name="submit-issue"></a> Submitting an Issue

Before you submit an issue, please search the issue tracker, maybe an issue for your problem already exists and the discussion might inform you of workarounds readily available.

We want to fix all the issues as soon as possible, but before fixing a bug we need to reproduce and confirm it. In order to reproduce bugs we will systematically ask you to provide a minimal reproduction scenario using http://plnkr.co. Having a live, reproducible scenario gives us wealth of important information without going back & forth to you with additional questions like:

- version of VueJS used
- 3rd-party libraries and their versions
- and most importantly - a use-case that fails

A minimal reproduce scenario using http://plnkr.co/ allows us to quickly confirm a bug (or point out coding problem) as well as confirm that we are fixing the right problem. If plunker is not a suitable way to demonstrate the problem (for example for issues related to our npm packaging), please create a standalone git repository demonstrating the problem.

We will be insisting on a minimal reproduce scenario in order to save maintainers time and ultimately be able to fix more bugs. Interestingly, from our experience users often find coding problems themselves while preparing a minimal plunk. We understand that sometimes it might be hard to extract essentials bits of code from a larger code-base but we really need to isolate the problem before we can fix it.

You can file new issues by filling out our [new issue form](https://github.com/ag-grid/ag-charts-vue/issues/new).

[github]: https://github.com/ag-grid/ag-grid
[jsfiddle]: http://jsfiddle.net
[plunker]: http://plnkr.co/edit
[runnable]: http://runnable.com
[stackoverflow]: http://stackoverflow.com/questions/tagged/ag-charts
21 changes: 21 additions & 0 deletions charts-community-modules/vue/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2015-2019 AG GRID LTD

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.
Loading

0 comments on commit d2d5ee7

Please sign in to comment.