Skip to content

Commit 07c724e

Browse files
committed
[do not merge this] "build" commit for PR plotly#2670
1 parent c90bfbf commit 07c724e

File tree

23 files changed

+579936
-50
lines changed

23 files changed

+579936
-50
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ build/*
44
!build/plotcss.js
55
!build/ploticon.js
66
!build/README.md
7+
!build/plotly.js-*-dist
78

89
npm-debug.log*
910
*.sublime*

build/plotly.js-basic-dist/README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# plotly.js-basic-dist
2+
3+
Ready-to-use plotly.js basic distributed bundle.
4+
5+
Contains trace modules `scatter`, `bar` and `pie`.
6+
7+
For more info on plotly.js, go to https://github.com/plotly/plotly.js
8+
9+
## Installation
10+
11+
```
12+
npm install plotly.js-basic-dist
13+
```
14+
## Usage
15+
16+
```js
17+
// ES6 module
18+
import Plotly from 'plotly.js-basic-dist';
19+
20+
// CommonJS
21+
var Plotly = require('plotly.js-basic-dist');
22+
```
23+
24+
## Copyright and license
25+
26+
Code and documentation copyright 2018 Plotly, Inc.
27+
28+
Code released under the [MIT license](https://github.com/plotly/plotly.js/blob/master/LICENSE).
29+
30+
Docs released under the [Creative Commons license](https://github.com/plotly/documentation/blob/source/LICENSE).
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "plotly.js-basic-dist",
3+
"version": "1.38.0",
4+
"description": "Ready-to-use plotly.js basic distributed bundle.",
5+
"license": "MIT",
6+
"main": "plotly-basic.js",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/plotly/plotly.js.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/plotly/plotly.js/issues"
13+
},
14+
"author": "Plotly, Inc.",
15+
"keywords": [
16+
"graphing",
17+
"plotting",
18+
"data",
19+
"visualization",
20+
"plotly"
21+
]
22+
}

build/plotly.js-basic-dist/plotly-basic.js

+66,306
Large diffs are not rendered by default.
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# plotly.js-cartesian-dist
2+
3+
Ready-to-use plotly.js cartesian distributed bundle.
4+
5+
Contains trace modules `scatter`, `bar`, `box`, `heatmap`, `histogram`, `histogram2d`, `histogram2dcontour`, `pie`, `contour`, `scatterternary` and `violin`.
6+
7+
For more info on plotly.js, go to https://github.com/plotly/plotly.js
8+
9+
## Installation
10+
11+
```
12+
npm install plotly.js-cartesian-dist
13+
```
14+
## Usage
15+
16+
```js
17+
// ES6 module
18+
import Plotly from 'plotly.js-cartesian-dist';
19+
20+
// CommonJS
21+
var Plotly = require('plotly.js-cartesian-dist');
22+
```
23+
24+
## Copyright and license
25+
26+
Code and documentation copyright 2018 Plotly, Inc.
27+
28+
Code released under the [MIT license](https://github.com/plotly/plotly.js/blob/master/LICENSE).
29+
30+
Docs released under the [Creative Commons license](https://github.com/plotly/documentation/blob/source/LICENSE).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "plotly.js-cartesian-dist",
3+
"version": "1.38.0",
4+
"description": "Ready-to-use plotly.js cartesian distributed bundle.",
5+
"license": "MIT",
6+
"main": "plotly-cartesian.js",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/plotly/plotly.js.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/plotly/plotly.js/issues"
13+
},
14+
"author": "Plotly, Inc.",
15+
"keywords": [
16+
"graphing",
17+
"plotting",
18+
"data",
19+
"visualization",
20+
"plotly"
21+
]
22+
}

build/plotly.js-cartesian-dist/plotly-cartesian.js

+76,268
Large diffs are not rendered by default.
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# plotly.js-finance-dist
2+
3+
Ready-to-use plotly.js finance distributed bundle.
4+
5+
Contains trace modules `scatter`, `bar`, `histogram`, `pie`, `ohlc` and `candlestick`.
6+
7+
For more info on plotly.js, go to https://github.com/plotly/plotly.js
8+
9+
## Installation
10+
11+
```
12+
npm install plotly.js-finance-dist
13+
```
14+
## Usage
15+
16+
```js
17+
// ES6 module
18+
import Plotly from 'plotly.js-finance-dist';
19+
20+
// CommonJS
21+
var Plotly = require('plotly.js-finance-dist');
22+
```
23+
24+
## Copyright and license
25+
26+
Code and documentation copyright 2018 Plotly, Inc.
27+
28+
Code released under the [MIT license](https://github.com/plotly/plotly.js/blob/master/LICENSE).
29+
30+
Docs released under the [Creative Commons license](https://github.com/plotly/documentation/blob/source/LICENSE).
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "plotly.js-finance-dist",
3+
"version": "1.38.0",
4+
"description": "Ready-to-use plotly.js finance distributed bundle.",
5+
"license": "MIT",
6+
"main": "plotly-finance.js",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/plotly/plotly.js.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/plotly/plotly.js/issues"
13+
},
14+
"author": "Plotly, Inc.",
15+
"keywords": [
16+
"graphing",
17+
"plotting",
18+
"data",
19+
"visualization",
20+
"plotly"
21+
]
22+
}

0 commit comments

Comments
 (0)