Skip to content

Commit a84dd95

Browse files
Add tests. Sync latest updates
1 parent 8d01d90 commit a84dd95

20 files changed

+67713
-3670
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
node_modules
33
/dist
4+
/storage
45

56
# local env files
67
.env.local

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
/examples-vue3/**
44
/tests/
55
/.idea/*
6-
/tests/**
6+
/tests/**
7+
/storage/**

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language: node_js
2+
node_js: node

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22

3-
## [2.0.0] - 2021-04-13
3+
4+
## [2.0.0-beta.2] - 2021-05-07
5+
6+
### Changed
7+
- Adjusted grid and label props definitions
8+
- Sync definitions in jscharting-vue.d.ts
9+
- Tweak readme
10+
11+
### Added
12+
- Tests
13+
14+
## [2.0.0-beta] - 2021-04-13
415

516
### Breaking Change
617
- The `callback` prop was removed and is now the `@rendered` event

README-vue3.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</p>
88

99
<p align="center">
10+
<a href="https://travis-ci.com/jscharting/jscharting-vue"><img src="https://img.shields.io/travis/com/jscharting/jscharting-vue.svg?branch=master" alt="Builds"></a>
1011
<a href="https://david-dm.org/jscharting/jscharting-vue"><img alt="David" src="https://img.shields.io/david/jscharting/jscharting-vue"></a>
1112
<a href="https://www.npmjs.com/package/jscharting-vue"><img alt="npm version" src="https://img.shields.io/npm/v/jscharting-vue.svg"></a>
1213
<img alt="code style" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg">
@@ -57,7 +58,7 @@ yarn add jscharting-vue
5758

5859

5960
#### Run Examples
60-
Clone the (Github repo)[https://github.com/jscharting/jscharting-vue] locally. Example charts are located in the `/examples-vue3` folder.
61+
Clone the [Github repo](https://github.com/jscharting/jscharting-vue) locally. Example charts are located in the `/examples-vue3` folder.
6162

6263
To view the examples you can run the webpack dev server: localhost:3333
6364

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</p>
88

99
<p align="center">
10+
<a href="https://travis-ci.com/jscharting/jscharting-vue"><img src="https://img.shields.io/travis/com/jscharting/jscharting-vue.svg?branch=master" alt="Builds"></a>
1011
<a href="https://david-dm.org/jscharting/jscharting-vue"><img alt="David" src="https://img.shields.io/david/jscharting/jscharting-vue"></a>
1112
<a href="https://www.npmjs.com/package/jscharting-vue"><img alt="npm version" src="https://img.shields.io/npm/v/jscharting-vue.svg"></a>
1213
<img alt="code style" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg">
@@ -58,7 +59,7 @@ yarn add jscharting-vue
5859

5960

6061
#### Run Examples
61-
Clone the (Github repo)[https://github.com/jscharting/jscharting-vue] locally. Example charts are located in the `/examples` folder.
62+
Clone the [Github repo](https://github.com/jscharting/jscharting-vue) locally. Example charts are located in the `/examples` folder.
6263

6364
To view the examples you can run the webpack dev server: localhost:8080
6465

@@ -475,7 +476,6 @@ The available options for the data grid component are.
475476
| --------- | :----: | ----------- |
476477
| `:options` | object | JSCGrid configuration object. Please refer to the [API documentation](https://jscharting.com/documentation/#node=Home.API.json.Types.grid). |
477478
| `:mutable` | boolean | (Optional) When set to true, `grid.options()` is called with the updated props instead of recreating the grid instance.
478-
| `:className` | string | (Optional) Applies the class name to the grid container div element. It allows controlling grid size and layout with external CSS. |
479479
| `@rendered` | event | Triggered when the grid is finished rendering. The first argument of the event handler is a reference to the created grid.|
480480

481481
```typescript

0 commit comments

Comments
 (0)