Skip to content

Commit 3264265

Browse files
committed
0.0.11
1 parent 28f3156 commit 3264265

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

dist/vue-highcharts.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@
44
(global.VueHighcharts = factory(global.Highcharts));
55
}(this, (function (HighchartsOnly) { 'use strict';
66

7-
HighchartsOnly = 'default' in HighchartsOnly ? HighchartsOnly['default'] : HighchartsOnly;
7+
HighchartsOnly = HighchartsOnly && HighchartsOnly.hasOwnProperty('default') ? HighchartsOnly['default'] : HighchartsOnly;
88

99
var ctors = {
10-
highcharts: 'Chart',
11-
highstock: 'StockChart',
12-
highmaps: 'Map',
13-
'highcharts-renderer': 'Renderer'
10+
Highcharts: 'Chart',
11+
Highstock: 'StockChart',
12+
Highmaps: 'Map',
13+
HighchartsRenderer: 'Renderer'
1414
};
1515

16-
/* istanbul ignore next */
1716
function clone(obj) {
1817
var copy;
1918
if (obj === null || typeof obj !== 'object') {
@@ -26,6 +25,7 @@ function clone(obj) {
2625
}
2726
return copy;
2827
}
28+
/* istanbul ignore else */
2929
if (obj instanceof Object) {
3030
copy = {};
3131
for (var key in obj) {
@@ -49,7 +49,7 @@ function create(tagName, Highcharts, Vue) {
4949
// to avoid unmated content during SSR, it returns minimum component.
5050
: { render: render };
5151
}
52-
var isRenderer = tagName === 'highcharts-renderer';
52+
var isRenderer = tagName === 'HighchartsRenderer';
5353
var component = {
5454
name: tagName,
5555
props: isRenderer

dist/vue-highcharts.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-highcharts",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Highcharts component for Vue",
55
"main": "dist/vue-highcharts.js",
66
"module": "src/index.js",

0 commit comments

Comments
 (0)