@easyv/charts 1.5.7 → 1.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/utils/index.js +2 -2
- package/package.json +1 -1
- package/src/utils/index.js +2 -2
package/lib/utils/index.js
CHANGED
|
@@ -35,12 +35,12 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
35
35
|
var defaultSize = 10;
|
|
36
36
|
var defaultBackground = '#000000';
|
|
37
37
|
var defaultIcon = {
|
|
38
|
-
|
|
38
|
+
minWidth: defaultSize,
|
|
39
39
|
height: defaultSize,
|
|
40
40
|
background: defaultBackground
|
|
41
41
|
};
|
|
42
42
|
var defaultLineIcon = {
|
|
43
|
-
|
|
43
|
+
minWidth: defaultSize,
|
|
44
44
|
height: 2,
|
|
45
45
|
background: defaultBackground
|
|
46
46
|
};
|
package/package.json
CHANGED
package/src/utils/index.js
CHANGED
|
@@ -13,12 +13,12 @@ import { toPath } from 'svg-points';
|
|
|
13
13
|
const defaultSize = 10;
|
|
14
14
|
const defaultBackground = '#000000';
|
|
15
15
|
const defaultIcon = {
|
|
16
|
-
|
|
16
|
+
minWidth: defaultSize,
|
|
17
17
|
height: defaultSize,
|
|
18
18
|
background: defaultBackground,
|
|
19
19
|
};
|
|
20
20
|
const defaultLineIcon = {
|
|
21
|
-
|
|
21
|
+
minWidth: defaultSize,
|
|
22
22
|
height: 2,
|
|
23
23
|
background: defaultBackground,
|
|
24
24
|
};
|