-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5413 from plotly/add-strict-bundle
Add strict partial bundles
- Loading branch information
Showing
5 changed files
with
89 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* plotly.js (strict) v2.0.0 | ||
* Copyright 2012-2021, Plotly, Inc. | ||
* All rights reserved. | ||
* Licensed under the MIT license | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* plotly.js (strict) v2.0.0 | ||
* Copyright 2012-2021, Plotly, Inc. | ||
* All rights reserved. | ||
* Licensed under the MIT license | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/** | ||
* Copyright 2012-2021, Plotly, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
var Plotly = require('./core'); | ||
|
||
// traces | ||
Plotly.register([ | ||
require('./bar'), | ||
require('./box'), | ||
require('./heatmap'), | ||
require('./histogram'), | ||
require('./histogram2d'), | ||
require('./histogram2dcontour'), | ||
require('./contour'), | ||
require('./scatterternary'), | ||
require('./violin'), | ||
require('./funnel'), | ||
require('./waterfall'), | ||
require('./image'), | ||
|
||
require('./pie'), | ||
require('./sunburst'), | ||
require('./treemap'), | ||
require('./funnelarea'), | ||
|
||
require('./scattergeo'), | ||
require('./choropleth'), | ||
|
||
require('./parcoords'), | ||
require('./parcats'), | ||
|
||
require('./scattermapbox'), | ||
require('./choroplethmapbox'), | ||
require('./densitymapbox'), | ||
|
||
require('./sankey'), | ||
require('./indicator'), | ||
|
||
require('./table'), | ||
|
||
require('./carpet'), | ||
require('./scattercarpet'), | ||
require('./contourcarpet'), | ||
|
||
require('./ohlc'), | ||
require('./candlestick'), | ||
|
||
require('./scatterpolar'), | ||
require('./barpolar') | ||
]); | ||
|
||
// transforms | ||
Plotly.register([ | ||
require('./aggregate'), | ||
require('./filter'), | ||
require('./groupby'), | ||
require('./sort') | ||
]); | ||
|
||
// components | ||
Plotly.register([ | ||
require('./calendars') | ||
]); | ||
|
||
module.exports = Plotly; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters